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

1 2 3 45 6 7 8 91011>>

  /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) {
AaptExecTask.java 22 import org.apache.tools.ant.types.Path;
42 * <tr><td>path to aapt</td><td>executable</td><td>attribute (Path)</td>
46 * <tr><td>-M AndroidManifest.xml</td><td>manifest</td><td>attribute (Path)</td></tr>
47 * <tr><td>-I base-package</td><td>androidjar</td><td>attribute (Path)</td></tr>
48 * <tr><td>-A asset-source-dir</td><td>assets</td><td>attribute (Path</td></tr>
49 * <tr><td>-S resource-sources</td><td>&lt;res path=""&gt;</td><td>nested element(s)<br>with attribute (Path)</td></tr>
51 * <tr><td>-F apk-file</td><td>apkfolder<br>outfolder<br>apkbasename<br>basename</td><td>attribute (Path)<br>attribute (Path) deprecated<br>attribute (String)<br>attribute (String) deprecated</td></tr
314 Path path = new Path(getProject()); local
    [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...]
ComposePathEffectTest.java 28 import android.graphics.Path;
48 Path path = new Path(); local
49 path.moveTo(START_X, CENTER);
50 path.lineTo(END_X, CENTER);
66 canvas.drawPath(path, paint);
72 canvas.drawPath(path, paint);
SumPathEffectTest.java 29 import android.graphics.Path;
33 import android.graphics.Path.Direction;
54 Path path = new Path(); local
55 path.addRect(10, 10, WIDTH - 10, HEIGHT - 10, Direction.CW);
64 canvas.drawPath(path, paint);
68 canvas.drawPath(path, paint);
73 canvas.drawPath(path, paint);
  /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() {
ImageCacheService.java 55 public ImageData getImageData(Path path, int type) {
56 byte[] key = makeKey(path, type);
74 public void putImageData(Path path, int type, byte[] value) {
75 byte[] key = makeKey(path, type);
89 private static byte[] makeKey(Path path, int type) {
90 return GalleryUtils.getBytes(path.toString() + "+" + type);
  /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 30 import com.android.gallery3d.data.Path;
47 public static final Path ALBUM_PATH = Path.fromString("/picasa/all");
60 public EmptyAlbumSet(Path path, long version) {
61 super(path, version);
76 public MediaObject createMediaObject(Path path) {
77 switch (mMatcher.match(path)) {
79 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...]
  /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/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...]
  /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...]
  /external/chromium/chrome/browser/ui/views/frame/
popup_non_client_frame_view.h 25 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)

Completed in 480 milliseconds

1 2 3 45 6 7 8 91011>>