Searched refs:operatorName (Results 1 – 16 of 16) sorted by relevance
/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/support/common/ |
D | SequentialProcessor.java | 70 String operatorName = op.getClass().getName(); in add() local 71 if (!operatorIndex.containsKey(operatorName)) { in add() 72 operatorIndex.put(operatorName, new ArrayList<Integer>()); in add() 74 operatorIndex.get(operatorName).add(operatorList.size() - 1); in add()
|
/external/skia/src/sksl/ir/ |
D | SkSLPrefixExpression.cpp | 156 String("'") + op.operatorName() + "' cannot operate on '" + in Convert() 169 String("'") + op.operatorName() + "' cannot operate on '" + in Convert() 180 String("operator '") + op.operatorName() + "' is not allowed"); in Convert() 185 String("'") + op.operatorName() + "' cannot operate on '" + in Convert() 230 SkDEBUGFAILF("unsupported prefix operator: %s", op.operatorName()); in Make()
|
D | SkSLBinaryExpression.cpp | 104 context.fErrors.error(offset, String("type mismatch: '") + op.operatorName() + in Convert() 117 context.fErrors.error(offset, String("operator '") + op.operatorName() + in Convert() 125 context.fErrors.error(offset, String("operator '") + op.operatorName() + "' can not " in Convert() 245 " " + this->getOperator().operatorName() + in description()
|
D | SkSLPostfixExpression.cpp | 21 "'" + String(op.operatorName()) + "' cannot operate on '" + in Convert()
|
D | SkSLPostfixExpression.h | 61 return this->operand()->description() + this->getOperator().operatorName(); in description()
|
D | SkSLPrefixExpression.h | 67 return this->getOperator().operatorName() + this->operand()->description(); in description()
|
/external/skia/src/sksl/ |
D | SkSLASTNode.cpp | 20 getOperator().operatorName() + " " + in description() 165 return this->begin()->description() + getOperator().operatorName(); in description() 167 return getOperator().operatorName() + this->begin()->description(); in description()
|
D | SkSLOperators.h | 53 const char* operatorName() const;
|
D | SkSLOperators.cpp | 96 const char* Operator::operatorName() const { in operatorName() function in SkSL::Operator
|
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/ |
D | Trees.java | 77 static String operatorName(ExpressionTree expression) { in operatorName() method in Trees 86 String name = new Pretty(/*writer*/ null, /*sourceOutput*/ true).operatorName(tag); in operatorName()
|
D | JavaInputAstVisitor.java | 29 import static com.google.googlejavaformat.java.Trees.operatorName; 614 splitToken(operatorName(node)); in visitAssignment() 633 splitToken(operatorName(node)); in visitCompoundAssignment() 1672 String operatorName = operatorName(node); 1675 splitToken(operatorName); 1677 splitToken(operatorName); 1678 if (ambiguousUnaryOperator(node, operatorName)) { 1686 private void splitToken(String operatorName) { 1687 for (int i = 0; i < operatorName.length(); i++) { 1688 token(String.valueOf(operatorName.charAt(i))); [all …]
|
/external/skia/src/sksl/codegen/ |
D | SkSLPipelineStageCodeGenerator.cpp | 495 this->write(op.operatorName()); in writeBinaryExpression() 523 this->write(p.getOperator().operatorName()); in writePrefixExpression() 536 this->write(p.getOperator().operatorName()); in writePostfixExpression()
|
D | SkSLGLSLCodeGenerator.cpp | 863 this->write(op.operatorName()); in writeBinaryExpression() 923 this->write(p.getOperator().operatorName()); in writePrefixExpression() 936 this->write(p.getOperator().operatorName()); in writePostfixExpression()
|
D | SkSLMetalCodeGenerator.cpp | 34 default: return op.operatorName(); in OperatorName()
|
D | SkSLSPIRVCodeGenerator.cpp | 2605 SkDEBUGFAILF("mergeComparisons only supports == and !=, not %s", op.operatorName()); in mergeComparisons()
|
/external/skqp/tools/bookmaker/ |
D | includeParser.cpp | 793 string operatorName = className + "::"; in checkTokens() local 807 operatorName += string(start, oper.fChar - start); in checkTokens() 808 def = root->find(operatorName, RootDefinition::AllowParens::kYes); in checkTokens()
|