Searched refs:filePath (Results 1 - 25 of 141) sorted by relevance

123456

/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dfiletools.h27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE);
30 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar);
H A Dfiletools.cpp43 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { argument
46 if (filePath == NULL || checkAgainst == NULL) {
67 isLatest = isFileModTimeLater(filePath, newpath, isDir);
72 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
89 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst);
130 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) { argument
131 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) {
132 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dfiletools.h27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE);
30 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar);
H A Dfiletools.cpp43 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { argument
46 if (filePath == NULL || checkAgainst == NULL) {
67 isLatest = isFileModTimeLater(filePath, newpath, isDir);
72 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
89 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst);
130 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) { argument
131 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) {
132 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[
[all...]
/external/qemu/android/filesystems/
H A Dext4_utils.h22 // Create a new empty EXT4 partition image file at |filePath|
26 int android_createEmptyExt4Image(const char *filePath,
30 // Returns true iff the file at |filePath| is an actual EXT4 partition image.
31 bool android_pathIsExt4PartitionImage(const char* filePath);
H A Dext4_utils.cpp71 int android_createEmptyExt4Image(const char *filePath, argument
74 int ret = ::make_ext4fs(filePath, size, mountpoint, NULL);
76 EXT4_ERROR << "Failed to create ext4 image at: " << filePath; local
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataObjectTest.cpp28 String filePath = Platform::current()->unitTestSupport()->webKitRootDir(); local
29 filePath.append("/Source/core/clipboard/DataObjectTest.cpp");
31 m_dataObject->addFilename(filePath, String());
42 EXPECT_EQ(filePath, file->path());
47 String filePath = Platform::current()->unitTestSupport()->webKitRootDir(); local
48 filePath.append("/Source/core/clipboard/DataObjectTest.cpp");
50 m_dataObject->addFilename(filePath, "name.cpp");
61 EXPECT_EQ(filePath, file->path());
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioFileReader.h46 PLATFORM_EXPORT PassRefPtr<AudioBus> createBusFromAudioFile(const char* filePath, bool mixToMono, float sampleRate);
49 PLATFORM_EXPORT void writeBusToAudioFile(AudioBus* bus, const char* filePath, double fileSampleRate);
/external/smack/src/org/jivesoftware/smack/
H A DBOSHConfiguration.java64 * @param filePath the file which is described by the URL
69 public BOSHConfiguration(boolean https, String host, int port, String filePath, String xmppDomain) { argument
73 file = (filePath != null ? filePath : "/");
85 * @param filePath the file which is described by the URL
91 public BOSHConfiguration(boolean https, String host, int port, String filePath, ProxyInfo proxy, String xmppDomain) { argument
95 file = (filePath != null ? filePath : "/");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
H A DFileSystemWorkspaceBinding.js267 var filePath = this._filePathForPath(path);
268 this._fileSystem.requestFileContent(filePath, callback);
277 var filePath = this._filePathForPath(path);
278 this._fileSystem.requestMetadata(filePath, callback);
296 var filePath = this._filePathForPath(path);
297 this._fileSystem.setFileContent(filePath, newContent, callback.bind(this, ""));
315 var filePath = this._filePathForPath(path);
316 this._fileSystem.renameFile(filePath, newName, innerCallback.bind(this));
331 var slash = filePath.lastIndexOf("/");
332 var parentPath = filePath
[all...]
H A DFileSystemMapping.js276 * @param {string} filePath
279 _mappingEntryForPath: function(fileSystemPath, filePath)
291 if (filePath.startsWith(pathPrefix.substr(1)))
359 * @return {?{fileSystemPath: string, filePath: string}}
368 file.filePath = entry.pathPrefix.substr(1) + url.substr(entry.urlPrefix.length);
374 * @param {string} filePath
377 urlForPath: function(fileSystemPath, filePath)
379 var entry = this._mappingEntryForPath(fileSystemPath, filePath);
382 return entry.urlPrefix + filePath.substring(entry.pathPrefix.length - 1);
400 * @param {string} filePath
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DURLTestHelpers.cpp61 std::string filePath = std::string(Platform::current()->unitTestSupport()->webKitRootDir().utf8().data()); local
62 filePath.append("/Source/web/tests/data/");
63 filePath.append(std::string(relativeBaseDirectory.utf8().data()));
64 filePath.append(std::string(fileName.utf8().data()));
66 Platform::current()->unitTestSupport()->registerMockedURL(fullURL, response, WebString::fromUTF8(filePath.c_str()));
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebBlobInfo.h29 WebBlobInfo(const WebString& uuid, const WebString& filePath, const WebString& fileName, const WebString& type) argument
34 , m_filePath(filePath)
39 WebBlobInfo(const WebString& uuid, const WebString& filePath, const WebString& fileName, const WebString& type, double lastModified, long long size) argument
44 , m_filePath(filePath)
65 const WebString& filePath() const function in class:blink::WebBlobInfo
H A DWebUnitTestSupport.h42 virtual void registerMockedURL(const WebURL&, const WebURLResponse&, const WebString& filePath) { } argument
/external/chromium_org/chrome/browser/resources/extensions/
H A Dpack_extension_overlay.js56 * select dialog, and fire |callback| with the |filePath| that resulted.
63 window.handleFilePathSelected = function(filePath) {
64 callback(filePath);
77 this.showFileDialog_('folder', 'load', function(filePath) {
78 $('extension-root-dir').value = filePath;
88 this.showFileDialog_('file', 'pem', function(filePath) {
89 $('extension-private-key').value = filePath;
/external/qemu/android/kernel/
H A Dkernel_utils_testing.h24 // file at |filePath|. On success, return true and sets |*text| to the
29 const char* filePath,
H A Dkernel_utils.cpp59 bool getFileDescription(void* opaque, const char* filePath, String* text) { argument
60 if (!filePath) {
65 if (!path_exists(filePath)) {
66 KERNEL_ERROR << "Kernel file doesn't exist: " << filePath; local
78 command += filePath;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebImageTest.cpp47 String filePath = Platform::current()->unitTestSupport()->webKitRootDir(); local
48 filePath.append("/Source/web/tests/data/");
49 filePath.append(fileName);
51 return Platform::current()->unitTestSupport()->readFromFile(filePath);
/external/clang/include/clang/ARCMigrate/
H A DFileRemapper.h47 bool initFromFile(StringRef filePath, DiagnosticsEngine &Diag,
55 void remap(StringRef filePath, llvm::MemoryBuffer *memBuf);
65 const FileEntry *getOriginalFile(StringRef filePath);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValueTest.cpp34 String filePath = Platform::current()->unitTestSupport()->webKitRootDir(); local
35 filePath.append("/Source/bindings/core/v8/SerializedScriptValueTest.cpp");
36 RefPtrWillBeRawPtr<File> originalFile = File::create(filePath);
39 ASSERT_EQ(filePath, originalFile->path());
50 EXPECT_EQ(filePath, file->path());
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebHTTPBody.cpp76 result.filePath.reset();
89 result.filePath = element.m_filename;
121 void WebHTTPBody::appendFile(const WebString& filePath) argument
124 m_private->appendFile(filePath);
127 void WebHTTPBody::appendFileRange(const WebString& filePath, long long fileStart, long long fileLength, double modificationTime) argument
130 m_private->appendFileRange(filePath, fileStart, fileLength, modificationTime);
H A DWebBlobData.cpp64 result.filePath.reset();
77 result.filePath = item.path;
/external/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.h70 const UString &filePath,
78 const UString &filePath,
83 const UString &filePath,
/external/qemu/android/utils/
H A Dfile_data.h52 // at |filePath|. On success, return 0 and initializes |fileData| properly.
54 int fileData_initFromFile(FileData* fileData, const char* filePath);
H A Dini.h37 IniFile* iniFile_newFromFile( const char* filePath);
42 int iniFile_saveToFile( IniFile* f, const char* filePath );

Completed in 432 milliseconds

123456