Searched refs:path (Results 1 - 25 of 535) sorted by last modified time

1234567891011>>

/frameworks/support/v4/kitkat/android/support/v4/os/
H A DEnvironmentCompatKitKat.java24 public static String getStorageState(File path) { argument
25 return Environment.getStorageState(path);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSuggestionsAdapter.java686 List<String> path = uri.getPathSegments();
687 if (path == null) {
688 throw new FileNotFoundException("No path: " + uri);
690 int len = path.size();
694 id = Integer.parseInt(path.get(0));
696 throw new FileNotFoundException("Single path segment is not a resource ID: " + uri);
699 id = r.getIdentifier(path.get(1), path.get(0), authority);
701 throw new FileNotFoundException("More than two path segments: " + uri);
728 // if content path provide
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebIconDatabaseAdapter.java30 public void open(String path) { argument
/frameworks/webview/chromium/tools/
H A Dgenerate_local_manifest.py10 certain path.
21 project_path = project.get('path')
29 print 'Excluding project name="%s" path="%s"' % (project_name,
35 local_manifest_dir = os.path.dirname(local_manifest_path)
36 if not os.path.exists(local_manifest_dir):
55 manifest_path = os.path.join(android_build_top, '.repo/manifests',
57 local_manifest_path = os.path.join(android_build_top,
H A Dmerge_common.py23 REPOSITORY_ROOT = os.path.join(os.environ['ANDROID_BUILD_TOP'],
H A Dmerge_from_chromium.py37 def _ReadGitFile(sha1, path, git_url=None, git_branch=None):
42 path: The relative path of the file to read.
50 return merge_common.GetCommandStdout(['git', 'show', '%s:%s' % (sha1, path)])
99 A dictionary from project to git URL and SHA1 - 'path: (url, sha1)'
109 for path in projects:
111 if path:
112 upstream_path = os.path.join('src', path)
122 'updated.' % path)
[all...]
H A Dmerge_to_android.py35 """Returns the full path to a given project (either Chromium or Android)."""
37 abs_path = os.path.join(merge_common.REPOSITORY_ROOT, project)
39 abs_path = os.path.join(os.environ['ANDROID_BUILD_TOP'], project)
40 if not os.path.exists(abs_path):
41 raise merge_common.MergeError('Cannot find path ' + abs_path)
96 merge_log = os.path.join(dest_dir, '.merged-revisions')
97 if os.path.exists(merge_log):
99 os.path.join(dest_dir, '.git', 'info', 'grafts'))
260 repo_shas = {} # 'project/path' -> 'sha'
333 for path i
[all...]
/frameworks/wilhelm/src/
H A DAndroid.mk11 $(call include-path-for, wilhelm)
22 $(call include-path-for, wilhelm)
165 $(call include-path-for, wilhelm) \
170 $(call include-path-for, audio-effects)
209 $(call include-path-for, wilhelm) \
224 $(call include-path-for, wilhelm) \
/frameworks/wilhelm/tests/
H A DAndroid.mk21 $(call include-path-for, wilhelm) \
/frameworks/wilhelm/tests/automated/
H A DAndroid.mk11 $(call include-path-for, wilhelm) \
13 $(call include-path-for, wilhelm-ut)
/frameworks/wilhelm/tests/examples/
H A DAndroid.mk10 $(call include-path-for, wilhelm)
34 $(call include-path-for, wilhelm)
58 $(call include-path-for, wilhelm)
86 $(call include-path-for, wilhelm)
111 $(call include-path-for, wilhelm)
135 $(call include-path-for, wilhelm)
159 $(call include-path-for, wilhelm)
183 $(call include-path-for, wilhelm)
207 $(call include-path-for, wilhelm)
231 $(call include-path
[all...]
H A DslesTestBassBoostPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestBassBoostPathFromFD(SLObjectItf sl, const char* path, int16_t boostStrength, bool alwaysOn) argument
119 int fd = open(path, O_RDONLY);
128 locatorUri.URI = (SLchar *) path;
256 fprintf(stdout, "Plays the sound file designated by the given path, ");
261 fprintf(stdout, "unless the --always-on option is specified before the path.\n");
271 fprintf(stdout, "Usage: \t%s [--always-on] path bass_boost_strength\n", programName);
H A DslesTestDecodeAac.cpp413 /* Decode an audio path by opening a file descriptor on that path */
414 void TestDecToBuffQueue( SLObjectItf sl, const char *path, int fd) argument
421 perror(path);
427 fprintf(stderr, "%s: not an ordinary file\n", path);
434 perror(path);
442 size_t len = strlen((const char *) path);
447 memcpy(outputPath, path, len + 1);
851 perror(path);
H A DslesTestDecodeToBuffQueue.cpp261 /* Decode an audio path by opening a file descriptor on that path */
262 void TestDecToBuffQueue( SLObjectItf sl, const char* path) argument
264 size_t len = strlen((const char *) path);
269 memcpy(outputPath, path, len + 1);
333 decUri.URI = (SLchar*)path;
H A DslesTestEqFdPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestEQPathFromFD( SLObjectItf sl, const char* path
124 int fd = open(path, O_RDONLY);
133 locatorUri.URI = (SLchar *) path;
285 fprintf(stdout, "Plays the sound file designated by the given path, ");
290 fprintf(stdout, "unless the --always-on option is specified before the path.\n");
305 fprintf(stdout, "Usage: \t%s [--always-on] path offsetInBytes [sizeInBytes]\n",
H A DslesTestEqOutputPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestEQPathFromFD( SLObjectItf sl, const char* path
131 int fd = open(path, O_RDONLY);
140 locatorUri.URI = (SLchar *) path;
289 fprintf(stdout, "Plays the sound file designated by the given path, ");
294 fprintf(stdout, "unless the --always-on option is specified before the path.\n");
305 fprintf(stdout, "Usage: \t%s [--always-on] path offsetInBytes [sizeInBytes]\n",
H A DslesTestPlayFdPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size) argument
111 int fd = open(path, O_RDONLY);
113 perror(path);
198 fprintf(stdout, "Plays the sound file designated by the given path, ");
203 fprintf(stdout, "Usage: \t%s path offsetInBytes [sizeInBytes]\n", argv[0]);
H A DslesTestRecBuffQueue.cpp144 /* Record to an audio path by opening a file descriptor on that path */
145 void TestRecToBuffQueue( SLObjectItf sl, const char* path, SLAint64 durationInSeconds) argument
147 gFp = fopen(path, "w");
H A DslesTestSendToPresetReverb.cpp72 /* Play an audio path and feed a global reverb */
73 void TestSendToPresetReverb( SLObjectItf sl, const char* path, int preset, SLmillibel directLevel, argument
172 locatorUri.URI = (SLchar *) path;
178 int fd = open(path, O_RDONLY);
180 perror(path);
335 fprintf(stdout, "Plays the sound file designated by the given path, ");
340 fprintf(stdout, "unless the --always-on option is specified before the path.\n");
362 fprintf(stdout, "Usage: \t%s [--always-on] [--fd] [--loop] path preset directLevel "
H A DslesTestVirtualizerPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestVirtualizerPathFromFD( SLObjectItf sl, const char* path, int16_t virtStrength, argument
120 int fd = open(path, O_RDONLY);
129 locatorUri.URI = (SLchar *) path;
258 fprintf(stdout, "Plays the sound file designated by the given path, ");
263 fprintf(stdout, "unless the --always-on option is specified before the path.\n");
273 fprintf(stdout, "Usage: \t%s [--always-on] path virtualization_strength\n", programName);
/frameworks/wilhelm/tests/listening/
H A DAndroid.mk10 $(call include-path-for, wilhelm)
34 $(call include-path-for, wilhelm)
H A DslesTest_playMuteSolo.cpp163 void TestPlayUri( SLObjectItf sl, const char* path) argument
227 uri.URI = (SLchar*) path;
/frameworks/wilhelm/tests/mimeUri/
H A DAndroid.mk10 $(call include-path-for, wilhelm)
36 $(call include-path-for, wilhelm)
62 $(call include-path-for, wilhelm)
88 $(call include-path-for, wilhelm)
114 $(call include-path-for, wilhelm)
140 $(call include-path-for, wilhelm)
166 $(call include-path-for, wilhelm)
192 $(call include-path-for, wilhelm)
H A DslesTestGetPositionUri.cpp127 void TestGetPositionUri( SLObjectItf sl, const char* path) argument
183 uri.URI = (SLchar*) path;
324 fprintf(stdout, "Usage: %s path \n\t%s url\n", argv[0], argv[0]);
H A DslesTestLoopUri.cpp122 void TestLoopUri( SLObjectItf sl, const char* path) argument
170 uri.URI = (SLchar*) path;
299 fprintf(stdout, "Usage: \n\t%s path \n\t%s url\n", argv[0], argv[0]);

Completed in 177 milliseconds

1234567891011>>