HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 451 - 475 of 531) sorted by null

<<11121314151617181920>>

  /external/clang/lib/Frontend/
ASTUnit.cpp 44 #include "llvm/Support/Path.h"
119 llvm::sys::Path(PreambleFile).eraseFromDisk();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 31 #include "Path.h"
987 void GraphicsContext::drawFocusRing(const Path& path, int width, int offset, const Color& color)
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java 55 import org.eclipse.core.runtime.Path;
319 IPath path = new Path(mValues.projectLocation.getPath()); local
322 && !defaultLocation.isPrefixOf(path)) {
323 description.setLocation(path);
327 !validateNewProjectLocationIsEmpty(path)) {
392 IPath path = new Path(mValues.projectLocation.getPath()); local
395 && !path.equals(defaultLocation)) {
396 description.setLocation(path);
    [all...]
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 72 explicit Backend(const FilePath& path)
73 : path_(path),
195 "path TEXT NOT NULL,"
259 "SELECT creation_utc, host_key, name, value, path, expires_utc, secure, "
278 smt.ColumnString(4), // path
466 "INSERT INTO cookies (creation_utc, host_key, name, value, path, "
510 add_smt.BindString(4, po->cc().Path());
622 SQLitePersistentCookieStore::SQLitePersistentCookieStore(const FilePath& path)
623 : backend_(new Backend(path)) {
  /external/clang/tools/scan-build/
c++-analyzer 20 use File::Path qw / mkpath /;
ccc-analyzer 20 use File::Path qw / mkpath /;
  /external/libvpx/build/make/
gen_msvs_proj.sh 36 --src-path-bare=dir Path to root of source tree
195 --src-path-bare=*) src_path_bare="$optval"
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 33 #include "llvm/Support/Path.h"
318 sys::Path uniqueFilename(OutputPrefix + "-extractblocks");
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 302 sys::Path aPath(Filename);
  /external/skia/src/animator/
SkDrawExtraPathEffect.cpp 38 SkDrawPath* path; member in class:SkDrawShapePathEffect
180 SK_MEMBER(addPath, Drawable), // either path or apply
181 SK_MEMBER(path, Path),
189 addPath(NULL), addMatrix(NULL), path(NULL), fPathEffect(NULL) {
197 path = (SkDrawPath*) child;
  /external/skia/src/svg/
SkSVGParser.cpp 379 CASE_NEW(Path);
427 {"path", SkSVGType_Path},
  /external/webkit/Tools/Scripts/
bisect-builds 32 # To override the location where the nightly builds are downloaded or the path
34 # the following lines (use "~/" to specify a path from your home directory):
37 # $nightlyDownloadDirectory = "~/path/to/nightly/downloads";
38 # $safariPath = "/path/to/Safari.app";
43 use File::Path;
89 "safari-path=s" => \$safariPath,
110 [--safari-path path] path to Safari application bundle (default: /Applications/Safari.app)
228 my $path = File::Spec->catfile($directory, $filename)
    [all...]
resolve-ChangeLogs 38 use File::Path;
110 Usage: @{[ basename($0) ]} [options] [path/to/ChangeLog] [path/to/another/ChangeLog ...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 1495 Path path = new Path(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 40 #include "Path.h"
127 // Describes a segment of the path: either a cubic or a line segment.
359 // Describes a closed contour of the path.
540 void LoopBlinnPathProcessor::process(const Path& path, LoopBlinnPathCache& cache)
542 buildContours(path);
555 // triangulation of the curve segments, determining the path along
613 void LoopBlinnPathProcessor::buildContours(const Path& path)
618 SkPath::Iter iter(*path.platformPath(), false)
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineTextBox.cpp 370 void SVGInlineTextBox::releasePaintingResource(GraphicsContext*& context, const Path* path)
377 m_paintingResource->postApplyResource(parentRenderer, context, m_paintingResourceMode, path);
396 releasePaintingResource(context, /* path */0);
592 Path path; local
593 path.addRect(FloatRect(decorationOrigin, FloatSize(width, thickness)));
596 releasePaintingResource(context, &path);
685 // Fast path if there is no selection, just draw the whole chunk part using the regular style
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerBuilder.java 55 import org.eclipse.core.runtime.Path;
618 // get the file system path
681 * @param osOutputPath the OS output path for the generated file. This is the source folder, not
683 * @param osResPath the OS path to the res folder for the main project
684 * @param osManifestPath the OS path to the manifest of the main project
845 StringBuilder path = new StringBuilder(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoring.java 61 import org.eclipse.core.runtime.Path;
319 final IFile file = project.getFile(new Path(parentPath + WS_SEP + newFileName));
VisualRefactoring.java 55 import org.eclipse.core.runtime.Path;
137 IPath path = Path.fromPortableString(arguments.get(KEY_PROJECT)); local
138 mProject = (IProject) ResourcesPlugin.getWorkspace().getRoot().findMember(path);
139 path = Path.fromPortableString(arguments.get(KEY_FILE));
140 mFile = (IFile) ResourcesPlugin.getWorkspace().getRoot().findMember(path);
196 for (TreePath path : treeSelection.getPaths()) {
197 Object lastSegment = path.getLastSegment();
663 for (TreePath path : mTreeSelection.getPaths())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 43 import org.eclipse.core.runtime.Path;
194 IFile file = parent.getFile(new Path(name));
493 String path = "testdata" + File.separator + relativePath; //$NON-NLS-1$ local
495 AdtProjectTest.class.getResourceAsStream(path);
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp 33 #include "Path.h"
610 // Fast path for drawing simple color backgrounds.
1410 Path path; local
2183 Path path; local
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 45 import org.eclipse.core.runtime.Path;
188 /** The path of the XML file that will define {@link #mXmlStringId}, selected by the user
228 IPath path = Path.fromPortableString(arguments.get(KEY_PROJECT)); local
229 mProject = (IProject) ResourcesPlugin.getWorkspace().getRoot().findMember(path);
232 path = Path.fromPortableString(arguments.get(KEY_FILE));
233 mFile = (IFile) ResourcesPlugin.getWorkspace().getRoot().findMember(path);
318 * Sets the target file. This is a project path, e.g. "/res/values/strings.xml".
429 // Currently we only support Android resource XML files, so they must have a path
438 IPath path = mFile.getFullPath(); local
    [all...]

Completed in 913 milliseconds

<<11121314151617181920>>