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

<<11121314151617181920>>

  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
tty_test.cc 40 ASSERT_EQ(0, fs_.Access(Path("/tty"), R_OK | W_OK));
41 ASSERT_EQ(EACCES, fs_.Access(Path("/tty"), X_OK));
42 ASSERT_EQ(0, fs_.Open(Path("/tty"), O_RDWR, &dev_tty_));
jspipe_test.cc 125 ASSERT_EQ(0, fs_.Access(Path("/jspipe1"), R_OK | W_OK));
126 ASSERT_EQ(EACCES, fs_.Access(Path("/jspipe1"), X_OK));
127 ASSERT_EQ(0, fs_.Open(Path("/jspipe1"), O_RDWR, &pipe_dev_));
225 ASSERT_EQ(0, fs->Open(Path("/jspipe1"), O_RDWR, &pipe_dev));
  /external/clang/include/clang/Frontend/
CompilerInstance.h 582 void createPCHExternalASTSource(StringRef Path, bool DisablePCHValidation,
591 StringRef Path, const std::string &Sysroot, bool DisablePCHValidation,
629 /// optionally deriving the output path name.
640 /// Create a new output file, optionally deriving the output path name.
643 /// path location as \p BaseInput, with any suffix removed, and \p Extension
648 /// \param OutputPath - If given, the path to the output file.
650 /// \param BaseInput - If \p OutputPath is empty, the input path name to use
651 /// for deriving the output path.
660 /// missing directories in the output path.
661 /// \param ResultPathName [out] - If given, the result path name will b
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 30 import android.graphics.Path;
139 private final Path mPath = new Path();
145 private Path mRingPath;
620 Path path = buildRing(st);
621 canvas.drawPath(path, mFillPaint);
623 canvas.drawPath(path, mStrokePaint);
643 mPath.addRoundRect(mRect, st.mRadiusArray, Path.Direction.CW);
648 private Path buildRing(GradientState st)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 23 import android.graphics.Path;
132 Path path = new Path(); local
133 path.moveTo(r1.left, r1.top);
134 path.lineTo(r1.right, r1.top);
135 path.moveTo(r1.left, r1.top);
136 path.lineTo(r1.left, r1.bottom);
137 path.moveTo(r1.left, r1.bottom);
138 path.lineTo(r1.right, r1.bottom)
    [all...]
  /external/chromium_org/ash/wm/panels/
panel_frame_view.cc 78 void PanelFrameView::GetWindowMask(const gfx::Size&, gfx::Path*) {
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_popup_contents_view.h 116 // Fill a path for the contents' roundrect. |bounding_rect| is the rect that
117 // bounds the path.
118 void MakeContentsPath(gfx::Path* path, const gfx::Rect& bounding_rect);
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_frame_view.h 64 gfx::Path* window_mask) OVERRIDE;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
PopupZoomer.java 13 import android.graphics.Path;
14 import android.graphics.Path.Direction;
253 Path path = new Path(); local
256 path.addRoundRect(canvasRect, overlayCornerRadius, overlayCornerRadius, Direction.CCW);
257 canvas.clipPath(path, Op.XOR);
  /external/chromium_org/mojo/services/view_manager/
node.h 90 virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE;
  /external/chromium_org/net/cookies/
parsed_cookie.h 27 // Construct from a cookie string like "BLAH=1; path=/; domain=.google.com"
40 const std::string& Path() const { return pairs_[path_index_].second; }
52 // "BLAH=hah; path=/; domain=.google.com"
62 bool SetPath(const std::string& path);
  /external/chromium_org/testing/gtest/scripts/
release_docs.py 53 errors like "svn: Path 'V1_7_PumpManual.wiki' is not a
57 $ cd PATH/TO/GTEST_SVN_WORKSPACE/trunk
140 source_file = os.path.join(self.wiki_dir, f)
141 versioned_file = os.path.join(self.wiki_dir, self.version_prefix + f)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.cpp 37 #include "platform/graphics/Path.h"
107 void BasicShapeCircle::path(Path& path, const FloatRect& boundingBox) function in class:WebCore::BasicShapeCircle
109 ASSERT(path.isEmpty());
112 path.addEllipse(FloatRect(
152 void BasicShapeEllipse::path(Path& path, const FloatRect& boundingBox) function in class:WebCore::BasicShapeEllipse
154 ASSERT(path.isEmpty())
188 void BasicShapePolygon::path(Path& path, const FloatRect& boundingBox) function in class:WebCore::BasicShapePolygon
243 void BasicShapeInset::path(Path& path, const FloatRect& boundingBox) function in class:WebCore::BasicShapeInset
    [all...]
  /external/chromium_org/ui/app_list/views/
app_list_view.h 127 virtual void GetWidgetHitTestMask(gfx::Path* mask) const OVERRIDE;
  /external/chromium_org/ui/views/bubble/
tray_bubble_view.h 154 virtual void GetWidgetHitTestMask(gfx::Path* mask) const OVERRIDE;
  /external/chromium_org/ui/views/widget/
widget_delegate.cc 164 void WidgetDelegate::GetWidgetHitTestMask(gfx::Path* mask) const {
  /external/clang/include/clang/Lex/
PPCallbacks.h 77 /// by adding \p RecoveryPath as a header search path.
105 /// \param SearchPath Contains the search path which was used to find the file
106 /// in the file system. If the file was found via an absolute include path,
109 /// is found via the framework path
110 /// "path/to/Frameworks/Some.framework/Headers/Some.h", SearchPath will be
111 /// "path/to/Frameworks/Some.framework/Headers" and RelativePath will be
114 /// \param RelativePath The path relative to SearchPath, at which the include
136 /// \param Path The identifiers (and their locations) of the module
137 /// "path", e.g., "std.vector" would be split into "std" and "vector".
142 ModuleIdPath Path,
    [all...]
  /external/llvm/include/llvm/Support/
Path.h 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
26 namespace path { namespace in namespace:llvm::sys
31 /// @brief Path iterator.
34 /// components in \a path. The forward traversal order is as follows:
51 StringRef Path; ///< The entire path.
52 StringRef Component; ///< The current component. Not necessarily in Path
    [all...]
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 69 BinaryPair getOrCreateBinary(const std::string &Path);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
UuidBasedProtectionSystemSpecificHeaderBox.java 7 import com.googlecode.mp4parser.util.Path;
  /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/compile/mclinker/lib/MC/
MCLDDirectory.cpp 93 void MCLDDirectory::setSysroot(const sys::fs::Path& pSysroot)
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 37 import com.android.gallery3d.data.Path;
57 public static final String KEY_MEDIA_PATH = "media-path";
169 Path path = targetSet.getPath(); local
172 boolean isSelected = mSelectionManager.isItemSelected(path);
189 mSelectionManager.toggle(path);
332 ArrayList<Path> ids = mSelectionManager.getSelected(false);
405 public void onSelectionChange(Path path, boolean selected) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
TimeClustering.java 110 s.path = item.getPath();
163 public ArrayList<Path> getCluster(int index) {
165 ArrayList<Path> result = new ArrayList<Path>(items.size());
167 result.add(items.get(i).path);
343 Path path; field in class:SmallItem
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 27 import android.graphics.Path;
54 private Path mDrawPath = new Path();
302 mDrawPath.addRect(mDrawRect, Path.Direction.CW);

Completed in 1484 milliseconds

<<11121314151617181920>>