/external/llvm/lib/MC/ |
MCValue.cpp | 18 if (isAbsolute()) {
|
MCExpr.cpp | 306 return IsRelocatable && Value.isAbsolute(); 500 if (!Value.isAbsolute()) 512 if (!Value.isAbsolute()) 536 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
|
/external/llvm/include/llvm/MC/ |
MCSymbol.h | 95 return isDefined() && !isAbsolute(); 103 /// isAbsolute - Check if this is an absolute symbol. 104 bool isAbsolute() const {
|
MCValue.h | 46 /// isAbsolute - Is this an absolute (as opposed to relocatable) value. 47 bool isAbsolute() const { return !SymA && !SymB; }
|
/external/webkit/Source/WebCore/fileapi/ |
DOMFilePath.cpp | 80 ASSERT(DOMFilePath::isAbsolute(parent)); 81 ASSERT(DOMFilePath::isAbsolute(mayBeChild)); 93 ASSERT(DOMFilePath::isAbsolute(path));
|
DOMFilePath.h | 61 static bool isAbsolute(const String& path)
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldAndroidURITest.java | 35 assertEquals(absolute, uri.isAbsolute());
|
/external/srec/portable/src/ |
PFileSystem.c | 156 ESR_ReturnCode PFileSystemIsAbsolutePath(const LCHAR* path, ESR_BOOL* isAbsolute) 161 if (isAbsolute == NULL) 170 *isAbsolute = (canonical[0] == '/' || 183 ESR_BOOL isAbsolute; 191 CHKLOG(rc, PFileSystemIsAbsolutePath(path, &isAbsolute)); 194 if (!isAbsolute) 308 ESR_BOOL isAbsolute; 310 CHKLOG(rc, PFileSystemIsAbsolutePath(path + LSTRLEN(bestKey), &isAbsolute)); 312 if (!isAbsolute)
|
PFileWrap.c | 489 ESR_ReturnCode pf_is_path_absolute ( const LCHAR* input_path, ESR_BOOL* isAbsolute ) 494 if ( isAbsolute != NULL ) 502 *isAbsolute = ESR_TRUE; 504 *isAbsolute = ESR_FALSE;
|
/external/srec/portable/src/UNIX/ |
PANSIFileSystemUNIXImpl.c | 40 ESR_BOOL isAbsolute; 45 CHKLOG(rc, PFileSystemIsAbsolutePath(path, &isAbsolute)); 46 if (isAbsolute && path[0] != L('/'))
|
/frameworks/compile/mclinker/include/mcld/LD/ |
StaticResolver.h | 126 if (pInfo.isAbsolute() && pInfo.isDyn()) 128 if (pInfo.isAbsolute())
|
/external/srec/portable/include/ |
PFileSystem.h | 137 * @param isAbsolute True if path is absolute 138 * @return ESR_INVALID_ARGUMENT if path or isAbsolute are null 140 PORTABLE_API ESR_ReturnCode PFileSystemIsAbsolutePath(const LCHAR* path, ESR_BOOL* isAbsolute);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/ |
NdkCommandLauncher.java | 34 if (!commandPath.isAbsolute())
|
/external/emma/core/java12/com/vladium/util/ |
Files.java | 207 if ((dir == null) || file.isAbsolute ()) return file; 223 if ((dir == null) || fileFile.isAbsolute ()) return fileFile; 239 if ((dir == null) || fileFile.isAbsolute ()) return fileFile;
|
/external/srec/shared/src/ |
ESR_Session.c | 280 ESR_BOOL isAbsolute; 285 CHKLOG(rc, pf_is_path_absolute (path, &isAbsolute)); 286 if (isAbsolute)
|
/libcore/luni/src/test/java/libcore/java/io/ |
FileTest.java | 100 assertFalse(f.isAbsolute()); 131 // isAbsolute from the File constructor, potentially breaking subclasses. 139 @Override public boolean isAbsolute() { 141 return super.isAbsolute();
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DOMTestCase.java | 104 String fragment, Boolean isAbsolute, String actual) { 183 if (isAbsolute != null) { 186 assertEquals(assertID, isAbsolute.booleanValue(), actualPath
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
FileTest.java | 133 .isAbsolute()); 136 .isAbsolute()); [all...] |
/external/proguard/src/proguard/ant/ |
ClassPathElement.java | 120 new ClassPathEntry(file.isAbsolute() ? file : new File(baseDir, fileName),
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
AdtUtils.java | 338 if (!file.isAbsolute()) { 359 if (!file.isAbsolute()) { 394 } else if (path.isAbsolute()) { 419 } else if (path.isAbsolute()) {
|
/external/llvm/include/llvm/Support/ |
PathV1.h | 302 bool isAbsolute() const, 309 static bool isAbsolute(const char *NameStart, unsigned NameLen), [all...] |
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMELFObjectWriter.cpp | 93 << Symbol.isAbsolute() << "/" << Symbol.isDefined() << "/" 161 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
|
/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
LayerAndroid.h | 246 void setAbsolutePosition(bool isAbsolute) { m_isPositionAbsolute = isAbsolute; }
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestInnerClass.java | 135 String query, String fragment, Boolean isAbsolute, 138 fragment, isAbsolute, actual);
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
WalkerFactory.java | [all...] |