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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
FileSystemMapping.js 104 var entry = new WebInspector.FileSystemMapping.Entry(savedEntry.fileSystemPath, savedEntry.urlPrefix, savedEntry.pathPrefix);
181 * @param {string} pathPrefix
183 addFileMapping: function(fileSystemPath, urlPrefix, pathPrefix)
185 var entry = new WebInspector.FileSystemMapping.Entry(fileSystemPath, urlPrefix, pathPrefix);
194 * @param {string} pathPrefix
196 removeFileMapping: function(fileSystemPath, urlPrefix, pathPrefix)
198 var entry = this._mappingEntryForPathPrefix(fileSystemPath, pathPrefix);
287 var pathPrefix = entries[i].pathPrefix;
288 // We are looking for the longest pathPrefix match
    [all...]
  /external/chromium_org/components/url_matcher/
url_matcher_constants.cc 21 const char kPathPrefixKey[] = "pathPrefix";
  /packages/providers/DownloadProvider/
AndroidManifest.xml 69 <path-permission android:pathPrefix="/my_downloads"
72 <path-permission android:pathPrefix="/all_downloads"
75 <path-permission android:pathPrefix="/download"
79 <grant-uri-permission android:pathPrefix="/all_downloads/"/>
82 <grant-uri-permission android:pathPrefix="/my_downloads/"/>
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/
AndroidManifest.xml 87 android:pathPrefix="/foo"
91 android:pathPrefix="/yes"
104 android:pathPrefix="/foo"
109 android:pathPrefix="/foo/bar"
  /frameworks/base/docs/html/guide/topics/manifest/
