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

1 2

  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Object/
regress-96284-001.js 28 * Method: define obj2 = eval(obj1.toSource()) and verify that
29 * obj2.toSource() == obj1.toSource().
41 var obj1 = {};
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)
112 obj1 = function(x) {function g(y){return y+1;} return g(x);}; function
    [all...]
regress-96284-002.js 28 * Method: define obj2 = eval(uneval(obj1)) and verify that
29 * obj2.toSource() == obj1.toSource().
41 var obj1 = {};
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)
112 obj1 = function(x) {function g(y){return y+1;} return g(x);}; function
    [all...]
  /external/jdiff/src/jdiff/
CompareClassPdiffs.java 16 public int compare(Object obj1, Object obj2){
17 ClassDiff c1 = (ClassDiff)obj1;
ComparePkgPdiffs.java 16 public int compare(Object obj1, Object obj2){
17 PackageDiff p1 = (PackageDiff)obj1;
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-44009.js 28 var obj1 = {};
50 testThis(obj1);
  /packages/apps/Email/src/org/apache/commons/io/comparator/
DefaultFileComparator.java 58 * @param obj1 The first file to compare
63 public int compare(Object obj1, Object obj2) {
64 File file1 = (File)obj1;
ReverseComparator.java 48 * @param obj1 The first object to compare
53 public int compare(Object obj1, Object obj2) {
54 return delegate.compare(obj2, obj1); // parameters switched round
LastModifiedFileComparator.java 59 * @param obj1 The first file to compare
67 public int compare(Object obj1, Object obj2) {
68 File file1 = (File)obj1;
NameFileComparator.java 94 * @param obj1 The first file to compare
101 public int compare(Object obj1, Object obj2) {
102 File file1 = (File)obj1;
PathFileComparator.java 94 * @param obj1 The first file to compare
102 public int compare(Object obj1, Object obj2) {
103 File file1 = (File)obj1;
ExtensionFileComparator.java 97 * @param obj1 The first file to compare
105 public int compare(Object obj1, Object obj2) {
106 File file1 = (File)obj1;
SizeFileComparator.java 100 * @param obj1 The first file to compare
108 public int compare(Object obj1, Object obj2) {
109 File file1 = (File)obj1;
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 35 Object obj1 = new Object(); field in class:ObjectTest
73 assertTrue("Same object should be equal", obj1.equals(obj1));
74 assertTrue("Different objects should not be equal", !obj1.equals(obj2));
201 obj1.hashCode() == obj1.hashCode());
221 synchronized (obj1) {
224 obj1.wait();// Wait for ever.
249 synchronized (obj1) {
255 obj1.wait(1000, 0)
    [all...]
  /external/apache-http/src/org/apache/http/util/
LangUtils.java 63 public static boolean equals(final Object obj1, final Object obj2) {
64 return obj1 == null ? obj2 == null : obj1.equals(obj2);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.4.1-1.js 43 * is morally the same as the original RegExp object obj1. Of course, they
46 * In this test, the initial RegExp object obj1 will not include a flag. The flags
56 var obj1 = {}; var obj2 = {};
86 obj1 = new RegExp(s);
87 obj2 = new RegExp(obj1);
93 expect = obj1[prop];
15.10.4.1-2.js 43 * is morally the same as the original RegExp object obj1. Of course, they
46 * In this test, the initial RegExp object obj1 will not include a flag. This test is
49 * obj2 = new RegExp(obj1, undefined);
53 * obj2 = new RegExp(obj1);
62 var obj1 = {}; var obj2 = {};
92 obj1 = new RegExp(s);
93 obj2 = new RegExp(obj1, undefined); // see introduction to bug
99 expect = obj1[prop];
15.10.4.1-3.js 43 * is morally the same as the original RegExp object obj1. Of course, they
46 * In this test, the initial RegExp obj1 will include a flag. The flags
57 var obj1 = {}; var obj2 = {};
98 obj1 = new RegExp(s, f);
99 obj2 = new RegExp(obj1);
105 expect = obj1[prop];
15.10.4.1-4.js 43 * is morally the same as the original RegExp object obj1. Of course, they
46 * In this test, the initial RegExp object obj1 will include a flag. This test is
49 * obj2 = new RegExp(obj1, undefined);
53 * obj2 = new RegExp(obj1);
63 var obj1 = {}; var obj2 = {};
104 obj1 = new RegExp(s, f);
105 obj2 = new RegExp(obj1, undefined); // see introduction to bug
111 expect = obj1[prop];
15.10.4.1-5-n.js 53 var obj1 = {}; var obj2 = {};
92 obj1 = new RegExp(s, f);
93 obj2 = new RegExp(obj1, f); // this should cause an exception
  /external/v8/test/mjsunit/
object-define-property.js 57 var obj1 = {};
100 Object.defineProperty(obj1, "foo", undefined);
108 Object.defineProperty(obj1, "foo", emptyDesc);
111 assertEquals(undefined, obj1.foo);
115 var desc = Object.getOwnPropertyDescriptor(obj1, "foo");
126 desc = Object.getOwnPropertyDescriptor(obj1, "bar");
131 Object.defineProperty(obj1, "foo", accessorConfigurable);
139 Object.defineProperty(obj1, "bar", accessorConfigurable);
140 desc = Object.getOwnPropertyDescriptor(obj1, "bar");
147 assertEquals(1, obj1.bar = 1)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValueComparator.java 40 * @param obj1
47 public int compare(Object obj1, Object obj2) {
48 if (obj1 == obj2) {
52 AttributeTypeAndValue atav1 = (AttributeTypeAndValue) obj1;
  /dalvik/vm/test/
TestIndirectRefTable.c 39 Object* obj1 = dvmAllocObject(clazz, ALLOC_DONT_TRACK); local
62 iref1 = dvmAddToIndirectRefTable(&irt, cookie, obj1);
70 dvmGetFromIndirectRefTable(&irt, iref1) != obj1 ||
77 obj0, obj1, obj2);
80 DBUG_MSG("+++ obj1=%p --> iref1=%p\n", obj1, iref1);
108 iref1 = dvmAddToIndirectRefTable(&irt, cookie, obj1);
135 iref1 = dvmAddToIndirectRefTable(&irt, cookie, obj1);
181 iref1 = dvmAddToIndirectRefTable(&irt, cookie, obj1);
192 iref1 = dvmAddToIndirectRefTable(&irt, cookie, obj1);
323 Object* obj1 = dvmAllocObject(clazz, ALLOC_DONT_TRACK); local
    [all...]
  /external/openssl/crypto/x509v3/
v3_pmaps.c 119 ASN1_OBJECT *obj1, *obj2;
136 obj1 = OBJ_txt2obj(val->name, 0);
138 if(!obj1 || !obj2) {
150 pmap->issuerDomainPolicy = obj1;
  /external/chromium/base/
id_map_unittest.cc 30 TestObject obj1; local
33 int32 id1 = map.Add(&obj1);
36 EXPECT_EQ(&obj1, map.Lookup(id1));
42 EXPECT_EQ(&obj1, map.Lookup(id1));
53 map.AddWithID(&obj1, 1);
55 EXPECT_EQ(&obj1, map.Lookup(1));
62 TestObject obj1; local
66 map.Add(&obj1);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Collection.java 32 private DEREncodable obj1; field in class:ASN1Collection
56 case 1: return obj1;
102 case 1: obj1 = obj; break;
136 case 1: obj1 = obj; break;
189 case 1: return obj1;

Completed in 463 milliseconds

1 2