HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 51 - 75 of 528) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/xml/
XPathPath.h 75 class Path : public Expression {
77 Path(Filter*, LocationPath*);
78 virtual ~Path();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriSource.java 38 public MediaObject createMediaObject(Path path) {
39 String segment[] = path.split();
41 throw new RuntimeException("bad path: " + path);
45 return new UriImage(mApplication, path, Uri.parse(decoded));
49 public Path findPathByUri(Uri uri) {
54 return Path.fromString("/uri/" + URLEncoder.encode(uri.toString()));
ClusterAlbum.java 23 private ArrayList<Path> mPaths = new ArrayList<Path>();
28 public ClusterAlbum(Path path, DataManager dataManager,
30 super(path, nextVersionNumber());
36 void setMediaItems(ArrayList<Path> paths) {
40 ArrayList<Path> getMediaItems() {
64 ArrayList<Path> paths, int start, int count,
70 ArrayList<Path> subset = new ArrayList<Path>(paths.subList(start, end))
    [all...]
  /sdk/anttasks/src/com/android/ant/
RenderScriptTask.java 24 import org.apache.tools.ant.types.Path;
37 * 'executable' ({@link Path} with a single path) for the location of the llvm executable<br>
38 * 'framework' ({@link Path} with 1 or more paths) for the include paths.<br>
39 * 'genFolder' ({@link Path} with a single path) for the location of the gen folder.<br>
40 * 'resFolder' ({@link Path} with a single path) for the location of the res folder.<br>
43 * It also expects one or more inner elements called "source" which are identical to {@link Path}
49 private Path mFramework
    [all...]
AaptExecTask.java 22 import org.apache.tools.ant.types.Path;
41 * <tr><td>path to aapt</td><td>executable</td><td>attribute (Path)</td>
45 * <tr><td>-M AndroidManifest.xml</td><td>manifest</td><td>attribute (Path)</td></tr>
46 * <tr><td>-I base-package</td><td>androidjar</td><td>attribute (Path)</td></tr>
47 * <tr><td>-A asset-source-dir</td><td>assets</td><td>attribute (Path</td></tr>
48 * <tr><td>-S resource-sources</td><td>&lt;res path=""&gt;</td><td>nested element(s)<br>with attribute (Path)</td></tr>
50 * <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
273 Path path = new Path(getProject()); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 31 #include "Path.h"
47 Path::Path()
51 Path::~Path()
55 Path::Path(const Path& other)
60 Path& Path::operator=(const Path& other
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
DoodleFilter.java 23 import android.graphics.Path;
40 private final Path path; field in class:DoodleFilter.ColorPath
42 ColorPath(int color, Path path) {
44 this.path = path;
59 * The path coordinates used here should range from 0 to 1.
61 public void addPath(Path path, int color)
    [all...]
  /external/llvm/bindings/ocaml/bitwriter/
bitwriter_ocaml.c 27 CAMLprim value llvm_write_bitcode_file(value M, value Path) {
28 int res = LLVMWriteBitcodeToFile((LLVMModuleRef) M, String_val(Path));
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 18 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) {
20 raw_fd_ostream OS(Path, ErrorInfo,
  /external/llvm/tools/llvmc/examples/mcc16/
Main.cpp 19 #include "llvm/Support/Path.h"
46 llvm::sys::Path tempDir;
47 tempDir = llvm::sys::Path::GetTemporaryDirectory();
Hooks.cpp 1 #include "llvm/Support/Path.h"
68 // Construct a Path object from the program name.
70 sys::Path ProgramFullPath
71 = sys::Path::GetMainExecutable(llvmc::ProgramName, P);
82 sys::Path BinDirPath = sys::Path(GetBinDir());
  /external/webkit/Source/WebCore/rendering/
RenderDetailsMarker.h 44 Path getCanonicalPath() const;
45 Path getPath(const IntPoint& origin) const;
  /external/webkit/Source/WebCore/svg/
SVGPathParserFactory.h 24 #include "Path.h"
40 // String/SVGPathByteStream -> Path
41 bool buildPathFromString(const String&, Path&);
42 bool buildPathFromByteStream(SVGPathByteStream*, Path&);
  /external/llvm/lib/Support/
GraphWriter.cpp 15 #include "llvm/Support/Path.h"
54 void llvm::DisplayGraph(const sys::Path &Filename, bool wait,
58 sys::Path Graphviz(LLVM_PATH_GRAPHVIZ);
90 if (sys::Program::ExecuteAndWait(sys::Path(LLVM_PATH_XDOT_PY),
100 sys::Path PSFilename = Filename;
103 sys::Path prog;
107 prog = sys::Path(LLVM_PATH_CIRCO);
110 prog = sys::Path(LLVM_PATH_TWOPI);
113 prog = sys::Path(LLVM_PATH_NEATO);
116 prog = sys::Path(LLVM_PATH_FDP)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 23 import com.android.gallery3d.data.Path;
37 private Set<Path> mClickedSet;
46 private Path mPressedPath;
50 public void onSelectionChange(Path path, boolean selected);
55 mClickedSet = new HashSet<Path>();
107 public boolean isItemSelected(Path itemId) {
124 public void toggle(Path path) {
125 if (mClickedSet.contains(path)) {
    [all...]
HighlightDrawer.java 19 import com.android.gallery3d.data.Path;
25 private Path mHighlightItem;
32 public void setHighlightItem(Path item) {
38 int height, int rotation, Path path,
58 if (mSelectionManager.isPressedPath(path)) {
60 } else if (path == mHighlightItem) {
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp 27 #include "Path.h"
42 Path::Path()
47 Path::~Path()
52 Path::Path(const Path& other)
60 Path& Path::operator=(const Path& other
    [all...]
  /external/clang/include/clang/Frontend/
ASTConsumers.h 19 namespace sys { class Path; }
HeaderSearchOptions.h 21 /// path starts at the -iquote group, then searches the Angled group, then
37 std::string Path;
42 /// IgnoreSysRoot - This is false if an absolute path should be treated
44 /// path.
47 Entry(llvm::StringRef path, frontend::IncludeDirGroup group,
49 : Path(path), Group(group), IsUserSupplied(isUserSupplied),
60 /// A (system-path) delimited list of include paths to be added from the
97 /// AddPath - Add the \arg Path path to the specified \arg Group list
    [all...]
  /external/clang/lib/Basic/
Version.cpp 43 // Trim path prefix off, assuming path came from standard cfe path.
63 std::string Path = getClangRepositoryPath();
65 if (!Path.empty())
66 OS << Path;
68 if (!Path.empty())
  /external/llvm/utils/not/
not.cpp 10 #include "llvm/Support/Path.h"
16 sys::Path Program = sys::Program::FindProgramByName(argv[1]);
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 20 import android.graphics.Path;
55 public Path toPath() {
56 Path path = new Path(); local
64 path.moveTo(point[0], point[1]);
69 path.lineTo(point[0], point[1]);
74 path.lineTo(point[0], point[1]);
79 path.lineTo(point[0], point[1]);
81 path.close()
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
PieItem.java 21 import android.graphics.Path;
37 private Path mPath;
65 public void setGeometry(float st, float sw, int inside, int outside, Path p) {
105 public Path getPath() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/project/
ProjectHelperTest.java 21 import org.eclipse.core.runtime.Path;
48 // create a project with a path to an android .zip
51 Mocks.createClasspathEntry(new Path("Project/src"), //$NON-NLS-1$
53 Mocks.createClasspathEntry(new Path(OLD_CONTAINER_ID),
56 new Path("Project/bin"));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 35 private Path mPath;
100 private static Path makeFollowPath() {
101 Path p = new Path();
109 private static Path makePathDash() {
110 Path p = new Path();

Completed in 610 milliseconds

1 23 4 5 6 7 8 91011>>