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

1 2

  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp6.h 101 UINT8 Precedence;
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.h 55 enum Precedence {
133 void writeExpression(const Expression& expr, Precedence parentPrecedence);
149 void writeConstructor(const Constructor& c, Precedence parentPrecedence);
155 static Precedence GetBinaryPrecedence(Token::Kind op);
157 virtual void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
159 void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
163 void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
165 void writePostfixExpression(const PostfixExpression& p, Precedence parentPrecedence);
SkSLMetalCodeGenerator.h 55 enum Precedence {
137 void writeExpression(const Expression& expr, Precedence parentPrecedence);
151 static Precedence GetBinaryPrecedence(Token::Kind op);
153 void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
155 void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
159 void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
161 void writePostfixExpression(const PostfixExpression& p, Precedence parentPrecedence);
  /external/skqp/src/sksl/
SkSLGLSLCodeGenerator.h 55 enum Precedence {
133 void writeExpression(const Expression& expr, Precedence parentPrecedence);
149 void writeConstructor(const Constructor& c, Precedence parentPrecedence);
155 static Precedence GetBinaryPrecedence(Token::Kind op);
157 virtual void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
159 void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
163 void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
165 void writePostfixExpression(const PostfixExpression& p, Precedence parentPrecedence);
SkSLMetalCodeGenerator.h 55 enum Precedence {
137 void writeExpression(const Expression& expr, Precedence parentPrecedence);
151 static Precedence GetBinaryPrecedence(Token::Kind op);
153 void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
155 void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
159 void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
161 void writePostfixExpression(const PostfixExpression& p, Precedence parentPrecedence);
  /external/turbine/java/com/google/turbine/tree/
TurbineOperatorKind.java 20 * An operator kind, with precedence. Only operators that can appear in compile-time constant
24 POST_INCR("++", Precedence.POSTFIX),
25 POST_DECR("--", Precedence.POSTFIX),
26 PRE_INCR("++", Precedence.UNARY),
27 PRE_DECR("--", Precedence.UNARY),
28 UNARY_PLUS("+", Precedence.UNARY),
29 NEG("-", Precedence.UNARY),
30 BITWISE_COMP("~", Precedence.UNARY),
31 NOT("!", Precedence.UNARY),
32 MULT("*", Precedence.MULTIPLICATIVE)
    [all...]
  /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...]
  /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...]

Completed in 359 milliseconds

1 2