Home
last modified time | relevance | path

Searched refs:expected (Results 351 – 375 of 402) sorted by relevance

1...<<11121314151617

/art/test/459-dead-phi/smali/
DEquivalentPhi.smali22 # aget is initally expected to be an int, but will
/art/compiler/optimizing/
Dcodegen_test.cc69 void TestCode(const std::vector<uint16_t>& data, bool has_result = false, int32_t expected = 0);
70 void TestCodeLong(const std::vector<uint16_t>& data, bool has_result, int64_t expected);
78 void CodegenTest::TestCode(const std::vector<uint16_t>& data, bool has_result, int32_t expected) { in TestCode() argument
86 RunCode(target_config, *compiler_options, graph, [](HGraph*) {}, has_result, expected); in TestCode()
91 bool has_result, int64_t expected) { in TestCodeLong() argument
99 RunCode(target_config, *compiler_options, graph, [](HGraph*) {}, has_result, expected); in TestCodeLong()
Dscheduler_test.cc183 int expected) { in CompileWithRandomSchedulerAndRun() argument
197 has_result, expected); in CompileWithRandomSchedulerAndRun()
/art/libartbase/base/
Dintrusive_forward_list_test.cc61 #define ASSERT_LISTS_EQUAL(expected, value) \ argument
63 ASSERT_EQ((expected).empty(), (value).empty()); \
64 ASSERT_EQ(std::distance((expected).begin(), (expected).end()), \
66 ASSERT_TRUE(std::equal((expected).begin(), (expected).end(), (value).begin())); \
Dcommon_art_test.cc207 std::filesystem::path expected(android_host_out); in GetAndroidHostOut() local
210 CHECK_EQ(std::filesystem::weakly_canonical(expected).string(), from_env.string()); in GetAndroidHostOut()
214 return expected.string(); in GetAndroidHostOut()
Dbit_struct_test.cc74 CustomBitStruct expected(0b1111u); in TEST() local
/art/test/510-checker-try-catch/smali/
DRuntime.smali184 # expected to load them from stack map and copy to the catch phi's location.
214 # Runtime is expected to find their location in the stack map and copy the value
252 # Runtime is expected to find their location in the stack map and copy the value
303 # is expected to find their location in the stack map and copy the value to the
345 # Runtime is expected to find their location in the stack map and copy the value
388 # definition. Runtime is expected to find their location in the stack map and
437 # definition. Runtime is expected to find their location in the stack map and
/art/test/005-annotations/
Dexpected.txt111 Got expected TypeNotPresentException
112 Got expected Error for renamed enum
/art/test/958-methodhandle-stackframe/src-art/
DMain.java112 } catch (WrongMethodTypeException expected) { in main()
/art/test/411-checker-hdiv-hrem-pow2/src/
DDivTest.java19 public static <T extends Number> void expectEquals(T expected, T result) { in expectEquals() argument
20 if (!expected.equals(result)) { in expectEquals()
21 throw new Error("Expected: " + expected + ", found: " + result); in expectEquals()
DRemTest.java19 public static <T extends Number> void expectEquals(T expected, T result) { in expectEquals() argument
20 if (!expected.equals(result)) { in expectEquals()
21 throw new Error("Expected: " + expected + ", found: " + result); in expectEquals()
/art/test/115-native-bridge/
Dnativebridge.cc306 void AssertState(TestStatus expected) { in AssertState() argument
307 if (state_ != expected) { in AssertState()
308 printf("ERROR: unexpected state, was %d, expected %d\n", state_, expected); in AssertState()
Dexpected.txt72 Catch UnsatisfiedLinkError exception as expected.
/art/test/589-super-imt/src/
DMain.java280 public static void expectEquals(Object actual, Object expected) { in expectEquals() argument
281 if (!actual.equals(expected)) { in expectEquals()
282 throw new Error("Expected " + expected + ", got " + actual); in expectEquals()
/art/runtime/
Dreflection.cc217 static void ThrowIllegalPrimitiveArgumentException(const char* expected, in ThrowIllegalPrimitiveArgumentException() argument
221 StringPrintf("Invalid primitive conversion from %s to %s", expected, in ThrowIllegalPrimitiveArgumentException()
274 #define DO_FAIL(expected) \ in BuildArgArrayFromObjectArray() argument
278 ThrowIllegalPrimitiveArgumentException(expected, \ in BuildArgArrayFromObjectArray()
285 expected, \ in BuildArgArrayFromObjectArray()
Druntime_callbacks_test.cc246 for (const char* expected : list) { in PrintError() local
247 LOG(ERROR) << " " << expected; in PrintError()
Dart_method.h221 uint32_t expected = (kAccPreCompiled | kAccCompileDontBother); in IsPreCompiled() local
222 return (GetAccessFlags() & expected) == expected; in IsPreCompiled()
/art/tools/hiddenapi/
DREADME.md17 Types are expected in their DEX format - class descriptors are to be provided in
/art/tools/checker/file_format/checker/
Dtest.py92 def assertEqualsRegex(self, string, expected): argument
93 self.assertEqual(expected, self.parseStatement(string).toRegex())
/art/test/565-checker-irreducible-loop/smali/
DIrreducibleLoop.smali20 # move the constant-folded value to where it's expected.
/art/tools/runtime_memusage/
DREADME91 CATEGORIES are words that are expected to show in
/art/test/100-reflect2/
Dexpected.txt25 got expected IllegalArgumentException
66 got expected InvocationTargetException
/art/test/031-class-attributes/src/
DClassAttrs.java182 } catch (NullPointerException expected) { in test_isAssignableFrom()
/art/runtime/arch/
Dstub_test.cc999 int32_t expected[kStringCount][kStringCount]; in TEST_F() local
1002 expected[x][y] = s[x]->CompareTo(s[y].Get()); in TEST_F()
1023 int32_t e = expected[x][y]; in TEST_F()
1873 int32_t expected[kStringCount][kCharCount][kMaxLen + 3]; in TEST_F() local
1877 expected[x][y][z] = s[x]->FastIndexOf(c_char[y], static_cast<int32_t>(z) - 1); in TEST_F()
1902 EXPECT_EQ(expected[x][y][z], conv.i) << "Wrong result for " << c_str[x] << " / " << in TEST_F()
/art/test/421-large-frame/src/
DMain.java21 public static void assertEquals(long expected, long result) { in assertEquals() argument
22 if (expected != result) { in assertEquals()
23 throw new Error("Expected: " + expected + ", found: " + result); in assertEquals()

1...<<11121314151617