path-permission-element.jd 10 android:<a href="#pathPrefix">pathPrefix</a>="<i>string</i>"
42 <dt><a name="pathPrefix"></a>{@code android:pathPrefix}</dt>
grant-uri-permission-element.jd 10 android:<a href="#path">pathPrefix</a>="<i>string</i>" /&gt;</pre></dd>
42 <br/>{@code android:pathPrefix}
48 The {@code pathPrefix} attribute specifies the initial part of a path;
data-element.jd 13 android:<a href="#path">pathPrefix</a>="<i>string</i>"
27 {@code &lt;scheme>://&lt;host>:&lt;port>/[&lt;path>|&lt;pathPrefix>|&lt;pathPattern>]}</p>
116 <br/>{@code android:pathPrefix}
120 {@code pathPrefix} attribute specifies a partial path that is matched against
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 110 String pathPrefix = packagePrefix.replace('.', '/');
155 String packagePrefix, String pathPrefix, Set<String> classNames,
158 File directory = new File(classDir, pathPrefix);
176 private void findClassesInJar(File jarFile, String pathPrefix,
181 if (!entryNames.contains(pathPrefix)) {
184 int prefixLength = pathPrefix.length();
186 if (entryName.startsWith(pathPrefix)) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
EditFileSystemDialog.js 178 return entry.pathPrefix;
191 var oldPathPrefix = itemId ? this._entries[itemId].pathPrefix : null;
203 var pathPrefix = this._entries[itemId].pathPrefix;
205 WebInspector.isolatedFileSystemManager.mapping().removeFileMapping(fileSystemPath, urlPrefix, pathPrefix);
236 WebInspector.isolatedFileSystemManager.mapping().removeFileMapping(entry.fileSystemPath, entry.urlPrefix, entry.pathPrefix);
242 * @param {string} pathPrefix
245 _addFileMapping: function(urlPrefix, pathPrefix)
248 var normalizedPathPrefix = this._normalizePrefix(pathPrefix);
391 if (urlPrefix && entry.pathPrefix === prefix
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 407 const char* pathPrefix = NULL;
410 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n";
414 outputToStream(state, pathStr, pathPrefix, nameSuffix, testFunction, stream);
608 const char* pathPrefix = NULL;
611 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n";
620 outputToStream(state, pathStr, pathPrefix, nameSuffix, testFunction, outFile);
624 outputToStream(state, pathStr, pathPrefix, nameSuffix, testFunction, outRam);
658 void outputToStream(const State4& state, const char* pathStr, const char* pathPrefix,
664 if (pathPrefix) {
665 outFile.writeText(pathPrefix);
    [all...]
EdgeWalker_Test.h 55 void outputToStream(const State4& state, const char* pathStr, const char* pathPrefix,
LogoPlay.cpp 333 const char pathPrefix[] = "<path fill=\"";
340 SkASSERT(strncmp(data, pathPrefix, sizeof(pathPrefix) - 1) == 0);
341 data += sizeof(pathPrefix) - 1;
  /external/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 407 const char* pathPrefix = NULL;
410 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n";
414 outputToStream(state, pathStr, pathPrefix, nameSuffix, testFunction, stream);
608 const char* pathPrefix = NULL;
611 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n";
620 outputToStream(state, pathStr, pathPrefix, nameSuffix, testFunction, outFile);
624 outputToStream(state, pathStr, pathPrefix, nameSuffix, testFunction, outRam);
658 void outputToStream(const State4& state, const char* pathStr, const char* pathPrefix,
664 if (pathPrefix) {
665 outFile.writeText(pathPrefix);
    [all...]
EdgeWalker_Test.h 55 void outputToStream(const State4& state, const char* pathStr, const char* pathPrefix,
  /external/chromium_org/content/test/data/
cross_site_document_request.html 14 var pathPrefix = "http://bar.com/files/site_isolation/";
56 xhr.open('GET', pathPrefix + resourceUrl);
  /external/deqp/framework/delibs/deutil/
deProcess.c 79 DE_INLINE deBool beginsWithPath (const char* fileName, const char* pathPrefix)
81 int pathLen = strlen(pathPrefix);
84 while (pathLen > 0 && pathPrefix[pathLen-1] == '/')
87 return pathLen > 0 && deMemoryEqual(fileName, pathPrefix, pathLen) && fileName[pathLen] == '/';
90 static void stripLeadingPath (char* fileName, const char* pathPrefix)
92 int pathLen = strlen(pathPrefix);
95 DE_ASSERT(beginsWithPath(fileName, pathPrefix));
98 while (pathLen > 0 && pathPrefix[pathLen-1] == '/')
  /frameworks/base/tests/ActivityTests/
AndroidManifest.xml 38 android:pathPrefix="" />
45 android:pathPrefix="" />
  /packages/providers/MediaProvider/
AndroidManifest.xml 21 <grant-uri-permission android:pathPrefix="/external/" />
23 android:pathPrefix="/external/"
  /packages/providers/TelephonyProvider/
AndroidManifest.xml 59 <grant-uri-permission android:pathPrefix="/part/" />
60 <grant-uri-permission android:pathPrefix="/drm/" />
  /external/lzma/CPP/Windows/
FileDir.cpp 403 static bool RemoveDirectorySubItems2(const CSysString pathPrefix, const NFind::CFileInfo &fileInfo)
406 return RemoveDirectoryWithSubItems(pathPrefix + fileInfo.Name);
407 return DeleteFileAlways(pathPrefix + fileInfo.Name);
413 CSysString pathPrefix = path + NName::kDirDelimiter;
415 NFind::CEnumerator enumerator(pathPrefix + TCHAR(NName::kAnyStringWildcard));
417 if (!RemoveDirectorySubItems2(pathPrefix, fileInfo))
426 static bool RemoveDirectorySubItems2(const UString pathPrefix, const NFind::CFileInfoW &fileInfo)
429 return RemoveDirectoryWithSubItems(pathPrefix + fileInfo.Name);
430 return DeleteFileAlways(pathPrefix + fileInfo.Name);
435 UString pathPrefix = path + UString(NName::kDirDelimiter);
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsExtendedTest.cpp 360 static void outputToStream(const char* pathStr, const char* pathPrefix, const char* nameSuffix,
366 if (pathPrefix) {
367 outFile.writeText(pathPrefix);
384 if (pathPrefix) {
385 outFile.writeText(pathPrefix);
431 const char* pathPrefix = NULL;
434 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n";
438 outputToStream(pathStr, pathPrefix, nameSuffix, testFunction, false, stream);
575 const char* pathPrefix = NULL;
578 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n"
    [all...]
  /external/skia/tests/
PathOpsExtendedTest.cpp 475 static void outputToStream(const char* pathStr, const char* pathPrefix, const char* nameSuffix,
481 if (pathPrefix) {
482 outFile.writeText(pathPrefix);
499 if (pathPrefix) {
500 outFile.writeText(pathPrefix);
544 const char* pathPrefix = NULL;
547 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n";
551 outputToStream(pathStr, pathPrefix, nameSuffix, testFunction, false, stream);
703 const char* pathPrefix = NULL;
706 pathPrefix = " path.setFillType(SkPath::kEvenOdd_FillType);\n"
    [all...]
  /packages/providers/ContactsProvider/
AndroidManifest.xml 35 android:pathPrefix="/search_suggest_query"
38 android:pathPrefix="/search_suggest_shortcut"
  /frameworks/base/docs/html/training/app-indexing/
deep-linking.jd 40 <p>You can add additional attributes to further refine the type of URI that the activity accepts. For example, you might have multiple activities that accept similar URIs, but which differ simply based on the path name. In this case, use the <a href="{@docRoot}guide/topics/manifest/data-element.html#path">{@code android:path}</a> attribute or its variants ({@code pathPattern} or {@code pathPrefix}) to differentiate which activity the system should open for different URI paths.</p></dd>
67 android:pathPrefix="/gizmos" /&gt;
68 &lt;!-- note that the leading "/" is required for pathPrefix--&gt;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemBase.cpp 172 bool DOMFileSystemBase::pathPrefixToFileSystemType(const String& pathPrefix, FileSystemType& type)
174 if (pathPrefix == temporaryPathPrefix) {
179 if (pathPrefix == persistentPathPrefix) {
184 if (pathPrefix == externalPathPrefix) {

Completed in 1068 milliseconds

1 2 3 4