Home
last modified time | relevance | path

Searched refs:obj1 (Results 1 – 14 of 14) sorted by relevance

/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Object/
Dregress-96284-002.js41 var obj1 = {}; variable
48 obj1 = Error(cnTestString);
49 obj2 = eval(uneval(obj1));
51 expect = obj1.toSource();
55 obj1 = EvalError(cnTestString);
56 obj2 = eval(uneval(obj1));
58 expect = obj1.toSource();
62 obj1 = RangeError(cnTestString);
63 obj2 = eval(uneval(obj1));
65 expect = obj1.toSource();
[all …]
Dregress-96284-001.js41 var obj1 = {}; variable
48 obj1 = Error(cnTestString);
49 obj2 = eval(obj1.toSource());
51 expect = obj1.toSource();
55 obj1 = EvalError(cnTestString);
56 obj2 = eval(obj1.toSource());
58 expect = obj1.toSource();
62 obj1 = RangeError(cnTestString);
63 obj2 = eval(obj1.toSource());
65 expect = obj1.toSource();
[all …]
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
D15.10.4.1-1.js56 var obj1 = {}; var obj2 = {}; variable
86 obj1 = new RegExp(s);
87 obj2 = new RegExp(obj1);
93 expect = obj1[prop];
D15.10.4.1-2.js62 var obj1 = {}; var obj2 = {}; variable
92 obj1 = new RegExp(s);
93 obj2 = new RegExp(obj1, undefined); // see introduction to bug
99 expect = obj1[prop];
D15.10.4.1-4.js63 var obj1 = {}; var obj2 = {}; variable
104 obj1 = new RegExp(s, f);
105 obj2 = new RegExp(obj1, undefined); // see introduction to bug
111 expect = obj1[prop];
D15.10.4.1-3.js57 var obj1 = {}; var obj2 = {}; variable
98 obj1 = new RegExp(s, f);
99 obj2 = new RegExp(obj1);
105 expect = obj1[prop];
D15.10.4.1-5-n.js53 var obj1 = {}; var obj2 = {}; variable
92 obj1 = new RegExp(s, f);
93 obj2 = new RegExp(obj1, f); // this should cause an exception
/external/openssl/crypto/x509v3/
Dv3_pmaps.c117 ASN1_OBJECT *obj1, *obj2; in v2i_POLICY_MAPPINGS() local
134 obj1 = OBJ_txt2obj(val->name, 0); in v2i_POLICY_MAPPINGS()
136 if(!obj1 || !obj2) { in v2i_POLICY_MAPPINGS()
148 pmap->issuerDomainPolicy = obj1; in v2i_POLICY_MAPPINGS()
/external/apache-http/src/org/apache/http/util/
DLangUtils.java63 public static boolean equals(final Object obj1, final Object obj2) { in equals() argument
64 return obj1 == null ? obj2 == null : obj1.equals(obj2); in equals()
/external/jdiff/src/jdiff/
DComparePkgPdiffs.java16 public int compare(Object obj1, Object obj2){ in compare() argument
17 PackageDiff p1 = (PackageDiff)obj1; in compare()
DCompareClassPdiffs.java16 public int compare(Object obj1, Object obj2){ in compare() argument
17 ClassDiff c1 = (ClassDiff)obj1; in compare()
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-44009.js28 var obj1 = {}; variable
50 testThis(obj1);
/external/icu4c/test/intltest/
Dmsfmrgts.cpp219 Formattable obj1 = params[i]; in Test4031438() local
221 if(obj1.getType() == Formattable::kString) in Test4031438()
222 temp1 = obj1.getString(temp1); in Test4031438()
225 switch (obj1.getType()) { in Test4031438()
226 case Formattable::kLong: fmt->format(obj1.getLong(), temp1); break; in Test4031438()
227 case Formattable::kInt64: fmt->format(obj1.getInt64(), temp1); break; in Test4031438()
228 case Formattable::kDouble: fmt->format(obj1.getDouble(), temp1); break; in Test4031438()
/external/webkit/WebCore/rendering/
DRenderLayer.cpp2291 static RenderObject* commonAncestor(RenderObject* obj1, RenderObject* obj2) in commonAncestor() argument
2293 if (!obj1 || !obj2) in commonAncestor()
2296 for (RenderObject* currObj1 = obj1; currObj1; currObj1 = currObj1->hoverAncestor()) in commonAncestor()