Home
last modified time | relevance | path

Searched refs:exp3 (Results 1 – 15 of 15) sorted by relevance

/external/python/pybind11/tests/
Dtest_kwargs_and_defaults.py274 exp3 = refcount(myval, myval, myval)
275 assert m.args_refcount(myval, myval, myval) == (exp3, exp3, exp3)
283 assert m.mixed_args_refcount(myval, myval, myval) == (exp3 + 3, exp3 + 3, exp3 + 3)
/external/ltp/testcases/realtime/func/pi-tests/
Dparse-testpi1.py39 exp3=re.compile("[1-9]\d{2,3}")
42 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
Dparse-testpi2.py40 exp3=re.compile("[1-9]\d{2,3}")
45 if exp1.search(line) and exp2.search(prev_line) and exp3.search(prev_line):
/external/zstd/tests/gzip/
Dmixed.sh24 printf 'aaa\nbbb\nccc\n' > exp3 || framework_failure_
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_cse_test.cc231 auto exp3 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local
234 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2, exp3})); in TEST_F()
240 EXPECT_THAT(tuple, op::Tuple(exp1, exp2, exp3)); in TEST_F()
247 EXPECT_THAT(first_operand, ::testing::AnyOf(exp1, exp2, exp3)); in TEST_F()
Dhlo_instruction_test.cc672 auto exp3 = builder.AddInstruction( in TEST_F() local
678 {exp3, exp2, exp1}, HloInstruction::FusionKind::kLoop); in TEST_F()
Dbuffer_assignment_test.cc989 auto exp3 = builder.AddInstruction( in TEST_F() local
995 const std::vector<const HloInstruction*> instrs = GetInstructions(exp3); in TEST_F()
/external/guava/android/guava-tests/test/com/google/common/collect/
DListsTest.java649 List<Object> exp3 = list((Object) 2, "3"); in testCartesianProduct_unrelatedTypes() local
653 .containsExactly(exp1, exp2, exp3, exp4) in testCartesianProduct_unrelatedTypes()
DSetsTest.java753 List<Object> exp3 = list((Object) 2, "3");
757 .containsExactly(exp1, exp2, exp3, exp4)
/external/guava/guava-tests/test/com/google/common/collect/
DListsTest.java649 List<Object> exp3 = list((Object) 2, "3"); in testCartesianProduct_unrelatedTypes() local
653 .containsExactly(exp1, exp2, exp3, exp4) in testCartesianProduct_unrelatedTypes()
DSetsTest.java765 List<Object> exp3 = list((Object) 2, "3");
769 .containsExactly(exp1, exp2, exp3, exp4)
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTestMessageFormat.java1454 String exp3[] = { in testSelectFormat() local
1462 exp3[i] , msgFmt.format(testArgs3[i]) ); in testSelectFormat()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTestMessageFormat.java1451 String exp3[] = { in testSelectFormat() local
1459 exp3[i] , msgFmt.format(testArgs3[i]) ); in testSelectFormat()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java3245 int exp3 = exponent / 3; in cbrt() local
3249 (long)(((exp3 + 1023) & 0x7ff)) << 52); in cbrt()
/external/icu/icu4c/source/test/intltest/
Dusettest.cpp180 const char* exp3[] = {"{l", "r}", NOT, "xy", NULL}; in TestToPattern() local
181 expectToPattern(*s, UNICODE_STRING_SIMPLE("[a-z{r\\}}{\\{l}]"), exp3); in TestToPattern()