/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
ReverseComparator.java | 49 * @param obj2 The second object to compare
53 public int compare(T obj1, T obj2) {
54 return delegate.compare(obj2, obj1); // parameters switched round
|
/external/chromium_org/v8/test/mjsunit/ |
compare-known-objects.js | 57 var obj2 = new O; 60 assertTrue(%HaveSameMap(obj1, obj2)); 61 test(obj1, obj2); 65 test(obj1, obj2);
|
object-seal.js | 102 var obj2 = {}; 105 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true }); 107 desc = Object.getOwnPropertyDescriptor(obj2, 'x'); 113 assertTrue(Object.isExtensible(obj2)); 114 assertFalse(Object.isSealed(obj2)); 115 Object.seal(obj2); 119 assertTrue(Object.isFrozen(obj2)); 120 assertFalse(Object.isExtensible(obj2)); 121 assertTrue(Object.isSealed(obj2)); 123 desc = Object.getOwnPropertyDescriptor(obj2, 'x') [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x501/ |
AttributeTypeAndValueComparator.java | 42 * @param obj2 47 public int compare(Object obj1, Object obj2) { 48 if (obj1 == obj2) { 53 AttributeTypeAndValue atav2 = (AttributeTypeAndValue) obj2;
|
/external/chromium_org/base/ |
id_map_unittest.cc | 29 TestObject obj2; local 36 int32 id2 = map.Add(&obj2); 41 EXPECT_EQ(&obj2, map.Lookup(id2)); 52 map.AddWithID(&obj2, 2); 54 EXPECT_EQ(&obj2, map.Lookup(2)); 63 TestObject obj2; local 67 map.Add(&obj2); 138 TestObject obj2; local 142 map.Add(&obj2); 166 TestObject obj2; local [all...] |
/external/llvm/test/CodeGen/X86/ |
rd-mod-wr-eflags.ll | 64 %struct.obj2 = type { i64, i32, i16, i8 } 66 declare void @other(%struct.obj2* ) nounwind; 69 define void @example_dec(%struct.obj2* %o) nounwind uwtable ssp { 72 %s64 = getelementptr inbounds %struct.obj2* %o, i64 0, i32 0 83 %s32 = getelementptr inbounds %struct.obj2* %o, i64 0, i32 1 94 %s16 = getelementptr inbounds %struct.obj2* %o, i64 0, i32 2 105 %s8 = getelementptr inbounds %struct.obj2* %o, i64 0, i32 3 115 tail call void @other(%struct.obj2* %o) nounwind 123 define void @example_inc(%struct.obj2* %o) nounwind uwtable ssp { 126 %s64 = getelementptr inbounds %struct.obj2* %o, i64 0, i32 [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XBoolean.java | 143 * @param obj2 Object to compare to this 149 public boolean equals(XObject obj2) 155 if (obj2.getType() == XObject.CLASS_NODESET) 156 return obj2.equals(this); 160 return m_val == obj2.bool();
|
XObject.java | 531 * @param obj2 Object to compare this to 537 public boolean lessThan(XObject obj2) 546 if (obj2.getType() == XObject.CLASS_NODESET) 547 return obj2.greaterThan(this); 549 return this.num() < obj2.num(); 555 * @param obj2 Object to compare this to 561 public boolean lessThanOrEqual(XObject obj2) 570 if (obj2.getType() == XObject.CLASS_NODESET) 571 return obj2.greaterThanOrEqual(this); 573 return this.num() <= obj2.num() [all...] |
XNodeSet.java | 465 * @param obj2 Object to compare this nodeset to 472 public boolean compare(XObject obj2, Comparator comparator) 477 int type = obj2.getType(); 495 DTMIterator list2 = ((XNodeSet) obj2).iterRaw(); 552 double num2 = obj2.num(); 567 double num2 = obj2.num(); 585 XMLString s2 = obj2.xstr(); 611 XMLString s2 = obj2.xstr(); 629 result = comparator.compareNumbers(this.num(), obj2.num()); 638 * @param obj2 object to compare this nodeset t [all...] |
XNull.java | 122 * @param obj2 Object to compare this to 126 public boolean equals(XObject obj2) 128 return obj2.getType() == CLASS_NULL;
|
/external/chromium_org/third_party/libxslt/libxslt/ |
functions.c | 227 xmlXPathObjectPtr obj, obj2 = NULL; local 253 obj2 = valuePop(ctxt); 269 valuePush(ctxt, xmlXPathObjectCopy(obj2)); 284 if (obj2 != NULL) 285 xmlXPathFreeObject(obj2); 297 if (obj2 != NULL) 298 xmlXPathFreeObject(obj2); 305 if ((obj2 != NULL) && (obj2->nodesetval != NULL) && 306 (obj2->nodesetval->nodeNr > 0) & 353 xmlXPathObjectPtr obj1, obj2; local [all...] |
/external/libxslt/libxslt/ |
functions.c | 227 xmlXPathObjectPtr obj, obj2 = NULL; local 253 obj2 = valuePop(ctxt); 269 valuePush(ctxt, xmlXPathObjectCopy(obj2)); 284 if (obj2 != NULL) 285 xmlXPathFreeObject(obj2); 297 if (obj2 != NULL) 298 xmlXPathFreeObject(obj2); 305 if ((obj2 != NULL) && (obj2->nodesetval != NULL) && 306 (obj2->nodesetval->nodeNr > 0) & 353 xmlXPathObjectPtr obj1, obj2; local [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
proto-chain-constant.js | 35 var obj2 = c(obj3, { f2: { value: function() { return 2; }, writable: true }}); variable 36 var obj1 = c(obj2, { f1: { value: function() { return 1; }, writable: true }}); 54 obj2.f3 = function() { return 6; };
|
proto-chain-load.js | 34 var obj2 = Object.create(obj3, { f2: {value: 2} }); 35 var obj1 = Object.create(obj2, { f1: {value: 1} });
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2374.js | 31 var obj2 = JSON.parse(msg); variable 33 assertEquals(JSON.stringify(obj), JSON.stringify(obj2)); 34 assertEquals(JSON.stringify(obj, null, 0), JSON.stringify(obj2));
|
regress-687.js | 67 var obj2 = { get p() {}}; 68 Object.defineProperty(obj2, 'p', {get: undefined}) 69 assertTrue("p" in obj2); 70 desc = Object.getOwnPropertyDescriptor(obj2, "p");
|
/external/clang/test/CXX/special/class.copy/ |
p15-0x.cpp | 17 bar obj2(obj);
|
/external/clang/test/SemaObjC/ |
class-method-lookup.m | 42 id obj2 = obj;
|
warn-strict-selector-match.m | 25 id obj2 = obj; 27 [obj2 setWindow:0]; // expected-warning {{multiple methods named 'setWindow:' found}}
|
/external/clang/test/SemaObjCXX/ |
arc-bridged-cast.mm | 20 id obj2 = (__bridge_transfer StringType)CFCreateString();
|
/external/v8/test/mjsunit/regress/ |
regress-687.js | 67 var obj2 = { get p() {}}; 68 Object.defineProperty(obj2, 'p', {get: undefined}) 69 assertTrue("p" in obj2); 70 desc = Object.getOwnPropertyDescriptor(obj2, "p");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pep247.py | 27 obj2 = module.new(key, 'string') 35 obj2 = module.new('string')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pep247.py | 27 obj2 = module.new(key, 'string') 35 obj2 = module.new('string')
|
/art/runtime/ |
reference_table.cc | 70 bool operator()(const mirror::Object* obj1, const mirror::Object* obj2) 77 } else if (obj2 == NULL) { 82 } else if (obj2 == kClearedJniWeakGlobal) { 87 if (obj1->GetClass() != obj2->GetClass()) { 88 return obj1->GetClass()->IdentityHashCode() < obj2->IdentityHashCode(); 92 size_t count2 = obj2->SizeOf(); 97 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
|
/dalvik/vm/ |
ReferenceTable.cpp | 174 const Object* obj2 = *((Object* const*) vobj2); local 178 if (obj2 == NULL) { 183 } else if (obj2 == NULL) { 187 if (obj2 == kClearedJniWeakGlobal) { 192 } else if (obj2 == kClearedJniWeakGlobal) { 196 if (obj1->clazz != obj2->clazz) { 197 return (u1*)obj1->clazz - (u1*)obj2->clazz; 200 size_t count2 = getElementCount(obj2); 204 return (u1*)obj1 - (u1*)obj2;
|