Searched refs:precedence (Results 1 - 25 of 30) sorted by relevance

12

/external/mesa3d/src/glsl/glcpp/tests/
H A D049-if-expression-precedence.c2 failure with operator precedence
/external/v8/src/
H A Dtoken.cc11 #define T(name, string, precedence) #name,
18 #define T(name, string, precedence) string,
25 #define T(name, string, precedence) precedence,
H A Dtoken.h14 // same signature M(name, string, precedence), where name is the
16 // (or NULL, for literals), and precedence is the precedence (or 0).
26 #define IGNORE_TOKEN(name, string, precedence)
68 /* Binary operators sorted by precedence. */ \
87 /* Compare operators sorted by precedence. */ \
171 #define T(name, string, precedence) name,
281 // Returns the precedence > 0 for binary and compare
/external/deqp/framework/randomshaders/
H A DrsgGeneratorState.hpp85 void pushPrecedence (int precedence) { m_precedenceStack.push_back(precedence); } argument
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoy.ml7 * 1 is the lowest precedence. *)
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
H A Dtoy.ml9 * 1 is the lowest precedence. *)
/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
H A Dtoy.ml14 * 1 is the lowest precedence. *)
/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. *)
H A Dtoy.ml14 * 1 is the lowest precedence. *)
/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
H A Dtoy.ml14 * 1 is the lowest precedence. *)
/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. *)
H A Dtoy.ml14 * 1 is the lowest precedence. *)
/external/selinux/policycoreutils/mcstrans/src/
H A Dmcscolor.c265 static const unsigned precedence[N_COLOR][N_COLOR - 1] = { variable
321 /* propagate colors according to the precedence rules */
325 if (mask & (1 << precedence[i][j])) {
326 items[i] = items[precedence[i][j]];
/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/skia/src/animator/
H A DSkScript.cpp105 // Note that the real precedence for () [] is '2'
106 // but here, precedence means 'while an equal or smaller precedence than the current operator
108 // is preformed, since the add precedence is not smaller than multiply.
289 signed char precedence = gPrecedence[op]; local
301 if (topPrecedence > precedence || (topPrecedence == precedence &&
1078 signed char precedence; local
1109 precedence = gPrecedence[match];
1113 if (gPrecedence[topOp] <= precedence)
[all...]
H A DSkScriptTokenizer.cpp307 signed char precedence = gPrecedence[op]; local
319 if (topPrecedence > precedence || (topPrecedence == precedence &&
918 signed char precedence; local
948 precedence = gPrecedence[op];
952 while (gPrecedence[fOpStack.top() & ~kArtificialOp] < precedence)
956 if (gPrecedence[branchOp] >= precedence)
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Djp2.h178 OPJ_UINT32 precedence; member in struct:opj_jp2
/external/llvm/lib/Support/Unix/
H A DProcess.inc275 // The error code from close takes precedence over the one from
/external/bison/doc/
H A Drefcard.tex367 \%nonassoc} is optional. Additionally, precedence may be overridden
424 For altering the precedence of a symbol use:
/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) {

Completed in 459 milliseconds

12