Searched refs:IsA (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/wasm/ |
D | asm-types.h | 273 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()
|
D | asm-types.cc | 58 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/ |
D | test_mox.py | 73 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/ |
D | test_mox.py | 73 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/ |
D | runner_test.py | 78 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/ |
D | service_handlers_test.py | 321 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/ |
D | mox.py | 1001 elif (isinstance(params[0], IsA) and 1379 class IsA(Comparator): class
|
/external/chromium-trace/catapult/third_party/mox3/mox3/ |
D | mox.py | 1001 elif (isinstance(params[0], IsA) and 1379 class IsA(Comparator): class
|
/external/v8/test/unittests/wasm/ |
D | asm-types-unittest.cc | 263 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/ |
D | mox.py | 790 class IsA(Comparator): class
|