/external/protobuf/python/google/protobuf/internal/ |
D | containers.py | 257 self._values.append(self._type_checker.CheckValue(value)) 263 self._values.insert(key, self._type_checker.CheckValue(value)) 281 new_values = [self._type_checker.CheckValue(elem) for elem in elem_seq_iter] 311 self._values[key] = self._type_checker.CheckValue(value) 322 new_values.append(self._type_checker.CheckValue(value)) 487 key = self._key_checker.CheckValue(key) 495 self._key_checker.CheckValue(item) 508 checked_key = self._key_checker.CheckValue(key) 509 checked_value = self._value_checker.CheckValue(value) 574 key = self._key_checker.CheckValue(key) [all …]
|
D | type_checkers.py | 101 def CheckValue(self, proposed_value): member in TypeChecker 134 def CheckValue(self, proposed_value): member in IntValueChecker 158 def CheckValue(self, proposed_value): member in EnumValueChecker 178 def CheckValue(self, proposed_value): member in UnicodeValueChecker 247 def CheckValue(self, proposed_value): member in FloatValueChecker
|
D | extension_dict.py | 162 type_checker.CheckValue(value))
|
D | python_message.py | 696 new_value = type_checker.CheckValue(new_value)
|
/external/deqp-deps/amber/src/ |
D | verifier.cc | 161 Result CheckValue(const ProbeSSBOCommand* command, in CheckValue() function 620 r = CheckValue<int8_t>(command, ptr, value); in ProbeSSBO() 622 r = CheckValue<uint8_t>(command, ptr, value); in ProbeSSBO() 624 r = CheckValue<int16_t>(command, ptr, value); in ProbeSSBO() 626 r = CheckValue<uint16_t>(command, ptr, value); in ProbeSSBO() 628 r = CheckValue<int32_t>(command, ptr, value); in ProbeSSBO() 630 r = CheckValue<uint32_t>(command, ptr, value); in ProbeSSBO() 632 r = CheckValue<int64_t>(command, ptr, value); in ProbeSSBO() 634 r = CheckValue<uint64_t>(command, ptr, value); in ProbeSSBO() 636 r = CheckValue<float>(command, ptr, value); in ProbeSSBO() [all …]
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | pow.cc | 95 TfLiteStatus CheckValue(TfLiteContext* context, const TfLiteTensor* input) { in CheckValue() function 118 TF_LITE_ENSURE_OK(context, CheckValue(context, input2)); in Eval()
|
/external/compiler-rt/make/ |
D | util.mk | 67 CheckValue = $(info CHECKVALUE: $(1): $(value $(1)) - $($(1)))
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cDirectStateAccessBuffersTests.cpp | 2233 bool DefaultsTest::CheckValue(const T value, const T reference_value, const glw::GLchar* pname_stri… in CheckValue() function in gl4cts::DirectStateAccess::Buffers::DefaultsTest 2318 is_ok &= CheckValue<glw::GLint>(data, test_values[i].expected_data, test_values[i].pname_string, in iterate() 2331 is_ok &= CheckValue<glw::GLint64>(data, (glw::GLint64)test_values[i].expected_data, in iterate() 2343 is_ok &= CheckValue<glw::GLvoid*>(data, (glw::GLvoid*)DE_NULL, "GL_BUFFER_MAP_POINTER", in iterate()
|
D | gl4cDirectStateAccessTests.hpp | 1709 bool CheckValue(const T value, const T reference_value, const glw::GLchar* pname_string,
|
/external/protobuf/python/google/protobuf/ |
D | text_format.py | 1650 checker.CheckValue(result)
|