HomeSort by relevance Sort by last modified time
    Searched full:resolved (Results 1 - 25 of 1829) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/Inputs/microsoft-header-search/
falsepos.h 3 #warning successfully resolved the falsepos.h header
  /external/v8/test/intl/date-format/
resolved-options.js 32 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.hasOwnProperty('year'))
    [all...]
  /art/test/003-omnibus-opcodes/src2/
UnresStuff.java 2 * Unresolved classes / fields / methods in a resolved class.
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 47 * components. Returns (resolved) on success, or (NULL) on failure,
48 * in which case the path which caused trouble is left in (resolved).
51 realpath(const char * __restrict path, char * __restrict resolved)
68 if (resolved == NULL) {
69 resolved = malloc(PATH_MAX);
70 if (resolved == NULL)
77 resolved[0] = '/';
78 resolved[1] = '\0';
80 return (resolved);
84 if (getcwd(resolved, PATH_MAX) == NULL)
    [all...]
  /art/test/078-polymorphic-virtual/
info.txt 1 Stress test predicted chaining for overloaded virtual callsite with 3 resolved
  /art/test/126-miranda-multidex/
info.txt 1 This test ensures that cross-dex-file Miranda methods are correctly resolved.
  /external/openssh/openbsd-compat/
realpath.c 45 * char *realpath(const char *path, char resolved[PATH_MAX]);
48 * components. Returns (resolved) on success, or (NULL) on failure,
49 * in which case the path which caused trouble is left in (resolved).
52 realpath(const char *path, char resolved[PATH_MAX])
64 resolved[0] = '/';
65 resolved[1] = '\0';
67 return (resolved);
71 if (getcwd(resolved, PATH_MAX) == NULL) {
72 strlcpy(resolved, ".", PATH_MAX);
75 resolved_len = strlen(resolved);
    [all...]
  /external/v8/test/webkit/fast/js/
Promise-already-resolved-expected.txt 1 Resolve or reject do not take effect on a resolved Promise.
Promise-resolve-with-itself-expected.txt 1 Test whether Promise will be rejected if it is resolved with itself.
Promise-then-expected.txt 13 PASS resolved
  /libcore/luni/src/main/native/
canonicalize_path.cpp 48 bool canonicalize_path(const char* path, std::string& resolved) {
55 resolved = "/";
78 if (resolved.size() > 1) {
79 resolved.erase(resolved.rfind('/'));
85 if (resolved[resolved.size() - 1] != '/') {
86 resolved += '/';
88 resolved += nextPathComponent;
92 if (lstat(resolved.c_str(), &sb) == 0 && S_ISLNK(sb.st_mode))
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
MultiType.java 28 * 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 = resolved
    [all...]
  /external/clang/test/Preprocessor/
microsoft-header-search.c 4 // expected-warning@Inputs/microsoft-header-search/a/b/include3.h:3 {{#include resolved using non-portable MSVC search rules as}}
6 // expected-warning@Inputs/microsoft-header-search/falsepos.h:3 {{successfully resolved the falsepos.h header}}
  /art/test/003-omnibus-opcodes/src/
UnresStuff.java 2 * Unresolved classes / fields / methods in a resolved class.
  /external/llvm/utils/lit/tests/Inputs/shtest-format/
argv0.txt 1 # Check that we route argv[0] as it was written, instead of the resolved
  /external/v8/src/
i18n.cc 128 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) {
    [all...]
i18n.h 38 // resolved settings for the locale / options.
43 Handle<JSObject> resolved);
62 // resolved settings for the locale / options.
67 Handle<JSObject> resolved);
86 // resolved settings for the locale / options.
91 Handle<JSObject> resolved);
108 // resolved settings for the locale / options.
113 Handle<JSObject> resolved);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
PreviewInflater.java 127 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent, local
130 if (wouldLaunchResolverActivity(resolved, appList)) {
133 if (resolved == null || resolved.activityInfo == null) {
136 return getWidgetInfoFromMetaData(resolved.activityInfo.packageName,
137 resolved.activityInfo.metaData);
147 * {@code null} if it resolved to the resolver activity
157 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent, local
159 if (resolved == null || wouldLaunchResolverActivity(resolved, appList))
    [all...]
  /external/clang/test/SemaCXX/
overloaded-name.cpp 9 (void)((void)0, ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
11 (void)(b? ovl : &ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
12 (void)(b? ovl<float> : &ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
alignof-sizeof-reference.cpp 16 sizeof(&f); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}} \
23 (void)alignof(f_template<int>); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}} expected-warning {{GNU extension}}
  /external/lldb/test/lang/cpp/overloaded-functions/
TestOverloadedFunctions.py 2 Tests that functions with the same name are resolved correctly.
16 """Test that functions with the same name are resolved correctly"""
22 """Test that functions with the same name are resolved correctly"""
  /external/doclava/src/com/google/doclava/
Resolvable.java 32 * Adds a {@link Resolution} that will be resolved at a later time.
39 * @return <tt>true</tt> if all resolutions were resolved.
45 * Prints the list of {@link Resolution}s that will be resolved at a later time.
  /art/runtime/mirror/
dex_cache-inl.h 36 inline void DexCache::SetResolvedType(uint32_t type_idx, Class* resolved) {
38 DCHECK(resolved == nullptr || !resolved->IsErroneous());
39 GetResolvedTypes()->Set(type_idx, resolved);
  /external/elfutils/src/libdwfl/
dwfl_module_getsym.c 35 bool *resolved, bool adjust_st_value)
123 *resolved = false;
138 *resolved = ebl_resolve_sym_value (mod->ebl, &st_value);
139 if (! *resolved)
173 *resolved ? mod->main.elf : elf,
202 bool resolved; local
204 &resolved, false);
212 bool resolved; local
214 &resolved, true);
  /external/llvm/test/Linker/
2003-08-28-TypeResolvesGlobal3.ll 7 ; GLobal using the resolved function prototype

Completed in 281 milliseconds

1 2 3 4 5 6 7 8 91011>>