Searched defs:resolved (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium_org/v8/test/intl/date-format/
H A Dresolved-options.js32 var resolved = dtfDefault.resolvedOptions(); variable
34 assertTrue(resolved.hasOwnProperty('locale'));
35 assertEquals('en-US', resolved.locale);
36 assertTrue(resolved.hasOwnProperty('numberingSystem'));
37 assertEquals('latn', resolved.numberingSystem);
38 assertTrue(resolved.hasOwnProperty('calendar'));
39 assertEquals('gregory', resolved.calendar);
40 assertTrue(resolved.hasOwnProperty('timeZone'));
41 assertEquals(getDefaultTimeZone(), resolved.timeZone);
43 assertTrue(resolved
[all...]
/external/chromium_org/v8/test/promises-aplus/lib/
H A Dadapter.js31 resolved: function(value) { return Promise.resolve(value); },
/external/chromium_org/chrome/common/local_discovery/
H A Dlocal_domain_resolver_unittest.cc72 void AddressCallback(bool resolved, argument
75 AddressCallbackInternal(resolved,
92 void(bool resolved,
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateField.cpp73 bool resolved = resolveCommon(maker); local
74 if (resolved && fFieldInfo == NULL) {
78 if (resolved == false || fFieldInfo == NULL)
/external/skia/src/animator/
H A DSkAnimateField.cpp73 bool resolved = resolveCommon(maker); local
74 if (resolved && fFieldInfo == NULL) {
78 if (resolved == false || fFieldInfo == NULL)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAConfiguration.java59 /** Indicate that this configuration has been resolved and no further
62 * such as (s|2) and (s|3), I can set (s|3) to resolved=true (and any
65 protected boolean resolved; field in class:NFAConfiguration
72 * nondeterministic configurations (as it does for "resolved" field)
144 if ( resolved ) {
145 buf.append("|resolved");
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_host_resolver_interface.cc18 FakeHostResolverResource() : resolved(false) {}
21 bool resolved; member in class:__anon8947::FakeHostResolverResource
56 resolver->resolved = false;
59 resolver->resolved = true;
68 if (!res->resolved)
77 if (!res->resolved)
96 if (!res->resolved)
/external/chromium_org/tools/gn/
H A Dbuilder_record.h19 // item depends on, both resolved ones, and unresolved ones.
73 bool resolved() const { return resolved_; } function in class:BuilderRecord
88 // Records that are waiting on this one to be resolved. This is the other
H A Dsetup.cc445 SourceDir resolved = local
448 if (resolved.is_null()) {
456 scheduler_.Log("Using build dir", resolved.value());
459 base::FilePath build_dir_path = build_settings_.GetFullPath(resolved);
472 build_settings_.SetBuildDir(resolved);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiType.java28 * is to reduce the set of possible types down to a single resolved type. This
50 private Type resolved; field in class:MultiType
70 if (resolved != null)
71 return resolved.getCtClass();
111 if (resolved != null)
112 return type.isAssignableFrom(resolved);
123 // Update previous merge paths to the same resolved type
124 resolved = Type.get((CtClass)map.values().iterator().next());
139 resolved = potentialClass;
160 source.resolved
[all...]
/external/chromium_org/base/files/
H A Dfile_path_watcher_fsevents.cc239 FilePath resolved = ResolvePath(target_).StripTrailingSeparators(); local
240 bool changed = resolved != resolved_target_;
241 resolved_target_ = resolved;
/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dapp_launch_info.cc141 GURL resolved = extension->url().Resolve(launch_path); local
142 if (!resolved.is_valid() || resolved.GetOrigin() != extension->url()) {
/external/chromium_org/net/url_request/
H A Durl_request_file_job.cc147 bool resolved; local
148 resolved = base::win::ResolveShortcut(new_path, &new_path, NULL);
150 // If shortcut is not resolved succesfully, do not redirect.
151 if (!resolved)
231 // FileDirJob where it is resolved as invalid.
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerContainerTest.cpp91 StubScriptFunction resolved, rejected; local
92 promise.then(resolved.function(scriptState), rejected.function(scriptState));
94 EXPECT_EQ(0ul, resolved.callCount());
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp91 JSBool resolved; local
93 if (!JS_ResolveStandardClass(cx, obj, id, &resolved))
95 if (resolved) {
/external/chromium_org/url/
H A Durl_util_unittest.cc235 // A non-standard hierarchical base is resolved with path URL
260 // Fragment URLs can be resolved against a non-standard base.
282 std::string resolved; local
283 StdStringCanonOutput output(&resolved);
293 EXPECT_EQ(test_data.out, resolved) << i;
H A Durl_canon_unittest.cc1911 const char* resolved; // What we expect in the result when resolving. member in struct:url::RelativeCase
2072 std::string resolved; local
2073 StdStringCanonOutput output(&resolved);
2082 EXPECT_EQ(cur_case.resolved, resolved) << " on " << cur_case.test;
2087 int resolved_len = static_cast<int>(resolved.size());
2089 ParseFileURL(resolved.c_str(), resolved_len, &ref_parsed);
2091 ParseStandardURL(resolved.c_str(), resolved_len, &ref_parsed);
2093 ParsePathURL(resolved.c_str(), resolved_len, false, &ref_parsed);
/external/lldb/source/Core/
H A DValue.cpp452 bool resolved = false; local
464 resolved = true;
474 resolved = true;
481 if (!resolved)
H A DSection.cpp206 bool resolved = true; local
219 resolved = false;
227 s->Printf("%c 0x%8.8" PRIx64 " 0x%8.8" PRIx64 " 0x%8.8x ", resolved ? ' ' : '*', m_file_offset, m_file_size, Get());
/external/skia/src/xml/
H A DSkJS.cpp91 JSBool resolved; local
93 if (!JS_ResolveStandardClass(cx, obj, id, &resolved))
95 if (resolved) {
/external/chromium_org/v8/src/
H A Di18n.cc128 Handle<JSObject> resolved) {
134 resolved, factory->NewStringFromStaticChars("pattern"),
144 JSObject::SetProperty(resolved, factory->NewStringFromStaticChars("calendar"),
157 resolved, factory->NewStringFromStaticChars("timeZone"),
161 resolved, factory->NewStringFromStaticChars("timeZone"),
180 resolved, factory->NewStringFromStaticChars("numberingSystem"),
183 JSObject::SetProperty(resolved,
195 JSObject::SetProperty(resolved, factory->NewStringFromStaticChars("locale"),
200 JSObject::SetProperty(resolved, factory->NewStringFromStaticChars("locale"),
334 Handle<JSObject> resolved) {
125 SetResolvedDateSettings(Isolate* isolate, const icu::Locale& icu_locale, icu::SimpleDateFormat* date_format, Handle<JSObject> resolved) argument
331 SetResolvedNumberSettings(Isolate* isolate, const icu::Locale& icu_locale, icu::DecimalFormat* number_format, Handle<JSObject> resolved) argument
498 SetResolvedCollatorSettings(Isolate* isolate, const icu::Locale& icu_locale, icu::Collator* collator, Handle<JSObject> resolved) argument
638 SetResolvedBreakIteratorSettings(Isolate* isolate, const icu::Locale& icu_locale, icu::BreakIterator* break_iterator, Handle<JSObject> resolved) argument
678 InitializeDateTimeFormat( Isolate* isolate, Handle<String> locale, Handle<JSObject> options, Handle<JSObject> resolved) argument
753 InitializeNumberFormat( Isolate* isolate, Handle<String> locale, Handle<JSObject> options, Handle<JSObject> resolved) argument
814 InitializeCollator( Isolate* isolate, Handle<String> locale, Handle<JSObject> options, Handle<JSObject> resolved) argument
871 InitializeBreakIterator( Isolate* isolate, Handle<String> locale, Handle<JSObject> options, Handle<JSObject> resolved) argument
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_relocations.cpp383 const bool resolved = false; local
384 if (!ApplyRelReloc(&relocation, sym_addr, resolved, error))
397 if (!ApplyRelReloc(&relocation, sym_addr, resolved, error))
420 const bool resolved = false; local
433 if (!ApplyRelaReloc(&relocation, sym_addr, resolved, error))
470 bool resolved CRAZY_UNUSED,
565 bool resolved CRAZY_UNUSED,
654 if (resolved)
682 RLOG("%s: symbol %s resolved to %p\n", __FUNCTION__, sym_name, address);
751 bool resolved local
801 bool resolved = false; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunport.cc348 rtc::SocketAddress resolved; local
350 !resolver_->GetResolvedAddress(input, ip().family(), &resolved)) {
359 if (server_addresses_.find(resolved) == server_addresses_.end()) {
360 server_addresses_.insert(resolved);
361 SendStunBindingRequest(resolved);
/external/lldb/source/Target/
H A DStackFrame.cpp169 // Make sure we have resolved the StackID object's symbol context scope if
325 uint32_t resolved = 0; local
332 resolved |= eSymbolContextTarget;
337 // and if we don't have a module. The resolved address section will
368 resolved |= eSymbolContextCompUnit;
379 resolved |= eSymbolContextFunction;
390 resolved |= eSymbolContextBlock;
401 resolved |= eSymbolContextSymbol;
412 resolved |= eSymbolContextLineEntry;
426 resolved |
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Ddojo-1.6.1.js3982 throw new Error("This deferred has already been resolved");
3996 var func = (isError ? listener.error : listener.resolved);
4085 resolved: resolvedCallback,
5490 // Returns the first argument resolved to a DOM node.
5512 // Returned values is the first argument resolved to a DOM node.

Completed in 8128 milliseconds

123