Home
last modified time | relevance | path

Searched refs:resolved (Results 1 – 25 of 119) sorted by relevance

12345

/external/javassist/src/main/javassist/bytecode/analysis/
DMultiType.java50 private Type resolved; field in MultiType
70 if (resolved != null) in getCtClass()
71 return resolved.getCtClass(); in getCtClass()
111 if (resolved != null) in isAssignableTo()
112 return type.isAssignableFrom(resolved); in isAssignableTo()
124 resolved = Type.get((CtClass)map.values().iterator().next()); in isAssignableTo()
139 resolved = potentialClass; in isAssignableTo()
160 source.resolved = resolved; in propogateResolved()
226 if (resolved != null) in merge()
227 return resolved.merge(type); in merge()
[all …]
/external/lohit-fonts/lohit-devanagari-ttf/
DChangeLog6 - resolved bug 722382
12 - resolved bug 670467, 648423
17 - added Nepali variants for 5, 8, 'kra', 'jha' resolved bug 648362, 648429,
19 - resolved shirorekha bug for ग्मि bug 648424
/external/apache-http/src/org/apache/http/client/utils/
DURIUtils.java194 URI resolved = baseURI.resolve(reference); in resolve() local
196 String resolvedString = resolved.toString(); in resolve()
197 resolved = URI.create(resolvedString.substring(0, in resolve()
200 return resolved; in resolve()
/external/skia/src/animator/
DSkAnimateField.cpp91 bool resolved = resolveCommon(maker); in onEndElement() local
92 if (resolved && fFieldInfo == NULL) { in onEndElement()
96 if (resolved == false || fFieldInfo == NULL) in onEndElement()
/external/skia/src/xml/
DSkJS.cpp99 JSBool resolved; in global_resolve() local
101 if (!JS_ResolveStandardClass(cx, obj, id, &resolved)) in global_resolve()
103 if (resolved) { in global_resolve()
/external/v8/src/
Dmirror-debugger.js793 FunctionMirror.prototype.resolved = function() { method in FunctionMirror
824 if (this.resolved()) {
838 if (this.resolved()) {
855 if (this.resolved()) {
867 if (this.resolved() && this.script()) {
881 if (this.resolved()) {
1490 if (this.func().resolved() && this.func().script()) {
1498 if (this.func().resolved()) {
1508 if (this.func().resolved()) {
1518 if (this.func().resolved()) {
[all …]
Dscopes.cc124 ASSERT(!resolved()); in Scope()
141 ASSERT(!resolved()); in Scope()
154 ASSERT(resolved()); in Scope()
262 ASSERT(!resolved()); in Initialize()
298 if (result != NULL || !resolved()) { in LocalLookup()
374 ASSERT(!resolved()); in DeclareLocal()
403 ASSERT(!resolved()); in NewUnresolved()
423 ASSERT(!resolved()); in NewTemporary()
1094 if (resolved()) return; in AllocateVariablesRecursively()
/external/v8/test/mjsunit/
Dmirror-function.js63 assertTrue(mirror.resolved());
78 assertTrue(fromJSON.resolved);
Dmirror-unresolved-function.js62 assertFalse(mirror.resolved());
78 assertFalse(fromJSON.resolved);
/external/qemu/android/
Dmain-emulator.c215 char* resolved = path_search_exec(temp); local
216 if (resolved != NULL)
217 return resolved;
/external/chromium/net/url_request/
Durl_request_file_job.cc251 bool resolved; in IsRedirectResponse() local
252 resolved = file_util::ResolveShortcut(&new_path); in IsRedirectResponse()
255 if (!resolved) in IsRedirectResponse()
/external/bluetooth/glib/gio/tests/
Dg-file.c329 char *resolved; in test_g_file_new_for_commandline_arg() local
342 resolved = g_file_get_path (file); in test_g_file_new_for_commandline_arg()
344 g_assert_cmpstr (resolved, ==, cwd); in test_g_file_new_for_commandline_arg()
346 g_free (resolved); in test_g_file_new_for_commandline_arg()
/external/chromium/chrome/browser/policy/
Dpolicy_path_parser_mac.mm60 LOG(ERROR) << "Username variable can not be resolved.";
70 LOG(ERROR) << "Machine name variable can not be resolved.";
/external/llvm/test/Linker/
D2003-08-28-TypeResolvesGlobal3.ll7 ; GLobal using the resolved function prototype
D2003-08-23-GlobalVarLinking.ll7 ; S's should cause the opaque type to be resolved to 'int'.
/external/chromium/chrome/browser/sync/sessions/
Dstatus_controller.cc150 void StatusController::update_conflicts_resolved(bool resolved) { in update_conflicts_resolved() argument
151 shared_.control_params.conflict_sets_built |= resolved; in update_conflicts_resolved()
Dstatus_controller.h220 void update_conflicts_resolved(bool resolved);
/external/lohit-fonts/lohit-tamil-ttf/
DChangeLog6 - resolved 629824, 673419
/external/webkit/Source/WebCore/inspector/front-end/
DSourceFrame.js230 … this.addBreakpoint(lineNumber, breakpoint.resolved, breakpoint.conditional, breakpoint.enabled);
280 …this.addBreakpoint(newLineNumber, breakpoint.resolved, breakpoint.conditional, breakpoint.enabled);
582 addBreakpoint: function(lineNumber, resolved, conditional, enabled) argument
585 resolved: resolved, property
/external/markdown/docs/
Drelease-2.0.txt39 This has resolved various issues with the older home-grown NanoDOM and made
43 which has resolved many inconsistencies in Python-Markdown's parsing of the
/external/llvm/test/TableGen/
D2010-03-24-PrematureDefaults.td17 // Here was the bug: X.Bits would get resolved to the default a1.Bits while
/external/webkit/LayoutTests/dom/html/level2/html/
DAppletsCollection-expected.txt5 …renced here because when DRT loads the Java VM it hangs. If that bug is resolved this test should …
/external/bluetooth/glib/gio/
Dgunixmounts.c2175 char *resolved; local
2176 resolved = _resolve_symlink ("/dev/root");
2177 if (resolved != NULL)
2179 strncpy (real_dev_root, resolved, sizeof (real_dev_root) - 1);
2181 g_free (resolved);
/external/chromium/googleurl/src/
Durl_canon_unittest.cc1788 const char* resolved; // What we expect in the result when resolving. in TEST() member
1930 std::string resolved; in TEST() local
1931 url_canon::StdStringCanonOutput output(&resolved); in TEST()
1940 EXPECT_EQ(cur_case.resolved, resolved) << " on " << cur_case.test; in TEST()
1945 int resolved_len = static_cast<int>(resolved.size()); in TEST()
1947 url_parse::ParseFileURL(resolved.c_str(), resolved_len, &ref_parsed); in TEST()
1949 url_parse::ParseStandardURL(resolved.c_str(), resolved_len, &ref_parsed); in TEST()
1951 url_parse::ParsePathURL(resolved.c_str(), resolved_len, &ref_parsed); in TEST()
/external/webkit/Source/WebCore/xml/
DXSLTProcessorQt.cpp107 QUrl url = baseURI.resolved(relative); in resolve()

12345