HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 526 - 550 of 897) sorted by null

<<21222324252627282930>>

  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 27 import android.graphics.Path;
116 * <dt><code>&lt;path></code></dt>
120 * <dd>Defines the name of the path.</dd>
122 * <dd>Defines path string. This is using exactly same format as "d" attribute
123 * in the SVG's path data. This is defined in the viewport space.</dd>
125 * <dd>Defines the color to fill the path (none if not present).</dd>
127 * <dd>Defines the color to draw the path outline (none if not present).</dd>
129 * <dd>The width a path stroke.</dd>
131 * <dd>The opacity of a path stroke.</dd>
133 * <dd>The opacity to fill the path with.</dd
384 final VPathRenderer path = state.mVPathRenderer; local
541 final VFullPath path = new VFullPath(); local
545 pathRenderer.mVGTargetsMap.put(path.getPathName(), path); local
550 final VClipPath path = new VClipPath(); local
554 pathRenderer.mVGTargetsMap.put(path.getPathName(), path); local
951 final Path path = mPath; local
    [all...]
  /external/chromium_org/tools/
run-bisect-perf-regression.py 25 os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])),
39 self._abs_path_to_goma = os.path.abspath(path_to_goma)
57 return os.path.join(path_to_goma, 'goma_ctl.bat')
59 return os.path.join(path_to_goma, 'goma_ctl.sh')
63 os.environ['CC'] = (os.path.join(self._abs_path_to_goma, 'gomacc.exe') +
65 os.environ['CXX'] = (os.path.join(self._abs_path_to_goma, 'gomacc.exe') +
68 os.environ['PATH'] = os.pathsep.join([self._abs_path_to_goma,
69 os.environ['PATH']])
    [all...]
  /external/clang/lib/Driver/
SanitizerArgs.cpp 17 #include "llvm/Support/Path.h"
332 SmallString<64> Path(D.ResourceDir);
333 llvm::sys::path::append(Path, BlacklistFile);
334 BLPath = Path.str();
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 252 // Walk through the cast path to create nested CXXBaseRegions.
262 SVal StoreManager::evalDerivedToBase(SVal Derived, const CXXBasePath &Path) {
263 // Walk through the path to create nested CXXBaseRegions.
265 for (CXXBasePath::const_iterator I = Path.begin(), E = Path.end();
  /external/clang/tools/driver/
driver.cpp 38 #include "llvm/Support/Path.h"
230 std::string ProgName(llvm::sys::path::stem(ArgVector[0]));
344 std::string Path = GetExecutablePath(argv[0], CanonicalPrefixes);
364 StringRef ExeBasename(llvm::sys::path::filename(Path));
374 Driver TheDriver(Path, llvm::sys::getDefaultTargetTriple(), Diags);
376 // Attempt to find the original path used to invoke the driver, to determine
377 // the installed path. We do this manually, because we want to support that
378 // path being a symlink.
382 // Do a PATH lookup, if there are no directory components
    [all...]
  /external/clang/utils/analyzer/
SATestBuild.py 32 The compiler for scan-build and scan-build are in the PATH.
33 export PATH=/Users/zaks/workspace/c2llvm/build/Release+Asserts/bin:$PATH
77 (or the PATH environment variable, if unspecified)."""
80 paths = os.environ.get('PATH','')
83 if os.path.exists(command):
98 for path in paths.split(os.pathsep):
100 p = os.path.join(path, command + ext)
101 if os.path.exists(p)
    [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 756 //--- IntervalMapImpl::Path ---//
759 // A Path is used by iterators to represent a position in a B+-tree, and the
760 // path to get there from the root.
762 // The Path class also contains the tree navigation code that doesn't have to
767 class Path {
768 /// Entry - Each step in the path is a node pointer and an offset into that
786 /// path - The path entries, path[0] is the root node, path.back() is a leaf
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 22 import android.graphics.Path;
188 * Draw this Layout on the specified canvas, with the highlight path drawn
192 * @param highlight the path of the highlight or cursor; can be null
197 public void draw(Canvas canvas, Path highlight, Paint highlightPaint,
365 public void drawBackground(Canvas canvas, Path highlight, Paint highlightPaint,
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 27 import android.graphics.Path;
454 // Construct the path of the fan-shaped semi-transparent area.
455 Path fanPath = new Path();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winevt.h 359 LPCWSTR Path,
495 LPCWSTR Path,
521 LPCWSTR Path,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ProjectSetupBuilder.java 34 import org.eclipse.core.runtime.Path;
281 String path = getGradlePath(module.getJavaProject().getProject().getLocation(), local
284 module.setPath(path);
310 * Converts the given path to be relative to the given root path, and converts it to
314 private static String getGradlePath(IPath path, IPath root) {
315 IPath relativePath = path.makeRelativeTo(root);
338 result = result.append(Path.SEPARATOR + path2.segment(i));
374 // found required project on build path
398 IPath path = new Path(root) local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/apps/
glass_app_window_frame_view_win.cc 96 gfx::Path* window_mask) {
  /external/chromium_org/chrome/browser/ui/views/frame/
opaque_browser_frame_view.h 55 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
sunspider-compare-results 39 Usage: $programName --shell=[path] [options] FILE FILE
41 --shell Path to javascript shell
109 my ($contents, $path) = @_;
110 open FILE, ">", $path or die;
117 my ($path) = @_;
118 open FILE, "<", $path or die;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceGradient.cpp 132 void RenderSVGResourceGradient::postApplyResource(RenderObject*, GraphicsContext*& context, unsigned short resourceMode, const Path* path, const RenderSVGShape* shape)
138 if (path)
139 context->fillPath(*path);
144 if (path)
145 context->strokePath(*path);
RenderSVGResourceMasker.cpp 80 unsigned short resourceMode, const Path*, const RenderSVGShape*)
  /external/chromium_org/ui/aura/demo/
demo_main.cc 73 virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE {}
  /external/chromium_org/ui/gfx/
gdi_util.cc 81 HRGN ConvertPathToHRGN(const gfx::Path& path) {
83 int point_count = path.getPoints(NULL, 0);
85 path.getPoints(points.get(), point_count);
94 return path.CreateNativeRegion();
  /external/clang/lib/Lex/
PTHLexer.cpp 288 // getSourceLocation is not on the hot path. It is used to get the location
662 static internal_key_type GetInternalKey(const char *path) {
664 return std::make_pair((unsigned char) 0x0, path);
707 LookupResult getStat(const char *Path, FileData &Data, bool isFile,
711 CacheTy::iterator I = Cache.find(Path);
715 return statChained(Path, Data, isFile, F, FS);
722 Data.Name = Path;
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 56 ModuleIdPath Path,
  /external/lldb/examples/test/
usage-lldb-loggings 13 Path: /Volumes/data/lldb/svn/ToT
30 dest = os.path.join("/tmp", "lldb_log-%s-%s-%s.txt" % (self.getArchitecture(), self.getCompiler(), self.id()))
74 Path: /Volumes/data/lldb/svn/ToT
91 dname = os.path.join(os.environ["LLDB_TEST"],
93 if not os.path.isdir(dname):
95 dest = os.path.join(dname, "lldb_log-%s-%s-%s.txt" % (self.getArchitecture(), self.getCompiler(), self.id()))
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
PlayReadyHeader.java 6 import com.googlecode.mp4parser.util.Path;
  /external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java 115 headerListTable.put(Path.class, PathList.class);
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 231 /// @param pPath - the path of the member file
236 const sys::fs::Path& pPath,
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 78 bool FileHandle::open(const sys::fs::Path& pPath,

Completed in 2320 milliseconds

<<21222324252627282930>>