HomeSort by relevance Sort by last modified time
    Searched refs:Ternary (Results 1 - 6 of 6) sorted by null

  /frameworks/base/tools/aidl/
AST.h 206 struct Ternary : public Expression
212 Ternary();
213 Ternary(Expression* condition, Expression* ifpart, Expression* elsepart);
214 virtual ~Ternary();
AST.cpp 444 Ternary::Ternary()
451 Ternary::Ternary(Expression* a, Expression* b, Expression* c)
458 Ternary::~Ternary()
463 Ternary::Write(FILE* to)
Type.cpp 404 new Ternary(v, new LiteralExpression("1"),
1054 new Ternary(
    [all...]
  /external/chromium/testing/gmock/test/
gmock-more-actions_test.cc 112 int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
190 int Ternary(int x, bool y, char z) { return value_ + x + y*z; }
252 // Tests using Invoke() with a ternary function.
253 TEST(InvokeTest, Ternary) {
254 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT
384 // Tests using Invoke() with a ternary method.
385 TEST(InvokeMethodTest, Ternary) {
387 Action<int(int, bool, char)> a = Invoke(&foo, &Foo::Ternary); // NOLINT
gmock-generated-actions_test.cc 99 int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
302 WithArgs<0, 2, 3>(Invoke(Ternary));
385 WithArgs<0, 1, 2>(Invoke(Ternary));
407 WithArgs<0, 1, 3>(Invoke(Ternary));
    [all...]
gmock-actions_test.cc     [all...]

Completed in 88 milliseconds