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

  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.h 55 enum Precedence {
125 void writeExpression(const Expression& expr, Precedence parentPrecedence);
139 static Precedence GetBinaryPrecedence(Token::Kind op);
141 virtual void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
143 void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
147 void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
149 void writePostfixExpression(const PostfixExpression& p, Precedence parentPrecedence);
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp6.h 123 UINT8 Precedence;
  /prebuilts/go/darwin-x86/src/go/token/
token.go 243 // A set of constants for precedence-based expression parsing.
244 // Non-operators have lowest precedence, followed by operators
245 // starting with precedence 1 up to unary operators. The highest
246 // precedence serves as "catch-all" precedence for selector,
255 // Precedence returns the operator precedence of the binary
259 func (op Token) Precedence() int {
  /prebuilts/go/linux-x86/src/go/token/
token.go 243 // A set of constants for precedence-based expression parsing.
244 // Non-operators have lowest precedence, followed by operators
245 // starting with precedence 1 up to unary operators. The highest
246 // precedence serves as "catch-all" precedence for selector,
255 // Precedence returns the operator precedence of the binary
259 func (op Token) Precedence() int {
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 245 unsigned Precedence; // Precedence if a binary op.
251 Precedence(Prec) {}
263 unsigned getBinaryPrecedence() const { return Precedence; }
289 /// BinopPrecedence - This holds the precedence for each binary operator that is
293 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
544 // If this is a binop, find its precedence.
624 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 245 unsigned Precedence; // Precedence if a binary op.
251 Precedence(Prec) {}
263 unsigned getBinaryPrecedence() const { return Precedence; }
289 /// BinopPrecedence - This holds the precedence for each binary operator that is
293 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
544 // If this is a binop, find its precedence.
624 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 245 unsigned Precedence; // Precedence if a binary op.
251 Precedence(Prec) {}
263 unsigned getBinaryPrecedence() const { return Precedence; }
289 /// BinopPrecedence - This holds the precedence for each binary operator that is
293 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
544 // If this is a binop, find its precedence.
624 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 246 unsigned Precedence; // Precedence if a binary op.
252 Precedence(Prec) {}
264 unsigned getBinaryPrecedence() const { return Precedence; }
277 /// BinopPrecedence - This holds the precedence for each binary operator that is
281 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
532 // If this is a binop, find its precedence.
612 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 261 unsigned Precedence; // Precedence if a binary op.
267 Precedence(Prec) {}
279 unsigned getBinaryPrecedence() const { return Precedence; }
292 /// BinopPrecedence - This holds the precedence for each binary operator that is
296 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
547 // If this is a binop, find its precedence.
627 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 225 unsigned Precedence; // Precedence if a binary op.
231 Precedence(Prec) {}
243 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.
473 // If this is a binop, find its precedence.
553 // Read the precedence if present.
1052 // 1 is lowest precedence.
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 245 unsigned Precedence; // Precedence if a binary op.
251 Precedence(Prec) {}
263 unsigned getBinaryPrecedence() const { return Precedence; }
289 /// BinopPrecedence - This holds the precedence for each binary operator that is
293 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
544 // If this is a binop, find its precedence.
624 // Read the precedence if present.
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 242 unsigned Precedence; // Precedence if a binary op.
248 Precedence(Prec) {}
260 unsigned getBinaryPrecedence() const { return Precedence; }
286 /// BinopPrecedence - This holds the precedence for each binary operator that is
290 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
541 // If this is a binop, find its precedence.
621 // 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/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.
1106 // 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/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 184 unsigned Precedence; // Precedence if a binary op.
188 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
198 unsigned getBinaryPrecedence() const { return Precedence; }
226 /// BinopPrecedence - This holds the precedence for each binary operator that is
230 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
405 // If this is a binop, find its precedence.
481 // Read the precedence if present.
925 // 1 is lowest precedence.
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 200 unsigned Precedence; // Precedence if a binary op.
204 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
214 unsigned getBinaryPrecedence() const { return Precedence; }
244 /// BinopPrecedence - This holds the precedence for each binary operator that is
248 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
470 // If this is a binop, find its precedence.
546 // Read the precedence if present.
1088 // 1 is lowest precedence.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
IpmiNetFnTransport.h 128 UINT8 Precedence : 3;
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 361 unsigned Precedence; // Precedence if a binary op.
369 Precedence(Prec), Line(Loc.Line) {}
381 unsigned getBinaryPrecedence() const { return Precedence; }
414 /// BinopPrecedence - This holds the precedence for each binary operator that is
418 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
673 // If this is a binop, find its precedence.
756 // 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/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/v8/src/parsing/
parser-base.h 892 // Determine precedence of given token.
893 static int Precedence(Token::Value token, bool accept_IN) {
895 return 0; // 0 precedence will terminate binary expression parsing
896 return Token::Precedence(token);
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-dynamodb/1.11.18/
aws-java-sdk-dynamodb-1.11.18.jar 

Completed in 943 milliseconds