HomeSort by relevance Sort by last modified time
    Searched defs:Path (Results 151 - 175 of 370) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
ExternalASTSource.h 151 StringRef Path;
158 ASTSourceDescriptor(StringRef Name, StringRef Path, StringRef ASTFile,
160 : PCHModuleName(std::move(Name)), Path(std::move(Path)),
164 StringRef getPath() const { return Path; }
  /build/soong/android/
paths.go 19 "path/filepath"
29 // Path methods.
90 type Path interface {
91 // Returns the path in string form
94 // Ext returns the extension of the last element of the path
97 // Base returns the last element of the path
100 // Rel returns the portion of the path relative to the directory it was created from. For
101 // example, Rel on a PathsForModuleSrc would return the path relative to the module source
106 // WritablePath is a type of path that can be used as an output for build rules.
108 Path
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenBootSector/
GenBootSector.c 83 "Inavlid path"
110 CHAR *Path;
182 // for USB and HD: use path = \\.\PHYSICALDRIVEx, where x is Disk Number
183 // for floppy: use path = \\.\X:, where X can be A or B
424 @param InputInfo PATH_INFO instance for input path
425 @param OutputInfo PATH_INFO instance for output path
582 Get path information, including physical path for windows platform.
586 @return whether path is valid.
600 // If path is disk path
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/EfiFileLib/
EfiFileLib.c 16 is in the form of DevType:Path. Current DevType is required as there is no
212 PathName is in the form <device name>:<path> for example fs1:\ or ROOT:\.
218 @param FileStart Index of the first character of the <path>
640 path separated by a :. See file header for more details on the PathName
649 @param PathName Path to parse to open
687 // Smallest valid path is 1 char and a null
1026 CHAR8 Path[MAX_CMD_LINE];
1048 AsciiSPrint (Path, MAX_PATHNAME, DevStr, Index);
1050 return EfiOpen (Path, EFI_FILE_MODE_READ, 0);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.h 195 CHAR8 *Path;
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
XenStore.c 14 is only limited by the XenStore's maximum path length.
82 /* Path being watched. */
901 @param Path The path in the XenStore to watch.
910 CONST CHAR8 *Path,
916 WriteRequest[0].Data = (VOID *) Path;
917 WriteRequest[0].Len = (UINT32)AsciiStrSize (Path);
927 @param Path The path in the XenStore to watch.
936 CONST CHAR8 *Path,
    [all...]
  /external/clang/lib/Driver/
ToolChain.cpp 129 std::string ProgName = llvm::sys::path::stem(Argv0);
299 SmallString<128> Path(getDriver().ResourceDir);
301 llvm::sys::path::append(Path, "lib", OSLibName);
302 llvm::sys::path::append(Path, Prefix + Twine("clang_rt.") + Component + "-" +
304 return Path.str();
347 if (llvm::sys::path::is_absolute(UseLinker)) {
348 // If we're passed -fuse-ld= with what looks like an absolute path,
583 const Twine &Path) {
    [all...]
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 680 /// find the shortest path (the one with lowest penalty) from \p InitialState
765 /// \brief Applies the best formatting by reconstructing the path in the
768 std::deque<StateNode *> Path;
771 Path.push_front(Best);
774 for (std::deque<StateNode *>::iterator I = Path.begin(), E = Path.end();
    [all...]
  /external/clang/lib/Frontend/
CacheTokens.cpp 30 #include "llvm/Support/Path.h"
62 union { const FileEntry* FE; const char* Path; };
69 PTHEntryKeyVariant(FileData *Data, const char *path)
70 : Path(path), Kind(IsDE), Data(new FileData(*Data)) {}
72 explicit PTHEntryKeyVariant(const char *path)
73 : Path(path), Kind(IsNoExist), Data(nullptr) {}
78 return Kind == IsFE ? FE->getName() : Path;
512 if (llvm::sys::path::is_relative(FE->getName())
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 28 #include "llvm/Support/Path.h"
130 // If we don't have a module cache path or aren't supposed to use one, we
139 llvm::sys::path::append(Result, ModuleName + ".pcm");
146 // To avoid false-negatives, we form as canonical a path as we can, and map
149 FileMgr.getDirectory(llvm::sys::path::parent_path(ModuleMapPath));
153 auto FileName = llvm::sys::path::filename(ModuleMapPath);
160 llvm::sys::path::append(Result, ModuleName + "-" + HashStr + ".pcm");
178 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework");
210 llvm::sys::path::append(NestedModuleMapDirName, ModuleName);
271 /// LookupFile - Lookup the specified file in this search path, returning i
    [all...]
  /external/llvm/unittests/Support/
Path.cpp 1 //===- llvm/unittest/Support/Path.cpp - Path tests ------------------------===//
10 #include "llvm/Support/Path.h"
46 EXPECT_TRUE(path::is_separator('/'));
47 EXPECT_FALSE(path::is_separator('\0'));
48 EXPECT_FALSE(path::is_separator('-'));
49 EXPECT_FALSE(path::is_separator(' '));
52 EXPECT_TRUE(path::is_separator('\\'));
54 EXPECT_FALSE(path::is_separator('\\'));
58 TEST(Support, Path) {
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ArchiveExtractCallback.h 79 // UString Name; // relative path
132 FString Path;
135 CIndexToPathPair(UInt32 index, const FString &path): Index(index), Path(path) {}
244 HRESULT SendMessageError(const char *message, const FString &path);
245 HRESULT SendMessageError_with_LastError(const char *message, const FString &path);
OpenArchive.h 25 int FindAltStreamColon_in_Path(const wchar_t *path);
227 UString Path; // Path from root (including alt stream name, if alt stream)
228 UStringVector PathParts; // without altStream name, path from root or from _baseParentFolder, if _use_baseParentFolder_mode
232 /* MainPath = Path for non-AltStream,
233 MainPath = Path of parent, if there is parent for AltStream. */
285 UString Path;
  /external/swiftshader/third_party/subzero/runtime/
wasm-runtime.cpp 323 const char *Path = WASM_REF(char, WasmPath);
325 return trace(open(Path, Flags, Mode));
340 const char *Path = WASM_REF(char, WasmPath);
342 return trace(unlink(Path));
358 const char *Path = WASM_REF(char, WasmPath);
360 return trace(rmdir(Path));
  /external/v8/samples/
process.cc 52 virtual const string& Path() = 0;
488 // Fetch the path.
489 const string& path = request->Path(); local
493 String::NewFromUtf8(info.GetIsolate(), path.c_str(),
495 static_cast<int>(path.length())).ToLocalChecked());
503 const string& path = request->Referrer(); local
505 String::NewFromUtf8(info.GetIsolate(), path.c_str(),
507 static_cast<int>(path.length())).ToLocalChecked());
514 const string& path = request->Host() local
526 const string& path = request->UserAgent(); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 30 * The Path class encapsulates compound (multiple contour) geometric paths
32 * It can be drawn with canvas.drawPath(path, paint), either filled or stroked
34 * text on a path.
36 public class Path {
39 Path.class.getClassLoader(), nGetFinalizer(), 48 /* dummy size */);
57 * Create an empty path
59 public Path() {
65 * Create a new path, copying the contents from the src path.
67 * @param src The path to copy from when initializing the new pat
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.cpp 37 void Path::dump() {
38 ALOGD("Path: %s has %zu points", mName.c_str(), mProperties.getData().points.size());
42 Path::Path(const char* pathStr, size_t strLength) {
49 Path::Path(const Path& path) : Node(path) {
50 mStagingProperties.syncProperties(path.mStagingProperties)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 29 import android.graphics.Path;
51 // new the Path instance
52 new Path();
54 // another the Path instance with different params
55 new Path(new Path());
60 Path path = new Path(); local
61 assertTrue(path.isEmpty())
69 Path path = new Path(); local
77 Path path = new Path(); local
83 Path path = new Path(); local
93 Path path = new Path(); local
104 Path path = new Path(); local
120 Path path = new Path(); local
134 Path path = new Path(); local
142 Path path = new Path(); local
152 Path path = new Path(); local
160 Path path = new Path(); local
168 Path path = new Path(); local
177 Path path = new Path(); local
185 Path path = new Path(); local
194 Path path = new Path(); local
204 Path path = new Path(); local
218 Path path = new Path(); local
232 Path path = new Path(); local
238 Path path = new Path(); local
247 Path path = new Path(); local
257 Path path = new Path(); local
268 Path path = new Path(); local
277 Path path = new Path(); local
284 Path path = new Path(); local
294 Path path = new Path(); local
304 Path path = new Path(); local
315 Path path = new Path(); local
324 Path path = new Path(); local
337 Path path = new Path(); local
347 Path path = new Path(); local
357 Path path = new Path(); local
367 Path path = new Path(); local
375 Path path = new Path(); local
385 Path path = new Path(); local
393 Path path = new Path(); local
405 Path path = new Path(); local
413 Path path = new Path(); local
422 Path path = new Path(); local
431 Path path = new Path(); local
454 Path path = new Path(); local
467 Path path = new Path(); local
480 Path path = new Path(); local
489 Path path = new Path(); local
    [all...]

Completed in 613 milliseconds

1 2 3 4 5 67 8 91011>>