HomeSort by relevance Sort by last modified time
    Searched defs:Precedence (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/tools/gn/
parser.cc 21 enum Precedence {
22 PRECEDENCE_ASSIGNMENT = 1, // Lowest precedence.
30 PRECEDENCE_DOT = 9, // Highest precedence.
36 // hit something of that precedence. There's a dispatch table in expressions_
39 // precedence is.
192 scoped_ptr<ParseNode> Parser::ParseExpression(int precedence) {
211 precedence <= expressions_[cur_token().type()].precedence) {
270 ParseExpression(expressions_[token.type()].precedence + 1);
398 // Why _OR? We're parsing things that are higher precedence than the
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 185 unsigned Precedence; // Precedence if a binary op.
189 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
199 unsigned getBinaryPrecedence() const { return Precedence; }
228 /// BinopPrecedence - This holds the precedence for each binary operator that is
232 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
407 // If this is a binop, find its precedence.
483 // Read the precedence if present.
927 // 1 is lowest precedence.
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 201 unsigned Precedence; // Precedence if a binary op.
205 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
215 unsigned getBinaryPrecedence() const { return Precedence; }
246 /// BinopPrecedence - This holds the precedence for each binary operator that is
250 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
472 // If this is a binop, find its precedence.
548 // Read the precedence if present.
1090 // 1 is lowest precedence.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 219 unsigned Precedence; // Precedence if a binary op.
223 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
233 unsigned getBinaryPrecedence() const { return Precedence; }
263 /// BinopPrecedence - This holds the precedence for each binary operator that is
267 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
489 // If this is a binop, find its precedence.
565 // Read the precedence if present.
    [all...]
toy.cpp 225 unsigned Precedence; // Precedence if a binary op.
229 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
239 unsigned getBinaryPrecedence() const { return Precedence; }
269 /// BinopPrecedence - This holds the precedence for each binary operator that is
273 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
495 // If this is a binop, find its precedence.
571 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 204 unsigned Precedence; // Precedence if a binary op.
208 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
218 unsigned getBinaryPrecedence() const { return Precedence; }
248 /// BinopPrecedence - This holds the precedence for each binary operator that is
252 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
474 // If this is a binop, find its precedence.
550 // Read the precedence if present.
1111 // 1 is lowest precedence.
    [all...]
toy.cpp 204 unsigned Precedence; // Precedence if a binary op.
208 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
218 unsigned getBinaryPrecedence() const { return Precedence; }
248 /// BinopPrecedence - This holds the precedence for each binary operator that is
252 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
474 // If this is a binop, find its precedence.
550 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 249 unsigned Precedence; // Precedence if a binary op.
253 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
263 unsigned getBinaryPrecedence() const { return Precedence; }
293 /// BinopPrecedence - This holds the precedence for each binary operator that is
297 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
519 // If this is a binop, find its precedence.
595 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 202 unsigned Precedence; // Precedence if a binary op.
206 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
216 unsigned getBinaryPrecedence() const { return Precedence; }
246 /// BinopPrecedence - This holds the precedence for each binary operator that is
250 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
472 // If this is a binop, find its precedence.
548 // Read the precedence if present.
    [all...]
  /external/chromium_org/v8/src/
preparser.h 429 // Determine precedence of given token.
430 static int Precedence(Token::Value token, bool accept_IN) {
432 return 0; // 0 precedence will terminate binary expression parsing
433 return Token::Precedence(token);
    [all...]

Completed in 669 milliseconds