Home
last modified time | relevance | path

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/
DSequentialProcessor.java70 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/
DSkSLPrefixExpression.cpp156 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()
DSkSLBinaryExpression.cpp104 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()
DSkSLPostfixExpression.cpp21 "'" + String(op.operatorName()) + "' cannot operate on '" + in Convert()
DSkSLPostfixExpression.h61 return this->operand()->description() + this->getOperator().operatorName(); in description()
DSkSLPrefixExpression.h67 return this->getOperator().operatorName() + this->operand()->description(); in description()
/external/skia/src/sksl/
DSkSLASTNode.cpp20 getOperator().operatorName() + " " + in description()
165 return this->begin()->description() + getOperator().operatorName(); in description()
167 return getOperator().operatorName() + this->begin()->description(); in description()
DSkSLOperators.h53 const char* operatorName() const;
DSkSLOperators.cpp96 const char* Operator::operatorName() const { in operatorName() function in SkSL::Operator
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/
DTrees.java77 static String operatorName(ExpressionTree expression) { in operatorName() method in Trees
86 String name = new Pretty(/*writer*/ null, /*sourceOutput*/ true).operatorName(tag); in operatorName()
DJavaInputAstVisitor.java29 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/
DSkSLPipelineStageCodeGenerator.cpp495 this->write(op.operatorName()); in writeBinaryExpression()
523 this->write(p.getOperator().operatorName()); in writePrefixExpression()
536 this->write(p.getOperator().operatorName()); in writePostfixExpression()
DSkSLGLSLCodeGenerator.cpp863 this->write(op.operatorName()); in writeBinaryExpression()
923 this->write(p.getOperator().operatorName()); in writePrefixExpression()
936 this->write(p.getOperator().operatorName()); in writePostfixExpression()
DSkSLMetalCodeGenerator.cpp34 default: return op.operatorName(); in OperatorName()
DSkSLSPIRVCodeGenerator.cpp2605 SkDEBUGFAILF("mergeComparisons only supports == and !=, not %s", op.operatorName()); in mergeComparisons()
/external/skqp/tools/bookmaker/
DincludeParser.cpp793 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()