Searched defs:Path (Results 1 - 25 of 88) sorted by relevance

1234

/external/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c27 CAMLprim value llvm_write_bitcode_file(value M, value Path) { argument
28 int res = LLVMWriteBitcodeToFile((LLVMModuleRef) M, String_val(Path));
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp15 #include "llvm/Support/Path.h"
42 bool FileSystemStatCache::get(const char *Path, struct stat &StatBuf, argument
49 R = Cache->getStat(Path, StatBuf, FileDescriptor);
52 R = ::stat(Path, &StatBuf) != 0 ? CacheMissing : CacheExists;
65 *FileDescriptor = ::open(Path, OpenFlags);
106 MemorizeStatCalls::getStat(const char *Path, struct stat &StatBuf, argument
108 LookupResult Result = statChained(Path, StatBuf, FileDescriptor);
118 if (!S_ISDIR(StatBuf.st_mode) || llvm::sys::path::is_absolute(Path))
119 StatCalls[Path] = StatBuf;
H A DVersion.cpp89 std::string Path = getClangRepositoryPath(); local
91 if (!Path.empty() || !Revision.empty()) {
93 if (!Path.empty())
94 OS << Path; local
96 if (!Path.empty())
/external/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp155 const std::string &Path = Clang->getFrontendOpts().Plugins[i]; local
157 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
159 << Path << Error;
/external/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp18 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { argument
20 raw_fd_ostream OS(Path, ErrorInfo,
/external/llvm/lib/Object/
H A DBinary.cpp17 #include "llvm/Support/Path.h"
98 error_code object::createBinary(StringRef Path, OwningPtr<Binary> &Result) { argument
100 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Path, File))
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DPath.java29 public class Path { class
31 private Path() { method in class:Path
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPath.java43 public class Path class in inherits:gov.nist.javax.sip.header.AddressParametersHeader,PathHeader,SIPHeaderNamesIms,ExtensionHeader
51 public Path(AddressImpl address) { method in class:Path
59 public Path() method in class:Path
/external/webkit/Source/WebCore/xml/
H A DXPathPath.h75 class Path : public Expression { class in namespace:WebCore::XPath
77 Path(Filter*, LocationPath*);
78 virtual ~Path();
H A DXPathPath.cpp181 Path::Path(Filter* filter, LocationPath* path) function in class:WebCore::XPath::Path
190 Path::~Path()
196 Value Path::evaluate() const
/external/llvm/include/llvm/Support/
H A DPathV2.h1 //===- llvm/Support/PathV2.h - Path Operating System Concept ----*- C++ -*-===//
31 /// @brief Path iterator.
50 StringRef Path; ///< The entire path. member in class:llvm::sys::path::const_iterator
51 StringRef Component; ///< The current component. Not necessarily in Path.
52 size_t Position; ///< The iterators current position within Path.
54 // An end iterator has Position = Path.size() + 1.
/external/llvm/lib/Transforms/Instrumentation/
H A DBlackList.cpp33 BlackList::BlackList(const StringRef Path) { argument
35 if (!Path.size()) return;
37 if (error_code EC = MemoryBuffer::getFile(Path, File)) {
38 report_fatal_error("Can't open blacklist file: " + Path + ": " +
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLSegments.h48 Path, enumerator in enum:WTF::URLSegments::ComponentType
85 // Path: 13 13
/external/clang/examples/clang-interpreter/
H A Dmain.cpp28 #include "llvm/Support/Path.h"
38 llvm::sys::Path GetExecutablePath(const char *Argv0) {
42 return llvm::sys::Path::GetMainExecutable(Argv0, MainAddr);
71 llvm::sys::Path Path = GetExecutablePath(argv[0]); local
77 Driver TheDriver(Path.str(), llvm::sys::getDefaultTargetTriple(),
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h52 static bool get(const char *Path, struct stat &StatBuf, int *FileDescriptor,
71 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
74 LookupResult statChained(const char *Path, struct stat &StatBuf, argument
77 return Next->getStat(Path, StatBuf, FileDescriptor);
81 return get(Path, StatBuf, FileDescriptor, 0) ? CacheMissing : CacheExists;
99 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
/external/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp24 #include "llvm/Support/Path.h"
68 SmallString<128> Path(Filename);
69 llvm::sys::path::replace_extension(Path,
70 NewSuffix + llvm::sys::path::extension(Path));
71 return Path.str();
78 SmallString<128> Path; local
79 Path = llvm::sys::path::filename(Filename);
80 Path += "-%%%%%%%%";
81 Path += llvm::sys::path::extension(Filename);
83 llvm::sys::fs::unique_file(Path
[all...]
/external/clang/unittests/Basic/
H A DFileManagerTest.cpp30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { argument
39 StatCalls[Path] = statBuf;
44 void InjectFile(const char *Path, ino_t INode) { argument
45 InjectFileOrDirectory(Path, INode, /*IsFile=*/true);
49 void InjectDirectory(const char *Path, ino_t INode) { argument
50 InjectFileOrDirectory(Path, INode, /*IsFile=*/false);
54 virtual LookupResult getStat(const char *Path, struct stat &StatBuf, argument
56 if (StatCalls.count(Path) != 0) {
57 StatBuf = StatCalls[Path];
/external/clang/unittests/Lex/
H A DPreprocessingRecordTest.cpp52 virtual Module *loadModule(SourceLocation ImportLoc, ModuleIdPath Path, argument
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp27 StringRef Path, StringRef TmpPath)
29 FinalPath.assign(Path);
26 FileOutputBuffer(uint8_t *Start, uint8_t *End, StringRef Path, StringRef TmpPath) argument
/external/webkit/Source/WebCore/platform/graphics/
H A DPath.h104 class Path { class in namespace:WebCore
107 Path();
108 ~Path();
110 Path(const Path&);
111 Path& operator=(const Path&);
125 // Note the Path can be empty (isEmpty() == true) and still have a current point.
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResource.h50 class Path;
64 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short, const Path*) { } argument
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DPathHaiku.cpp29 #include "Path.h"
40 Path::Path() function in class:WebCore::Path
45 Path::~Path()
50 Path::Path(const Path& other) function in class:WebCore::Path
55 Path& Path
[all...]
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPathSkia.cpp31 #include "Path.h"
46 Path::Path() function in class:WebCore::Path
51 Path::Path(const Path& other) function in class:WebCore::Path
56 Path::~Path()
61 Path& Path
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPathWinCE.cpp21 #include "Path.h"
32 Path::Path() function in class:WebCore::Path
37 Path::Path(const Path& other) function in class:WebCore::Path
42 Path::~Path()
47 Path& Path
[all...]
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DPathWx.cpp27 #include "Path.h"
51 Path::Path() function in class:WebCore::Path
68 Path::~Path()
73 Path::Path(const Path& path) function in class:WebCore::Path
78 bool Path::contains(const FloatPoint& point, const WindRule rule) const
92 void Path
[all...]

Completed in 1107 milliseconds

1234