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

123456

/macosx-10.9.5/Chess-310.5/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:[[NSApp delegate] localPlayer].playerID]
400 if ([match.currentParticipant.playerID isEqual:[[NSApp delegate] localPlayer].playerID]) {
418 if ([participant.playerID isEqual:[properties objectForKey:@"WhitePlayerID"]])
433 localWhite = [[[NSApp delegate] localPlayer].playerID isEqual
[all...]
/macosx-10.9.5/objc4-551.1/runtime/
H A Dllvm-DenseMapInfo.h29 //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:objc::DenseMapInfo
61 static bool isEqual(const char* const &LHS, const char* const &RHS) { function in struct:objc::DenseMapInfo
71 static bool isEqual(const char &LHS, const char &RHS) { function in struct:objc::DenseMapInfo
81 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { function in struct:objc::DenseMapInfo
93 static bool isEqual(const unsigned long& LHS, const unsigned long& RHS) { function in struct:objc::DenseMapInfo
105 static bool isEqual(const unsigned long long& LHS, function in struct:objc::DenseMapInfo
116 static bool isEqual(const int& LHS, const int& RHS) { function in struct:objc::DenseMapInfo
130 static bool isEqual(const long& LHS, const long& RHS) { function in struct:objc::DenseMapInfo
142 static bool isEqual(cons function in struct:objc::DenseMapInfo
176 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.9.5/llvmCore-3425.0.33/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...]
H A DDenseMap.h88 if (!KeyInfoT::isEqual(P->first, EmptyKey)) {
89 if (!KeyInfoT::isEqual(P->first, TombstoneKey)) {
122 /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
236 if (!KeyInfoT::isEqual(P->first, EmptyKey) &&
237 !KeyInfoT::isEqual(P->first, TombstoneKey))
265 if (!KeyInfoT::isEqual(B->first, EmptyKey) &&
266 !KeyInfoT::isEqual(B->first, TombstoneKey)) {
302 if (!KeyInfoT::isEqual(getBuckets()[i].first, getEmptyKey()) &&
303 !KeyInfoT::isEqual(getBuckets()[i].first, getTombstoneKey()))
433 if (!KeyInfoT::isEqual(TheBucke
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebElementPropertyBag.cpp97 static bool isEqual(LPCWSTR s1, LPCWSTR s2) function
123 if (isEqual(WebElementDOMNodeKey, key)) {
128 } 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.9.5/libclosure-63/objectTests/
H A DenumerateObjectsUsingBlock.m28 if ([@"Two" isEqual: obj]) {
30 } else if ([@"Three" isEqual: obj]) {
/macosx-10.9.5/ruby-104/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.9.5/pyobjc-42/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.9.5/WebCore-7537.78.1/platform/audio/ios/
H A DAudioSessionIOS.mm158 if ([categoryString isEqual:AVAudioSessionCategoryAmbient])
160 if ([categoryString isEqual:AVAudioSessionCategorySoloAmbient])
162 if ([categoryString isEqual:AVAudioSessionCategoryPlayback])
164 if ([categoryString isEqual:AVAudioSessionCategoryRecord])
166 if ([categoryString isEqual:AVAudioSessionCategoryPlayAndRecord])
168 if ([categoryString isEqual:AVAudioSessionCategoryAudioProcessing])
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DScriptCallFrame.h55 bool isEqual(const ScriptCallFrame&) const;
H A DScriptCallStack.h58 bool isEqual(ScriptCallStack*) const;
H A DScriptArguments.cpp84 bool ScriptArguments::isEqual(ScriptArguments* other) const function in class:WebCore::ScriptArguments
95 if (!m_arguments[i].isEqual(other->globalState(), other->m_arguments[i]))
H A DScriptCallStack.cpp64 bool ScriptCallStack::isEqual(ScriptCallStack* o) const function in class:WebCore::ScriptCallStack
74 if (!m_frames[i].isEqual(o->m_frames[i]))
H A DScriptArguments.h62 bool isEqual(ScriptArguments*) const;
H A DScriptCallFrame.cpp52 bool ScriptCallFrame::isEqual(const ScriptCallFrame& o) const function in class:WebCore::ScriptCallFrame
/macosx-10.9.5/pyobjc-42/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.9.5/RubyCocoa-80/RubyCocoa/tests/
H A Dtc_printf_format.rb36 assert(s2.isEqual(s))
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebCoreFullScreenWindow.mm57 if ([[theEvent charactersIgnoringModifiers] isEqual:@"\e"]) // Esacpe key-code
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebDashboardRegion.mm83 // FIXME: Overriding isEqual: without overriding hash will cause trouble if this ever goes into a NSSet or is the key in an NSDictionary.
84 - (BOOL)isEqual:(id)other

Completed in 176 milliseconds

123456