HomeSort by relevance Sort by last modified time
    Searched refs:newPath (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/base/media/libstagefright/id3/
testid3.cpp 133 char newPath[MAXPATHLEN];
134 strcpy(newPath, path);
135 strcat(newPath, "/");
136 strcat(newPath, ent->d_name);
139 scan(newPath);
145 scanFile(newPath);
  /external/webkit/WebKitTools/MIDLWrapper/
MIDLWrapper.cpp 56 wchar_t* newPath = new wchar_t[newPathLength + 1];
59 wchar_t* d = newPath;
68 envp[pathIndex] = newPath;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 426 String newPath = sb.toString();
427 if (newPath.equals(currPath) && newPath.equals(mLastFolderUsedInCombo)) {
434 TreeSet<String> filePaths = mFolderCache.get(newPath);
439 IFolder folder = mProject.getFolder(newPath);
445 filePaths.add(newPath + name);
453 mFolderCache.put(newPath, filePaths);
456 currPath = newPath + leafName;
483 mLastFolderUsedInCombo = newPath;
  /external/icu4c/test/intltest/
ucdtest.cpp 193 char newPath[256];
199 strcpy(newPath, pathToDataDirectory());
200 strcat(newPath, "unidata" U_FILE_SEP_STRING "DerivedCoreProperties.txt");
213 char *path=newPath;
214 u_parseDelimitedFile(newPath, ';', fields, 2, derivedPropsLineFn, this, &errorCode);
  /external/chromium/third_party/icu/source/test/intltest/
ucdtest.cpp 139 char newPath[256];
145 strcpy(newPath, pathToDataDirectory());
146 strcat(newPath, "unidata" U_FILE_SEP_STRING "DerivedCoreProperties.txt");
159 u_parseDelimitedFile(newPath, ';', fields, 2, derivedCorePropsLineFn, this, &errorCode);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 556 GeneralPath newPath = new GeneralPath();
560 newPath.append(iterator, false /* connect */);
563 dst.mPath = newPath;
565 mPath = newPath;
  /libcore/luni/src/main/java/java/io/
File.java 205 char[] newPath = origPath.toCharArray();
206 int length = newPath.length;
209 char ch = newPath[i];
212 newPath[newLength++] = separatorChar;
216 newPath[newLength++] = ch;
225 return (newLength != length) ? new String(newPath, 0, newLength) : origPath;
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebBasePluginPackage.mm 94 NSString *newPath = [thePath stringByResolvingSymlinksInPath];
101 return newPath;
107 return newPath;
111 newPath = [(NSURL *)URL path];
115 return newPath;
  /development/simulator/wrapsim/
Intercept.c 278 int link(const char* oldPath, const char* newPath)
285 rewritePath("link-2", pathBuf2, newPath));
291 int rename(const char* oldPath, const char* newPath)
298 rewritePath("rename-2", pathBuf2, newPath));
304 int symlink(const char* oldPath, const char* newPath)
311 rewritePath("symlink-2", pathBuf2, newPath));
  /external/webkit/WebCore/platform/graphics/cg/
PathCG.cpp 158 CGMutablePathRef newPath = CGPathCreateMutable();
159 CGPathAddPath(newPath, &translation, m_path);
161 m_path = newPath;
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 288 SkPath newPath;
289 newPath.addPath(*path, x + offsetX, y + offsetY);
290 canvas->drawPath(newPath, *paint);
  /external/webkit/WebKit/android/plugins/
ANPPathInterface.cpp 98 ASSIGN(i, newPath);
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 183 int yaffs_rename(const char *oldPath, const char *newPath) ;
203 int yaffs_symlink(const char *oldpath, const char *newpath);
206 int yaffs_link(const char *oldpath, const char *newpath);
  /libcore/luni/src/main/java/java/net/
URI.java     [all...]
  /libcore/luni/src/main/native/
java_io_File.cpp 412 ScopedUtfChars newPath(env, javaNewPath);
413 if (newPath.c_str() == NULL) {
417 return (rename(oldPath.c_str(), newPath.c_str()) == 0);
  /packages/apps/Gallery3D/src/com/cooliris/media/
UriTexture.java 299 String newPath = path + (path.endsWith("/") ? "" : "/") + crc64 + ".jpg";
300 File newFile = new File(newPath);
302 return newPath;
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 660 QPainterPath newPath = m_data->currentPath;
661 newPath.addPath(path.platformPath());
662 m_data->currentPath = newPath;
689 QPainterPath newPath = m_data->currentPath;
690 newPath.setFillRule(clipRule == RULE_EVENODD ? Qt::OddEvenFill : Qt::WindingFill);
691 p->setClipPath(newPath);
732 QPainterPath newPath = stroker.createStroke(path);
733 p->strokePath(newPath, nPen);
    [all...]
  /external/webkit/WebCore/rendering/
RenderPath.cpp 176 void RenderPath::setPath(const Path& newPath)
178 m_path = newPath;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java     [all...]
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.cpp 123 ANPPath* path = gPathI.newPath();
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 234 wstring newPath;
235 newPath.append(qtPath);
236 newPath.append(L";");
237 newPath.append(oldPath.data(), oldPath.size());
238 SetEnvironmentVariableW(pathEnvironmentVariable, newPath.data());
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java     [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
citertst.c     [all...]
  /external/icu4c/test/cintltst/
citertst.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreationPage.java     [all...]

Completed in 1512 milliseconds

1 2