HomeSort by relevance Sort by last modified time
    Searched full:srcpath (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/
AsyncFileSystem.h 74 // Moves a file or directory from srcPath to destPath.
77 virtual void move(const String& srcPath, const String& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
79 // Copies a file or directory from srcPath to destPath.
82 virtual void copy(const String& srcPath, const String& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
  /external/webkit/Source/WebKit/chromium/public/
WebFileSystem.h 54 // Moves a file or directory at |srcPath| to |destPath|.
57 virtual void move(const WebString& srcPath, const WebString& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
59 // Copies a file or directory at |srcPath| to |destPath|.
62 virtual void copy(const WebString& srcPath, const WebString& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
  /frameworks/base/cmds/installd/
commands.c 690 int movefileordir(char* srcpath, char* dstpath, int dstbasepos,
697 int srcend = strlen(srcpath);
700 if (lstat(srcpath, statbuf) < 0) {
701 ALOGW("Unable to stat %s: %s\n", srcpath, strerror(errno));
708 ALOGV("Renaming %s to %s (uid %d)\n", srcpath, dstpath, dstuid);
709 if (rename(srcpath, dstpath) >= 0) {
717 srcpath, dstpath, strerror(errno));
723 d = opendir(srcpath);
725 ALOGW("Unable to opendir %s: %s\n", srcpath, strerror(errno));
740 ALOGW("Source path too long; skipping: %s/%s\n", srcpath, name)
779 char srcpath[PKG_PATH_MAX]; local
    [all...]
  /external/icu4c/test/intltest/
regextst.h 56 const UnicodeString &input, const char *srcPath, int32_t line);
dcfmtest.cpp 182 const char *srcPath;
189 srcPath=getPath(tdd, "dcfmtest.txt");
190 if(srcPath==NULL) {
195 UChar *testData = ReadAndConvertFile(srcPath, len, status);
regextst.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WorkerFileSystemCallbacksBridge.h 88 void postMoveToMainThread(WebFileSystem*, const String& srcPath, const String& destPath, const String& mode);
89 void postCopyToMainThread(WebFileSystem*, const String& srcPath, const String& destPath, const String& mode);
111 static void moveOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const String& srcPath, const String& destPath, WorkerFileSystemCallbacksBridge*, const String& mode);
112 static void copyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const String& srcPath, const String& destPath, WorkerFileSystemCallbacksBridge*, const String& mode);
  /external/emma/ant/ant14/com/vladium/emma/report/
reportTask.java 58 final Path srcpath = m_reportCfg.getSourcepath (); local
74 processor.setSourcePath (srcpath != null ? srcpath.list () : null);
  /frameworks/base/cmds/rawbu/
backup.cpp 256 static int backup_dir(FILE* fh, const char* srcPath)
261 int srcLen = strlen(srcPath);
265 dir = opendir(srcPath);
269 srcPath, strerror(errno));
291 strcpy(fullPath, srcPath);
503 static int restore_data(const char* srcPath)
507 FILE* fh = fopen(srcPath, "r");
510 srcPath, strerror(errno));
527 backupFilePath = strdup(srcPath);
534 printf("Restoring from %s to /data...\n", srcPath);
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebNSFileManagerExtras.h 41 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error;
WebNSFileManagerExtras.m 225 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error
231 return [self movePath:srcPath toPath:dstPath handler:nil];
  /frameworks/compile/libbcc/runtime/
Makefile 204 $(call Set,Tmp.SrcPath,$(ProjSrcRoot)/$(Tmp.SubDir))
215 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.s $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
218 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.S $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
221 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.c $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
  /external/skia/include/core/
SkDraw.h 39 * To save on mallocs, we allow a flag that tells us that srcPath is
47 void drawPath(const SkPath& srcPath, const SkPaint&,
  /external/compiler-rt/
Makefile 205 $(call Set,Tmp.SrcPath,$(ProjSrcRoot)/$(Tmp.SubDir))
222 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.s $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
225 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.S $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
228 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.c $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
231 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.cc $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
Antlr3Mojo.java 483 String srcPath = sourceDirectory.getPath() + File.separator;
485 if (!grammarFileName.startsWith(srcPath)) {
489 File unprefixedGrammarFileName = new File(grammarFileName.substring(srcPath.length()));
  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 141 final Path srcpath = m_reportCfg.getSourcepath (); local
142 if (srcpath != null)
145 super.createArg ().setValue (Strings.toListForm (srcpath.list (), ','));
  /frameworks/base/services/java/com/android/server/pm/
Installer.java 212 public int movedex(String srcPath, String dstPath) {
215 builder.append(srcPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
LibraryClasspathContainerInitializer.java 294 File srcPath = getFile(jarFile, value);
296 if (srcPath.exists()) {
297 sourceAttachmentPath = new Path(srcPath.getAbsolutePath());
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 761 Path_Delegate srcPath = Path_Delegate.getDelegate(src);
762 if (srcPath == null) {
772 Shape strokeShape = stroke.createStrokedShape(srcPath.getJavaShape());
    [all...]
Path_Delegate.java 525 private static void addPath(int destPath, int srcPath, AffineTransform transform) {
531 Path_Delegate srcPathDelegate = sManager.getDelegate(srcPath);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 376 String srcPath = srcDir.getParent();
386 assertTrue("The APK path (" + srcPath + ") should start with "
388 srcPath.startsWith(SECURE_CONTAINERS_PREFIX));
397 assertEquals(srcPath, appInstallPath);
427 assertTrue("The APK path (" + srcPath + ") should start with "
428 + SECURE_CONTAINERS_PREFIX, srcPath.startsWith(SECURE_CONTAINERS_PREFIX));
    [all...]
  /external/emma/lib/
emma_ant.jar 
  /external/webkit/Tools/Scripts/
old-run-webkit-tests     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 
org.eclipse.jdt.launching_3.5.100.v20100526.jar 

Completed in 465 milliseconds

1 2