/external/icu4c/tools/toolutil/ |
pkg_icu.h | 16 const char *sourcePath, const char *addList, U_NAMESPACE_QUALIFIER Package *pkg,
|
pkg_icu.cpp | 150 writePackageDatFile(const char *outFilename, const char *outComment, const char *sourcePath, const char *addList, Package *pkg, char outType) { 161 addListPkg = readList(sourcePath, addList, TRUE);
|
/frameworks/base/tools/aapt/ |
CrunchCache.h | 32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff); 40 * It goes through all the files found in the sourcePath and compares
|
CrunchCache.cpp | 18 CrunchCache::CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff) 19 : mSourcePath(sourcePath), mDestPath(destPath), mSourceFiles(0), mDestFiles(0), mFileFinder(ff) 42 // and offset our beginning pointer to the length of the sourcePath
|
/external/webkit/Source/WebKit/chromium/src/ |
AsyncFileSystemChromium.h | 56 virtual void move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>); 57 virtual void copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
|
AsyncFileSystemChromium.cpp | 64 void AsyncFileSystemChromium::move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 66 m_webFileSystem->move(sourcePath, destinationPath, new WebKit::WebFileSystemCallbacksImpl(callbacks)); 69 void AsyncFileSystemChromium::copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 71 m_webFileSystem->copy(sourcePath, destinationPath, new WebKit::WebFileSystemCallbacksImpl(callbacks));
|
WorkerAsyncFileSystemChromium.h | 65 virtual void move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>); 66 virtual void copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
|
WorkerFileSystemCallbacksBridge.cpp | 161 void WorkerFileSystemCallbacksBridge::postMoveToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode) 163 dispatchTaskToMainThread(createCallbackTask(&moveOnMainThread, fileSystem, sourcePath, destinationPath, this, mode)); 166 void WorkerFileSystemCallbacksBridge::postCopyToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode) 168 dispatchTaskToMainThread(createCallbackTask(©OnMainThread, fileSystem, sourcePath, destinationPath, this, mode)); 227 void WorkerFileSystemCallbacksBridge::moveOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, const String& mode) 229 fileSystem->move(sourcePath, destinationPath, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode)); 232 void WorkerFileSystemCallbacksBridge::copyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, const String& mode) 234 fileSystem->copy(sourcePath, destinationPath, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
|
WorkerAsyncFileSystemChromium.cpp | 90 void WorkerAsyncFileSystemChromium::move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 92 createWorkerFileSystemCallbacksBridge(callbacks)->postMoveToMainThread(m_webFileSystem, sourcePath, destinationPath, m_modeForCurrentOperation); 95 void WorkerAsyncFileSystemChromium::copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 97 createWorkerFileSystemCallbacksBridge(callbacks)->postCopyToMainThread(m_webFileSystem, sourcePath, destinationPath, m_modeForCurrentOperation);
|
/build/tools/atree/ |
files.h | 26 string sourcePath;
|
atree.cpp | 296 it->sourcePath.c_str(), it->sourceMod, 300 err = copy_file(it->sourcePath, it->outPath); 327 fprintf(f, "%s \\\n", it->sourcePath.c_str());
|
files.cpp | 350 rec->sourcePath = full; 400 r.sourcePath = path_append(rec.sourceBase, r.sourceName); 402 int err = stat(r.sourcePath.c_str(), &st);
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
Data.java | 172 void setSymlink(String sourcePath, String destinationPath); 177 void setSymlink(String sourcePath, Data destination);
|
UnmodifiableData.java | 87 public void setSymlink(String sourcePath, Data destination) { 92 public void setSymlink(String sourcePath, String destinationPath) {
|
DelegatedData.java | 211 public void setSymlink(String sourcePath, String destinationPath) { 212 getDelegate().setSymlink(sourcePath, destinationPath); 216 public void setSymlink(String sourcePath, Data destination) { 218 getDelegate().setSymlink(sourcePath, destination);
|
NestedMapData.java | 379 public void setSymlink(String sourcePath, String destinationPath) { 380 setSymlink(sourcePath, createChild(destinationPath)); 386 public void setSymlink(String sourcePath, Data destination) { 387 createChild(sourcePath).setSymlink(destination);
|
DefaultDataContext.java | 340 public void setSymlink(String sourcePath, String destinationPath) { 344 public void setSymlink(String sourcePath, Data destination) {
|
/external/icu4c/tools/icupkg/ |
icupkg.cpp | 223 const char *pname, *sourcePath, *destPath, *inFilename, *outFilename, *outComment; 254 sourcePath=options[OPT_SOURCEDIR].value; 257 sourcePath=NULL; 276 pkg->addFile(sourcePath, inFilename); 290 isModified=(UBool)(sourcePath!=destPath); 392 addListPkg=readList(sourcePath, options[OPT_ADD_LIST].value, TRUE);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeRefactoringTest.java | 152 IPath sourcePath = file.getProjectRelativePath(); 153 fileToGolden.put(sourcePath, basename); 154 IPath newPath = sourcePath.removeLastSegments(1).append(layoutName + DOT_XML);
|
ExtractStyleRefactoringTest.java | 214 IPath sourcePath = file.getProjectRelativePath(); 215 fileToGolden.put(sourcePath, basename);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
PostCompilerDeltaVisitor.java | 274 for (IPath sourcePath : mSourceFolders) { 275 if (sourcePath.isPrefixOf(path)) {
|
/external/webkit/Tools/Scripts/ |
VCSUtils.pm | [all...] |
/development/tools/idegen/src/ |
Configuration.java | 231 String sourcePath = sourceRoot.getPath() + "/"; 234 if (file.getPath().startsWith(sourcePath)) {
|
/external/skia/src/animator/ |
SkMatrixParts.cpp | 250 SkPath& sourcePath = source->getPath(); 251 int srcPts = sourcePath.getPoints(src, 4);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AidlProcessor.java | 135 IPath sourcePath = sourceFile.getLocation(); 136 String osSourcePath = sourcePath.toOSString();
|