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

1 2 3 4 5 6 78 91011>>

  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 64 " [P] - use full path names when matching\n"
124 // This variable holds the (possibly expanded) list of path objects that
126 std::set<sys::Path> Paths;
275 // sys::Path::getDirectoryContent method to perform the actual directory scans.
277 recurseDirectories(const sys::Path& path,
278 std::set<sys::Path>& result, std::string* ErrMsg) {
281 std::set<sys::Path> content;
282 if (path.getDirectoryContents(content, ErrMsg))
285 for (std::set<sys::Path>::iterator I = content.begin(), E = content.end()
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
popup_non_client_frame_view.cc 37 gfx::Path* window_mask) {
  /external/chromium/webkit/glue/
webcookie.cc 20 path(c.Path()),
28 const std::string& domain, const std::string& path,
33 path(path),
  /external/clang/lib/Serialization/
ASTReaderInternals.h 180 /// The on-disk hash table contains a mapping from each header path to
184 /// inode numbers, so that the search can cope with non-normalized path names
195 int StatSimpleCache(const char *Path, struct stat *StatBuf) {
196 if (Path == SearchPath) {
198 SearchPathStatResult = stat(Path, &SearchPathStatBuf);
204 return stat(Path, StatBuf);
219 static unsigned ComputeHash(const char *path);
220 static internal_key_type GetInternalKey(const char *path);
  /external/llvm/lib/Archive/
ArchiveInternals.h 75 bool GetBitcodeSymbols(const sys::Path& fName,
  /external/llvm/lib/Linker/
LinkItems.cpp 18 #include "llvm/Support/Path.h"
47 if (LinkInFile(sys::Path(I->first), is_native))
77 sys::Path Pathname = FindLib(Lib);
158 bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
227 /// Files - A vector of sys::Path indicating the LLVM bitcode filenames
235 bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
  /external/llvm/lib/Support/
PathV2.cpp 1 //===-- PathV2.cpp - Implement OS Path Concept ------------------*- C++ -*-===//
23 using llvm::sys::path::is_separator;
35 StringRef find_first_component(StringRef path) {
43 if (path.empty())
44 return path;
48 if (path.size() >= 2 && std::isalpha(path[0]) && path[1] == ':')
49 return path.substr(0, 2);
53 if ((path.size() > 2) &
152 namespace path { namespace in namespace:llvm::sys
    [all...]
  /external/skia/src/animator/
SkDrawPath.h 27 DECLARE_DRAW_MEMBER_INFO(Path);
SkTextToPath.cpp 29 SK_MEMBER(path, Path),
37 SkTextToPath::SkTextToPath() : paint(NULL), path(NULL), text(NULL) {
41 path->draw(maker);
46 if (paint == NULL || path == NULL || text == NULL) {
54 text->y, &path->getPath());
  /external/webkit/Source/WebCore/rendering/
RenderEmbeddedObject.h 71 bool getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceGradient.h 53 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
RenderSVGResourcePattern.h 55 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowDataAdapter.java 25 import com.android.gallery3d.data.Path;
46 public int findItemIndex(Path path, int hint);
56 private Path mInitialPath;
69 Path initialPath) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboSource.java 35 // The only path we accept is "/combo/{set1, set2, ...} and /combo/item/{set1, set2, ...}"
37 public MediaObject createMediaObject(Path path) {
38 String[] segments = path.split();
40 throw new RuntimeException("bad path: " + path);
44 switch (mMatcher.match(path)) {
46 return new ComboAlbumSet(path, mApplication,
50 return new ComboAlbum(path,
FaceClustering.java 37 ArrayList<Path> mPaths = new ArrayList<Path>();
48 Path path = item.getPath(); local
49 mPaths.add(path);
128 public ArrayList<Path> getCluster(int index) {
FilterSource.java 39 public MediaObject createMediaObject(Path path) {
40 int matchType = mMatcher.match(path);
47 return new FilterSet(path, dataManager, sets[0], mediaType);
49 throw new RuntimeException("bad path: " + path);
MediaItem.java 47 public MediaItem(Path path, long version) {
48 super(path, version);
PathMatcher.java 33 String[] segments = Path.split(pattern);
41 public int match(Path path) {
42 String[] segments = path.split();
  /external/webkit/Source/WebCore/bindings/scripts/
generate-bindings.pl 33 use File::Path;
  /external/webkit/Source/WebCore/inspector/
combine-javascript-resources.pl 32 use File::Path;
45 print "Usage: $0 --input-html <path> --output-dir path --output-script-name <name>\n";
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 139 void GraphicsContext::fillPath(const Path& path)
144 m_data->drawPath(path, VG_FILL_PATH, m_state.fillRule);
147 void GraphicsContext::strokePath(const Path& path)
152 m_data->drawPath(path, VG_STROKE_PATH, m_state.fillRule);
197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
202 m_data->clipPath(path, PainterOpenVG::IntersectClip, clipRule);
375 void GraphicsContext::clip(const Path& path
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGAnimationElement.h 29 #include "Path.h"
98 virtual Path animationPath() const { return Path(); }
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 26 import com.android.gallery3d.data.Path;
68 public static Uri getUriFor(Context context, Path path) {
73 .appendEncodedPath(path.toString().substring(1)) // ignore the leading '/'
87 Path path = Path.fromString(uri.getPath()); local
88 MediaItem item = (MediaItem) mDataManager.getMediaObject(path);
121 Path path = Path.fromString(uri.getPath()) local
204 Path path = Path.fromString(uri.getPath()); local
    [all...]
  /sdk/anttasks/src/com/android/ant/
TaskHelper.java 24 import org.apache.tools.ant.types.Path;
89 static String checkSinglePath(String attribute, Path path) {
90 String[] paths = path.list();
93 "Value for '%1$s' is not valid. It must resolve to a single path", attribute));
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/
TraceviewLauncher.java 25 import org.eclipse.core.runtime.Path;
38 final IFileStore fileStore = EFS.getLocalFileSystem().getStore(new Path(osPath));

Completed in 1527 milliseconds

1 2 3 4 5 6 78 91011>>