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

1 2

  /external/clang/include/clang/Basic/
OperatorKinds.h 23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
IdentifierTable.h 687 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 22 | Binary | Unary
ast.ml 13 (* variant for a unary operator. *)
14 | Unary of char * expr
lexer.ml 53 | "unary" -> [< 'Token.Unary; stream >]
parser.ml 85 (* unary
87 * ::= '!' unary *)
89 (* If this is a unary operator, read it. *)
91 Ast.Unary (op, operand)
110 (* Parse the unary expression after the binary operator. *)
140 * ::= unary LETTER number? (id) *)
147 | [< 'Token.Unary >] -> "unary", 1
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 22 | Binary | Unary
ast.ml 13 (* variant for a unary operator. *)
14 | Unary of char * expr
lexer.ml 53 | "unary" -> [< 'Token.Unary; stream >]
parser.ml 99 (* unary
101 * ::= '!' unary *)
103 (* If this is a unary operator, read it. *)
105 Ast.Unary (op, operand)
166 * ::= unary LETTER number? (id) *)
173 | [< 'Token.Unary >] -> "unary", 1
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 65 case MCExpr::Unary:
  /external/chromium/testing/gmock/test/
gmock-generated-function-mockers_test.cc 82 virtual bool Unary(int x) = 0;
125 MOCK_METHOD1(Unary, bool(int)); // NOLINT
183 // Tests mocking a unary function.
185 EXPECT_CALL(mock_foo_, Unary(Eq(2)))
189 EXPECT_TRUE(foo_->Unary(2));
190 EXPECT_FALSE(foo_->Unary(2));
281 // Tests mocking a unary function with calltype.
gmock-generated-internal-utils_test.cc 83 TEST(FunctionTest, Unary) {
gmock-more-actions_test.cc 91 bool Unary(int x) { return x < 0; }
186 short Unary(long x) { return static_cast<short>(value_ + x); } // NOLINT
238 // Tests using Invoke() with a unary function.
239 TEST(InvokeTest, Unary) {
240 Action<bool(int)> a = Invoke(Unary); // NOLINT
369 // Tests using Invoke() with a unary method.
370 TEST(InvokeMethodTest, Unary) {
372 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT
478 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT
gmock-generated-actions_test.cc 80 bool Unary(int x) { return x < 0; }
175 // Tests using InvokeArgument with a unary function.
286 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT
    [all...]
  /external/v8/test/mjsunit/compiler/
short-circuit.js 82 // Unary not in value context.
85 // Unary not in value/test context.
89 // Unary not in test/value context.
  /external/llvm/include/llvm/MC/
MCExpr.h 38 Unary, ///< Unary expressions.
227 /// MCUnaryExpr - Unary assembler expressions.
232 Minus, ///< Unary minus.
234 Plus ///< Unary plus.
242 : MCExpr(MCExpr::Unary), Op(_Op), Expr(_Expr) {}
267 /// getOpcode - Get the kind of this unary expression.
270 /// getSubExpr - Get the child of this unary expression.
276 return E->getKind() == MCExpr::Unary;
  /external/llvm/lib/MC/
MCExpr.cpp 70 case MCExpr::Unary: {
464 case Unary: {
583 case Unary:
MCObjectStreamer.cpp 83 case MCExpr::Unary:
MCELFStreamer.cpp 318 case MCExpr::Unary:
  /external/valgrind/main/VEX/priv/
host_ppc_defs.c 633 /* Unary */
709 /* Floating Point Unary */
781 i->Pin.Unary.op = op;
782 i->Pin.Unary.dst = dst;
783 i->Pin.Unary.src = src;
    [all...]
host_arm_defs.c     [all...]
  /external/clang/lib/AST/
DeclarationName.cpp 246 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /external/clang/lib/Basic/
IdentifierTable.cpp 495 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /external/llvm/tools/lto/
LTOModule.cpp 534 case MCExpr::Unary:

Completed in 413 milliseconds

1 2