HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 326 - 350 of 528) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/extensions/
extension_cookies_helpers.cc 58 result->SetString(keys::kPathKey, cookie.Path());
142 MatchesString(keys::kPathKey, cookie.Path()) &&
  /external/clang/include/clang/Frontend/
CompilerInstance.h 521 void createPCHExternalASTSource(llvm::StringRef Path,
530 createPCHExternalASTSource(llvm::StringRef Path, const std::string &Sysroot,
567 /// optionally deriving the output path name.
576 /// Create a new output file, optionally deriving the output path name.
579 /// path location as \arg BaseInput, with any suffix removed, and \arg
583 /// \param OutputPath - If given, the path to the output file.
585 /// \param BaseInput - If \arg OutputPath is empty, the input path name to use
586 /// for deriving the output path.
592 /// \param ResultPathName [out] - If given, the result path name will be
594 /// \param TempPathName [out] - If given, the temporary file path nam
    [all...]
  /external/clang/lib/Driver/
Compilation.cpp 101 llvm::sys::Path P(*it);
113 // llvm::sys::Path, we want to know if the removal gave ENOENT.
132 llvm::sys::Path Prog(C.getExecutable());
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 61 typedef std::map<const BType*, const BType*> Path;
154 Path &P, unsigned Mode);
  /external/llvm/lib/Support/
Android.mk 34 Path.cpp \
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.h 150 const Path*, bool includeLogicalLeftEdge, bool includeLogicalRightEdge, bool antialias, const Color* overrideColor = 0);
155 void drawBoxSideFromPath(GraphicsContext*, const IntRect&, const Path&, const class BorderEdge[],
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SinglePhotoDataAdapter.java 22 import com.android.gallery3d.data.Path;
189 public void setCurrentPhoto(Path path, int indexHint) {
AlbumPage.java 41 import com.android.gallery3d.data.Path;
67 public static final String KEY_MEDIA_PATH = "media-path";
81 private Path mMediaSetPath;
155 Path path = (item == null) ? null : item.getPath(); local
156 mSelectionManager.setPressedPath(path);
413 mMediaSetPath = Path.fromString(data.getString(KEY_MEDIA_PATH));
416 "MediaSet is null. Path = %s", mMediaSetPath);
561 public void onSelectionChange(Path path, boolean selected)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FilmStripView.java 25 import com.android.gallery3d.data.Path;
200 Path path = (item == null) ? null : item.getPath(); local
201 mStripDrawer.setPressedPath(path);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerPage.java 26 import org.eclipse.core.runtime.Path;
66 IPath path = new Path(AdtConstants.CONTAINER_FRAMEWORK); local
74 path = path.append(selectedProjectName);
78 return JavaCore.newContainerEntry(path);
82 final IPath path = cpentry == null ? null : cpentry.getPath(); local
84 if (path == null || path.segmentCount() == 1) {
89 this.mLibsProjectName = path.segment(1)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 31 import org.eclipse.core.runtime.Path;
79 /** The package path */
103 /** Path to the currently chosen sample */
182 * @param path the path to the project to extract information from
184 public void extractFromAndroidManifest(Path path) {
185 String osPath = path.append(SdkConstants.FN_ANDROID_MANIFEST_XML).toOSString();
271 updateSdkTargetToMatchProject(path.toFile());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
Mocks.java 37 import org.eclipse.core.runtime.Path;
121 expect(file.getLocation()).andReturn(new Path(fileName)).anyTimes();
138 // expect(file.getLocation()).andReturn(new Path(name)).anyTimes();
165 public static IClasspathEntry createClasspathEntry(IPath path, int kind) {
168 expect(entry.getPath()).andReturn(path).anyTimes();
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view.cc 179 gfx::Path path; local
180 GetContentsMask(contents_rect, &path);
181 html_container_->SetShape(path.CreateNativeRegion());
239 gfx::Path path; local
242 GetContentsMask(contents_rect, &path);
243 html_container_->SetShape(path.CreateNativeRegion());
379 gfx::Path* path) const
469 gfx::Path path; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 27 #include "llvm/Support/Path.h"
39 llvm::sys::Path Directory, FilePrefix;
144 // Verify that the entire path is from the same FileID.
175 // Process the path.
206 if (llvm::sys::path::is_relative(Entry->getName())) {
207 llvm::sys::Path P = llvm::sys::Path::GetCurrentDirectory();
288 // Create a path for the target HTML file.
289 llvm::sys::Path F(FilePrefix);
293 llvm::sys::Path H(F)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 28 import android.graphics.Path;
36 import android.graphics.Path.Direction;
2098 final Path path = new Path(); local
2131 final Path path = new Path(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 31 #include "Path.h"
704 SkPath path;
719 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan));
720 GC2CANVAS(this)->drawPath(path, paint);
732 SkPath path; local
734 path.incReserve(numPoints);
735 path.moveTo(SkFloatToScalar(points[0].x()), SkFloatToScalar(points[0].y()));
737 path.lineTo(SkFloatToScalar(points[i].x()), SkFloatToScalar(points[i].y()));
739 if (GC2CANVAS(this)->quickReject(path, shouldAntialias ?
747 GC2CANVAS(this)->drawPath(path, paint)
765 SkPath path; local
1216 SkPath* path = pathToFill.platformPath(); local
1241 const SkPath* path = pathToStroke.platformPath(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 143 bool isPathSkiaSafe(const SkMatrix& transform, const SkPath& path)
147 SkPath::Iter iter(path, false);
190 void addCornerArc(SkPath* path, const SkRect& rect, const IntSize& size, int startAngle)
216 path->arcTo(r, SkIntToScalar(startAngle), SkIntToScalar(90), false);
301 SkPath path; local
302 path.addOval(r, SkPath::kCW_Direction);
309 path.addOval(r, SkPath::kCCW_Direction);
311 platformContext()->clipPathAntiAliased(path);
359 void GraphicsContext::clip(const Path& path)
407 const SkPath& path = *p.platformPath(); local
422 SkPath path = *pathToClip.platformPath(); local
464 SkPath path; local
544 SkPath path; local
743 SkPath path = *pathToFill.platformPath(); local
850 SkPath path; local
1190 SkPath path; local
    [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/llvm/include/llvm/ADT/
IntervalMap.h 736 //--- IntervalMapImpl::Path ---//
739 // A Path is used by iterators to represent a position in a B+-tree, and the
740 // path to get there from the root.
742 // The Path class also constains the tree navigation code that doesn't have to
747 class Path {
748 /// Entry - Each step in the path is a node pointer and an offset into that
766 /// path - The path entries, path[0] is the root node, path.back() is a leaf
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
LocalDataTest.java 65 Path.clearAll();
66 Path path = Path.fromString( local
68 mAlbumSet = new LocalAlbumSet(path, mApp);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/
RecognitionView.java 29 import android.graphics.Path;
326 Path path = new Path(); local
329 path.moveTo(x, 0);
334 path.lineTo(x, y);
336 path.lineTo(x, y);
343 c.drawPath(path, paint);
  /external/jhead/
jhead.h 221 void SlashToNative(char * Path);
  /external/llvm/lib/Linker/
LinkArchives.cpp 95 Linker::LinkInArchive(const sys::Path &Filename, bool &is_native) {
  /external/llvm/tools/bugpoint/
BugDriver.cpp 196 sys::Path ROF(ReferenceOutputFile);
  /external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java 115 headerListTable.put(Path.class, PathList.class);

Completed in 572 milliseconds

<<11121314151617181920>>