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

1 2 3

  /external/chromium_org/v8/test/mjsunit/regress/
regress-145201.js 42 unary(operator, "");
45 function unary(op, after) {
92 unary('{}[', ']');
93 unary('delete {}[', ']');
94 unary('(function() {}).apply(null, ', ')');
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/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 67 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/chromium_org/tools/gn/
parser.cc 269 // Unary expression.
445 scoped_ptr<UnaryOpNode> unary(new UnaryOpNode);
449 unary->set_op(op_token);
457 unary->set_operand(ParseExpression().Pass());
460 return unary.Pass();
  /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/chromium_org/v8/test/webkit/fast/js/
function-decompilation-operators.js 24 description("This test checks toString() round-trip decompilation for binary and unary operators.");
  /external/chromium_org/v8/test/mjsunit/
unary-minus-deopt.js 31 // After deopting, the multiplication for unary minus stayed in Smi
  /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/bison/etc/
bench.pl.in 180 %left NEG /* negation--unary minus */
  /external/chromium_org/v8/test/webkit/
math-transforms.js 26 "This test checks for potential edge case bugs with certain math transforms involving multiplication by 1 and unary plus."
  /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'}}
  /art/compiler/dex/quick/
gen_common.cc 1205 bool unary = false; local
    [all...]
  /external/valgrind/main/VEX/priv/
host_amd64_defs.c 1328 Bool unary; local
    [all...]
host_x86_defs.c 1220 Bool unary; local
    [all...]

Completed in 673 milliseconds

1 2 3