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

1 23 4 5

  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 481 llvm::SmallVector<char, 8> Path; // actually of DifferenceEngine::DiffChange
512 Cur[I].Path.push_back(DC_left);
519 Next[0].Path.push_back(DC_right);
526 Next[Index].Path.push_back(DC_match);
531 Next[Index].Path.push_back(DC_left);
535 Next[Index].Path.push_back(DC_right);
546 SmallVectorImpl<char> &Path = Cur[NL].Path;
552 while (Path.back() == DC_match)
553 Path.pop_back()
    [all...]
  /external/v8/samples/
process.cc 51 virtual const string& Path() = 0;
442 // Fetch the path.
443 const string& path = request->Path(); local
446 return String::New(path.c_str(), path.length());
453 const string& path = request->Referrer(); local
454 return String::New(path.c_str(), path.length());
461 const string& path = request->Host() local
469 const string& path = request->UserAgent(); local
    [all...]
  /frameworks/base/libs/hwui/
PathCache.h 58 * Alpha texture used to represent a path.
69 * Left coordinate of the path bounds.
73 * Top coordinate of the path bounds.
77 * Offset to draw the path at the correct origin.
118 struct Path {
120 } path; member in union:android::uirenderer::PathDescription::Shape
190 void operator()(PathDescription& path, PathTexture*& texture);
216 PathTexture* get(SkPath* path, SkPaint* paint);
219 * Removes the specified path. This is meant to be called from threads
222 void removeDeferred(SkPath* path);
303 SkPath* path; member in class:android::uirenderer::PathCache::PathTask
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 129 std::string Path =
133 if (!SlangUtils::CreateDirectoryWithParents(Path, &ErrorMsg)) {
134 fprintf(stderr, "Error: Could not create path %s - %s\n",
135 Path.c_str(), ErrorMsg.c_str());
slang_rs_reflection.cpp     [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/chrome/test/functional/
perf_endure.py 17 Storage bucket like gs://chromium-endure/. The 'gsutil' script in $PATH
18 is used by default, or set a variable 'GSUTIL' to specify a path to the
21 GSUTIL: A path to the 'gsutil' script. Not mandatory.
68 _DMPROF_DIR_PATH = os.path.abspath(os.path.join(
69 os.path.dirname(__file__), os.pardir, os.pardir, os.pardir,
71 _DMPROF_SCRIPT_PATH = os.path.join(_DMPROF_DIR_PATH, 'dmprof')
135 fullpath = os.path.abspath(os.path.join(tempdir, filename))
141 os.environ['HEAPPROFILE'] = os.path.join(self._workdir, 'endure'
    [all...]
perf.py 58 _CHROME_BASE_DIR = os.path.abspath(os.path.join(
59 os.path.dirname(__file__), os.pardir, os.pardir, os.pardir, os.pardir))
63 """Convert a path relative to the Chromium root into an OS-specific path.
66 posix_path: a path string that may be a format().
72 an absolute path in the current Chromium tree with formatting applied.
76 return os.path.join(_CHROME_BASE_DIR, *path_parts)
127 if not os.path.exists(self._local_perf_dir):
313 revision_num_file = os.path.join(self._local_perf_dir, 'last_revision.dat'
    [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 28 #include "llvm/Support/Path.h"
59 union { const FileEntry* FE; const char* Path; };
66 PTHEntryKeyVariant(FileData *Data, const char *path)
67 : Path(path), Kind(IsDE), Data(new FileData(*Data)) {}
69 explicit PTHEntryKeyVariant(const char *path)
70 : Path(path), Kind(IsNoExist), Data(0) {}
75 return Kind == IsFE ? FE->getName() : Path;
477 if (llvm::sys::path::is_relative(FE->getName())
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 35 #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 22 * The Path class encapsulates compound (multiple contour) geometric paths
24 * It can be drawn with canvas.drawPath(path, paint), either filled or stroked
26 * text on a path.
28 public class Path {
46 * Create an empty path
48 public Path() {
54 * Create a new path, copying the contents from the src path.
56 * @param src The path to copy from when initializing the new path
    [all...]
  /external/chromium/net/base/
cookie_monster.h 143 const std::string& path,
149 // The returned cookies are ordered by longest path, then by earliest
154 // using given url scheme, host / domain and path and options. This does not
156 // The returned cookies are ordered by longest path, then earliest
177 // regardless of path. This includes all http_only and secure cookies,
228 // The returned cookies are ordered by longest path, then earliest
385 // Delete any cookies that are equivalent to |ecc| (same path, domain, etc).
541 const std::string& path,
565 const std::string& path,
575 const std::string& Path() const { return 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/Driver/
Driver.cpp 34 #include "llvm/Support/Path.h"
64 Name = llvm::sys::path::stem(ClangExecutable);
65 Dir = llvm::sys::path::parent_path(ClangExecutable);
67 // Compute the path to the resource directory.
71 llvm::sys::path::append(P, ClangResourceDir);
73 llvm::sys::path::append(P, "..", "lib", "clang", CLANG_VERSION_STRING);
376 } else if (Inputs.size() > 1 && !llvm::sys::path::is_separator(V.back())) {
544 StringRef NewFilename = llvm::sys::path::filename(*it);
742 const char *path = it->c_str(); local
743 if (path[0] == '='
744 llvm::outs() << sysroot << path + 1; local
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
  /external/clang/lib/Parse/
Parser.cpp     [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 611 /// The path down to the current base class.
622 /// Check classes in the current path for friendship, starting at
639 /// along the current path such that a notional public member of
640 /// the final class in the path would have access in that class.
642 // If we ever reach the naming class, check the current path for
706 /// of NamingClass) might be more accessible along some path not
819 // along this path, we just need to check whether the classes
879 /// Finds the best path from the naming class to the declaring class,
905 /// Along a single inheritance path we can restate both of these
913 /// Let B_1 .. B_n be the inheritance path in question (i.e. wher
1199 CXXBasePath &path = *FindBestPath(S, EC, entity, accessSoFar, paths); local
    [all...]
SemaCast.cpp 745 const CXXBasePath &Path = *I;
748 for (CXXBasePath::const_iterator IElem = Path.begin(), EElem = Path.end();
768 // Don't warn if any path is a non-virtually derived base at offset zero.
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 1 //===--- PathDiagnostic.cpp - Path-Specific Diagnostic Handling -*- C++ -*-===//
78 Call->path.flattenTo(Primary, Primary, ShouldFlattenMacros);
93 // FIXME: This probably shouldn't mutate the original path piece.
121 path(pathImpl) {}
135 // Check if CP represents a path through a function outside of the main file.
139 const PathPieces &Path = CP->path;
140 if (Path.empty())
143 // Check if the last piece in the callee path is a call to a function outside
146 dyn_cast<PathDiagnosticCallPiece>(Path.back()))
219 const PathPieces &path = *WorkList.back(); local
    [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 12 // path class.
260 /// @brief Make \a path an absolute path.
262 /// Makes \a path absolute using the current directory if it is not already. An
263 /// empty \a path will result in the current directory.
265 /// /absolute/path => /absolute/path
266 /// relative/../path => <current-directory>/relative/../path
268 /// @param path A path that is modified to be an absolute path
819 const std::string &path() const { return Path; } function in class:llvm::sys::fs::directory_entry
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 87 /// Get an LValue path entry, which is known to not be an array index, as a
96 /// Get an LValue path entry, which is known to not be an array index, as a
101 /// Get an LValue path entry, which is known to not be an array index, as a
106 /// Determine whether this LValue path entry for a base class names a virtual
112 /// Find the path length and type of the most-derived subobject in the given
113 /// path, and find the size of the containing array, if any.
116 ArrayRef<APValue::LValuePathEntry> Path,
120 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
132 } else if (const FieldDecl *FD = getAsField(Path[I])) {
137 // Path[I] describes a base class
    [all...]
  /external/clang/lib/Format/
Format.cpp     [all...]

Completed in 1002 milliseconds

1 23 4 5