OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Ternary
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/tools/aidl/
AST.cpp
400
Ternary
::
Ternary
()
407
Ternary
::
Ternary
(Expression* a, Expression* b, Expression* c)
414
Ternary
::~
Ternary
()
419
Ternary
::Write(FILE* to)
AST.h
191
struct
Ternary
: public Expression
197
Ternary
();
198
Ternary
(Expression* condition, Expression* ifpart, Expression* elsepart);
199
virtual ~
Ternary
();
/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-actions_test.cc
[
all
...]
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
...]
Completed in 176 milliseconds