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

1 2 3 4 5 6 78 91011>>

  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 30 import org.apache.tools.ant.types.Path;
73 final Path libClasspath = m_libClasspath;
141 final Path srcpath = m_reportCfg.getSourcepath ();
264 public void setClasspath (final Path path)
267 m_classpath = path;
269 m_classpath.append (path);
277 public Path createClasspath ()
280 m_classpath = new Path (project);
357 public final void setLibclasspath (final Path classpath
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 30 for (paths_iterator Path = begin(), PathEnd = end(); Path != PathEnd; ++Path)
31 Decls.insert(Path->Decls.front());
56 /// clear - Clear out all prior path information.
180 // The access of the path down to this record.
208 // there is no base path here, we'll reset it later.
216 // Add this base specifier to the current path.
248 // Track whether there's a path involving this specific base.
252 // We've found a path that terminates at this base
    [all...]
  /external/llvm/lib/Support/
SpecialCaseList.cpp 52 const StringRef Path, std::string &Error) {
53 if (Path.empty())
56 MemoryBuffer::getFile(Path);
58 Error = (Twine("Can't open file '") + Path + "': " + EC.message()).str();
72 SpecialCaseList *SpecialCaseList::createOrDie(const StringRef Path) {
74 if (SpecialCaseList *SCL = create(Path, Error))
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CanvasTest.java 76 Path path = new Path(); local
77 path.lineTo(10, 10);
81 canvas.drawPath(path, paint);
85 assertThat(shadow.getDrawnPath(0), equalTo(path));
92 Path path1 = new Path();
95 Path path2 = new Path();
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ScaledTextActivity.java 24 import android.graphics.Path;
51 private final Path mPath;
80 private static Path makePath() {
81 Path path = new Path(); local
82 buildPath(path);
83 return path;
86 private static void buildPath(Path path) {
    [all...]
  /ndk/sources/host-tools/make-3.81/w32/
pathstuff.c 0 /* Path conversion for Windows pathnames.
27 convert_vpath_to_windows32(char *Path, char to_delim)
29 char *etok; /* token separator for old Path */
35 for (etok = Path; etok && *etok; etok++)
39 return (convert_Path_to_windows32(Path, to_delim));
43 * Convert delimiter separated path to Canonical format.
46 convert_Path_to_windows32(char *Path, char to_delim)
48 char *etok; /* token separator for old Path */
49 char *p; /* points to element of old Path */
51 /* is this a multi-element Path ? *
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
ComposePathEffectTest.java 25 import android.graphics.Path;
39 Path path = new Path(); local
40 path.moveTo(START_X, CENTER);
41 path.lineTo(END_X, CENTER);
57 canvas.drawPath(path, paint);
63 canvas.drawPath(path, paint);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
Stats.cs 117 System.IO.Directory.CreateDirectory(System.IO.Path.GetDirectoryName(absoluteFilename));
123 return personalFolder + System.IO.Path.DirectorySeparatorChar +
124 ANTLRWORKS_DIR + System.IO.Path.DirectorySeparatorChar +
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 34 #include "platform/graphics/Path.h"
104 const Path& path(const FloatRect& boundingRect) function in class:WebCore::FINAL
108 m_path = adoptPtr(new Path);
109 m_shape->path(*m_path, boundingRect);
123 OwnPtr<Path> m_path;
  /frameworks/compile/mclinker/tools/mcld/include/mcld/
OutputFormatOptions.h 15 #include <mcld/Support/Path.h>
33 llvm::cl::opt<mcld::sys::fs::Path,
35 llvm::cl::parser<mcld::sys::fs::Path> >& m_OutputFilename;
  /packages/apps/Camera2/src/com/android/camera/widget/
SettingsCling.java 22 import android.graphics.Path;
37 private final Path mTrianglePath = new Path();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterSource.java 51 mEmptyItem = new EmptyAlbumImage(Path.fromString(FILTER_EMPTY_ITEM),
54 Path.fromString(FILTER_CAMERA_SHORTCUT_ITEM), mApplication);
61 public MediaObject createMediaObject(Path path) {
62 int matchType = mMatcher.match(path);
69 return new FilterTypeSet(path, dataManager, sets[0], mediaType);
74 return new FilterDeleteSet(path, sets[0]);
79 return new FilterEmptyPromptSet(path, sets[0], mEmptyItem);
85 return new SingleItemAlbum(path, mCameraShortcutItem);
91 throw new RuntimeException("bad path: " + path)
    [all...]
MediaObject.java 72 protected final Path mPath;
79 public MediaObject(Path path, long version) {
80 path.setObject(this);
81 mPath = path;
85 public Path getPath() {
111 Log.e(TAG, "The object was created from path: " + getPath());
UriSource.java 44 public MediaObject createMediaObject(Path path) {
45 String segment[] = path.split();
47 throw new RuntimeException("bad path: " + path);
52 return new UriImage(mApplication, path, Uri.parse(uri), type);
74 public Path findPathByUri(Uri uri, String type) {
85 return Path.fromString("/uri/"
  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_frame_view.h 30 gfx::Path* window_mask) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceSolidColor.h 38 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*, const RenderSVGShape*) OVERRIDE;
  /external/chromium_org/third_party/skia/src/animator/
SkTextOnPath.cpp 21 SK_MEMBER(path, Path),
29 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) {
34 SkASSERT(path);
37 path->getPath(), offset, 0, *maker.fPaint);
  /external/chromium_org/third_party/skia/src/svg/
SkSVGPath.cpp 17 DEFINE_SVG_INFO(Path)
20 parser._startElement("path");
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 19 #include "llvm/Support/Path.h"
49 llvm::sys::path::append(Dest, "vfs.yaml");
60 /// Remove traversal (ie, . or ..) from the given absolute path.
61 static void removePathTraversal(SmallVectorImpl<char> &Path) {
64 StringRef P(Path.data(), Path.size());
66 // Skip the root path, then look for traversal in the components.
67 StringRef Rel = path::relative_path(P);
68 for (StringRef C : llvm::make_range(path::begin(Rel), path::end(Rel)))
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/report/
reportTask.java 12 import org.apache.tools.ant.types.Path;
58 final Path srcpath = m_reportCfg.getSourcepath ();
85 public void setSourcepath (final Path path)
87 m_reportCfg.setSourcepath (path);
95 public Path createSourcepath ()
  /external/proguard/src/proguard/ant/
ClassPathElement.java 31 * This FileSet represents a class path entry (or a set of class path entries)
36 public class ClassPathElement extends Path
46 * @see Path#Path(Project)
55 * Adds the contents of this class path element to the given class path.
56 * @param classPath the class path to be extended.
66 // Get the referenced path or file set.
70 if (referencedObject instanceof Path)
72 Path path = (Path)referencedObject; local
    [all...]
  /external/skia/src/animator/
SkTextOnPath.cpp 21 SK_MEMBER(path, Path),
29 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) {
34 SkASSERT(path);
37 path->getPath(), offset, 0, *maker.fPaint);
  /external/skia/src/svg/
SkSVGPath.cpp 17 DEFINE_SVG_INFO(Path)
20 parser._startElement("path");
  /frameworks/base/core/java/android/text/style/
BulletSpan.java 21 import android.graphics.Path;
22 import android.graphics.Path.Direction;
35 private static Path sBulletPath = null;
97 sBulletPath = new Path();
  /frameworks/compile/mclinker/include/mcld/MC/
InputBuilder.h 57 const sys::fs::Path& pPath,
62 const sys::fs::Path& pPath,
106 const sys::fs::Path& pPath,
121 const sys::fs::Path& pPath,

Completed in 1442 milliseconds

1 2 3 4 5 6 78 91011>>