HomeSort by relevance Sort by last modified time
    Searched defs:o1 (Results 1 - 25 of 39) sorted by null

1 2

  /external/v8/test/mjsunit/regress/
regress-780423.js 35 var o1 = Class.create(); variable
38 assertTrue(o1 !== o2, "different functions");
39 assertTrue(o1.prototype !== o2.prototype, "different protos");
regress-crbug-3867.js 69 var o1 = {s1: 0, s2: 0, s3: 0}
70 o1.s0 = 0;
71 o1.s4 = 0;
72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o1));
  /external/v8/test/mjsunit/
proto.js 28 var o1 = { x: 12 };
33 assertTrue(o1.__proto__ === o2.__proto__);
object-toprimitive.js 32 var o1 = { toString: function() { return 42; },
34 var n1 = Number(o1);
35 var s1 = String(o1);
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 69 var o1 = new Object(); class
71 // Add a z property to o1 to create a map transition.
72 o1.z = 32;
73 // Add a z accessor in the prototype chain for o1 and o2.
  /external/v8/test/mjsunit/compiler/
inline-param.js 45 var o1 = {};
46 o1.f = function(o) { return o.x; };
47 for (var i = 0; i < 5; i++) TestInlineOneParam(o1, obj);
49 TestInlineOneParam(o1, obj);
50 TestInlineOneParam({f: o1.f}, {x:42});
pic.js 51 var o1 = { x: 0, y: 1 };
54 o1.f = o2.f = o3.f = function() { return 99; }
59 Test(o1);
64 Test(o1);
simple-inlining.js 44 var o1 = {};
45 o1.f = function() { return 42; };
46 for (var i = 0; i < 5; i++) TestInlineConstant(o1);
48 TestInlineConstant(o1);
49 TestInlineConstant({f: o1.f});
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Sequence.java 207 DERObject o1 = obj1.getDERObject(); local
210 if (o1 == o2 || o1.equals(o2))
ASN1Set.java 227 DERObject o1 = obj1.getDERObject(); local
230 if (o1 == o2 || o1.equals(o2))
  /external/clang/test/CodeGenCXX/
conversion-function.cpp 78 O o1, o2; local
79 g(o1, o2);
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 92 std::string o1, o2; local
94 raw_string_ostream os1(o1), os2(o2);
99 if (o2 < o1)
100 std::swap(o1, o2);
102 << o1 << ", "
  /libcore/luni/src/test/java/tests/api/java/io/
ComputeSerialVersionUIDTest.java 13 SerializationTestClass.TestClassName1 o1 = (SerializationTestClass.TestClassName1) ois local
31 SerializationTestClass.TestIntefaces o1 = (SerializationTestClass.TestIntefaces) ois local
63 SerializationTestClass.TestFieldsNone o1 = (SerializationTestClass.TestFieldsNone) ois local
101 SerializationTestClass.TestConstructorNone o1 = (SerializationTestClass.TestConstructorNone) ois local
123 SerializationTestClass.TestMehodPrivate o1 = (SerializationTestClass.TestMehodPrivate) ois local
  /libcore/luni/src/test/java/tests/api/java/util/
LinkedHashSetTest.java 306 Object[] o1 = new Object[lhs.size()]; local
308 lhs.toArray(o1);
309 for (int i = 0; i < o1.length; i++) {
310 assertTrue(lhs.contains(o1[i]));
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 438 ASN1ObjectIdentifier o1 = atv1.getType(); local
441 if (!o1.equals(o2))
RFC4519Style.java 327 ASN1ObjectIdentifier o1 = atv1.getType(); local
330 if (!o1.equals(o2))
  /external/opencv/cvaux/src/
cv3dtracker.cpp 65 static bool intersection(CvPoint3D32f o1, CvPoint3D32f p1,
450 const Cv3dTracker2dTrackedObject *o1 = find(&tracking_info[c1*num_objects], local
452 if (o1 == NULL)
456 CvPoint3D32f p1b = ImageCStoWorldCS(camera_info[c1], o1->p);
520 // The lines are defined by (o1,p1) and (o2, p2).
523 static bool intersection(CvPoint3D32f o1, CvPoint3D32f p1,
527 CvPoint3D32f x = o2 - o1;
528 CvPoint3D32f d1 = p1 - o1;
542 r1 = o1 + d1 * t1;
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 379 QScriptValue o1 = engine.evaluate("o1 = new Object; o1"); local
381 QVERIFY(engine.evaluate("o1.__proto__ = o2; o1.__proto__ === o2").toBool());
382 QVERIFY(engine.evaluate("o2.foo = 22; o1.foo == 22").toBool());
383 QVERIFY(o1.property("foo").toString() == "22");
385 QVERIFY(engine.evaluate("o1.foo == 456").toBool());
386 QVERIFY(o1.property("foo").isNumber());
393 QScriptValue object1 = engine.evaluate("o1 = new Object();")
    [all...]
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 717 int o1 = i, o2 = 0; local
718 while (++o2 < subCount && value[++o1] == subString.charAt(o2)) {
784 int o1 = i, o2 = 0; local
786 && value[++o1] == subString.charAt(o2)) {
String.java 78 * @param o1
88 public int compare(String o1, String o2) {
89 return o1.compareToIgnoreCase(o2);
657 int o1 = offset, o2 = string.offset, result; local
661 while (o1 < end) {
662 if ((c1 = value[o1++]) == (c2 = target[o2++])) {
774 int o1 = offset, o2 = string.offset; local
777 while (o1 < end) {
778 char c1 = value[o1++];
1009 int o1 = offset + i, o2 = subOffset; local
1056 int o1 = offset + i, o2 = subOffset; local
1194 int o1 = offset + i, o2 = subOffset; local
1246 int o1 = offset + thisStart, o2 = string.offset + start; local
    [all...]
  /external/chromium/chrome/browser/tabs/
tab_strip_model_unittest.cc 643 NavigationController* o1 = &contents1->controller(); local
644 EXPECT_EQ(-1, tabstrip.GetIndexOfNextTabContentsOpenedBy(o1, 3, false));
645 EXPECT_EQ(-1, tabstrip.GetIndexOfLastTabContentsOpenedBy(o1, 3));
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 150 // o1 <- Function
151 JSObjectsCluster o1 = local
170 CHECK_EQ(coarser.GetCoarseEquivalent(o1), coarser.GetCoarseEquivalent(o2));
172 CHECK_NE(coarser.GetCoarseEquivalent(o1), coarser.GetCoarseEquivalent(o3));
186 // o1 <- Function
187 JSObjectsCluster o1 = local
202 CHECK_EQ(coarser.GetCoarseEquivalent(o1), coarser.GetCoarseEquivalent(o2));
270 // <- o1 <-
275 // we expect that coarser will deduce equivalences: p ~ q ~ r, o1 ~ o2;
279 JSObjectsCluster o1 local
    [all...]
test-debug.cc 4328 v8::Handle<v8::Object> o1 = t1->GetFunction()->NewInstance(); local
    [all...]
  /dalvik/tests/089-jumbo-opcodes/src/
Main.java 775 Object o1 = new Object(); local
832 useRegs(o1);
865 void useRegs(Object o1, Object o2, Object o3, Object o4, Object o5,
869 void useRegs(Object o1) { }
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 

Completed in 400 milliseconds

1 2