Searched defs:precedence (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
89 (* If this is a binop, find its precedence. *)
91 let token_prec = precedence c in
108 let next_prec = precedence c2 in
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
89 (* If this is a binop, find its precedence. *)
91 let token_prec = precedence c in
108 let next_prec = precedence c2 in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
100 (* If this is a binop, find its precedence. *)
102 let token_prec = precedence c in
119 let next_prec = precedence c2 in
163 (* Read the precedence if present. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
114 (* If this is a binop, find its precedence. *)
116 let token_prec = precedence c in
133 let next_prec = precedence c2 in
189 (* Read the precedence if present. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
100 (* If this is a binop, find its precedence. *)
102 let token_prec = precedence c in
119 let next_prec = precedence c2 in
163 (* Read the precedence if present. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
H A Dparser.ml5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
114 (* If this is a binop, find its precedence. *)
116 let token_prec = precedence c in
133 let next_prec = precedence c2 in
189 (* Read the precedence if present. *)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DLeftRecursiveRuleAnalyzer.java144 int nextPrec = precedence(alt);
230 predST.add("opPrec", precedence(alt));
310 public int precedence(int alt) { method in class:LeftRecursiveRuleAnalyzer
315 int p = precedence(alt);
/external/bison/src/
H A Dprint-xml.c393 int precedence = symbols[token_translations[i]]->prec; local
402 if (precedence)
403 fprintf (out, " prec=\"%d\"", precedence);
/external/deqp/framework/randomshaders/
H A DrsgGeneratorState.hpp85 void pushPrecedence (int precedence) { m_precedenceStack.push_back(precedence); } argument
/external/selinux/mcstrans/src/
H A Dmcscolor.c265 static const unsigned precedence[N_COLOR][N_COLOR - 1] = { variable
322 /* propagate colors according to the precedence rules */
326 if (mask & (1 << precedence[i][j])) {
327 items[i] = items[precedence[i][j]];
/external/skia/src/sksl/
H A DSkSLGLSLCodeGenerator.cpp416 Precedence precedence = get_binary_precedence(b.fOperator); local
417 if (precedence >= parentPrecedence) {
420 this->writeExpression(*b.fLeft, precedence);
422 this->writeExpression(*b.fRight, precedence);
423 if (precedence >= parentPrecedence) {
/external/pdfium/third_party/libopenjpeg20/
H A Djp2.h178 OPJ_UINT32 precedence; member in struct:opj_jp2
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h416 // Return the precedence of a given node, for use in pretty printing.
417 unsigned precedence(const SExpr *E) { function in class:clang::threadSafety::til::PrettyPrinter
483 if (self()->precedence(E) > P) {
/external/ImageMagick/MagickCore/
H A Dfx.c1871 precedence, local
1889 precedence=UndefinedPrecedence;
1970 precedence=BitwiseComplementPrecedence;
1976 precedence=ExponentPrecedence;
1988 precedence=MultiplyPrecedence;
1995 precedence=MultiplyPrecedence;
2003 precedence=AdditionPrecedence;
2009 precedence=ShiftPrecedence;
2017 precedence=RelationalPrecedence;
2023 precedence
[all...]
/external/guice/extensions/persist/lib/
H A Dhibernate-annotations.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/annotationfactory/ org/hibernate/annotations/ org/ ...
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 1179 milliseconds

12