Searched refs:isEqual (Results 1 - 25 of 128) sorted by relevance

123456

/macosx-10.10.1/Chess-310.6/Sources/
H A DMBCMoveTableViewAccessibility.mm65 - (BOOL) isEqual:(MBCMoveAccessibilityProxy *)other
123 if ([attribute isEqual:NSAccessibilityParentAttribute])
125 else if ([attribute isEqual:NSAccessibilityChildrenAttribute])
127 else if ([attribute isEqual:NSAccessibilityWindowAttribute])
129 else if ([attribute isEqual:NSAccessibilityRoleAttribute])
131 else if ([attribute isEqual:NSAccessibilityRoleDescriptionAttribute])
133 else if ([attribute isEqual:NSAccessibilityPositionAttribute])
136 else if ([attribute isEqual:NSAccessibilitySizeAttribute])
139 else if ([attribute isEqual:NSAccessibilityTitleAttribute])
141 else if ([attribute isEqual
[all...]
H A DMBCBoardViewAccessibility.mm66 - (BOOL) isEqual:(MBCBoardAccessibilityProxy *)other
107 if ([action isEqual:NSAccessibilityPressAction])
135 if ([attribute isEqual:NSAccessibilityParentAttribute])
137 else if ([attribute isEqual:NSAccessibilityChildrenAttribute])
139 else if ([attribute isEqual:NSAccessibilityWindowAttribute])
141 else if ([attribute isEqual:NSAccessibilityRoleAttribute])
143 else if ([attribute isEqual:NSAccessibilityRoleDescriptionAttribute])
145 else if ([attribute isEqual:NSAccessibilityPositionAttribute])
148 else if ([attribute isEqual:NSAccessibilitySizeAttribute])
151 else if ([attribute isEqual
[all...]
H A DMBCMoveTableView.mm65 if ([[[[self tableColumns] objectAtIndex:0] identifier] isEqual:@"Move"]) {
H A DMBCDocument.mm104 if (!result && ([key isEqual:@"White"] || [key isEqual:@"Black"]))
181 if ([playerIDKey isEqual:@"BlackPlayerID"]) {
200 } else if (![localPlayerID isEqual:[gameData objectForKey:@"WhitePlayerID"]]
201 && ![localPlayerID isEqual:[gameData objectForKey:@"BlackPlayerID"]]
361 if ([p.playerID isEqual:localPlayerID]) {
391 && [match.currentParticipant.playerID isEqual:[(MBCController *)[NSApp delegate] localPlayer].playerID]
400 if ([match.currentParticipant.playerID isEqual:[(MBCController *)[NSApp delegate] localPlayer].playerID]) {
418 if ([participant.playerID isEqual:[properties objectForKey:@"WhitePlayerID"]])
433 localWhite = [[(MBCController *)[NSApp delegate] localPlayer].playerID isEqual
[all...]
/macosx-10.10.1/objc4-646/runtime/
H A Dllvm-DenseMapInfo.h29 //static bool isEqual(const T &LHS, const T &RHS);
46 static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; } function in struct:objc::DenseMapInfo
61 static bool isEqual(const DisguisedPtr<T> &LHS, const DisguisedPtr<T> &RHS) { function in struct:objc::DenseMapInfo
77 static bool isEqual(const char* const &LHS, const char* const &RHS) { function in struct:objc::DenseMapInfo
87 static bool isEqual(const char &LHS, const char &RHS) { function in struct:objc::DenseMapInfo
97 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { function in struct:objc::DenseMapInfo
109 static bool isEqual(const unsigned long& LHS, const unsigned long& RHS) { function in struct:objc::DenseMapInfo
121 static bool isEqual(const unsigned long long& LHS, function in struct:objc::DenseMapInfo
132 static bool isEqual(const int& LHS, const int& RHS) { function in struct:objc::DenseMapInfo
146 static bool isEqual(cons function in struct:objc::DenseMapInfo
158 static bool isEqual(const long long& LHS, function in struct:objc::DenseMapInfo
192 static bool isEqual(const Pair &LHS, const Pair &RHS) { function in struct:objc::DenseMapInfo
[all...]
H A Dmaptable.mm65 static INLINE int isEqual(NXMapTable *table, const void *key1, const void *key2) {
66 return (key1 == key2) ? 1 : (table->prototype->isEqual)(table, key1, key2);
90 return (proto1->hash == proto2->hash) && (proto1->isEqual == proto2->isEqual) && (proto1->free == proto2->free) && (proto1->style == proto2->style);
96 return NXPtrHash(info, (void*)proto->hash) ^ NXPtrHash(info, (void*)proto->isEqual) ^ NXPtrHash(info, (void*)proto->free) ^ (uintptr_t) proto->style;
112 if (! prototype.hash || ! prototype.isEqual || ! prototype.free || prototype.style) {
173 if (isEqual(table, pair->key, key)) {
181 if (isEqual(table, pair->key, key)) {
216 _objc_inform("*** maptable: count differs after rehashing; probably indicates a broken invariant: there are x and y such as isEqual(x, y) is TRUE but hash(x) != hash (y)\n");
238 if (isEqual(tabl
[all...]
H A Dllvm-DenseMap.h109 if (!KeyInfoT::isEqual(P->first, EmptyKey)) {
110 if (!KeyInfoT::isEqual(P->first, TombstoneKey)) {
143 /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
271 if (!KeyInfoT::isEqual(P->first, EmptyKey) &&
272 !KeyInfoT::isEqual(P->first, TombstoneKey))
300 if (!KeyInfoT::isEqual(B->first, EmptyKey) &&
301 !KeyInfoT::isEqual(B->first, TombstoneKey) &&
338 if (!KeyInfoT::isEqual(getBuckets()[i].first, getEmptyKey()) &&
339 !KeyInfoT::isEqual(getBuckets()[i].first, getTombstoneKey()))
467 if (KeyInfoT::isEqual(TheBucke
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DDenseMapInfo.h27 //static bool isEqual(const T &LHS, const T &RHS);
47 static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; } function in struct:llvm::DenseMapInfo
55 static bool isEqual(const char &LHS, const char &RHS) { function in struct:llvm::DenseMapInfo
65 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { function in struct:llvm::DenseMapInfo
77 static bool isEqual(const unsigned long& LHS, const unsigned long& RHS) { function in struct:llvm::DenseMapInfo
89 static bool isEqual(const unsigned long long& LHS, function in struct:llvm::DenseMapInfo
100 static bool isEqual(const int& LHS, const int& RHS) { function in struct:llvm::DenseMapInfo
114 static bool isEqual(const long& LHS, const long& RHS) { function in struct:llvm::DenseMapInfo
126 static bool isEqual(const long long& LHS, function in struct:llvm::DenseMapInfo
160 static bool isEqual(cons function in struct:llvm::DenseMapInfo
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebElementPropertyBag.cpp98 static bool isEqual(LPCWSTR s1, LPCWSTR s2) function
124 if (isEqual(WebElementDOMNodeKey, key)) {
129 } else if (isEqual(WebElementFrameKey, key)) {
140 } else if (isEqual(WebElementImageAltStringKey, key))
142 else if (isEqual(WebElementImageKey, key)) {
146 } else if (isEqual(WebElementImageRectKey, key)) {
152 } else if (isEqual(WebElementImageURLKey, key))
154 else if (isEqual(WebElementIsSelectedKey, key)) {
162 if (isEqual(WebElementMediaURLKey, key))
164 if (isEqual(WebElementSpellingToolTipKe
[all...]
H A DWebActionPropertyBag.cpp96 static bool isEqual(LPCWSTR s1, LPCWSTR s2) function
116 if (isEqual(pszPropName, WebActionNavigationTypeKey)) {
121 if (isEqual(pszPropName, WebActionElementKey)) {
128 if (isEqual(pszPropName, WebActionButtonKey)) {
135 if (isEqual(pszPropName, WebActionOriginalURLKey)) {
140 if (isEqual(pszPropName, WebActionModifierFlagsKey)) {
156 if (isEqual(pszPropName, WebActionFormKey)) {
/macosx-10.10.1/libclosure-65/objectTests/
H A DenumerateObjectsUsingBlock.m28 if ([@"Two" isEqual: obj]) {
30 } else if ([@"Three" isEqual: obj]) {
/macosx-10.10.1/ruby-106/ruby/ext/bigdecimal/lib/bigdecimal/
H A Djacobian.rb27 def isEqual(a,b,zero=0.0,e=1.0e-8) method in class:Jacobian
51 dx = fx[i].abs/ratio if isEqual(dx,f.zero,f.zero,f.eps)
52 dx = f.one/f.ten if isEqual(dx,f.zero,f.zero,f.eps)
64 if !isEqual(fxNew[j],fx[j],f.zero,f.eps) then
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dctests.m527 ASSERT([[NSNumber numberWithInt:0] isEqual:[array objectAtIndex:0]]);
528 ASSERT([[NSNumber numberWithInt:1] isEqual:[array objectAtIndex:1]]);
529 ASSERT([[NSNumber numberWithInt:2] isEqual:[array objectAtIndex:2]]);
530 ASSERT([[NSNumber numberWithInt:3] isEqual:[array objectAtIndex:3]]);
531 ASSERT([[NSNumber numberWithInt:4] isEqual:[array objectAtIndex:4]]);
540 ASSERT([[NSNumber numberWithInt:0] isEqual:[array2 objectAtIndex:0]]);
541 ASSERT([[NSNumber numberWithInt:1] isEqual:[array2 objectAtIndex:1]]);
542 ASSERT([[NSNumber numberWithInt:2] isEqual:[array2 objectAtIndex:2]]);
543 ASSERT([[NSNumber numberWithInt:3] isEqual:[array2 objectAtIndex:3]]);
544 ASSERT([[NSNumber numberWithInt:4] isEqual
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DScriptCallFrame.h54 bool isEqual(const ScriptCallFrame&) const;
H A DScriptArguments.cpp87 bool ScriptArguments::isEqual(ScriptArguments* other) const function in class:Inspector::ScriptArguments
98 if (!m_arguments[i].isEqual(other->globalState(), other->m_arguments[i]))
H A DScriptArguments.h63 bool isEqual(ScriptArguments*) const;
H A DScriptCallFrame.cpp52 bool ScriptCallFrame::isEqual(const ScriptCallFrame& o) const function in class:Inspector::ScriptCallFrame
H A DScriptCallStack.h62 bool isEqual(ScriptCallStack*) const;
H A DScriptCallStack.cpp92 bool ScriptCallStack::isEqual(ScriptCallStack* o) const function in class:Inspector::ScriptCallStack
102 if (!m_frames[i].isEqual(o->m_frames[i]))
/macosx-10.10.1/WebKit2-7600.1.25/Shared/API/Cocoa/
H A DWKBrowsingContextHandle.mm48 - (BOOL)isEqual:(id)object
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/test/
H A Dctests.m582 ASSERT([[NSNumber numberWithInt:0] isEqual:[array objectAtIndex:0]]);
583 ASSERT([[NSNumber numberWithInt:1] isEqual:[array objectAtIndex:1]]);
584 ASSERT([[NSNumber numberWithInt:2] isEqual:[array objectAtIndex:2]]);
585 ASSERT([[NSNumber numberWithInt:3] isEqual:[array objectAtIndex:3]]);
586 ASSERT([[NSNumber numberWithInt:4] isEqual:[array objectAtIndex:4]]);
595 ASSERT([[NSNumber numberWithInt:0] isEqual:[array2 objectAtIndex:0]]);
596 ASSERT([[NSNumber numberWithInt:1] isEqual:[array2 objectAtIndex:1]]);
597 ASSERT([[NSNumber numberWithInt:2] isEqual:[array2 objectAtIndex:2]]);
598 ASSERT([[NSNumber numberWithInt:3] isEqual:[array2 objectAtIndex:3]]);
599 ASSERT([[NSNumber numberWithInt:4] isEqual
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/test/
H A Dctests.m584 ASSERT([[NSNumber numberWithInt:0] isEqual:[array objectAtIndex:0]]);
585 ASSERT([[NSNumber numberWithInt:1] isEqual:[array objectAtIndex:1]]);
586 ASSERT([[NSNumber numberWithInt:2] isEqual:[array objectAtIndex:2]]);
587 ASSERT([[NSNumber numberWithInt:3] isEqual:[array objectAtIndex:3]]);
588 ASSERT([[NSNumber numberWithInt:4] isEqual:[array objectAtIndex:4]]);
597 ASSERT([[NSNumber numberWithInt:0] isEqual:[array2 objectAtIndex:0]]);
598 ASSERT([[NSNumber numberWithInt:1] isEqual:[array2 objectAtIndex:1]]);
599 ASSERT([[NSNumber numberWithInt:2] isEqual:[array2 objectAtIndex:2]]);
600 ASSERT([[NSNumber numberWithInt:3] isEqual:[array2 objectAtIndex:3]]);
601 ASSERT([[NSNumber numberWithInt:4] isEqual
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/bindings/
H A DScriptValue.h57 bool isEqual(JSC::ExecState*, const ScriptValue&) const;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Cocoa/
H A DWKObject.mm55 - (BOOL)isEqual:(id)object
65 return [_target isEqual:object];
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebDashboardRegion.mm83 // FIXME: Overriding isEqual: without overriding hash will cause trouble if this ever goes into an NSSet or is the key in an NSDictionary,
85 - (BOOL)isEqual:(id)other

Completed in 274 milliseconds

123456