HomeSort by relevance Sort by last modified time
    Searched refs:relativePath (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/chromium_org/third_party/skia/include/core/
SkOSFile.h 140 * Assembles rootPath and relativePath into a single path, like this:
141 * rootPath/relativePath.
142 * It is okay to call with a NULL rootPath and/or relativePath. A path
147 static SkString SkPathJoin(const char *rootPath, const char *relativePath);
  /external/skia/include/core/
SkOSFile.h 140 * Assembles rootPath and relativePath into a single path, like this:
141 * rootPath/relativePath.
142 * It is okay to call with a NULL rootPath and/or relativePath. A path
147 static SkString SkPathJoin(const char *rootPath, const char *relativePath);
  /external/srec/portable/src/
PFileSystem.c 271 * @param relativePath [out] Relative path associated with match (should have length P_PATH_MAX)
273 ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath)
306 if (relativePath != NULL)
311 LSTRCPY(relativePath, L(""));
315 LSTRCAT(relativePath, L("/"));
317 LSTRCAT(relativePath, path + LSTRLEN(bestKey));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringTest.java 221 protected ViewInfo createInfos(UiElementNode model, String relativePath) throws IOException {
222 String basename = relativePath.substring(0, relativePath.lastIndexOf('.') + 1);
266 protected TestContext setupTestContext(IFile file, String relativePath) throws Exception {
294 ViewInfo info = createInfos(model, relativePath);
AdtProjectTest.java 89 protected InputStream getTestResource(String relativePath, boolean expectExists) {
90 String path = "testdata" + File.separator + relativePath; //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
ProjectState.java 75 private LibraryState(String relativePath) {
76 mRelativePath = relativePath;
100 private void setRelativePath(String relativePath) {
101 mRelativePath = relativePath;
  /external/chromium_org/chrome/renderer/resources/extensions/
file_system_custom_bindings.js 117 var relativePath = $String.slice(fileEntry.fullPath, 1);
118 return [fileSystemName, relativePath, callback];
134 var relativePath = $String.slice(fileEntry.fullPath, 1);
136 sendRequest(this.name, [id, fileSystemName, relativePath],
  /external/chromium_org/third_party/skia/src/utils/
SkOSFile.cpp 9 SkString SkOSPath::SkPathJoin(const char *rootPath, const char *relativePath) {
14 result.append(relativePath);
  /external/skia/src/utils/
SkOSFile.cpp 9 SkString SkOSPath::SkPathJoin(const char *rootPath, const char *relativePath) {
14 result.append(relativePath);
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 178 path = relativePath(path, spec.substring(pos, nextPos));
198 private static String relativePath(String base, String path) {
URI.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportedProject.java 59 ImportedProject(File location, String relativePath) {
62 mRelativePath = relativePath;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FileInputType.cpp 231 String relativePath = files[i].path.substring(rootLength).replace('\\', '/');
232 fileList->append(File::createWithRelativePath(files[i].path, relativePath));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 104 String relativePath = entry.getKey();
105 IPath dest = new Path(relativePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 359 * @param relativePath relative path within the template
363 public String readTemplateTextResource(@NonNull String relativePath) {
366 relativePath.replace('/', File.separatorChar)), Charsets.UTF_8);
387 * @param relativePath the path relative to the template directory
391 public byte[] readTemplateResource(@NonNull String relativePath) {
393 return Files.toByteArray(new File(mRootPath, relativePath));
591 String relativePath = attributes.getValue(ATTR_FILE);
592 if (relativePath != null && !relativePath.isEmpty()) {
593 mOpen.add(relativePath);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 453 IPath relativePath = libraryProject.getLocation().makeRelativeTo(
458 relativePath.toString());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ProjectSetupBuilder.java 315 IPath relativePath = path.makeRelativeTo(root);
316 String relativeString = relativePath.toOSString();
BuildFileCreator.java 134 IPath relativePath = commonRoot.makeRelativeTo(workspaceLocation);
135 boolean rootInWorkspace = !relativePath.equals(commonRoot);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 264 String relativePath = ((String) data[i]).replace('/', File.separatorChar);
265 File to = new File(dir, relativePath);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureHelper.java 444 String relativePath = name.substring(2);
449 assetNames.add(blenderAssetFolder+'/'+relativePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 544 IPath relativePath = path.makeRelativeTo(workspacePath);
545 IResource member = workspace.findMember(relativePath);
572 IPath relativePath = path.makeRelativeTo(workspacePath);
573 return workspace.findMember(relativePath);
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/common/js/
util.js 419 * Checks if an entry exists at |relativePath| in |dirEntry|.
427 * @param {string} relativePath The path to be deduplicated.
432 util.deduplicatePath = function(dirEntry, relativePath, onSuccess, onError) {
438 // |relativePath| is "file (10).txt", the second check path will be
440 var match = /^(.*?)(?: \((\d+)\))?(\.[^.]*?)?$/.exec(relativePath);
446 var trialPath = relativePath;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
VCSUtils.pm 406 my $relativePath = File::Spec->abs2rel($file);
410 my $escapedRelativePath = escapeSubversionPath($relativePath);
415 my $command = "git svn info $relativePath";
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help_3.5.0.v20100524.jar 
  /developers/build/lib/
assetstudio.jar 

Completed in 497 milliseconds

12 3 4