HomeSort by relevance Sort by last modified time
    Searched defs:Path (Results 51 - 75 of 144) sorted by null

1 23 4 5 6

  /external/llvm/lib/Object/
Archive.cpp 168 SmallString<128> Path;
172 ? (Twine(Parent->getFileName()) + "(" + Name + ")").toStringRef(Path)
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 128 CSysString Path;
154 HRESULT LoadDll(const CSysString &path, bool needCheckDll);
  /external/mesa3d/src/egl/main/
egldriver.c 57 char *Path;
211 mainFunc = _eglOpenLibrary(mod->Path, &lib);
224 _eglLog(_EGL_WARNING, "Driver loaded from %s has no name", mod->Path);
267 _eglAddModule(const char *path)
281 if (strcmp(mod->Path, path) == 0)
288 mod->Path = _eglstrdup(path);
289 if (!mod->Path) {
296 _eglLog(_EGL_DEBUG, "added %s to module array", mod->Path);
324 char path[1024]; local
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdf_transformpage.cpp 207 CPDF_Path Path;
208 Path.GetModify();
209 Path.AppendRect(left, bottom, right, top);
210 pNewClipPath->AppendPath(Path, FXFILL_ALTERNATE, FALSE);
220 void OutputPath(CFX_ByteTextBuf& buf, CPDF_Path path)
222 const CFX_PathData* pPathData = path;
227 if (path.IsRect()) {
273 CPDF_Path path = pClipPath->GetPath(i); local
275 if (path.GetPointCount() == 0) {
279 OutputPath(strClip, path);
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewLayersActivity5.java 24 import android.graphics.Path;
52 private final Path mClipPath = new Path();
77 Math.min(getWidth(), getHeight()) / 3.0f, Path.Direction.CW);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Path.java 25 public class Path {
26 private static final String TAG = "Path";
27 private static Path sRoot = new Path(null, "ROOT");
29 private final Path mParent;
32 private IdentityCache<String, Path> mChildren;
34 private Path(Path parent, String segment) {
39 public Path getChild(String segment) {
40 synchronized (Path.class)
96 String path = toString(); local
    [all...]
  /external/clang/lib/AST/
APValue.cpp 39 /// Path - The sequence of base classes, fields and array indices to follow to
41 /// may not be such a path.
43 LValuePathEntry Path[InlinePathSpace];
63 LValuePathEntry *getPath() { return hasPathPtr() ? PathPtr : Path; }
65 return hasPathPtr() ? PathPtr : Path;
81 PathElem Path[InlinePathSpace];
100 PathElem *getPath() { return hasPathPtr() ? PathPtr : Path; }
102 return hasPathPtr() ? PathPtr : Path;
390 // No lvalue path: just print the offset.
421 // We have an lvalue path. Print it out nicely
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachProcess.h 49 pid_t LaunchForDebug (const char *path,
62 static pid_t ForkChildForPTraceDebugging (const char *path, char const *argv[], char const *envp[], MachProcess* process, DNBError &err);
63 static pid_t PosixSpawnChildForPTraceDebugging (const char *path,
76 static const void * PrepareForAttach (const char *path, nub_launch_flavor_t launch_flavor, bool waitfor, DNBError &err_str);
81 static pid_t SBForkChildForPTraceDebugging (const char *path, char const *argv[], char const *envp[], bool no_stdio, MachProcess* process, DNBError &launch_err);
103 // Path and arg accessors
105 const char * Path () const { return m_path.c_str(); }
273 std::string m_path; // A path to the executable if we have one
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 479 llvm::SmallVector<char, 8> Path; // actually of DifferenceEngine::DiffChange
510 Cur[I].Path.push_back(DC_left);
517 Next[0].Path.push_back(DC_right);
524 Next[Index].Path.push_back(DC_match);
529 Next[Index].Path.push_back(DC_left);
533 Next[Index].Path.push_back(DC_right);
544 SmallVectorImpl<char> &Path = Cur[NL].Path;
550 while (Path.back() == DC_match)
551 Path.pop_back()
    [all...]
  /frameworks/base/libs/hwui/
PathCache.h 59 * Alpha texture used to represent a path.
70 * Left coordinate of the path bounds.
74 * Top coordinate of the path bounds.
78 * Offset to draw the path at the correct origin.
120 struct Path {
122 } path; member in union:android::uirenderer::PathDescription::Shape
169 void operator()(PathDescription& path, PathTexture*& texture);
195 PathTexture* get(const SkPath* path, const SkPaint* paint);
198 * Removes the specified path. This is meant to be called from threads
201 void removeDeferred(SkPath* path);
284 const SkPath path; member in class:android::uirenderer::PathCache::PathTask
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 21 import android.graphics.Path;
35 // new the Path instance
36 new Path();
38 // another the Path instance with different params
39 new Path(new Path());
44 // new the Path instance
45 Path path = new Path(); local
55 Path path = new Path(); local
63 Path path = new Path(); local
69 Path path = new Path(); local
85 Path path = new Path(); local
99 Path path = new Path(); local
107 Path path = new Path(); local
121 Path path = new Path(); local
129 Path path = new Path(); local
137 Path path = new Path(); local
145 Path path = new Path(); local
153 Path path = new Path(); local
162 Path path = new Path(); local
173 Path path = new Path(); local
188 Path path = new Path(); local
206 Path path = new Path(); local
212 Path path = new Path(); local
221 Path path = new Path(); local
233 Path path = new Path(); local
244 Path path = new Path(); local
254 Path path = new Path(); local
264 Path path = new Path(); local
274 Path path = new Path(); local
284 Path path = new Path(); local
295 Path path = new Path(); local
304 Path path = new Path(); local
318 Path path = new Path(); local
326 Path path = new Path(); local
340 Path path = new Path(); local
348 Path path = new Path(); local
360 Path path = new Path(); local
368 Path path = new Path(); local
377 Path path = new Path(); local
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp     [all...]
  /external/chromium_org/v8/samples/
process.cc 51 virtual const string& Path() = 0;
468 // Fetch the path.
469 const string& path = request->Path(); local
473 info.GetIsolate(), path.c_str(), String::kNormalString,
474 static_cast<int>(path.length())));
482 const string& path = request->Referrer(); local
484 info.GetIsolate(), path.c_str(), String::kNormalString,
485 static_cast<int>(path.length())));
492 const string& path = request->Host() local
503 const string& path = request->UserAgent(); local
    [all...]
  /external/clang/lib/Frontend/
CacheTokens.cpp 29 #include "llvm/Support/Path.h"
61 union { const FileEntry* FE; const char* Path; };
68 PTHEntryKeyVariant(FileData *Data, const char *path)
69 : Path(path), Kind(IsDE), Data(new FileData(*Data)) {}
71 explicit PTHEntryKeyVariant(const char *path)
72 : Path(path), Kind(IsNoExist), Data(nullptr) {}
77 return Kind == IsFE ? FE->getName() : Path;
501 if (llvm::sys::path::is_relative(FE->getName())
    [all...]
CompilerInstance.cpp 43 #include "llvm/Support/Path.h"
332 // Set up the module path, including the hash for the
337 llvm::sys::path::append(SpecificModuleCache,
389 StringRef Path, bool DisablePCHValidation, bool AllowPCHWithCompilerErrors,
394 Path, getHeaderSearchOpts().Sysroot, DisablePCHValidation,
403 StringRef Path, const std::string &Sysroot, bool DisablePCHValidation,
421 switch (Reader->ReadAST(Path,
614 SmallString<128> Path(InFile);
615 llvm::sys::path::replace_extension(Path, Extension)
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 26 #include "llvm/Support/Path.h"
122 // If we don't have a module cache path, we can't do anything.
130 llvm::sys::path::append(Result, ModuleName + ".pcm");
142 llvm::sys::path::append(Result, ModuleName + "-" + HashStr.str() + ".pcm");
160 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework");
192 llvm::sys::path::append(NestedModuleMapDirName, ModuleName);
261 /// LookupFile - Lookup the specified file in this search path, returning it
279 llvm::sys::path::append(TmpDir, Filename);
301 SmallString<1024> Path;
302 StringRef Dest = HM->lookupFilename(Filename, Path);
    [all...]
PPDirectives.cpp     [all...]
  /external/jsoncpp/chromium-overrides/src/lib_json/
json_value.cpp     [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 32 #include "llvm/Support/Path.h"
462 Filename = sys::path::filename(PathStr);
463 SmallVector<char, 16> Path(PathStr.begin(), PathStr.end());
464 sys::path::remove_filename(Path);
465 Directory = StringRef(Path.data(), Path.size());
510 StringRef Path(PathVec.data(), PathVec.size());
511 Filename = sys::path::filename(Path);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 20 * The Path class encapsulates compound (multiple contour) geometric paths
22 * It can be drawn with canvas.drawPath(path, paint), either filled or stroked
24 * text on a path.
26 public class Path {
43 * Create an empty path
45 public Path() {
50 * Create a new path, copying the contents from the src path.
52 * @param src The path to copy from when initializing the new path
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h 508 /** \brief Experimental and untested: represents an element of the "path" to access a node.
513 friend class Path;
532 /** \brief Experimental and untested: represents a "path" to access a node.
543 class Path
546 Path( const std::string &path,
556 /// Creates the "path" to access the specified node and returns a reference on the node.
563 void makePath( const std::string &path,
565 void addPathInArg( const std::string &path,
569 void invalidPath( const std::string &path,
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
xcodeproj_file.py 179 """Given input_path, returns a tuple with sourceTree and path values.
183 '$(VAR)/path' ('VAR', 'path')
185 'path' (None, 'path')
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 20 #include "llvm/Support/Path.h"
163 ErrorOr<Status> status(const Twine &Path) override;
164 std::error_code openFileForRead(const Twine &Path,
170 ErrorOr<Status> RealFileSystem::status(const Twine &Path) {
172 if (std::error_code EC = sys::fs::status(Path, RealStatus))
175 Result.setName(Path.str());
196 std::string Path;
200 : Path(_Path.str()), Iter(Path, EC) {
206 CurrentEntry.setName(Iter->path());
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 35 #include "llvm/Support/Path.h"
62 Name = llvm::sys::path::stem(ClangExecutable);
63 Dir = llvm::sys::path::parent_path(ClangExecutable);
65 // Compute the path to the resource directory.
69 llvm::sys::path::append(P, ClangResourceDir);
71 llvm::sys::path::append(P, "..", "lib", "clang", CLANG_VERSION_STRING);
529 VFS = llvm::sys::path::filename(Script + ".cache");
530 llvm::sys::path::append(VFS, "vfs", "vfs.yaml");
548 StringRef NewFilename = llvm::sys::path::filename(*it);
734 const char *path = it->c_str() local
736 llvm::outs() << sysroot << path + 1; local
    [all...]

Completed in 4229 milliseconds

1 23 4 5 6