Home
last modified time | relevance | path

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

12345678

/external/openssh/openbsd-compat/
Drealpath.c52 realpath(const char *path, char resolved[PATH_MAX]) in realpath()
64 resolved[0] = '/'; in realpath()
65 resolved[1] = '\0'; in realpath()
67 return (resolved); in realpath()
71 if (getcwd(resolved, PATH_MAX) == NULL) { in realpath()
72 strlcpy(resolved, ".", PATH_MAX); in realpath()
75 resolved_len = strlen(resolved); in realpath()
102 if (resolved[resolved_len - 1] != '/') { in realpath()
107 resolved[resolved_len++] = '/'; in realpath()
108 resolved[resolved_len] = '\0'; in realpath()
[all …]
/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/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/smack/src/org/jivesoftware/smack/proxy/
DDirectSocketFactory.java47 InetAddress resolved[] = InetAddress.getAllByName(host); in createSocket() local
48 newSocket.connect(new InetSocketAddress(resolved[(roundrobin++) % resolved.length],port)); in createSocket()
/external/qemu/android/
Dmain-emulator.c275 char* resolved = path_search_exec(path); local
276 if (resolved != NULL)
277 return resolved;
283 char* resolved = path_search_exec(path); local
284 if (resolved != NULL)
285 return resolved;
/external/skia/legacy/src/animator/
DSkAnimateField.cpp83 bool resolved = resolveCommon(maker); in onEndElement() local
84 if (resolved && fFieldInfo == NULL) { in onEndElement()
88 if (resolved == false || fFieldInfo == NULL) in onEndElement()
/external/skia/src/animator/
DSkAnimateField.cpp73 bool resolved = resolveCommon(maker); in onEndElement() local
74 if (resolved && fFieldInfo == NULL) { in onEndElement()
78 if (resolved == false || fFieldInfo == NULL) in onEndElement()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DNFAConfiguration.java65 protected boolean resolved; field in NFAConfiguration
144 if ( resolved ) { in toString()
DNFAToDFAConverter.java860 if ( c.resolved || c.resolveWithPredicate ) { in reach()
920 if ( c.resolved || c.resolveWithPredicate ) { in convertToEOTAcceptState()
1219 boolean resolved = in resolveNonDeterminisms()
1221 if ( resolved ) { in resolveNonDeterminisms()
1307 configuration.resolved = true; in turnOffOtherAlts()
1458 configuration.resolved = true; in tryToResolveWithSemanticPredicates()
/external/skia/legacy/src/xml/
DSkJS.cpp91 JSBool resolved; in global_resolve() local
93 if (!JS_ResolveStandardClass(cx, obj, id, &resolved)) in global_resolve()
95 if (resolved) { in global_resolve()
/external/skia/src/xml/
DSkJS.cpp91 JSBool resolved; in global_resolve() local
93 if (!JS_ResolveStandardClass(cx, obj, id, &resolved)) in global_resolve()
95 if (resolved) { in global_resolve()
/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/v8/src/
Dmirror-debugger.js795 FunctionMirror.prototype.resolved = function() { method in FunctionMirror
826 if (this.resolved()) {
840 if (this.resolved()) {
857 if (this.resolved()) {
869 if (this.resolved() && this.script()) {
883 if (this.resolved()) {
1532 if (this.func().resolved() && this.func().script()) {
1540 if (this.func().resolved()) {
1550 if (this.func().resolved()) {
1560 if (this.func().resolved()) {
[all …]
/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/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/llvm/test/MC/MachO/ARM/
Dno-subsections-reloc.s6 @ in the same section can be resolved at assembly time w/o relocations.
/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()
/external/bison/lib/
Dstdlib.in.h734 _GL_FUNCDECL_RPL (realpath, char *, (const char *name, char *resolved)
736 _GL_CXXALIAS_RPL (realpath, char *, (const char *name, char *resolved));
739 _GL_FUNCDECL_SYS (realpath, char *, (const char *name, char *resolved)
742 _GL_CXXALIAS_SYS (realpath, char *, (const char *name, char *resolved));
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
D_README.txt2 more bugs that have been resolved with a particular build of any Eclipse
/external/llvm/test/TableGen/
D2010-03-24-PrematureDefaults.td16 // Here was the bug: X.Bits would get resolved to the default a1.Bits while
/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

12345678