Searched defs:path (Results 1 - 23 of 23) sorted by relevance

/development/tools/idegen/src/
H A DExcludes.java35 * Returns true if the given path should be excluded.
37 public boolean exclude(String path) { argument
39 if (pattern.matcher(path).find()) {
H A DEclipse.java42 * If the user has a file named "path-precedence" in their project's
49 File precedence = new File("path-precedence");
68 // Trim preceding "./" from path.
69 String path = sourceRoot.getPath().substring(2);
72 if (bucket.matches(path)) {
88 classpath.append(" path=\"")
96 classpath.append(" <classpathentry kind=\"lib\" path=\"")
104 classpath.append(" <classpathentry kind=\"output\" path=\""
119 String path = sourceRoot.getPath();
132 if (!nextPath.startsWith(path)) {
184 matches(String path) argument
[all...]
/development/ndk/sources/android/libportable/arch-mips/
H A Dstatfs.c38 int WRAP(statfs)(const char* path, struct statfs_portable* stat) argument
47 ret = REAL(statfs)(path, &mips_stat);
H A Dstat.c23 int WRAP(stat)(const char *path, struct stat_portable *s) argument
32 ret = REAL(stat)(path, &mips_stat);
51 int WRAP(lstat)(const char *path, struct stat_portable *s) argument
60 ret = REAL(lstat)(path, &mips_stat);
65 int WRAP(fstatat)(int dirfd, const char *path, struct stat_portable *s, int flags) argument
74 ret = REAL(fstatat)(dirfd, path, &mips_stat, flags);
/development/tools/hosttestlib/src/com/android/hosttest/
H A DDeviceTest.java41 * Retrieves host file system path that contains test app files
42 * @return {@link String} containing path, or <code>null</code>
47 * Sets host file system path that contains test app files
48 * @param path absolute file system path to test data files
50 public void setTestAppPath(String path); argument
H A DDeviceTestCase.java32 /** optionally, used to store path to test data files */
62 public void setTestAppPath(String path) { argument
63 mTestDataPath = path;
H A DDeviceTestSuite.java50 * Overrides parent method to pass in device and test app path to included test
86 public void setTestAppPath(String path) { argument
87 mTestDataPath = path;
/development/ndk/sources/android/libportable/arch-x86/
H A Dstat.c21 int WRAP(stat)(const char *path, struct stat_portable *s) argument
24 int ret = REAL(stat)(path, &x86_stat);
37 int WRAP(lstat)(const char *path, struct stat_portable *s) argument
40 int ret = REAL(lstat)(path, &x86_stat);
45 int WRAP(fstatat)(int dirfd, const char *path, struct stat_portable *s, int flags) argument
48 int ret = REAL(fstatat)(dirfd, path, &x86_stat, flags);
/development/samples/Obb/src/com/example/android/obbapp/
H A DObbMountActivity.java62 mPath = (TextView) findViewById(R.id.path);
69 mPath.setText(state.path);
80 public void onObbStateChange(String path, int state) {
81 Log.d(TAG, "path=" + path + "; state=" + state);
140 public CharSequence path; field in class:ObbMountActivity.ObbState
142 ObbState(StorageManager storageManager, CharSequence status, CharSequence path) { argument
145 this.path = path;
/development/ndk/tools/
H A Dheaders-diff-bionic-vs-ndk.py7 import sys, os, os.path namespace
31 path = os.path.join(platforms_root, dirname)
32 if os.path.isdir(path) and ('android' in dirname):
44 if os.path.isfile(os.path.join(root, filename)):
51 includes_root = os.path.join(root, 'include')
52 if not os.path.isdir(includes_root):
59 path
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/
H A DApiDemos.java43 String path = intent.getStringExtra("com.example.android.apis.Path");
45 if (path == null) {
46 path = "";
49 setListAdapter(new SimpleAdapter(this, getData(path),
127 protected Intent browseIntent(String path) { argument
130 result.putExtra("com.example.android.apis.Path", path);
/development/samples/ApiDemos/src/com/example/android/apis/media/
H A DMediaPlayerDemo_Audio.java38 private String path; field in class:MediaPlayerDemo_Audio
56 * TODO: Set the path variable to a local audio file path.
58 path = "";
59 if (path == "") {
65 + "and set the path variable to your audio file path."
71 mMediaPlayer.setDataSource(path);
H A DMediaPlayerDemo_Video.java45 private String path; field in class:MediaPlayerDemo_Video
79 * TODO: Set the path variable to a local media file path.
81 path = "";
82 if (path == "") {
88 + "and set the path variable to your media file path."
96 * TODO: Set path variable to progressive streamable mp4 or
104 path = "";
105 if (path
[all...]
/development/samples/Support13Demos/src/com/example/android/supportv13/
H A DSupport13Demos.java43 String path = intent.getStringExtra("com.example.android.apis.Path");
45 if (path == null) {
46 path = "";
49 setListAdapter(new SimpleAdapter(this, getData(path),
127 protected Intent browseIntent(String path) { argument
130 result.putExtra("com.example.android.apis.Path", path);
/development/samples/Support4Demos/src/com/example/android/supportv4/
H A DSupport4Demos.java43 String path = intent.getStringExtra("com.example.android.apis.Path");
45 if (path == null) {
46 path = "";
49 setListAdapter(new SimpleAdapter(this, getData(path),
127 protected Intent browseIntent(String path) { argument
130 result.putExtra("com.example.android.apis.Path", path);
/development/samples/Support7Demos/src/com/example/android/supportv7/
H A DSupport7Demos.java43 String path = intent.getStringExtra("com.example.android.apis.Path");
45 if (path == null) {
46 path = "";
49 setListAdapter(new SimpleAdapter(this, getData(path),
129 protected Intent browseIntent(String path) { argument
132 result.putExtra("com.example.android.apis.Path", path);
/development/samples/ApiDemos/src/com/example/android/apis/content/
H A DExternalStorage.java180 // Create a path where we will place our picture in the user's
185 File path = Environment.getExternalStoragePublicDirectory(
187 File file = new File(path, "DemoPicture.jpg");
191 path.mkdirs();
211 public void onScanCompleted(String path, Uri uri) {
212 Log.i("ExternalStorage", "Scanned " + path + ":");
224 // Create a path where we will place our picture in the user's
227 File path = Environment.getExternalStoragePublicDirectory(
229 File file = new File(path, "DemoPicture.jpg");
234 // Create a path wher
358 createStorageControls(CharSequence label, File path, View.OnClickListener createClick, View.OnClickListener deleteClick) argument
[all...]
/development/ide/emacs/
H A Dandroid-common.el25 ;; If the path the product's files/image uses an a product alias, you
69 "Ascend the current path until the root of the android build tree is found.
122 (defun android-product-path ()
123 "Return the full path to the product directory.
128 (let ((path (concat (android-find-build-tree-root) "out/target/product/"
130 (when (not (file-exists-p path))
132 add an entry to android-product-map." path (android-product))))
133 path))
136 "Return the full path to the host BINARY.
141 (let ((path (conca
[all...]
/development/tools/elftree/
H A Delftree.c93 char *path; member in struct:search_dir
97 static void add_search_dir(char *path) argument
100 dir->path = malloc(strlen(path) + 1);
101 strcpy(dir->path, path);
146 static int dump_file(struct tree_state *t, char *name, char *path);
151 char path[PATH_MAX]; local
157 snprintf(path, PATH_MAX, "%s/%s", dir->path, nam
293 char path[PATH_MAX]; local
[all...]
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DImageCache.java597 * Check how much usable space is available at a given path.
599 * @param path The path to check
603 public static long getUsableSpace(File path) { argument
605 return path.getUsableSpace();
607 final StatFs stats = new StatFs(path.getPath());
/development/ndk/platforms/android-3/include/linux/
H A Dcoda.h498 int path; member in struct:coda_open_by_path_out
577 const char __user *path; member in struct:PioctlData
/development/samples/training/testingfun/gradle/wrapper/
H A Dgradle-wrapper.jar ... net.URI) java.net.URI distUrl String path int p private java.io.File getBaseDir (java ...
/development/samples/training/NavigationDrawer/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/util/ ...

Completed in 722 milliseconds