/external/v8/test/cctest/ |
test-accessors.cc | 63 Local<Script> getter = v8_compile("var obj = new Fun(); obj.foo;"); 65 Local<Script> setter = v8_compile("obj.foo = 901;"); 138 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 139 obj->SetAccessor(v8_str("x"), XGetter, XSetter); 141 x_holder = obj->NewInstance(); 144 context->Global()->Set(v8_str("obj"), x_receiver); 146 "obj.__proto__ = holder;" 150 " result.push(obj.x);" 180 context->Global()->Set(v8_str("obj"), instance) 220 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 254 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 280 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 298 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 310 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 343 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 380 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 412 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local 440 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); local [all...] |
/cts/apps/CtsVerifier/jni/audioquality/ |
Wrapper.cpp | 35 JNIEnv *env, jobject obj, 40 JNIEnv *env, jobject obj, 44 JNIEnv *env, jobject obj, 49 JNIEnv *env, jobject obj, 53 JNIEnv *env, jobject obj, 57 JNIEnv *env, jobject obj, 66 JNIEnv *env, jobject obj, 94 JNIEnv *env, jobject obj, 122 JNIEnv *env, jobject obj, 154 JNIEnv *env, jobject obj, [all...] |
/cts/tools/vm-tests/src/util/build/ |
DexBuildStep.java | 65 public boolean equals(Object obj) { 66 if (super.equals(obj)) { 67 DexBuildStep other = (DexBuildStep) obj;
|
JavacBuildStep.java | 75 public boolean equals(Object obj) { 77 if (super.equals(obj)) 79 JavacBuildStep other = (JavacBuildStep) obj;
|
/dalvik/vm/ |
ReferenceTable.c | 55 * Add "obj" to "pRef". 57 bool dvmAddToReferenceTable(ReferenceTable* pRef, Object* obj) 59 assert(dvmIsValidObject(obj)); 60 assert(obj != NULL); 93 *pRef->nextEntry++ = obj; 101 Object* obj) 107 if (*ptr == obj) 114 * Remove "obj" from "pRef". We start at the end of the list (where the 118 * Most of the time "obj" is at or near the end of the list. If not, we 122 Object* obj) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/ |
PBES2Algorithms.java | 23 ASN1Sequence obj) 25 super(obj); 27 Enumeration e = obj.getObjects();
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/ |
DSAParameters.java | 58 Object obj) 60 if (!(obj instanceof DSAParameters)) 65 DSAParameters pm = (DSAParameters)obj;
|
/external/chromium/third_party/icu/source/test/intltest/ |
icusvtst.h | 51 void msgstr(const UnicodeString& message, UObject* obj, UBool err = TRUE); 52 void logstr(const UnicodeString& message, UObject* obj) { 53 msgstr(message, obj, FALSE);
|
/external/icu4c/i18n/unicode/ |
format.h | 132 * @param obj The object to format. 139 UnicodeString& format(const Formattable& obj, 150 * @param obj The object to format. 159 virtual UnicodeString& format(const Formattable& obj, 170 * @param obj The object to format. 179 virtual UnicodeString& format(const Formattable& obj,
|
/external/icu4c/test/intltest/ |
icusvtst.h | 51 void msgstr(const UnicodeString& message, UObject* obj, UBool err = TRUE); 52 void logstr(const UnicodeString& message, UObject* obj) { 53 msgstr(message, obj, FALSE);
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
UserInfo.java | 75 * @param obj Object to set 78 public boolean equals(Object obj) { 79 if (getClass() != obj.getClass()) { 82 UserInfo other = (UserInfo) obj;
|
/external/openssl/crypto/objects/ |
obj_dat.pl | 11 $A=$obj_len{$obj{$nid{$a}}}; 12 $B=$obj_len{$obj{$nid{$b}}}; 17 $A=$obj_der{$obj{$nid{$a}}}; 18 $B=$obj_der{$obj{$nid{$b}}}; 79 $obj{$1}=$v; 118 if (defined($obj{$nid{$i}})) 120 $v=$objd{$obj{$nid{$i}}}; 131 $obj_der{$obj{$nid{$i}}}=$z; 132 $obj_len{$obj{$nid{$i}}}=$length; 135 $z,$lvalues,$obj{$nid{$i}})) [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
ExtensionRegistryLite.java | 161 public boolean equals(final Object obj) { 162 if (!(obj instanceof ObjectIntPair)) { 165 final ObjectIntPair other = (ObjectIntPair)obj;
|
/external/webkit/JavaScriptCore/runtime/ |
ErrorConstructor.cpp | 43 ErrorInstance* obj = new (exec) ErrorInstance(exec->lexicalGlobalObject()->errorStructure()); local 45 obj->putDirect(exec->propertyNames().message, jsString(exec, args.at(0).toString(exec))); 46 return obj;
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
regress-49286.js | 46 var obj = new testObject(); 49 actual = f.call(obj); 54 actual = g.call(obj);
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Object/ |
regress-192105.js | 114 var obj = {F:F, G:G}; 116 obj.F(); // sets |actual| 121 obj.G(); // sets |actual|
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-156354.js | 80 var obj = {prop1:null}; 83 actual = obj.propertyIsEnumerable('prop1'); 88 actual = obj.propertyIsEnumerable('prop2'); 94 eval("actual = obj.propertyIsEnumerable('prop2')");
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/ |
regress-191276.js | 82 var obj = {a: 'aaa'}; 85 actual = F.call(obj, 'a'); 90 actual = F.apply(obj, ['a']);
|
/external/webkit/WebCore/manual-tests/inspector-wrappers/ |
inspector-wrappers-test-utils.js | 5 var obj = doAttack.caller; 7 i < 1000 && (obj.arguments.length == 0 || !obj.arguments[0].target); 9 obj = obj.caller; 12 var win = obj.arguments[0].target.ownerDocument.defaultView;
|
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfo.java | 67 public boolean equals(Object obj) { 68 if (obj instanceof ClassPathPackageInfo) { 69 ClassPathPackageInfo that = (ClassPathPackageInfo) obj;
|
/libcore/luni/src/test/java/tests/api/javax/security/auth/ |
SubjectTest.java | 85 Object obj = Subject.doAs(null, pa); local 91 Object obj = Subject.doAs(subj, pa); local 97 Object obj = Subject.doAs(subj, paNull); local 118 Object obj = Subject.doAs(null, pea); local 124 Object obj = Subject.doAs(subj, pea); local 130 Object obj = Subject.doAs(subj, peaNull); local 166 Object obj = Subject.doAsPrivileged(null, pa, acc); local 172 Object obj = Subject.doAsPrivileged(subj, pa, acc); local 178 Object obj = Subject.doAsPrivileged(subj, paNull, acc); local 202 Object obj = Subject.doAsPrivileged(null, pea, acc) local 208 Object obj = Subject.doAsPrivileged(subj, pea, acc); local 214 Object obj = Subject.doAsPrivileged(subj, peaNull, acc); local [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ |
nislib.h | 38 * nis_add (name, obj) adds objects to the NIS+ namespace. 40 * const nis_object *obj: object members zo_name and zo_domain will be 43 * nis_remove (name, obj) removes objects from the NIS+ namespace. 45 * const nis_object *obj: if not NULL, it is assumed to point to a copy 52 * nis_modify (name, obj) can change specific attributes of an object 57 extern nis_result *nis_add (const_nis_name name, const nis_object *obj) 60 const nis_object *obj) __THROW; 62 const nis_object *obj) __THROW; 66 * nis_list (table_name, flags, callback(table_name, obj, userdata), userdata) 81 * nis_add_entry (table_name, obj, flags) will add the NIS+ object to th [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallManager.java | 100 // default phone as the first phone registered, which is PhoneBase obj 184 * Get the corresponding PhoneBase obj 187 * @return the corresponding PhoneBase obj in Phone if Phone 188 * is a PhoneProxy obj 189 * or the Phone itself if Phone is not a PhoneProxy obj 199 * Check if two phones refer to the same PhoneBase obj 206 * foregroundCall.getPhone() returns GSMPhone obj. On the other hand, 207 * PhoneFactory.getDefaultPhone() returns PhoneProxy obj, which has a class 215 * @param p1 is the first Phone obj 216 * @param p2 is the second Phone obj [all...] |
/external/guava/src/com/google/common/base/ |
Predicates.java | 262 @Override public boolean equals(Object obj) { 263 if (obj instanceof NotPredicate<?>) { 264 NotPredicate<?> that = (NotPredicate<?>) obj; 300 @Override public boolean equals(Object obj) { 301 if (obj instanceof AndPredicate<?>) { 302 AndPredicate<?> that = (AndPredicate<?>) obj; 336 @Override public boolean equals(Object obj) { 337 if (obj instanceof OrPredicate<?>) { 338 OrPredicate<?> that = (OrPredicate<?>) obj; 363 @Override public boolean equals(Object obj) { [all...] |
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/ |
PluginObject.cpp | 226 static bool pluginHasProperty(NPObject *obj, NPIdentifier name) 234 static bool pluginHasMethod(NPObject *obj, NPIdentifier name) 242 static bool pluginGetProperty(NPObject* obj, NPIdentifier name, NPVariant* result) 244 PluginObject* plugin = reinterpret_cast<PluginObject*>(obj); 274 browser->setexception(obj, "plugin object testThrowExceptionProperty SUCCESS"); 280 static bool pluginSetProperty(NPObject* obj, NPIdentifier name, const NPVariant* variant) 282 PluginObject* plugin = reinterpret_cast<PluginObject*>(obj); 293 browser->setexception(obj, "plugin object testThrowExceptionProperty SUCCESS"); 300 static bool testDOMAccess(PluginObject* obj, const NPVariant*, uint32_t, NPVariant* result) 304 if (browser->getvalue(obj->npp, NPNVPluginElementNPObject, &elementObject) == NPERR_NO_ERROR) [all...] |