Home
last modified time | relevance | path

Searched refs:value_string (Results 1 – 24 of 24) sorted by relevance

/external/libchrome/mojo/public/cpp/bindings/tests/
Dvalidation_test_input_parser.cc41 const std::string& value_string);
63 const std::string& value_string);
65 const std::string& value_string);
66 bool ParseFloat(const DataType& type, const std::string& value_string);
67 bool ParseDouble(const DataType& type, const std::string& value_string);
69 const std::string& value_string);
70 bool ParseDistance(const DataType& type, const std::string& value_string);
71 bool ParseAnchor(const DataType& type, const std::string& value_string);
72 bool ParseHandles(const DataType& type, const std::string& value_string);
76 bool ConvertToUnsignedInteger(const std::string& value_string,
[all …]
/external/autotest/client/common_lib/cros/cfm/usb/
Dusb_port_manager.py92 value_string = '1' if power_on else '0'
94 value_string, gpio_path))
107 value_string = '1' if power_on else '0'
109 value_string)
/external/tensorflow/tensorflow/compiler/xla/
Dtext_literal_reader.cc88 absl::string_view value_string = absl::StripAsciiWhitespace(pieces[1]); in ReadAllLines() local
98 if (!absl::SimpleAtof(value_string, &value)) { in ReadAllLines()
100 value_string); in ReadAllLines()
/external/webrtc/webrtc/system_wrappers/source/
Ddata_log.cc46 void ToString(const std::string& column_name, std::string* value_string);
131 std::string* value_string) { in ToString() argument
135 *value_string = "NaN,"; in ToString()
138 container->ToString(value_string); in ToString()
/external/v8/src/objects/
Dproperty-descriptor.cc91 } else if (key == roots.value_string()) { in ToPropertyDescriptorFastPath()
160 CreateDataProperty(result, factory->value_string(), value()); in ToObject()
231 if (!GetPropertyIfPresent(receiver, isolate->factory()->value_string(), in ToPropertyDescriptor()
Dintl-objects.cc481 JSObject::AddProperty(isolate, element, factory->value_string(), value, NONE); in InnerAddElement()
/external/tensorflow/tensorflow/python/util/protobuf/
Dcompare_test.proto48 map<string, string> value_string = 2; field
Dcompare_test.py266 pb.value_string['d'] = 'e'
/external/libchrome/base/
Dcommand_line.cc351 const std::string& value_string) { in AppendSwitchASCII() argument
353 AppendSwitchNative(switch_string, ASCIIToUTF16(value_string)); in AppendSwitchASCII()
355 AppendSwitchNative(switch_string, value_string); in AppendSwitchASCII()
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/tests/
Dtest_object.py67 assert isinstance(relocation.value_string, str)
/external/llvm/bindings/python/llvm/tests/
Dtest_object.py67 assert isinstance(relocation.value_string, str)
/external/webrtc/webrtc/modules/audio_processing/
Daudio_processing_performance_unittest.cc282 std::string value_string = ""; in print_processor_statistics() local
284 value_string += std::to_string(duration) + ","; in print_processor_statistics()
287 processor_name, value_string, "us", false); in print_processor_statistics()
/external/v8/src/execution/
Dfutex-emulation.cc559 isolate, result, factory->value_string(), in WaitAsync()
578 isolate, result, factory->value_string(), in WaitAsync()
608 CHECK(JSReceiver::CreateDataProperty(isolate, result, factory->value_string(), in WaitAsync()
/external/llvm/bindings/python/llvm/
Dobject.py408 def value_string(self): member in Relocation
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/
Dobject.py408 def value_string(self): member in Relocation
/external/v8/src/wasm/
Dwasm-module.cc289 Handle<String> value_string = factory->InternalizeUtf8String("value"); in GetTypeForGlobal() local
292 JSObject::AddProperty(isolate, object, value_string, in GetTypeForGlobal()
/external/v8/src/builtins/
Dbuiltins-async-iterator-gen.cc237 GetProperty(context, iter_result, factory()->value_string()); in LoadIteratorResult()
Dbuiltins-iterator-gen.cc129 var_value = GetProperty(context, result, factory()->value_string()); in IteratorValue()
Dbuiltins-object-gen.cc1406 AddToDictionaryIf(IsNotTheHole(value), properties, factory->value_string(), in FromPropertyDescriptor()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc787 string value_string(value, value_len); in CheckAndSetString() local
789 reflection->AddString(message, descriptor, value_string); in CheckAndSetString()
791 reflection->SetString(message, descriptor, value_string); in CheckAndSetString()
793 reflection->SetRepeatedString(message, descriptor, index, value_string); in CheckAndSetString()
/external/v8/src/init/
Dheap-symbols.h326 V(_, value_string, "value") \
Dbootstrapper.cc3499 map = Map::CopyWithField(isolate(), map, factory->value_string(), in InitializeGlobal()
4629 Descriptor::DataField(isolate(), factory()->value_string(), in InstallABunchOfRandomThings()
/external/v8/src/interpreter/
Dbytecode-generator.cc2068 next_result, ast_string_constants()->value_string(), in VisitForOfStatement()
2910 ->LoadNamedProperty(value, ast_string_constants()->value_string(), in BuildFillArrayWithIterator()
3765 ast_string_constants()->value_string(), in BuildDestructuringArrayAssignment()
4477 output, ast_string_constants()->value_string(), in VisitYieldStar()
4505 ->LoadNamedProperty(output, ast_string_constants()->value_string(), in VisitYieldStar()
/external/python/cpython3/Modules/
Dposixmodule.c10038 const char *value_string = PyBytes_AS_STRING(value); in os_putenv_impl() local
10044 bytes = PyBytes_FromFormat("%s=%s", name_string, value_string); in os_putenv_impl()