/external/tensorflow/tensorflow/core/ops/ |
D | rnn_ops_test.cc | 110 string infix = ";" + JoinedCopies("?", 6) + ";"; in TEST() local 113 INFER_ERROR("must be rank 3", op, "?;[?]" + infix + "?"); in TEST() 114 INFER_ERROR("must be rank 1", op, "?;?" + infix + "[?,?]"); in TEST() 117 INFER_OK(op, "?;?" + infix + "?", JoinedCopies("[?,?,?]", 7)); in TEST() 118 INFER_OK(op, "?;[?,?,?]" + infix + "?", JoinedCopies("[d1_0,d1_1,?]", 7)); in TEST() 119 INFER_OK(op, "?;[?,?,?]" + infix + "[?]", JoinedCopies("[d1_0,d1_1,?]", 7)); in TEST() 120 INFER_OK(op, "?;[?,?,?]" + infix + "[20]", JoinedCopies("[d1_0,d1_1,5]", 7)); in TEST() 123 INFER_ERROR("must be evenly divisible", op, "?;?" + infix + "[11]"); in TEST()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | ExpressionTranslator.java | 233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight())); in caseANumericEqExpression() 245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight())); in caseANumericNeExpression() 250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight())); in caseALtExpression() 255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight())); in caseAGtExpression() 260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight())); in caseALteExpression() 265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight())); in caseAGteExpression() 270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight())); in caseAAndExpression() 275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), node.getRight())); in caseAOrExpression() 280 setResult(infix(Type.STRING, Type.STRING, "+", node.getLeft(), node.getRight())); in caseAAddExpression() 285 setResult(infix(Type.INT, Type.INT, "+", node.getLeft(), node.getRight())); in caseANumericAddExpression() [all …]
|
D | TemplateTranslator.java | 27 import static com.google.clearsilver.jsilver.compiler.JavaExpression.infix; 341 java.startIfBlock(JavaExpression.infix(Type.BOOLEAN, "!=", value.cast(Type.DATA), literal( in caseAWithCommand() 438 inlineIf(Type.BOOLEAN, infix(Type.BOOLEAN, ">=", incrVar, integer(0)), infix(Type.BOOLEAN, in writeLoop() 439 "<=", loopVar, endVar), infix(Type.BOOLEAN, ">=", loopVar, endVar)); in writeLoop() 443 loopVariable).cast(Type.STRING), infix(Type.BOOLEAN, "==", symbol(loopVariable), startVar), in writeLoop() 444 infix(Type.BOOLEAN, "==", symbol(loopVariable), endVar))); in writeLoop()
|
D | EscapingEvaluator.java | 101 JavaExpression.infix(JavaExpression.Type.BOOLEAN, "!=", escapeMode, JavaExpression in computeForPropagateStatus() 104 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", escapeModeCheck, in computeForPropagateStatus() 223 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", first, second); in or()
|
D | JavaExpression.java | 408 public static JavaExpression infix(Type type, final String operator, final JavaExpression left,
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | lower_case_op.cc | 61 string NewName(const string& infix); 142 string CaseBuilder::NewName(const string& infix) { in NewName() argument 143 return graph_->NewName(strings::StrCat(name_, "/", infix)); in NewName()
|
D | lower_if_op.cc | 63 string NewName(const string& infix); 175 string CondBuilder::NewName(const string& infix) { in NewName() argument 176 return graph_->NewName(strings::StrCat(name_, "/", infix)); in NewName()
|
D | lower_while_op.cc | 127 string NewName(const string& infix); 495 string LowerWhileHelper::NewName(const string& infix) { in NewName() argument 496 return graph_->NewName(strings::StrCat(name_, "/", infix)); in NewName()
|
/external/catch2/include/internal/ |
D | catch_string_manip.cpp | 37 bool contains( std::string const& s, std::string const& infix ) { in contains() argument 38 return s.find( infix ) != std::string::npos; in contains()
|
D | catch_string_manip.h | 22 bool contains( std::string const& s, std::string const& infix );
|
/external/okhttp/okio/ |
D | CHANGELOG.md | 55 * New: `ByteString.substring()` returns a prefix, infix, or suffix.
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestCheckCLDR.java | 555 String infix = "\"]/dayPeriodWidth[@type=\"wide\"]/dayPeriod[@type=\""; in TestCheckDates() local 697 final String path1 = prefix + type1.pathValue + infix + period1 + suffix; in TestCheckDates() 698 final String path2 = prefix + type2.pathValue + infix + period2 + suffix; in TestCheckDates()
|
/external/llvm-project/flang/lib/Evaluate/ |
D | formatting.cpp | 245 const char *prefix{""}, *infix{","}, *suffix{""}; member 337 o << spelling.infix; in AsFortran()
|
/external/selinux/libsepol/src/ |
D | module_to_cil.c | 747 const char *infix; in get_new_attr_name() local 753 infix = TYPEATTR_INFIX; in get_new_attr_name() 755 infix = ROLEATTR_INFIX; in get_new_attr_name() 758 len = strlen(pdb->name) + strlen(infix) + num_digits(num_attrs) + 1; in get_new_attr_name() 765 rlen = snprintf(attr_name, len, "%s%s%i", pdb->name, infix, num_attrs); in get_new_attr_name()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 271 PEP 465 - A dedicated infix operator for matrix multiplication 274 :pep:`465` adds the ``@`` infix operator for matrix multiplication. 279 methods defining other infix arithmetic operators. 312 :pep:`465` -- A dedicated infix operator for matrix multiplication
|
/external/okio/ |
D | CHANGELOG.md | 489 * New: `ByteString.substring()` returns a prefix, infix, or suffix.
|
/external/python/cpython3/Doc/faq/ |
D | design.rst | 174 postfix -- prefix (and infix!) operations have a long tradition in
|
/external/python/cpython2/Doc/faq/ |
D | design.rst | 232 postfix -- prefix (and infix!) operations have a long tradition in
|
/external/bcc/tests/cc/ |
D | catch.hpp | 363 bool contains( std::string const& s, std::string const& infix ); 7743 bool contains( std::string const& s, std::string const& infix ) { in contains() argument 7744 return s.find( infix ) != std::string::npos; in contains()
|
/external/python/jinja/docs/ |
D | templates.rst | 1333 The ``is`` and ``in`` operators support negation using an infix notation,
|
/external/llvm-project/llvm/docs/TableGen/ |
D | ProgRef.rst | 511 The paste operator (``#``) is the only infix operator availabe in TableGen
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 3174 bool contains( std::string const& s, std::string const& infix ); 13622 bool contains( std::string const& s, std::string const& infix ) { in contains() argument 13623 return s.find( infix ) != std::string::npos; in contains()
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 3200 bool contains( std::string const& s, std::string const& infix ); 13767 bool contains( std::string const& s, std::string const& infix ) { in contains() argument 13768 return s.find( infix ) != std::string::npos; in contains()
|
/external/testng/ant/3rdparty/ |
D | doclava-1.0.3.jar | META-INF/MANIFEST.MF
assets/html/index.html
assets/templates/data ... |
/external/mockito/lib/ |
D | byte-buddy-1.8.15.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/maven/
META- ... |