/external/llvm/utils/TableGen/ |
X86DisassemblerTables.h | 81 /// @param o2 - The output stream to print the decision structure to. 83 /// @param i2 - The indentation level to use with stream o2. 87 void emitModRMDecision(raw_ostream &o1, raw_ostream &o2, 109 /// @param o2 - The output stream for the decision structure itself. 111 /// @param i2 - The indent level to use with stream o2. 115 void emitOpcodeDecision(raw_ostream &o1, raw_ostream &o2, 142 /// @param o2 - The output stream to print the decision structure to. 144 /// @param i2 - The indent level to use with stream o2. 149 void emitContextDecision(raw_ostream &o1, raw_ostream &o2, 205 /// @param o2 - The output stream to print the decision structures to [all...] |
X86DisassemblerTables.cpp | 462 void DisassemblerTables::emitModRMDecision(raw_ostream &o1, raw_ostream &o2, 472 o2.indent(i2) << "{ /* ModRMDecision */" << "\n"; 475 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n"; 476 o2.indent(i2) << 0 << " /* EmptyTable */\n"; 479 o2.indent(i2) << "}"; 528 o2.indent(i2) << "{ /* struct ModRMDecision */" << "\n"; 531 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n"; 532 o2.indent(i2) << EntryNumber << " /* Table" << EntryNumber << " */\n"; 535 o2.indent(i2) << "}"; 564 void DisassemblerTables::emitOpcodeDecision(raw_ostream &o1, raw_ostream &o2, [all...] |
/external/v8/test/mjsunit/regress/ |
regress-crbug-430846.js | 12 var o2 = JSON.parse(json); variable 14 assertTrue(%HaveSameMap(o2, o3));
|
polymorphic-accessor-test-context.js | 12 var o2 = new (function() { })(); 13 Object.defineProperty(o2, "t", {get:function() { return this instanceof o1.constructor; }}); 23 f(o2);
|
regress-437713.js | 16 var o2 = { 25 o2.boom.push(42); 26 assertEquals(42, o2.boom[0]);
|
regress-crbug-137689.js | 35 var o2 = {}; variable 38 Object.defineProperty(o2, "foo", { get: getter, configurable: true }); 39 assertTrue(%HaveSameMap(o, o2)); 42 Object.defineProperty(o2, "bar", { get: getter2 }); 43 assertTrue(%HaveSameMap(o, o2)); 46 Object.defineProperty(o2, "foo", { set: setter, configurable: true }); 47 assertTrue(%HaveSameMap(o, o2));
|
regress-polymorphic-load.js | 35 var o2 = {__proto__: {x:2}}; 37 f(o2); 38 f(o2); 39 f(o2); 43 assertEquals(2, f(o2));
|
regress-polymorphic-store.js | 34 var o2 = {}; variable 35 o2.x = 5; 36 o2.y = 5; 42 store(o2, 0); 44 store(o2, 0);
|
/hardware/bsp/intel/peripheral/libupm/src/ht9170/ |
ht9170.h | 64 * @param o2 Digital pin for data output 2 68 HT9170(int dr, int o1, int o2, int o3, int o4);
|
/prebuilts/misc/common/swig/include/2.0.11/ruby/ |
rubyapi.swg | 15 VALUE o2 = target; 17 rb_ary_push(target, o2);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/ |
ldd_std.d | 11 4: d4 98 c0 80 ldda \[ %g3 \] #ASI_N, %o2 13 c: d4 b8 c0 80 stda %o2, \[ %g3 \] #ASI_N
|
ldtw_sttw.d | 11 4: d4 98 c0 80 ldtwa \[ %g3 \] #ASI_N, %o2 14 10: d4 b8 c0 80 sttwa %o2, \[ %g3 \] #ASI_N
|
ldx_stx.d | 11 4: d4 d8 c0 80 ldxa \[ %g3 \] #ASI_N, %o2 14 10: d4 f0 c0 80 stxa %o2, \[ %g3 \] #ASI_N
|
ticc-imm-reg.s | 5 ta %o0 + %o2
|
cbcond.s | 3 cwbe %o1, %o2,1f 5 cxbe %o2, %o3, 1f 6 cxbe %o2, 3, 1f 43 cwbgu %o1, %o2, 1f 45 cxbgu %o2, %o3, 1f 46 cxbgu %o2, 22, 1f 71 cwbgeu %o1, %o2, 1f 73 cxbgeu %o2, %o3, 1f 74 cxbgeu %o2, 2, 1f
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
FeatureGroupInfoTest.java | 149 public int compare(FeatureGroupInfo o1, FeatureGroupInfo o2) { 150 return compareFeatureInfoArrays(o1.features, o2.features); 157 public int compare(FeatureInfo o1, FeatureInfo o2) { 159 if (o1.name == null && o2.name != null) { 161 } else if (o1.name != null && o2.name == null) { 163 } else if (o1.name == null && o2.name == null) { 164 diff = Integer.compare(o1.reqGlEsVersion, o2.reqGlEsVersion); 166 diff = o1.name.compareTo(o2.name); 170 return Integer.compare(o1.flags, o2.flags);
|
/external/v8/test/mjsunit/ |
load_poly_effect.js | 34 function load(o, o2) { 35 return 1 + (o.x, o2.x_tagged); 39 var o2 = {x_tagged:{}}; 40 o2.x_tagged = 1; 42 load({x:1}, o2); 43 load({x:1}, o2); 44 print(load(o, o2)); 46 o2.x_tagged = true; 47 print(load(o, o2));
|
/libcore/luni/src/test/native/ |
dalvik_system_JniTest.cpp | 30 jobject o1, jobject o2, jobject o3, jobject o4, jobject o5, 36 case 1: return o2; 57 jboolean o1, jboolean o2, jboolean o3, jboolean o4, jboolean o5, 63 case 1: return o2; 84 jchar o1, jchar o2, jchar o3, jchar o4, jchar o5, 90 case 1: return o2; 111 jbyte o1, jbyte o2, jbyte o3, jbyte o4, jbyte o5, 117 case 1: return o2; 138 jshort o1, jshort o2, jshort o3, jshort o4, jshort o5, 144 case 1: return o2; [all...] |
/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/clang/test/CodeGenCXX/ |
eh-aggregated-inits-unwind.cpp | 28 ThrowCopy o2; member in struct:Container
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/ |
BaseExceptionHandler.java | 97 @Override public int compare(ExceptionHandler o1, ExceptionHandler o2) { 100 if (o2.getExceptionType() != null) { 105 String exceptionType2 = o2.getExceptionType(); 109 return exceptionType1.compareTo(o2.getExceptionType());
|
/external/valgrind/auxprogs/ |
compare-build-logs | 105 my %o2 = (); 110 $o2{$k} = 1; 116 if (! $o2{$k}) { 120 foreach my $k (keys %o2) {
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/ |
NodeComparator.java | 58 public int compare(final ICoverageNode o1, final ICoverageNode o2) { 59 final int result = first.compare(o1, o2); 60 return result == 0 ? second.compare(o1, o2) : result;
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
tls_test.cc | 171 CHECK_EQ_OR_RETURN(o2, -2); 172 o2 = -20; 219 CHECK_EQ_OR_RETURN(o2, -20);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/db/ |
test_query.py | 51 o2 = SimpleModel() 52 o2.name = "Referenced Object" 53 o2.num = 2 54 o2.put() 55 cls.objs.append(o2) 60 o3.ref = o2
|