HomeSort by relevance Sort by last modified time
    Searched defs:filePath (Results 26 - 50 of 90) sorted by null

12 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptParserTest.java 164 String filePath = osRoot + File.separator + fileRelativePath;
165 String originalError = filePath + aaptError.substring(aaptError.indexOf(':'));
AaptQuickFixTest.java 95 String filePath = osRoot + File.separator + fileRelativePath;
104 errors.add(filePath + ":7: error: Error: No resource found that matches the given name"
106 errors.add(filePath + ":7: error: Error: No resource found that matches the given name"
108 errors.add(filePath + ":13: error: Error: No resource found that matches the given name"
217 String filePath = osRoot + File.separator + fileRelativePath;
219 errors.add(filePath + ":5: error: Error parsing XML: unbound prefix");
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/io/
MockFileOp.java 245 for (String filePath : mExistinfFiles) {
246 if (pathRE.matcher(filePath).matches()) {
283 for (String filePath : mExistinfFiles) {
284 if (filePath.startsWith(path) && !filePath.equals(path)) {
323 for (String filePath : mExistinfFiles) {
324 if (pathRE.matcher(filePath).matches()) {
325 files.add(new File(filePath));
357 String filePath = it.next();
358 Matcher m = pathRE.matcher(filePath);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 80 private final String filePath;
169 * @param filePath {@code non-null;} the file path for the class,
176 public DirectClassFile(ByteArray bytes, String filePath,
182 if (filePath == null) {
183 throw new NullPointerException("filePath == null");
186 this.filePath = filePath;
196 * @param filePath {@code non-null;} the file path for the class,
203 public DirectClassFile(byte[] bytes, String filePath,
205 this(new ByteArray(bytes), filePath, strictParse)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 68 String filePath = testInput;
69 File testInputFile = new File(filePath);
72 testInputFile = new File(packagePath, filePath);
73 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath();
75 input = new ANTLRFileStream(filePath);
159 String filePath = testInput;
160 File testInputFile = new File(filePath);
163 testInputFile = new File(packagePath, filePath);
164 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath();
166 input = new ANTLRFileStream(filePath);
    [all...]
gUnitExecutor.java 610 String filePath = testInput.input;
611 File testInputFile = new File(filePath);
614 testInputFile = new File(this.testsuiteDir, filePath);
615 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath();
618 testInputFile = new File("."+File.separator+grammarInfo.getGrammarPackage().replace(".", File.separator), filePath);
619 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath();
622 input = new ANTLRFileStream(filePath);
  /external/webkit/Source/WebCore/workers/
WorkerContext.cpp 397 String filePath;
398 if (!completedURL.isValid() || !DOMFileSystemBase::crackFileSystemURL(completedURL, type, filePath)) {
403 LocalFileSystem::localFileSystem().readFileSystem(this, type, ResolveURICallbacks::create(successCallback, errorCallback, this, filePath));
416 String filePath;
417 if (!completedURL.isValid() || !DOMFileSystemBase::crackFileSystemURL(completedURL, type, filePath)) {
428 RefPtr<EntrySync> entry = fileSystem->root()->getDirectory(filePath, 0, ec);
430 return fileSystem->root()->getFile(filePath, 0, ec);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
FwdLockEngine.cpp 533 const char *filePath = strchr(uri + sizeof(fileTag) - 1, '/');
534 if (NULL != filePath && onCanHandle(uniqueId, String8(filePath))) {
535 int fd = open(filePath, O_RDONLY);
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 277 String filePath;
293 filePath = file.getCanonicalPath();
299 if (filePath.startsWith(cacheDir) || filePath.startsWith(libDir)) {
306 if (filePath.startsWith(dbDir)) {
309 } else if (filePath.startsWith(spDir)) {
312 } else if (filePath.startsWith(filesDir)) {
315 } else if (filePath.startsWith(mainDir)) {
319 Log.w(TAG, "File " + filePath + " is in an unsupported location; skipping");
324 Log.i(TAG, "backupFile() of " + filePath + " => domain=" + domai
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 130 String filePath;
132 filePath = c.getString(c.getColumnIndexOrThrow(Part.FILENAME));
133 if (TextUtils.isEmpty(filePath)) {
134 filePath = c.getString(
140 filePath = uri.getPath();
163 mPath = filePath;
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java 207 String filePath = cursor.getString(0);
208 if (filePath == null) continue;
209 Log.d(LOG_TAG, "Deleting " + filePath);
210 new File(filePath).delete();
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java 207 args.putString("filepath", path);
227 String filePath = arguments.getString("filepath");
230 if (filePath != null) {
236 uri = scanFile(filePath, arguments.getString("mimetype"));
241 listener.scanCompleted(filePath, uri);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptProcessor.java 324 String filePath = m.group(1);
325 if (filePath.startsWith(rootPath) == false) {
333 filePath = filePath.substring(rootPathLength);
335 if (filePath.startsWith(File.separator)) {
336 filePath = filePath.substring(1);
340 IFile f = project.getFile(new Path(filePath));
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 133 IPath filePath = dialog.getResult();
134 if (filePath == null) {
139 IFile file = workspace.getRoot().getFile(filePath);
  /external/quake/quake/src/WinQuake/
sys_android.cpp 424 char filePath[1024];
425 if ((int) (sizeof(filePath)-1) < snprintf(filePath, sizeof(filePath), "%s/%s", path, name)) {
428 if(direxists(filePath)) {
429 rmDir(filePath);
432 unlink(filePath);
  /frameworks/av/media/mtp/
MtpServer.cpp 726 const char* filePath = (const char *)pathBuf;
728 mfr.fd = open(filePath, O_RDONLY);
791 const char* filePath = (const char *)pathBuf;
793 mfr.fd = open(filePath, O_RDONLY);
    [all...]
  /gdk/samples/quake/jni/
sys_android.cpp 429 char filePath[1024];
430 if ((int) (sizeof(filePath)-1) < snprintf(filePath, sizeof(filePath), "%s/%s", path, name)) {
433 if(direxists(filePath)) {
434 rmDir(filePath);
437 unlink(filePath);
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 209 String filePath = directory + "/" + filename;
220 degree[0] = getExifOrientation(filePath);
242 values.put(Images.Media.DATA, filePath);
252 public static int getExifOrientation(String filepath) {
256 exif = new ExifInterface(filepath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 282 String filePath = sLastResFilePath.get(projPath);
284 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH);
522 for (String filePath : filePaths) {
523 mResFileCombo.add(filePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLFramesView.java 552 String filePath = dialog.open();
553 if (filePath == null)
557 file = new FileInputStream(filePath);
  /external/webkit/Source/WebCore/page/
DOMWindow.cpp 781 String filePath;
782 if (!completedURL.isValid() || !DOMFileSystemBase::crackFileSystemURL(completedURL, type, filePath)) {
787 LocalFileSystem::localFileSystem().readFileSystem(document, type, ResolveURICallbacks::create(successCallback, errorCallback, document, filePath));
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.cpp     [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 471 String filePath = c.getString(1);
529 String filePath = null;
600 if (filePath == null) {
606 filePath = c.getString(1);
609 bitmap = ThumbnailUtils.createVideoThumbnail(filePath, kind);
611 bitmap = ThumbnailUtils.createImageThumbnail(filePath, kind);
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverManager.java 535 String filePath = paths.get(0);
536 Uri mediaUri = mediaUris.get(filePath);
538 Uri.parse(ContentResolver.SCHEME_FILE + "://" + filePath);
539 viewIntent.setDataAndTypeAndNormalize(uri, mimeTypes.get(filePath));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 921 IPath filePath = graphicalEditor.findResourceFile(url);
922 if (filePath == null) {
    [all...]

Completed in 2290 milliseconds

12 3 4