/cts/tests/tests/gesture/src/android/gesture/cts/ |
GestureTest.java | 20 import android.graphics.Path; 81 // assert path is same as bounding box for individual gesture 86 * Test method for {@link android.gesture.Gesture#toPath(android.graphics.Path)}. 90 // assert path is valid when null argument is passed in 92 Path myPath = new Path(); 93 Path generatedPath = mGesture.toPath(myPath); 94 // check that provided path argument was used in construction 99 // TODO: check scenario where provided Path already has data
|
/external/skia/src/animator/ |
SkDrawClip.cpp | 28 SK_MEMBER(path, Path), 36 SkDrawClip::SkDrawClip() : rect(NULL), path(NULL) { 43 SkASSERT(path != NULL); 44 maker.fCanvas->clipPath(path->fPath);
|
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
URLSegments.h | 48 Path, 85 // Path: 13 13 98 URLComponent path; member in class:WTF::URLSegments
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGResourceSolidColor.h | 39 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
|
/frameworks/base/graphics/java/android/graphics/ |
PathDashPathEffect.java | 33 * Dash the drawn path by stamping it with the specified shape. This only 37 * @param shape The path to stamp along 42 public PathDashPathEffect(Path shape, float advance, float phase,
|
PathMeasure.java | 23 * of a path, and/or to find the position and tangent along it, call 26 * Note that once a path is associated with the measure object, it is 27 * undefined if the path is subsequently modified and the the measure object 28 * is used. If the path is modified, you must call setPath with the path. 35 * Create a PathMeasure object associated with the specified path object 37 * path's length, and the position and tangent of any position along the 38 * path. 40 * Note that once a path is associated with the measure object, it is 41 * undefined if the path is subsequently modified and the the measure objec [all...] |
/sdk/anttasks/src/com/android/ant/ |
ZipAlignTask.java | 22 import org.apache.tools.ant.types.Path; 38 public void setExecutable(Path executable) { 42 public void setInput(Path inputPath) { 46 public void setOutput(Path outputPath) {
|
XPathTask.java | 23 import org.apache.tools.ant.types.Path; 39 private Path mManifestFile; 44 public void setInput(Path manifestFile) {
|
AidlExecTask.java | 24 import org.apache.tools.ant.types.Path; 39 * 'executable' ({@link Path} with a single path) for the location of the aidl executable<br> 40 * 'framework' ({@link Path} with a single path) for the "preprocessed" file containing all the 42 * 'genFolder' ({@link Path} with a single path) for the location of the gen folder. 44 * It also expects one or more inner elements called "source" which are identical to {@link Path} 52 private final ArrayList<Path> mPaths = new ArrayList<Path>(); [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Canvas_EdgeTypeTest.java | 20 import android.graphics.Path; 55 c.quickReject(new Path(), EdgeType.AA); 56 c.quickReject(new Path(), EdgeType.BW);
|
Path_FillTypeTest.java | 19 import android.graphics.Path; 20 import android.graphics.Path.FillType; 26 @TestTargetClass(Path.FillType.class)
|
CornerPathEffectTest.java | 28 import android.graphics.Path; 51 @ToBeFixed(bug = "2037365", explanation = "CornerPathEffect ends the path prematurely it " + 54 Path path = new Path(); local 55 path.moveTo(0, PADDING); 56 path.lineTo(BITMAP_WIDTH - PADDING, PADDING); 57 path.lineTo(BITMAP_WIDTH - PADDING, BITMAP_HEIGHT); 70 // draw the path using the corner path effec [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
Path.java | 43 public class Path 51 public Path(AddressImpl address) { 59 public Path()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PathParser.java | 33 import gov.nist.javax.sip.header.ims.Path; 51 public PathParser(String path) { 52 super(path); 78 this.lexer.match(TokenTypes.PATH); 83 Path path = new Path(); local 84 super.parse(path); 85 pathList.add(path);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MediaObject.java | 62 protected final Path mPath; 64 public MediaObject(Path path, long version) { 65 path.setObject(this); 66 mPath = path; 70 public Path getPath() {
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
SelectionDrawer.java | 20 import com.android.gallery3d.data.Path; 36 int width, int height, int rotation, Path path, 42 int rotation, Path path, int mediaType, boolean isPanorama) { 43 draw(canvas, content, width, height, rotation, path,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/build/ |
NdkCommandLauncher.java | 25 import org.eclipse.core.runtime.Path;
35 commandPath = new Path(NdkManager.getNdkLocation()).append(commandPath);
41 commandPath = new Path("sh"); //$NON-NLS-1$
|
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/ |
PicasaSource.java | 23 import com.android.gallery3d.data.Path; 45 public static final Path ALBUM_PATH = Path.fromString("/picasa/all"); 58 public EmptyAlbumSet(Path path, long version) { 59 super(path, version); 74 public MediaObject createMediaObject(Path path) { 75 switch (mMatcher.match(path)) { 77 return new EmptyAlbumSet(path, MediaObject.nextVersionNumber()) [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
PathShapeTest.java | 27 import android.graphics.Path; 44 args = {android.graphics.Path.class, float.class, float.class} 47 new PathShape(new Path(), 1f, 5f); 49 new PathShape(new Path(), -1f, -1f); 70 Path path = new Path(); local 71 path.moveTo(50, 0); 72 path.lineTo(0, 50); 73 path.lineTo(50, 100) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/ |
DoodleView.java | 25 import android.graphics.Path; 43 void onDoodleFinished(Path path, int color); 46 private final Path normalizedPath = new Path(); 47 private final Path drawingPath = new Path(); 92 // Reset path to draw in a new color. 101 // Update the finished path to the bitmap. 104 listener.onDoodleFinished(new Path(normalizedPath), doodlePaint.getColor()) [all...] |
/external/llvm/tools/bugpoint/ |
ExecutionDriver.cpp | 75 SafeInterpreterPath("safe-path", 76 cl::desc("Specify the path to the \"safe\" backend program"), 221 std::string Path = SafeInterpreterPath; 222 if (Path.empty()) 223 Path = getToolName(); 232 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message, 243 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message, 255 SafeInterpreter = AbstractInterpreter::createCBE(Path.c_str(), Message, 265 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message, 278 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message [all...] |
/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 | 28 for (CXXBasePaths::paths_iterator Path = begin(), PathEnd = end(); 29 Path != PathEnd; ++Path) 30 Decls.insert(*Path->Decls.first); 59 /// clear - Clear out all prior path information. 166 // The access of the path down to this record. 197 // there is no base path here, we'll reset it later. 205 // Add this base specifier to the current path. 237 // Track whether there's a path involving this specific base. 241 // We've found a path that terminates at this base [all...] |
/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/llvm/tools/llvm-ld/ |
llvm-ld.cpp | 66 cl::desc("Specify a library search path"), 70 cl::desc("Specify a framework search path"), 95 cl::value_desc("path"), 264 const sys::Path &llc, 288 const sys::Path &llc, 328 const sys::Path &gcc, char ** const envp, 418 sys::Path llvmstub = PrependMainExecutablePath("llvm-stub", argv[0], 423 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg)) 436 // Allow user to setenv LLVMINTERP if lli is not in their PATH. 453 sys::Path FullLibraryPath [all...] |