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

/external/mesa3d/src/glsl/glcpp/tests/
H A D049-if-expression-precedence.c2 failure with operator precedence
/external/v8/src/
H A Dtoken.cc34 #define T(name, string, precedence) #name,
41 #define T(name, string, precedence) string,
48 #define T(name, string, precedence) precedence,
H A Dtoken.h37 // same signature M(name, string, precedence), where name is the
39 // (or NULL, for literals), and precedence is the precedence (or 0).
49 #define IGNORE_TOKEN(name, string, precedence)
90 /* Binary operators sorted by precedence. */ \
108 /* Compare operators sorted by precedence. */ \
187 #define T(name, string, precedence) name,
280 // Returns the precedence > 0 for binary and compare
/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/webkit/Source/WebCore/rendering/style/
H A DCollapsedBorderValue.h53 EBorderPrecedence precedence() const { return m_precedence; } function in class:WebCore::CollapsedBorderValue
/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/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/WebCore/rendering/
H A DRenderTableCell.cpp339 // (1) Borders with the 'border-style' of 'hidden' take precedence over all other conflicting
387 // The border have the same width and style. Rely on precedence (cell over row over row group, etc.)
388 if (border1.precedence() == border2.precedence())
390 return border1.precedence() < border2.precedence() ? -1 : 1;
404 // For the start border, we need to check, in order of precedence:
467 // For end border, we need to check, in order of precedence:
532 // For before border, we need to check, in order of precedence:
610 // For after border, we need to check, in order of precedence
[all...]
/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/bison/doc/
H A Drefcard.tex369 \%nonassoc} is optional. Additionally, precedence may be overridden
426 For altering the precedence of a symbol use:
/external/bison/tests/
H A Dtestsuite[all...]
/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 769 milliseconds