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

1 2

  /external/mesa3d/src/glsl/glcpp/tests/
049-if-expression-precedence.c 2 failure with operator precedence
  /external/v8/src/
token.cc 34 #define T(name, string, precedence) #name,
41 #define T(name, string, precedence) string,
48 #define T(name, string, precedence) precedence,
token.h 37 // 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
282 static int Precedence(Value tok) {
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toy.ml 7 * 1 is the lowest precedence. *)
parser.ml 5 (* 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/
parser.ml 5 (* 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
toy.ml 9 * 1 is the lowest precedence. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 5 (* 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
toy.ml 14 * 1 is the lowest precedence. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 5 (* 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. *)
toy.ml 14 * 1 is the lowest precedence. *)
  /external/webkit/Source/WebCore/rendering/style/
CollapsedBorderValue.h 53 EBorderPrecedence precedence() const { return m_precedence; } function in class:WebCore::CollapsedBorderValue
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 5 (* 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
toy.ml 14 * 1 is the lowest precedence. *)
  /development/tools/idegen/src/
Eclipse.java 42 * If the user has a file named "path-precedence" in their project's
49 File precedence = new File("path-precedence"); local
50 if (precedence.exists()) {
51 Configuration.parseFile(precedence, patterns);
57 // Everything not matched by the user's precedence spec.
173 * A precedence bucket for source roots.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 5 (* 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. *)
toy.ml 14 * 1 is the lowest precedence. *)
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursiveRuleAnalyzer.java 144 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/
SkScript.cpp 105 // 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
    [all...]
SkScriptTokenizer.cpp 307 signed char precedence = gPrecedence[op]; local
319 if (topPrecedence > precedence || (topPrecedence == precedence &&
920 signed char precedence; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.cpp 339 // (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...]
  /bionic/libc/kernel/tools/
cpp.py 681 def precedence(self): member in class:Expr
682 """return the precedence of a given operator"""
791 arg_prec = self.arg.precedence()
792 self_prec = self.precedence()
817 arg1_prec = self.arg1.precedence()
818 arg2_prec = self.arg2.precedence()
819 self_prec = self.precedence()
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 558 # We search for both AX and SREG attributes, with AX taking precedence.
  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 525 bool operatorStackHasHigherPrecedence(int&, int precedence)
527 return precedence <= m_binaryOperatorStack.last().second;
541 void operatorStackAppend(int& operatorStackDepth, int op, int precedence)
544 m_binaryOperatorStack.append(std::make_pair(op, precedence));
    [all...]
  /external/bison/doc/
refcard.tex 369 \%nonassoc} is optional. Additionally, precedence may be overridden
426 For altering the precedence of a symbol use:

Completed in 423 milliseconds

1 2