/third_party/cJSON/tests/ |
D | parse_with_opts.c | 41 const char empty_string[] = ""; in parse_with_opts_should_handle_empty_strings() local 44 TEST_ASSERT_NULL(cJSON_ParseWithOpts(empty_string, NULL, false)); in parse_with_opts_should_handle_empty_strings() 45 TEST_ASSERT_EQUAL_PTR(empty_string, cJSON_GetErrorPtr()); in parse_with_opts_should_handle_empty_strings() 47 TEST_ASSERT_NULL(cJSON_ParseWithOpts(empty_string, &error_pointer, false)); in parse_with_opts_should_handle_empty_strings() 48 TEST_ASSERT_EQUAL_PTR(empty_string, error_pointer); in parse_with_opts_should_handle_empty_strings() 49 TEST_ASSERT_EQUAL_PTR(empty_string, cJSON_GetErrorPtr()); in parse_with_opts_should_handle_empty_strings()
|
/third_party/gn/src/gn/ |
D | args.cc | 382 Value empty_string(nullptr, std::string()); in SetSystemVarsLocked() local 386 dest->SetValue(variables::kTargetOs, empty_string, nullptr); in SetSystemVarsLocked() 387 dest->SetValue(variables::kCurrentOs, empty_string, nullptr); in SetSystemVarsLocked() 391 dest->SetValue(variables::kTargetCpu, empty_string, nullptr); in SetSystemVarsLocked() 392 dest->SetValue(variables::kCurrentCpu, empty_string, nullptr); in SetSystemVarsLocked() 397 declared_arguments[variables::kCurrentOs] = empty_string; in SetSystemVarsLocked() 398 declared_arguments[variables::kTargetOs] = empty_string; in SetSystemVarsLocked() 400 declared_arguments[variables::kCurrentCpu] = empty_string; in SetSystemVarsLocked() 401 declared_arguments[variables::kTargetCpu] = empty_string; in SetSystemVarsLocked()
|
/third_party/node/deps/v8/src/ic/ |
D | stub-cache.cc | 130 Name empty_string = ReadOnlyRoots(isolate()).empty_string(); in Clear() local 132 primary_[i].key = StrongTaggedValue(empty_string); in Clear() 137 secondary_[j].key = StrongTaggedValue(empty_string); in Clear()
|
/third_party/elfio/elfio/ |
D | elfio_strings.hpp | 69 char empty_string = '\0'; in add_string() local 70 string_section->append_data( &empty_string, 1 ); in add_string()
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_cross_parsed_ir.cpp | 302 return empty_string; in get_name() 311 return empty_string; in get_member_name() 315 return empty_string; in get_member_name() 642 return empty_string; in get_decoration_string() 647 return empty_string; in get_decoration_string() 655 return empty_string; in get_decoration_string() 813 return empty_string; in get_member_decoration_string() 823 return empty_string; in get_member_decoration_string() 827 return empty_string; in get_member_decoration_string()
|
D | spirv_cross_parsed_ir.hpp | 214 return empty_string; in get_empty_string() 242 std::string empty_string; member in SPIRV_CROSS_NAMESPACE::ParsedIR
|
/third_party/ltp/testcases/kernel/syscalls/nftw/ |
D | lib.c | 247 char *empty_string; in test_ENOENT_empty() local 249 empty_string = ""; in test_ENOENT_empty() 258 if ((s2 = (*callback) (empty_string)) == expected) { in test_ENOENT_empty()
|
D | lib64.c | 247 char *empty_string; in test_ENOENT_empty() local 249 empty_string = ""; in test_ENOENT_empty() 258 if ((s2 = (*callback) (empty_string)) == expected) { in test_ENOENT_empty()
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-regexp.cc | 85 return obj->IsUndefined(isolate) ? ReadOnlyRoots(isolate).empty_string() in BUILTIN() 114 return ReadOnlyRoots(isolate).empty_string(); // No captures. in BUILTIN()
|
D | builtins-struct.cc | 69 isolate->factory()->empty_string(), Builtin::kSharedStructConstructor, in BUILTIN()
|
/third_party/ffmpeg/libavformat/ |
D | wsddec.c | 37 static int empty_string(const char *buf, unsigned size) in empty_string() function 86 if (empty_string(buf, size)) { in get_metadata()
|
/third_party/python/Include/internal/ |
D | pycore_interp.h | 57 PyObject *empty_string; member 68 PyObject *empty_string; member
|
/third_party/node/deps/v8/src/strings/ |
D | string-builder.cc | 194 return isolate->factory()->empty_string(); in ToString() 240 Handle<String>::New(ReadOnlyRoots(isolate).empty_string(), isolate); in IncrementalStringBuilder() 257 new_accumulator = factory()->empty_string(); in Accumulate()
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-utils.cc | 23 return isolate->factory()->empty_string(); in GenericCaptureGetter() 30 return isolate->factory()->empty_string(); in GenericCaptureGetter()
|
/third_party/node/deps/v8/src/ast/ |
D | ast-value-factory.cc | 68 set_string(isolate->factory()->empty_string()); in Internalize() 193 return isolate->factory()->empty_string(); in Allocate() 216 return isolate->factory()->empty_string(); in AllocateFlat()
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-regexp.cc | 576 return ReadOnlyRoots(isolate).empty_string(); in StringReplaceGlobalAtomRegExpWithString() 709 Handle<String> empty_string = isolate->factory()->empty_string(); in StringReplaceGlobalRegExpWithEmptyString() local 712 isolate, subject, regexp, empty_string, last_match_info); in StringReplaceGlobalRegExpWithEmptyString() 715 isolate, subject, regexp, empty_string, last_match_info); in StringReplaceGlobalRegExpWithEmptyString() 734 if (new_length == 0) return ReadOnlyRoots(isolate).empty_string(); in StringReplaceGlobalRegExpWithEmptyString() 775 if (position == 0) return ReadOnlyRoots(isolate).empty_string(); in StringReplaceGlobalRegExpWithEmptyString() 1025 : isolate_->factory()->empty_string(); in GetCapture() 1037 return isolate_->factory()->empty_string(); in GetNamedCapture() 1050 return isolate_->factory()->empty_string(); in GetNamedCapture() 1103 return isolate_->factory()->empty_string(); in GetCapture() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
D | es31cArrayOfArraysTests.cpp | 167 static const std::string empty_string = ""; variable 431 const std::string* cs = &empty_string; \ 442 vs = &empty_string; \ 443 tcs = &empty_string; \ 444 tes = &empty_string; \ 445 gs = &empty_string; \ 446 fs = &empty_string; \ 3659 this->execute_positive_test(empty_string, empty_string, empty_string, empty_string, empty_string, in execute_dispatch_test() 3752 const std::string& compute_shader_source = empty_string; in execute_draw_test() 4572 this->execute_positive_test(empty_string, empty_string, empty_string, empty_string, empty_string, in execute_dispatch_test() [all …]
|
/third_party/node/deps/v8/src/execution/ |
D | messages.cc | 300 return isolate->factory()->empty_string(); in FormatStackTrace() 410 Handle<String> arg0_string = factory->empty_string(); in Format() 414 Handle<String> arg1_string = factory->empty_string(); in Format() 418 Handle<String> arg2_string = factory->empty_string(); in Format() 643 Handle<String> msg_default = isolate->factory()->empty_string(); in ToString()
|
/third_party/node/deps/v8/src/snapshot/ |
D | object-deserializer.cc | 110 d.AddAttachedObject(isolate->factory()->empty_string()); in DeserializeSharedFunctionInfo()
|
D | code-serializer.cc | 284 String name = ReadOnlyRoots(isolate).empty_string(); in CreateInterpreterDataForDeserializedCode() 373 : ReadOnlyRoots(isolate).empty_string(), in FinalizeDeserialization() 554 ReadOnlyRoots(isolate).empty_string()); in FinishOffThreadDeserialize()
|
/third_party/node/deps/v8/src/objects/ |
D | templates.cc | 39 name_string = isolate->factory()->empty_string(); in GetOrCreateSharedFunctionInfo()
|
D | scope-info.cc | 551 scope_info->set(index++, *isolate->factory()->empty_string()); in CreateForBootstrapping() 556 scope_info->set(index++, *isolate->factory()->empty_string()); in CreateForBootstrapping() 820 if (!HasFunctionName()) return GetReadOnlyRoots().empty_string(); in FunctionDebugName() 829 return GetReadOnlyRoots().empty_string(); in FunctionDebugName()
|
D | shared-function-info-inl.h | 163 if (!HasSharedName()) return GetReadOnlyRoots().empty_string(); in Name() 169 return GetReadOnlyRoots().empty_string(); in Name() 915 return GetReadOnlyRoots().empty_string(); in inferred_name()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/status/ |
D | status.cc | 188 static std::string* empty_string = new std::string(); in EmptyString() local 189 return empty_string; in EmptyString()
|
/third_party/node/deps/v8/src/compiler/ |
D | js-graph.cc | 140 DEFINE_GETTER(EmptyStringConstant, HeapConstant(factory()->empty_string()))
|