Home
last modified time | relevance | path

Searched refs:IsA (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/wasm/
Dasm-types.h273 bool IsA(AsmType* that);
284 if (this->IsA(AsmType::Signed())) { in ToReturnType()
287 if (this->IsA(AsmType::Double())) { in ToReturnType()
290 if (this->IsA(AsmType::Float())) { in ToReturnType()
293 if (this->IsA(AsmType::Void())) { in ToReturnType()
307 if (this->IsA(AsmType::Int())) { in ToParameterType()
310 if (this->IsA(AsmType::Double())) { in ToParameterType()
313 if (this->IsA(AsmType::Float())) { in ToParameterType()
Dasm-types.cc58 bool AsmType::IsA(AsmType* that) { in IsA() function in v8::internal::wasm::AsmType
191 if (!arg->IsA(AsmType::Floatish()) && !arg->IsA(AsmType::DoubleQ()) && in ValidateCall()
192 !arg->IsA(AsmType::Signed()) && !arg->IsA(AsmType::Unsigned())) { in ValidateCall()
244 if (!args[ii]->IsA(AsmType::Extern())) { in ValidateCall()
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/tests/
Dtest_mox.py73 self.assertTrue(mox.Or(mox.IsA(dict), mox.IsA(str)) == {})
74 self.assertTrue(mox.Or(mox.IsA(dict), mox.IsA(str)) == 'test')
75 self.assertTrue(mox.Or(mox.IsA(str), mox.IsA(str)) == 'test')
79 self.assertFalse(mox.Or(mox.IsA(dict), mox.IsA(str)) == 0)
87 self.assertTrue(mox.And(mox.IsA(str), mox.IsA(str)) == '1')
92 self.assertFalse(mox.And(mox.IsA(dict), mox.IsA(str)) == '1')
378 self.assertTrue(mox.IsA(str) == 'test')
382 self.assertFalse(mox.IsA(str) == 10)
386 self.assertTrue(mox.IsA(str) != 10)
390 self.assertFalse(mox.IsA(str) != "test")
[all …]
/external/chromium-trace/catapult/third_party/mox3/mox3/tests/
Dtest_mox.py73 self.assertTrue(mox.Or(mox.IsA(dict), mox.IsA(str)) == {})
74 self.assertTrue(mox.Or(mox.IsA(dict), mox.IsA(str)) == 'test')
75 self.assertTrue(mox.Or(mox.IsA(str), mox.IsA(str)) == 'test')
79 self.assertFalse(mox.Or(mox.IsA(dict), mox.IsA(str)) == 0)
87 self.assertTrue(mox.And(mox.IsA(str), mox.IsA(str)) == '1')
92 self.assertFalse(mox.And(mox.IsA(dict), mox.IsA(str)) == '1')
378 self.assertTrue(mox.IsA(str) == 'test')
382 self.assertFalse(mox.IsA(str) == 10)
386 self.assertTrue(mox.IsA(str) != 10)
390 self.assertFalse(mox.IsA(str) != "test")
[all …]
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
Drunner_test.py78 mock_error_handler.HandleFile('foo.js', mox.IsA(tokens.Token))
80 mock_error_handler.HandleError(mox.IsA(error.Error))
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/
Dservice_handlers_test.py321 self.handler, mox.IsA(Response1)).WithSideEffects(build_response)
347 self.handler, mox.IsA(Response1)).WithSideEffects(build_response)
374 self.handler, mox.IsA(Response1)).WithSideEffects(build_response)
404 self.handler, mox.IsA(Response1)).WithSideEffects(build_response)
440 self.handler, mox.IsA(Response1)).WithSideEffects(build_response)
478 self.handler, mox.IsA(Response1)).WithSideEffects(build_response)
526 self.handler, mox.IsA(Response1)).WithSideEffects(build_response)
682 self.handler, mox.IsA(Response1)).AndRaise(
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
Dmox.py1001 elif (isinstance(params[0], IsA) and
1379 class IsA(Comparator): class
/external/chromium-trace/catapult/third_party/mox3/mox3/
Dmox.py1001 elif (isinstance(params[0], IsA) and
1379 class IsA(Comparator): class
/external/v8/test/unittests/wasm/
Dasm-types-unittest.cc263 TEST_F(AsmTypeTest, IsA) { in TEST_F() argument
282 EXPECT_EQ(Expected, test_types[ii]->IsA(test_types[jj])) in TEST_F()
/external/protobuf/python/
Dmox.py790 class IsA(Comparator): class