Home
last modified time | relevance | path

Searched refs:type_checker (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/piex/src/image_type_recognition/
Dimage_type_recognition_lite.cc803 const TypeChecker* type_checker = GetTypeCheckerForType(type); in IsOfType() local
804 if (type_checker) { in IsOfType()
805 return type_checker->IsMyType(source); in IsOfType()
812 const TypeChecker* type_checker = GetTypeCheckerForType(type); in RequestedSizeForType() local
813 if (type_checker) { in RequestedSizeForType()
814 return type_checker->RequestedSize(); in RequestedSizeForType()
822 for (const auto* type_checker : checkers_) { in GetTypeCheckerForType() local
823 if (type_checker->Type() == type) { in GetTypeCheckerForType()
824 return type_checker; in GetTypeCheckerForType()
/third_party/protobuf/python/google/protobuf/internal/
Dextension_dict.py163 type_checker = type_checkers.GetTypeChecker(extension_handle)
166 type_checker.CheckValue(value))
Dpython_message.py452 type_checker = type_checkers.GetTypeChecker(field)
455 message._listener_for_children, type_checker)
695 type_checker = type_checkers.GetTypeChecker(field)
713 new_value = type_checker.CheckValue(new_value)
Dcontainers.py244 def __init__(self, message_listener, type_checker): argument
254 self._type_checker = type_checker
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-compiler.cc5751 template <TypeChecker type_checker>
5757 (this->*type_checker)(object, &no_match, pinned, result.gp()); in AbstractTypeCheck()
5790 template <TypeChecker type_checker>
5797 (this->*type_checker)(object, trap_label, {}, no_reg); in AbstractTypeCast()
5821 template <TypeChecker type_checker>
5833 (this->*type_checker)(object, &no_match, {}, no_reg); in BrOnAbstractType()
5841 template <TypeChecker type_checker>
5853 (this->*type_checker)(object, &no_match, {}, no_reg); in BrOnNonAbstractType()
/third_party/node/deps/v8/src/compiler/
Dwasm-compiler.h744 std::function<void(Callbacks)> type_checker);
Dwasm-compiler.cc5845 Node** no_match_effect, std::function<void(Callbacks)> type_checker) { in BrOnCastAbs() argument
5849 type_checker(BranchCallbacks(no_match_controls, no_match_effects, in BrOnCastAbs()