HomeSort by relevance Sort by last modified time
    Searched refs:o2 (Results 51 - 75 of 268) sorted by null

1 23 4 5 6 7 8 91011

  /external/llvm/utils/TableGen/
X86DisassemblerTables.cpp 299 void DisassemblerTables::emitModRMDecision(raw_ostream &o1, raw_ostream &o2,
308 o2.indent(i2) << "{ /* ModRMDecision */" << "\n";
311 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n";
312 o2.indent(i2) << 0 << " /* EmptyTable */\n";
315 o2.indent(i2) << "}";
352 o2.indent(i2) << "{ /* struct ModRMDecision */" << "\n";
355 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n";
356 o2.indent(i2) << sEntryNumber << " /* Table" << sTableNumber << " */\n";
359 o2.indent(i2) << "}";
388 void DisassemblerTables::emitOpcodeDecision(raw_ostream &o1, raw_ostream &o2,
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
TriangleAxisComparator.java 46 public int compare(BIHTriangle o1, BIHTriangle o2) {
49 Vector3f c2 = o2.getCenter();
  /external/mockito/src/org/mockito/internal/invocation/finder/
AllInvocationsFinder.java 34 public int compare(Invocation o1, Invocation o2) {
35 return Integer.valueOf(o1.getSequenceNumber()).compareTo(o2.getSequenceNumber());
  /external/skia/include/core/
SkTScopedPtr.h 72 template <class T2> bool operator==(SkTScopedPtr<T2> const& o2) const;
73 template <class T2> bool operator!=(SkTScopedPtr<T2> const& o2) const;
  /external/skia/legacy/include/core/
SkTScopedPtr.h 72 template <class T2> bool operator==(SkTScopedPtr<T2> const& o2) const;
73 template <class T2> bool operator!=(SkTScopedPtr<T2> const& o2) const;
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/
OpaqueComparator.java 73 public int compare(Geometry o1, Geometry o2) {
75 Material m2 = o2.getMaterial();
83 float d2 = distanceToCam(o2);
TransparentComparator.java 91 public int compare(Geometry o1, Geometry o2) {
93 float d2 = distanceToCam(o2);
  /external/clang/test/SemaCXX/
cxx0x-nontrivial-union.cpp 117 optional<non_trivial> o2{non_trivial()};
118 optional<non_trivial> o3{*o2};
120 if (o2)
121 o1 = o2;
122 o2 = optional<non_trivial>();
  /external/smack/src/org/jivesoftware/smackx/workgroup/util/
ModelUtil.java 35 * <LI>If <CODE>o1</CODE> and <CODE>o2</CODE> are the same object
38 * <LI>Otherwise, if either <CODE>o1</CODE> or <CODE>o2</CODE> is
40 * <LI>Otherwise, return <CODE>o1.equals(o2)</CODE>.
51 public static final boolean areEqual(Object o1, Object o2) {
52 if (o1 == o2) {
55 else if (o1 == null || o2 == null) {
59 return o1.equals(o2);
86 * <LI>If <CODE>o1</CODE> and <CODE>o2</CODE> are the same object
89 * <LI>Otherwise, if either <CODE>o1</CODE> or <CODE>o2</CODE> is
91 * <LI>Otherwise, return <CODE>!o1.equals(o2)</CODE>.
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
TimeoutService.java 121 public int compare(TimeoutToken o1, TimeoutToken o2)
123 if (o1.runTime > o2.runTime)
125 if (o1.runTime == o2.runTime)
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 359 private static boolean eq(Object o1, Object o2) {
360 return (o1 == null) ? o2 == null : o1.equals(o2);
  /external/v8/test/mjsunit/compiler/
inline-two.js 44 var o2 = {};
45 o2.size = function() { return 42; }
46 o2.g = function() { return this.size(); };
47 for (var i = 0; i < 5; i++) TestInlineX(o2);
49 TestInlineX(o2);
50 TestInlineX({g: o2.g, size:o2.size});
pic.js 52 var o2 = { y: 1, x: 0 };
54 o1.f = o2.f = o3.f = function() { return 99; }
60 Test(o2);
65 Test(o2);
inline-param.js 81 var o2 = {};
82 o2.h = function(i, j) { return i < j; };
83 for (var i = 0; i < 5; i++) TestInlineTwoParams(o2, 42);
85 TestInlineTwoParams(o2, 42);
86 TestInlineTwoParams({h: o2.h}, 42);
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 36 public int compare(Object o1, Object o2) {
37 return -(((Comparable) o1).compareTo(o2));
40 public boolean equals(Object o1, Object o2) {
41 return (((Comparable) o1).compareTo(o2)) == 0;
49 public int compare(T o1, T o2) {
50 if (o1 == o2) {
53 if (null == o1 || null == o2) {
57 T c2 = o2;
65 public int compare(String o1, String o2) {
66 if (o1 == o2) {
    [all...]
  /external/openssl/crypto/
sparccpuid.S 74 clr %o2
150 1: clr %o2
173 subcc %g0,1,%o2
174 .word 0x95408000 !rd %ccr,%o2, see comment above
175 cmp %o2,0x99
207 ld [%o0],%o2
208 1: add %o1,%o2,%o3
209 .word 0xd7e2100a !cas [%o0],%o2,%o3, compare [%o0] with %o2 and swap %o3
210 cmp %o2,%o
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedSet.java 97 private int unsafeCompare(Object o1, Object o2) {
100 ? ((Comparable<Object>) o1).compareTo(o2)
101 : ((Comparator<Object>) comparator).compare(o1, o2);
  /external/junit/src/org/junit/experimental/max/
MaxHistory.java 130 public int compare(Description o1, Description o2) {
134 if (isNewTest(o2))
137 int result= getFailure(o2).compareTo(getFailure(o1));
140 : getTestDuration(o1).compareTo(getTestDuration(o2));
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestFilter.java 138 public int compare(TestIdentifier o1, TestIdentifier o2) {
139 return o1.toString().compareTo(o2.toString());
  /external/clang/test/CodeGenCXX/
conversion-function.cpp 78 O o1, o2; local
79 g(o1, o2);
  /external/javassist/src/main/javassist/
SerialVersionUID.java 109 public int compare(Object o1, Object o2) {
111 CtField field2 = (CtField)o2;
137 public int compare(Object o1, Object o2) {
139 CtConstructor c2 = (CtConstructor)o2;
158 public int compare(Object o1, Object o2) {
160 CtMethod m2 = (CtMethod)o2;
  /external/v8/test/mjsunit/
proto.js 30 var o2 = { x: 12, y: 13 };
31 delete o2.x; // normalize
33 assertTrue(o1.__proto__ === o2.__proto__);
  /external/v8/test/mjsunit/regress/
regress-780423.js 36 var o2 = Class.create(); variable
38 assertTrue(o1 !== o2, "different functions");
39 assertTrue(o1.prototype !== o2.prototype, "different protos");
  /frameworks/base/core/tests/coretests/src/android/net/
RouteInfoTest.java 109 private void assertAreEqual(Object o1, Object o2) {
110 assertTrue(o1.equals(o2));
111 assertTrue(o2.equals(o1));
114 private void assertAreNotEqual(Object o1, Object o2) {
115 assertFalse(o1.equals(o2));
116 assertFalse(o2.equals(o1));
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 70 var o2 = new Object(); class
73 // Add a z accessor in the prototype chain for o1 and o2.
75 // The accessor should be called for o2.
76 o2.z = 27;
78 assertTrue(typeof o2.z == 'undefined');

Completed in 628 milliseconds

1 23 4 5 6 7 8 91011