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

  /external/deqp/framework/randomshaders/
rsgBinaryOps.cpp 34 template <int Precedence, Associativity Assoc>
35 BinaryOp<Precedence, Assoc>::BinaryOp (Token::Type operatorToken)
44 template <int Precedence, Associativity Assoc>
45 BinaryOp<Precedence, Assoc>::~BinaryOp (void)
51 template <int Precedence, Associativity Assoc>
52 Expression* BinaryOp<Precedence, Assoc>::createNextChild (GeneratorState& state)
54 int leftPrec = Assoc == ASSOCIATIVITY_LEFT ? Precedence : Precedence-1;
55 int rightPrec = Assoc == ASSOCIATIVITY_LEFT ? Precedence-1 : Precedence;
    [all...]
rsgBinaryOps.hpp 40 template <int Precedence, Associativity Assoc>
68 template <int Precedence, bool Float, bool Int, bool Bool, class ComputeValueRange, class EvaluateComp>
69 class BinaryVecOp : public BinaryOp<Precedence, ASSOCIATIVITY_LEFT>
  /external/selinux/sepolgen/src/sepolgen/
yacc.py 484 global Nonterminals, First, Follow, Precedence, LRitems
507 Precedence = { } # Precedence rules for each terminal. Contains tuples of the
515 Signature = hashlib.sha256() # Digital signature of the grammar rules, precedence
542 # prec - Precedence level
686 prec = Precedence.get(precname,None)
688 sys.stderr.write("%s:%d: Nothing known about the precedence of '%s'\n" % (p.file,p.line,precname))
698 # Is a terminal. We'll assign a precedence to p based on this
700 p.prec = Precedence.get(t,('right',0))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
yacc.py 484 global Nonterminals, First, Follow, Precedence, LRitems
507 Precedence = { } # Precedence rules for each terminal. Contains tuples of the
515 Signature = hashlib.sha256() # Digital signature of the grammar rules, precedence
542 # prec - Precedence level
686 prec = Precedence.get(precname,None)
688 sys.stderr.write("%s:%d: Nothing known about the precedence of '%s'\n" % (p.file,p.line,precname))
698 # Is a terminal. We'll assign a precedence to p based on this
700 p.prec = Precedence.get(t,('right',0))
    [all...]
  /external/clang/lib/Format/
TokenAnnotator.cpp     [all...]
  /external/v8/src/parsing/
token.h 15 // same signature M(name, string, precedence), where name is the
17 // (or NULL, for literals), and precedence is the precedence (or 0).
27 #define IGNORE_TOKEN(name, string, precedence)
68 /* Binary operators sorted by precedence. */ \
88 /* Compare operators sorted by precedence. */ \
182 #define T(name, string, precedence) name,
328 // Returns the precedence > 0 for binary and compare
330 static int Precedence(Value tok) {
parser-base.h 780 // Determine precedence of given token.
781 static int Precedence(Token::Value token, bool accept_IN) {
783 return 0; // 0 precedence will terminate binary expression parsing
784 return Token::Precedence(token);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 218 bool IsOperator = false, unsigned Precedence = 0)
220 Precedence(Precedence) {}
236 unsigned Precedence; // Precedence if a binary op.
263 /// BinopPrecedence - This holds the precedence for each binary operator that is
267 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
508 // If this is a binop, find its precedence.
587 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 217 bool IsOperator = false, unsigned Precedence = 0)
219 Precedence(Precedence) {}
235 unsigned Precedence; // Precedence if a binary op.
262 /// BinopPrecedence - This holds the precedence for each binary operator that is
266 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
507 // If this is a binop, find its precedence.
586 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 217 bool IsOperator = false, unsigned Precedence = 0)
219 Precedence(Precedence) {}
235 unsigned Precedence; // Precedence if a binary op.
262 /// BinopPrecedence - This holds the precedence for each binary operator that is
266 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
507 // If this is a binop, find its precedence.
586 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 217 bool IsOperator = false, unsigned Precedence = 0)
219 Precedence(Precedence) {}
235 unsigned Precedence; // Precedence if a binary op.
262 /// BinopPrecedence - This holds the precedence for each binary operator that is
266 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
507 // If this is a binop, find its precedence.
586 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 213 unsigned Precedence; // Precedence if a binary op.
219 Precedence(Prec) {}
231 unsigned getBinaryPrecedence() const { return Precedence; }
257 /// BinopPrecedence - This holds the precedence for each binary operator that is
261 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
461 // If this is a binop, find its precedence.
541 // Read the precedence if present.
1045 // 1 is lowest precedence.
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 232 unsigned Precedence; // Precedence if a binary op.
238 Precedence(Prec) {}
250 unsigned getBinaryPrecedence() const { return Precedence; }
276 /// BinopPrecedence - This holds the precedence for each binary operator that is
280 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
531 // If this is a binop, find its precedence.
611 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 218 unsigned Precedence; // Precedence if a binary op.
222 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
232 unsigned getBinaryPrecedence() const { return Precedence; }
262 /// BinopPrecedence - This holds the precedence for each binary operator that is
266 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
488 // If this is a binop, find its precedence.
564 // 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/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/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 203 unsigned Precedence; // Precedence if a binary op.
207 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
217 unsigned getBinaryPrecedence() const { return Precedence; }
247 /// BinopPrecedence - This holds the precedence for each binary operator that is
251 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
473 // If this is a binop, find its precedence.
549 // Read the precedence if present.
1110 // 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/Chapter8/
toy.cpp 360 unsigned Precedence; // Precedence if a binary op.
368 Precedence(Prec), Line(Loc.Line) {}
380 unsigned getBinaryPrecedence() const { return Precedence; }
413 /// BinopPrecedence - This holds the precedence for each binary operator that is
417 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
672 // If this is a binop, find its precedence.
755 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 244 unsigned Precedence; // Precedence if a binary op.
248 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
258 unsigned getBinaryPrecedence() const { return Precedence; }
288 /// BinopPrecedence - This holds the precedence for each binary operator that is
292 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
514 // If this is a binop, find its precedence.
590 // Read the precedence if present.
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 336 bool parseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
    [all...]

Completed in 391 milliseconds