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

1 2

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
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
ast.ml 13 (* variant for a unary operator. *)
14 | Unary of char * expr
lexer.ml 53 | "unary" -> [< 'Token.Unary; stream >]
codegen.ml 20 | Ast.Unary (op, operand) ->
22 let callee = "unary" ^ (String.make 1 op) in
26 | None -> raise (Error "unknown unary operator")
  /ndk/sources/host-tools/nawk-20071023/
b.c 48 #define UNARY case STAR: case PLUS: case QUEST:
53 unary (STAR, PLUS, QUEST): left is child, right is null
191 UNARY
215 UNARY
368 UNARY
636 return (unary(np));
639 return (unary(op2(ALL, NIL, NIL)));
642 return (unary(op2(ALL, NIL, NIL)));
645 return (unary(op2(DOT, NIL, NIL)));
649 return (unary(np))
697 Node *unary(Node *np) function
    [all...]
proto.h 65 extern Node *unary(Node *);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
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
codegen.ml 29 | Ast.Unary (op, operand) ->
31 let callee = "unary" ^ (String.make 1 op) in
35 | None -> raise (Error "unknown unary operator")
  /external/v8/test/mjsunit/regress/
regress-1167.js 48 // Similar test with a different subexpression of unary !.
63 // A similar issue, different subexpression of unary ! (e0 !== e1 is
regress-815.js 32 // The code generated for unary + assumes that we are not in a spilled
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 222 * Bottle-neck compilation of a unary operation.
224 * @param unary The parent unary operation.
227 * @return The unary argument.
231 private Expression compileUnary(UnaryOperation unary, int opPos)
237 unary.setRight(compile(rightPos));
239 return unary;
439 * Compile a unary '-' operation.
    [all...]
  /external/clang/test/SemaTemplate/
dependent-names.cpp 248 namespace unary { namespace in namespace:PR10053
258 ns::Data operator!(ns::Data); // expected-note {{should be declared prior to the call site or in namespace 'PR10053::unary::ns'}}
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
JavaPerformanceDetector.java 355 UnaryExpression unary = (UnaryExpression) expression; local
356 addReferencedVariables(variables, unary.astOperand());
  /external/valgrind/main/VEX/priv/
host_x86_defs.c 1165 Bool unary; local
    [all...]
host_amd64_defs.c 1416 Bool unary; local
    [all...]
  /external/v8/test/mjsunit/
smi-ops-inlined.js 219 // Check that relations on unary ops work.
230 // Right hand side of unary minus is overwritable.
smi-ops.js 226 // Check that relations on unary ops work.
237 // Right hand side of unary minus is overwritable.
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
glslang_tab.cpp     [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.cpp 781 bool unary = false; local
790 unary = true;
794 unary = true;
857 if (unary) {
    [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenDriver.cpp 826 bool unary = false; local
836 unary = true;
840 unary = true;
902 if (unary) {
    [all...]
  /external/valgrind/main/perf/
tinycc.c 12747 static void unary(void) function
    [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
deltablue.js 311 * A unary input constraint used to mark a variable that the client
  /external/v8/benchmarks/
deltablue.js 308 * A unary input constraint used to mark a variable that the client

Completed in 488 milliseconds

1 2