/external/mdnsresponder/mDNSPosix/ |
Responder.c | 502 static mStatus RegisterServicesInFile(const char *filePath) 505 FILE * fp = fopen(filePath, "r"); 512 fprintf(stderr, "Parsing %s for services\n", filePath); 602 fprintf(stderr, "%s: Error reading service file %s\n", gProgramName, filePath);
|
/external/webkit/Tools/MiniBrowser/mac/ |
AppDelegate.m | 255 NSString* filePath = [[sheet filenames] objectAtIndex:0]; 263 [controller loadURLString:[[NSURL fileURLWithPath:filePath] absoluteString]];
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DecodeUtils.java | 101 JobContext jc, String filePath, Options options, int targetSize, int type) { 104 fis = new FileInputStream(filePath); 218 JobContext jc, String filePath, boolean shareable) { 220 return BitmapRegionDecoder.newInstance(filePath, shareable);
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
HandoverTransfer.java | 407 String filePath = mPaths.get(0); 408 Uri mediaUri = mMediaUris.get(filePath); 410 Uri.parse(ContentResolver.SCHEME_FILE + "://" + filePath); 411 viewIntent.setDataAndTypeAndNormalize(uri, mMimeTypes.get(filePath));
|
/external/chromium/webkit/glue/ |
glue_serialize_unittest.cc | 117 EXPECT_EQ(string16(a_elem.filePath), string16(b_elem.filePath));
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
BitmapUtils.java | 190 public static Bitmap createVideoThumbnail(String filePath) { 200 method.invoke(instance, filePath);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringInputPage.java | 281 String filePath = sLastResFilePath.get(projPath); 283 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH); 521 for (String filePath : filePaths) { 522 mResFileCombo.add(filePath);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
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/platform/win/ |
ClipboardWin.cpp | 191 WCHAR filePath[MAX_PATH]; 200 wcscpy_s(filePath, MAX_PATH, localPathStr); 222 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1) 224 if (!::PathFileExists(filePath)) 227 HANDLE tempFileHandle = CreateFile(filePath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0); 240 SIZE_T dropFilesSize = sizeof(DROPFILES) + (sizeof(WCHAR) * (wcslen(filePath) + 2)); 248 wcscpy((LPWSTR)(dropFiles + 1), filePath);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
VideoEditorHelper.java | 432 final String filePath = location + dateFormat.format(date) + 435 "\t FilePath = " + filePath); 436 return 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/eventanalyzer/src/com/android/eventanalyzer/ |
EventAnalyzer.java | 119 // get the filepath and break. 203 * @param filePath the location of the file. 206 private void parseTextLogFile(String filePath) throws IOException { 209 String tagFile = filePath + TAG_FILE_EXT; 224 new InputStreamReader(new FileInputStream(filePath)));
|
/external/webkit/Source/WebCore/platform/network/ |
FormData.h | 108 void appendFile(const String& filePath, bool shouldGenerateFile = false);
|
/external/webkit/Source/WebCore/platform/qt/ |
FileSystemQt.cpp | 83 return QDir::toNativeSeparators(QDir(path).filePath(component));
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/ |
FwdLockEngine.cpp | 536 const char *filePath = strchr(uri + sizeof(fileTag) - 1, '/'); 537 if (NULL != filePath && onCanHandle(uniqueId, String8(filePath))) { 538 int fd = open(filePath, O_RDONLY);
|
/external/webkit/Source/WebCore/fileapi/ |
DOMFileSystemBase.cpp | 60 bool DOMFileSystemBase::crackFileSystemURL(const KURL& url, AsyncFileSystem::Type& type, String& filePath) 86 filePath.swap(path);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutCanvas.java | [all...] |
/frameworks/base/core/java/android/provider/ |
MediaStore.java | 540 String filePath = c.getString(1); 598 String filePath = null; 669 if (filePath == null) { 675 filePath = c.getString(1); 678 bitmap = ThumbnailUtils.createVideoThumbnail(filePath, kind); 680 bitmap = ThumbnailUtils.createImageThumbnail(filePath, kind); [all...] |
/external/clang/lib/ARCMigrate/ |
ARCMT.cpp | 650 SmallString<64> filePath(file->getName()); 651 Unit->getFileManager().FixupRelativePath(filePath); 652 Remapper.remap(filePath.str(), memBuf);
|
/external/smack/src/org/jivesoftware/smack/ |
BOSHConnection.java | 129 * @param filePath the file which is described by the URL 134 public BOSHConnection(boolean https, String host, int port, String filePath, String xmppDomain) { 135 super(new BOSHConfiguration(https, host, port, filePath, xmppDomain));
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
WebRequest.cpp | 197 FilePath filePath(filename); 198 m_request->AppendFileToUpload(filePath); 302 FilePath path(m_url);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
MediaRecorderTest.java | 233 private boolean validateVideo(String filePath, int width, int height) { 235 getOutputVideoProperty(filePath);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/ |
MediaPlayerPerformance.java | 253 public void stressAudioRecord(String filePath) { 261 mRecorder.setOutputFile(filePath);
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/data/ |
LocalDataTest.java | 127 assertEquals("/mnt/sdcard/DCIM/100CANON/IMG_0072.JPG", item.filePath); 306 item.filePath);
|
/external/llvm/include/llvm/Bitcode/ |
Archive.h | 285 const sys::Path& filePath, ///< The file path to open and load
|