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

1 2

  /external/qemu/android/base/
String_unittest.cpp 206 } Comparison;
208 static const Comparison kComparisons[] = {
224 const Comparison& comp = kComparisons[n];
234 const Comparison& comp = kComparisons[n];
246 const Comparison& comp = kComparisons[n];
257 const Comparison& comp = kComparisons[n];
268 const Comparison& comp = kComparisons[n];
278 const Comparison& comp = kComparisons[n];
290 const Comparison& comp = kComparisons[n];
301 const Comparison& comp = kComparisons[n]
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
Comparison.java 24 * A comparison between two values of the same type.
26 public enum Comparison {
Code.java 69 * There are three different comparison operations each with different
74 * can compare longs. The result of the comparison is written to another
79 * point values. This comparison takes an extra parameter that sets
81 * the comparison is wrtten to another {@code int} local.
83 * Comparison#EQ} and {@link Comparison#NE} options compare either
85 * {@code int} primitives. This comparison takes a {@link Label} that
86 * will be jumped to if the comparison is true. If the comparison is
101 * comparison using {@link #compare compare()}
    [all...]
  /external/llvm/unittests/ADT/
PointerUnionTest.cpp 27 TEST_F(PointerUnionTest, Comparison) {
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 93 struct Comparison {
111 assert ((!((Cmp & L) && (Cmp & G))) && "Malformed comparison operator");
151 Comparison::Kind Cmp) const;
193 /// The desired flow is: phi ---> bump -+-> comparison-in-latch.
202 /// +-> comparison-in-latch (against upper_bound-bump),
203 /// i.e. the comparison that controls the loop execution may be using
209 /// couldn't be identified, or if the value in the latch's comparison
396 // Exactly one of the input registers to the comparison should be among
511 // The comparison operator type determines how we compute the loop
521 Comparison::Kind Cmp
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
FibonacciMaker.java 21 import com.google.dexmaker.Comparison;
54 code.compare(Comparison.LT, baseCase, i, constant2);
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 110 ifstatement->expression = new Comparison(obj, "==", NULL_VALUE);
128 Comparison* iinNotNull = new Comparison(iin, "!=", NULL_VALUE);
129 Comparison* instOfCheck = new Comparison(iin, " instanceof ",
132 instOfStatement->expression = new Comparison(iinNotNull, "&&", instOfCheck);
204 lencheck->expression = new Comparison(len, "<", new LiteralExpression("0"));
439 checklen->expression = new Comparison(v, "==", NULL_VALUE);
AST.h 171 struct Comparison : public Expression
177 Comparison(Expression* lvalue, const string& op, Expression* rvalue);
178 virtual ~Comparison();
AST.cpp 370 Comparison::Comparison(Expression* l, const string& o, Expression* r)
377 Comparison::~Comparison()
382 Comparison::Write(FILE* to)
Type.cpp 413 addTo->Add(new Assignment(v, new Comparison(new LiteralExpression("0"),
605 ifpart->expression = new Comparison(v, "!=", NULL_VALUE);
628 ifpart->expression = new Comparison(new LiteralExpression("0"), "!=",
940 ifpart->expression = new Comparison(v, "!=", NULL_VALUE);
962 ifpart->expression = new Comparison(new LiteralExpression("0"), "!=",
981 ifpart->expression = new Comparison(new LiteralExpression("0"), "!=",
1057 new Comparison(v, "!=", NULL_VALUE),
    [all...]
generate_java_rpc.cpp 279 s->expression = new Comparison(this->resultData, "!=", NULL_VALUE);
790 ifst->expression = new Comparison(new FieldVariable(THIS_VALUE, "callback"), "!=", NULL_VALUE);
945 ifst->expression = new Comparison(_presenter, "!=", NULL_VALUE);
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
short-circuit.js 93 // Comparison in value context.
96 // Comparison in value/test context.
100 // Comparison in test/value context.
  /external/clang/test/Index/
index-templates.cpp 92 typename Comparison = compare<Pair<Key, Value> >,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aepack.py 16 aetypes.Comparison(1, '< ', 10),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aepack.py 16 aetypes.Comparison(1, '< ', 10),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 164 class Comparison:
165 """An AE Comparison"""
173 return "Comparison(%r, %r, %r)" % (self.obj1, self.relo, self.obj2)
185 return isinstance(x, Comparison)
187 class NComparison(Comparison):
191 Comparison.__init__(obj1, self.relo, obj2)
aepack.py 310 return aetypes.Comparison(dict['obj1'], dict['relo'].enum, dict['obj2'])
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 476 Method lt = branchingMethod(Comparison.LT);
481 Method le = branchingMethod(Comparison.LE);
486 Method eq = branchingMethod(Comparison.EQ);
491 Method ge = branchingMethod(Comparison.GE);
496 Method gt = branchingMethod(Comparison.GT);
501 Method ne = branchingMethod(Comparison.NE);
507 private Method branchingMethod(Comparison comparison) throws Exception {
510 * if (a comparison b) {
525 code.compare(comparison, ifBody, localA, localB)
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 52 /// Create a new BinaryOperator representing a comparison.
315 // Construct the comparison.
316 Expr *Comparison =
350 new (C) IfStmt(C, SourceLocation(), nullptr, Comparison, Body,
  /external/chromium_org/third_party/webrtc/base/
timeutils_unittest.cc 28 TEST(TimeTest, Comparison) {
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 41 // Represents information about a comparison.
42 struct Comparison {
43 Comparison(SDValue Op0In, SDValue Op1In)
46 // The operands to the comparison.
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 20 import com.google.dexmaker.Comparison;
448 code.compare(Comparison.EQ, handlerNullCase, nullHandler, localHandler);
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /external/chromium_org/base/memory/
weak_ptr_unittest.cc 194 TEST(WeakPtrFactoryTest, Comparison) {

Completed in 791 milliseconds

1 2