Searched refs:anObject (Results 1 - 25 of 81) sorted by relevance

1234

/macosx-10.10/xnu-2782.1.97/libkern/libkern/c++/
H A DOSOrderedSet.h373 * @param anObject The OSMetaClassBase-derived object to be added
376 * <code>true</code> if <code>anObject</code> was successfully
384 * If <code>anObject</code> is not already in the ordered set
388 * with arguments each existingObject, <code>anObject</code>,
393 * It then inserts <code>anObject</code> at the index of the existing object.
398 * that <code>anObject</code> is already present in the set,
406 virtual bool setObject(const OSMetaClassBase * anObject);
416 * @param anObject The OSMetaClassBase-derived object
419 * <code>true</code> if <code>anObject</code> was successfully added
431 * A <code>false</code> return value can mean either that <code>anObject</cod
[all...]
H A DOSArray.h435 * @param anObject The object to add to the OSArray instance.
438 * <code>true</code> if the addition of <code>anObject</code> was successful,
445 virtual bool setObject(const OSMetaClassBase * anObject);
457 * @param anObject The object to add to the array.
460 * <code>true</code> if the addition of <code>anObject</code>
483 const OSMetaClassBase * anObject);
513 * @param anObject The object to be placed into the array.
520 const OSMetaClassBase * anObject);
567 * @param anObject The object to be compared against the receiver.
578 virtual bool isEqualTo(const OSMetaClassBase * anObject) cons
[all...]
H A DOSSet.h511 * @param anObject The OSMetaClassBase-derived object to be added to the set.
514 * <code>true</code> if <code>anObject</code> was successfully
523 * that <code>anObject</code> is already present in the set,
529 virtual bool setObject(const OSMetaClassBase * anObject);
594 * @param anObject The OSMetaClassBase-derived object
600 virtual void removeObject(const OSMetaClassBase * anObject);
609 * @param anObject The OSMetaClassBase-derived object
613 * <code>true</code> if <code>anObject</code> is present within the set,
620 virtual bool containsObject(const OSMetaClassBase * anObject) const;
629 * @param anObject Th
[all...]
H A DOSDictionary.h564 * @param anObject The object to be stored in the dictionary.
576 const OSMetaClassBase * anObject);
586 * @param anObject The object to be stored in the dictionary.
599 const OSMetaClassBase * anObject);
610 * @param anObject The object to be stored in the dictionary.
623 const OSMetaClassBase * anObject);
824 * @param anObject An object to be compared against the receiver.
834 virtual bool isEqualTo(const OSMetaClassBase * anObject) const;
H A DOSBoolean.h203 * @param anObject An object to be compared against the receiver.
213 virtual bool isEqualTo(const OSMetaClassBase * anObject) const;
/macosx-10.10/objc4-646/runtime/OldClasses.subproj/
H A DList.h62 - (BOOL)isEqual: anObject DEPRECATED_ATTRIBUTE;
74 - (id)addObject:anObject DEPRECATED_ATTRIBUTE;
75 - (id)insertObject:anObject at:(unsigned)index DEPRECATED_ATTRIBUTE;
83 - (unsigned)indexOf:anObject DEPRECATED_ATTRIBUTE;
84 - (id)addObjectIfAbsent:anObject DEPRECATED_ATTRIBUTE;
85 - (id)removeObject:anObject DEPRECATED_ATTRIBUTE;
86 - (id)replaceObject:anObject with:newObject DEPRECATED_ATTRIBUTE;
95 - (id)makeObjectsPerform:(SEL)aSelector with:anObject DEPRECATED_ATTRIBUTE;
H A DList.m93 - (BOOL) isEqual: anObject
96 if (! [anObject isKindOf: [self class]]) return NO;
97 other = (List *) anObject;
119 - (unsigned)indexOf:anObject
124 if (*this == anObject)
148 - (id)insertObject:anObject at:(unsigned)index
151 if (! anObject) return nil;
166 *last = anObject;
171 - (id)addObject:anObject
173 return [self insertObject:anObject a
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/operator/
H A DstrictEquality.js57 var anObject = { one:1 , two:2 };
59 testcases[count++] = new TestCase( SECTION, "(anObject === anObject) ",
60 true, (anObject === anObject));
62 testcases[count++] = new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ",
63 false, (anObject === { one:1 , two:2 }));
65 testcases[count++] = new TestCase( SECTION, "({ one:1 , two:2 } === anObject) ",
66 false, ({ one:1 , two:2 } === anObject));
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebNotification.h34 static WebNotification* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userInfo = 0);
36 WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo);
48 /* [in] */ IUnknown *anObject,
H A DWebNotificationCenter.h55 /* [in] */ IUnknown *anObject);
62 /* [in] */ IUnknown *anObject,
68 /* [optional][in] */ IUnknown *anObject);
72 void postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject);
H A DWebNotification.cpp35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo) argument
38 , m_anObject(anObject)
65 WebNotification* WebNotification::createInstance(BSTR name /*=0*/, IUnknown* anObject /*=0*/, IPropertyBag* userInfo /*=0*/)
67 WebNotification* instance = new WebNotification(name, anObject, userInfo);
106 /* [in] */ IUnknown* /*anObject*/,
H A DWebNotificationCenter.cpp115 void WebNotificationCenter::postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject) argument
130 if (!observedObject || !anObject || observedObject == anObject)
148 /* [in] */ IUnknown* anObject)
153 it->value.append(ObjectObserverPair(anObject, observer));
156 list.append(ObjectObserverPair(anObject, observer));
183 /* [in] */ IUnknown* anObject,
186 COMPtr<WebNotification> notification(AdoptCOM, WebNotification::createInstance(notificationName, anObject, userInfo));
187 postNotificationInternal(notification.get(), notificationName, anObject);
194 /* [optional][in] */ IUnknown* anObject)
145 addObserver( IWebNotificationObserver* observer, BSTR notificationName, IUnknown* anObject) argument
181 postNotificationName( BSTR notificationName, IUnknown* anObject, IPropertyBag* userInfo) argument
191 removeObserver( IWebNotificationObserver* anObserver, BSTR notificationName, IUnknown* anObject) argument
[all...]
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebNotificationCenter.idl51 //- (void)addObserver:(id)anObserver selector:(SEL)aSelector name:(NSString *)notificationName object:(id)anObject
52 HRESULT addObserver([in] IWebNotificationObserver* observer, [in] BSTR notificationName, [in] IUnknown* anObject);
57 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject
58 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject userInfo:(NSDictionary *)userInfo
59 HRESULT postNotificationName([in] BSTR notificationName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo);
62 //- (void)removeObserver:(id)anObserver name:(NSString *)notificationName object:(id)anObject
63 HRESULT removeObserver([in] IWebNotificationObserver* anObserver, [in] BSTR notificationName, [in] IUnknown* anObject);
H A DIWebNotification.idl40 + (id)notificationWithName:(NSString *)aName object:(id)anObject
41 + (id)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)userInfo
43 HRESULT notificationWithName([in] BSTR aName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo);
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSOrderedSet.cpp174 bool OSOrderedSet::setObject(unsigned int index, const OSMetaClassBase *anObject) argument
179 if ((index > count) || !anObject)
182 if (containsObject(anObject))
194 array[index].obj = anObject;
196 anObject->taggedRetain(OSTypeID(OSCollection));
203 bool OSOrderedSet::setFirstObject(const OSMetaClassBase *anObject) argument
205 return( setObject(0, anObject));
208 bool OSOrderedSet::setLastObject(const OSMetaClassBase *anObject) argument
210 return( setObject( count, anObject));
217 bool OSOrderedSet::setObject(const OSMetaClassBase *anObject )
229 removeObject(const OSMetaClassBase *anObject) argument
[all...]
H A DOSSet.cpp197 bool OSSet::setObject(const OSMetaClassBase *anObject) argument
199 if (containsObject(anObject)) {
203 return members->setObject(anObject);
209 const OSMetaClassBase * anObject = 0; local
212 for (int i = 0; (anObject = array->getObject(i)); i++) {
217 if (containsObject(anObject)) {
220 if (!setObject(anObject)) {
233 void OSSet::removeObject(const OSMetaClassBase *anObject) argument
238 if (probeObject == anObject) {
246 bool OSSet::containsObject(const OSMetaClassBase *anObject) cons
[all...]
H A DOSArray.cpp237 bool OSArray::setObject(const OSMetaClassBase *anObject) argument
239 return setObject(count, anObject);
242 bool OSArray::setObject(unsigned int index, const OSMetaClassBase *anObject) argument
247 if ((index > count) || !anObject)
259 array[index] = anObject;
260 anObject->taggedRetain(OSTypeID(OSCollection));
290 replaceObject(unsigned int index, const OSMetaClassBase *anObject) argument
294 if ((index >= count) || !anObject)
299 array[index] = anObject;
300 anObject
368 getNextIndexOfObject(const OSMetaClassBase * anObject, unsigned int index) const argument
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Divar-accessor.m112 PyObject* anObject;
120 if (!PyArg_ParseTupleAndKeywords(args, kwds, "Os", keywords, &anObject, &name)) {
124 if (!PyObjCObject_Check(anObject)) {
127 anObject->ob_type->tp_name);
132 objcValue = PyObjCObject_GetObject(anObject);
165 PyObject* anObject;
176 keywords, &anObject, &name, &value, &updateRefCounts)) {
180 if (!PyObjCObject_Check(anObject)) {
183 anObject->ob_type->tp_name);
187 objcValue = PyObjCObject_GetObject(anObject);
[all...]
H A DOC_PythonArray.h112 * @param anObject The object that will be append
114 -(void)addObject:(id)anObject;
119 * @param anObject The object to insert
122 -(void)insertObject:(id)anObject atIndex:(NSUInteger)idx;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Divar-accessor.m115 PyObject* anObject;
123 if (!PyArg_ParseTupleAndKeywords(args, kwds, "Os", keywords, &anObject, &name)) {
127 if (!PyObjCObject_Check(anObject)) {
130 Py_TYPE(anObject)->tp_name);
135 objcValue = PyObjCObject_GetObject(anObject);
168 PyObject* anObject;
179 keywords, &anObject, &name, &value, &updateRefCounts)) {
183 if (!PyObjCObject_Check(anObject)) {
186 Py_TYPE(anObject)->tp_name);
190 objcValue = PyObjCObject_GetObject(anObject);
[all...]
H A DOC_PythonArray.h112 * @param anObject The object that will be append
114 -(void)addObject:(id)anObject;
119 * @param anObject The object to insert
122 -(void)insertObject:(id)anObject atIndex:(NSUInteger)idx;
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Divar-accessor.m115 PyObject* anObject;
123 if (!PyArg_ParseTupleAndKeywords(args, kwds, "Os", keywords, &anObject, &name)) {
127 if (!PyObjCObject_Check(anObject)) {
130 Py_TYPE(anObject)->tp_name);
135 objcValue = PyObjCObject_GetObject(anObject);
168 PyObject* anObject;
179 keywords, &anObject, &name, &value, &updateRefCounts)) {
183 if (!PyObjCObject_Check(anObject)) {
186 Py_TYPE(anObject)->tp_name);
190 objcValue = PyObjCObject_GetObject(anObject);
[all...]
H A DOC_PythonArray.h112 * @param anObject The object that will be append
114 -(void)addObject:(id)anObject;
119 * @param anObject The object to insert
122 -(void)insertObject:(id)anObject atIndex:(NSUInteger)idx;
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A DCKDKeyValueStore.m118 - (void)setObject:(id)anObject forKey:(NSString *)aKey
121 [CKDKeyValueStoreCollection enqueueWrite:anObject forKey:aKey from:self.identifier];
242 id anObject = @"FIXME"; //[self.store objectForKey:key];
243 [changedValues setObject:anObject forKey:key];
296 + (void)enqueueWrite:(id)anObject forKey:(NSString *)aKey from:(NSString *)identifier
301 if (aKey==NULL && (CFGetTypeID(anObject)==CFDictionaryGetTypeID()))
303 [mall->store setDictionary:anObject];
304 [self postItemsChangedNotification:[anObject allKeys] from:identifier];
308 if (anObject)
309 [mall->store setObject:anObject forKe
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/ios/wak/
H A DWAKResponder.m160 - (BOOL)tryToPerform:(SEL)anAction with:(id)anObject
163 [self performSelector:anAction withObject:anObject];

Completed in 179 milliseconds

1234