HomeSort by relevance Sort by last modified time
    Searched refs:anObject (Results 1 - 25 of 46) sorted by null

1 2

  /external/webkit/Source/WebKit/win/
WebNotificationCenter.h 55 /* [in] */ IUnknown *anObject);
62 /* [in] */ IUnknown *anObject,
68 /* [optional][in] */ IUnknown *anObject);
72 void postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject);
WebNotification.h 34 static WebNotification* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userInfo = 0);
36 WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo);
48 /* [in] */ IUnknown *anObject,
WebNotification.cpp 35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo)
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*/,
WebNotificationCenter.cpp 113 void WebNotificationCenter::postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject)
128 if (!observedObject || !anObject || observedObject == anObject)
146 /* [in] */ IUnknown* anObject)
151 it->second.append(ObjectObserverPair(anObject, observer));
154 list.append(ObjectObserverPair(anObject, observer));
182 /* [in] */ IUnknown* anObject,
185 COMPtr<WebNotification> notification(AdoptCOM, WebNotification::createInstance(notificationName, anObject, userInfo));
186 postNotificationInternal(notification.get(), notificationName, anObject);
193 /* [optional][in] */ IUnknown* anObject)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/operator/
strictEquality.js 57 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));
  /external/webkit/Source/WebKit/win/Interfaces/
IWebNotificationCenter.idl 51 //- (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);
IWebNotification.idl 40 + (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);
IWebUndoManager.idl 133 - (void)registerUndoWithTarget:(id)target selector:(SEL)aSelector object:(id)anObject
135 HRESULT registerUndoWithTarget([in] IUnknown* target, [in] UINT aSelector, [in] IUnknown* anObject);
232 - (void)invokeWithTarget:(id)anObject
234 HRESULT invokeWithTarget([in] IUnknown* anObject);
267 - (void)setTarget:(id)anObject
269 HRESULT setTarget([in] IUnknown* anObject);
  /libcore/luni/src/main/java/java/nio/channels/
SelectionKey.java 68 * @param anObject
74 public final Object attach(Object anObject) {
76 attachment = anObject;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeRewriter.h 40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
ANTLRHashMap.h 95 - (void)addObject:(id)anObject;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeRewriter.h 40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
ANTLRHashMap.h 95 - (void)addObject:(id)anObject;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeRewriter.h 40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
ANTLRHashMap.h 95 - (void)addObject:(id)anObject;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableArray.h 28 - (void) addObject:(id)anObject;
31 - (void) insertObject:(id)anObject atIndex:(NSInteger)anIdx;
ANTLRTreeRewriter.h 40 + (ANTLRfptr *)newANTLRfptrWithRule:(SEL)aRuleAction withObject:(id)anObject;
41 -initWithRule:(SEL)ruleAction withObject:(id)anObject;
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaArrayJSC.cpp 45 JSValue JavaArray::convertJObjectToArray(ExecState* exec, jobject anObject, const char* type, PassRefPtr<RootObject> rootObject)
50 return new (exec) RuntimeArray(exec, new JavaArray(anObject, type, rootObject));
157 jobject anObject;
158 anObject = env->GetObjectArrayElement(objectArray, index);
161 if (!anObject)
166 return JavaArray::convertJObjectToArray(exec, anObject, m_type + 1, rootObject());
168 return JavaInstance::create(anObject, rootObject())->createRuntimeObject(exec);
JavaFieldJSC.cpp 106 jobject anObject = result.l;
108 if (!anObject)
113 jsresult = JavaArray::convertJObjectToArray(exec, anObject, arrayType, instance->rootObject());
114 else if (anObject)
115 jsresult = JavaInstance::create(anObject, instance->rootObject())->createRuntimeObject(exec);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 175 * @param anObject the object to compare this <code>String</code>
182 public boolean equals(XMLString anObject)
184 return m_str.equals(anObject.toString());
194 * @param anObject the object to compare this <code>String</code>
201 public boolean equals(Object anObject)
203 return m_str.equals(anObject);
XMLString.java 131 * @param anObject the object to compare this <code>String</code>
138 public abstract boolean equals(XMLString anObject);
161 * @param anObject the object to compare this <code>String</code>
168 public abstract boolean equals(Object anObject);
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_unittest_helper.h 24 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebSecurityOrigin.mm 80 - (BOOL)isEqual:(id)anObject
82 if (![anObject isMemberOfClass:[WebSecurityOrigin class]]) {
86 return [self _core]->equal([anObject _core]);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 150 Object anObject)
152 if (anObject == this)
157 if (!(anObject instanceof ECCurve.Fp))
162 ECCurve.Fp other = (ECCurve.Fp) anObject;
604 Object anObject)
606 if (anObject == this)
611 if (!(anObject instanceof ECCurve.F2m))
616 ECCurve.F2m other = (ECCurve.F2m)anObject;
  /external/clang/test/ARCMT/
Common.h 61 + (void)addObject:(id)anObject;
63 - (void)addObject:(id)anObject;

Completed in 2884 milliseconds

1 2