/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). 50 #define IGNORE_TOKEN(name, string, precedence) 89 /* Binary operators sorted by precedence. */ \ 107 /* Compare operators sorted by precedence. */ \ 183 #define T(name, string, precedence) name, 272 // Returns the precedence > 0 for binary and compare 274 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/skia/src/animator/ |
SkScript.cpp | 113 // Note that the real precedence for () [] is '2' 114 // but here, precedence means 'while an equal or smaller precedence than the current operator 116 // is preformed, since the add precedence is not smaller than multiply. 296 signed char precedence = gPrecedence[op]; local 308 if (topPrecedence > precedence || (topPrecedence == precedence && 1085 signed char precedence; local [all...] |
SkScriptTokenizer.cpp | 299 signed char precedence = gPrecedence[op]; local 311 if (topPrecedence > precedence || (topPrecedence == precedence && 910 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...] |
JSParser.cpp | 1665 int precedence = isBinaryOperator(m_token.m_type); local [all...] |
/external/bison/doc/ |
refcard.tex | 369 \%nonassoc} is optional. Additionally, precedence may be overridden 426 For altering the precedence of a symbol use:
|