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

/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/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/webkit/Source/WebCore/rendering/style/
H A DCollapsedBorderValue.h53 EBorderPrecedence precedence() const { return m_precedence; } function in class:WebCore::CollapsedBorderValue
/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/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 &&
920 signed char precedence; local
950 precedence = gPrecedence[op];
954 while (gPrecedence[fOpStack.top() & ~kArtificialOp] < precedence)
958 if (gPrecedence[branchOp] >= precedence)
/external/webkit/Source/JavaScriptCore/parser/
H A DASTBuilder.h525 bool operatorStackHasHigherPrecedence(int&, int precedence) argument
527 return precedence <= m_binaryOperatorStack.last().second;
541 void operatorStackAppend(int& operatorStackDepth, int op, int precedence) argument
544 m_binaryOperatorStack.append(std::make_pair(op, precedence));
H A DJSParser.cpp1665 int precedence = isBinaryOperator(m_token.m_type); local
1666 if (!precedence)
1673 while (operatorStackDepth && context.operatorStackHasHigherPrecedence(operatorStackDepth, precedence)) {
1682 context.operatorStackAppend(operatorStackDepth, operatorToken, precedence);
/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 183 milliseconds