Searched refs:isAbsolute (Results 1 - 25 of 53) sorted by relevance

123

/external/llvm/lib/MC/
H A DMCValue.cpp18 if (isAbsolute()) {
H A DMCExpr.cpp313 return IsRelocatable && Value.isAbsolute();
507 if (!Value.isAbsolute())
519 if (!Value.isAbsolute())
543 if (!LHSValue.isAbsolute() || !RHSValue.isAbsolute()) {
/external/llvm/include/llvm/MC/
H A DMCSymbol.h96 return isDefined() && !isAbsolute();
104 /// isAbsolute - Check if this is an absolute symbol.
105 bool isAbsolute() const { function in class:llvm::MCSymbol
H A DMCValue.h46 /// isAbsolute - Is this an absolute (as opposed to relocatable) value.
47 bool isAbsolute() const { return !SymA && !SymB; } function in class:llvm::MCValue
/external/webkit/Source/WebCore/fileapi/
H A DDOMFilePath.cpp80 ASSERT(DOMFilePath::isAbsolute(parent));
81 ASSERT(DOMFilePath::isAbsolute(mayBeChild));
93 ASSERT(DOMFilePath::isAbsolute(path));
H A DDOMFilePath.h61 static bool isAbsolute(const String& path) function in class:WebCore::DOMFilePath
H A DDOMFileSystemBase.cpp144 if (!DOMFilePath::isAbsolute(path))
240 ASSERT(DOMFilePath::isAbsolute(path));
/external/srec/portable/src/
H A DPFileSystem.c156 ESR_ReturnCode PFileSystemIsAbsolutePath(const LCHAR* path, ESR_BOOL* isAbsolute) argument
161 if (isAbsolute == NULL)
170 *isAbsolute = (canonical[0] == '/' ||
183 ESR_BOOL isAbsolute; local
191 CHKLOG(rc, PFileSystemIsAbsolutePath(path, &isAbsolute));
194 if (!isAbsolute)
308 ESR_BOOL isAbsolute; local
310 CHKLOG(rc, PFileSystemIsAbsolutePath(path + LSTRLEN(bestKey), &isAbsolute));
312 if (!isAbsolute)
H A DPFileWrap.c489 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;
H A DPANSIFileSystemImpl.c218 ESR_BOOL isAbsolute; local
255 CHKLOG(rc, PFileSystemIsAbsolutePath(path, &isAbsolute));
256 if (LSTRCMP(bestValue, L("/")) == 0 && isAbsolute)
/external/srec/portable/src/UNIX/
H A DPANSIFileSystemUNIXImpl.c40 ESR_BOOL isAbsolute; local
45 CHKLOG(rc, PFileSystemIsAbsolutePath(path, &isAbsolute));
46 if (isAbsolute && path[0] != L('/'))
/external/srec/portable/include/
H A DPFileSystem.h137 * @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);
/external/emma/core/java12/com/vladium/util/
H A DFiles.java207 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/
H A DESR_Session.c280 ESR_BOOL isAbsolute; local
285 CHKLOG(rc, pf_is_path_absolute (path, &isAbsolute));
286 if (isAbsolute)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFileTest.java133 .isAbsolute());
136 .isAbsolute());
958 if (File.separatorChar == '\\' && new File("d:/").isAbsolute()) {
1075 * @tests java.io.File#isAbsolute()
1082 assertTrue("Absolute returned false", (f.isAbsolute() && !f1
1083 .isAbsolute())
1084 || (!f.isAbsolute() && f1.isAbsolute()));
1086 assertTrue(new File("C:/").isAbsolute());
1087 assertTrue(new File("f:/").isAbsolute());
[all...]
/external/proguard/src/proguard/ant/
H A DClassPathElement.java120 new ClassPathEntry(file.isAbsolute() ? file : new File(baseDir, fileName),
H A DProGuardTask.java316 return file.isAbsolute() ? file :
/external/llvm/include/llvm/Support/
H A DPathV1.h302 bool isAbsolute() const,
309 static bool isAbsolute(const char *NameStart, unsigned NameLen),
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFObjectWriter.cpp93 << Symbol.isAbsolute() << "/" << Symbol.isDefined() << "/"
161 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DWalkerFactory.java1419 && !isAbsolute(analysis)
1479 && !isAbsolute(analysis)
1483 public static boolean isAbsolute(int analysis) method in class:WalkerFactory
1496 && (!isAbsolute(analysis) || isSet(analysis, BIT_ROOT))
1506 && (!isAbsolute(analysis) || isSet(analysis, BIT_ROOT))
1516 && (!isAbsolute(analysis) || isSet(analysis, BIT_ROOT))
1526 && !isAbsolute(analysis)
1536 && !isAbsolute(analysis)
1545 && !isAbsolute(analysis)
1554 && !isAbsolute(analysi
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRedirectHandler.java122 if (!uri.isAbsolute()) {
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DSystemIDResolver.java160 return file.isAbsolute();
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSystemIDResolver.java153 return file.isAbsolute();
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ELFObjectWriter.cpp48 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerAndroid.h248 void setAbsolutePosition(bool isAbsolute) { m_isPositionAbsolute = isAbsolute; } argument

Completed in 547 milliseconds

123