Home
last modified time | relevance | path

Searched refs:value_string (Results 1 – 25 of 25) 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/
Dproperty-descriptor.cc91 } else if (key == roots.value_string()) { in ToPropertyDescriptorFastPath()
160 CreateDataProperty(result, factory->value_string(), value()); in ToObject()
232 if (!GetPropertyIfPresent(receiver, isolate->factory()->value_string(), in ToPropertyDescriptor()
Dheap-symbols.h234 V(value_string, "value") \
Dbootstrapper.cc3404 Descriptor d = Descriptor::DataField(isolate(), factory->value_string(), in InitializeGlobal()
5056 Descriptor::DataField(isolate(), factory()->value_string(), in InstallNatives()
/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/tensorflow/tensorflow/python/util/protobuf/
Dcompare_test.proto48 map<string, string> value_string = 2; field
Dcompare_test.py266 pb.value_string['d'] = 'e'
/external/llvm/bindings/python/llvm/tests/
Dtest_object.py67 assert isinstance(relocation.value_string, str)
/external/swiftshader/third_party/llvm-7.0/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/builtins/
Dbuiltins-iterator-gen.cc147 Node* value = GetProperty(context, result, factory()->value_string()); in IteratorValue()
Dbuiltins-async-iterator-gen.cc284 GetProperty(context, iter_result, factory()->value_string()); in LoadIteratorResult()
Dbuiltins-string-gen.cc2564 Node* const value_string = in GenerateWithAttribute() local
2570 Node* strings[] = {StringConstant(open_tag_attr.c_str()), value_string, in GenerateWithAttribute()
Dbuiltins-object-gen.cc1674 AddToDictionaryIf(IsNotTheHole(value), properties, factory->value_string(), in FromPropertyDescriptor()
/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/parsing/
Dpattern-rewriter.cc502 factory()->NewStringLiteral(ast_value_factory()->value_string(), in VisitArrayLiteral()
624 factory()->NewStringLiteral(ast_value_factory()->value_string(), in VisitArrayLiteral()
Dparser.cc2053 factory()->NewStringLiteral(avfactory->value_string(), nopos); in InitializeForOfStatement()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc714 string value_string(value, value_len); in CheckAndGetInteger() local
716 reflection->AddString(message, descriptor, value_string); in CheckAndGetInteger()
718 reflection->SetString(message, descriptor, value_string); in CheckAndGetInteger()
720 reflection->SetRepeatedString(message, descriptor, index, value_string); in CheckAndGetInteger()
/external/v8/src/interpreter/
Dbytecode-generator.cc2503 ->LoadNamedProperty(value, ast_string_constants()->value_string(), in BuildArrayLiteralSpread()
3309 output, ast_string_constants()->value_string(), in VisitYieldStar()
3338 ->LoadNamedProperty(output, ast_string_constants()->value_string(), in VisitYieldStar()
/external/v8/src/objects/
Dintl-objects.cc879 JSObject::AddProperty(isolate, element, factory->value_string(), value, NONE); in InnerAddElement()
/external/python/cpython3/Modules/
Dposixmodule.c9283 const char *value_string = PyBytes_AS_STRING(value); in os_putenv_impl() local
9289 bytes = PyBytes_FromFormat("%s=%s", name_string, value_string); in os_putenv_impl()