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

1 2

  /external/webkit/Source/WebKit2/WebProcess/
com.apple.WebProcess.sb 14 (subpath "/Library/Dictionaries")
15 (subpath "/Library/Fonts")
16 (subpath "/Library/Frameworks")
17 (subpath "/Library/Keychains")
18 (subpath "/private/var/db/mds")
19 (subpath "/private/var/db/DetachedSignatures")
23 (subpath "/Library/Internet Plug-Ins")
24 (subpath (string-append (param "HOME_DIR") "/Library/Internet Plug-Ins"))
45 (subpath (param "WEBKIT2_FRAMEWORK_DIR"))
48 (subpath (string-append (param "HOME_DIR") "/Library/Fonts")
    [all...]
  /system/core/toolbox/
chmod.c 21 char *subpath = malloc(sizeof(char)*PATH_MAX); local
33 strcpy(subpath, path);
34 strcat(subpath, "/");
35 strcat(subpath, dp->d_name);
37 if (chmod(subpath, mode) < 0) {
38 fprintf(stderr, "Unable to chmod %s: %s\n", subpath, strerror(errno));
42 recurse_chmod(subpath, mode);
44 free(subpath);
  /development/tools/emulator/opengl/system/gralloc/
Android.mk 7 $(call emugl-set-shared-library-subpath,hw)
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
Android.mk 7 $(call emugl-set-shared-library-subpath,egl)
24 $(call emugl-set-shared-library-subpath,egl)
34 $(call emugl-set-shared-library-subpath,egl)
  /development/tools/emulator/opengl/system/egl/
Android.mk 7 $(call emugl-set-shared-library-subpath,egl)
  /external/skia/gpu/src/
GrTesselatedPathRenderer.cpp 177 int subpath = 0; local
183 subpathVertCount[subpath] = vert-subpathBase;
185 ++subpath;
209 subpathVertCount[subpath] = vert-subpathBase;
210 ++subpath; // this could be only in debug
236 subpathVertCount[subpath++] = 4;
239 GrAssert(subpath == subpathCnt);
GrPathRenderer.cpp 328 int subpath = 0; local
337 subpathVertCount[subpath] = vert-subpathBase;
339 ++subpath;
363 subpathVertCount[subpath] = vert-subpathBase;
364 ++subpath; // this could be only in debug
370 GrAssert(subpath == subpathCnt);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp 68 LPTTPOLYGONHEADER subpath = reinterpret_cast<LPTTPOLYGONHEADER>(outline.data() + offset); local
69 ASSERT(subpath->dwType == TT_POLYGON_TYPE);
70 if (subpath->dwType != TT_POLYGON_TYPE)
73 CGPathMoveToPoint(path, 0, toCGFloat(subpath->pfxStart.x), toCGFloat(subpath->pfxStart.y));
75 unsigned subpathOffset = sizeof(*subpath);
76 while (subpathOffset < subpath->cb) {
77 LPTTPOLYCURVE segment = reinterpret_cast<LPTTPOLYCURVE>(reinterpret_cast<UInt8*>(subpath) + subpathOffset);
125 offset += subpath->cb;
  /system/core/run-as/
package.c 172 char subpath[PATH_MAX]; local
184 if (nn >= (int)(sizeof subpath)) {
189 /* reject any '..' subpath */
198 /* copy to 'subpath', then check ownership */
199 memcpy(subpath, dataPath, nn);
200 subpath[nn] = '\0';
202 if (check_directory_ownership(subpath, AID_SYSTEM) < 0)
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 108 private String createFullPath(List<String> context, String subPath) {
113 result.append(subPath);
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
FileHelperExampleAgent.java 58 * also handle files stored at any subpath within that location. All we
  /external/webkit/Source/WebCore/platform/graphics/haiku/
PathHaiku.cpp 70 // FIXME: implement safe way to return current point of subpath.
  /external/icu4c/tools/tzcode/
zdump.c 1021 char subpath[FILENAME_MAX + 1]; local
1028 strcpy(subpath, relpath);
1029 strcat(subpath, "/");
1030 strcat(subpath, dir->d_name);
1032 strcpy(subpath, dir->d_name);
1034 getzones(basedir, subpath, last, count);
  /frameworks/base/core/java/android/app/
DownloadManager.java 461 * @param subPath the path within the external directory, including the destination filename
465 String subPath) {
466 setDestinationFromBase(context.getExternalFilesDir(dirType), subPath);
480 * @param subPath the path within the external directory, including the destination filename
483 public Request setDestinationInExternalPublicDir(String dirType, String subPath) {
496 setDestinationFromBase(file, subPath);
500 private void setDestinationFromBase(File base, String subPath) {
501 if (subPath == null) {
502 throw new NullPointerException("subPath cannot be null");
504 mDestinationUri = Uri.withAppendedPath(Uri.fromFile(base), subPath);
    [all...]
  /external/skia/gpu/include/
GrTypes.h 392 kMove_PathCmd, //!< Starts a new subpath at
401 kClose_PathCmd, //!< Closes the current subpath
405 kEnd_PathCmd //!< Indicates the end of the last subpath
  /external/webkit/Source/WebCore/platform/graphics/wx/
PathWx.cpp 244 // FIXME: return current point of subpath.
  /external/webkit/Source/WebCore/platform/network/
CredentialStorage.cpp 97 // The map can contain both a path and its subpath - while redundant, this makes lookups faster.
  /development/tools/emulator/opengl/
common.mk 335 # For example: $(call emugl-set-shared-library-subpath,egl)
336 emugl-set-shared-library-subpath = \
  /external/freetype/src/base/
ftstroke.c 768 FT_Bool subpath_open; /* is the subpath open? */
769 FT_Angle subpath_angle; /* subpath start direction */
770 FT_Vector subpath_start; /* subpath start position */
771 FT_Fixed subpath_line_length; /* subpath start lineto len */
    [all...]
  /external/chromium/net/http/
http_auth_cache.cc 34 // Return true if |path| is a subpath of |container|. In other words, is
http_auth_cache_unittest.cc 239 // Add a new entry (not a subpath).
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 79 // FIXME: return current point of subpath.
  /external/chromium/chrome/browser/extensions/
extension_pref_value_map_unittest.cc 19 const char kPref1[] = "path1.subpath";
  /external/freetype/include/freetype/
ftstroke.h 394 * If the subpath was not `opened', this function `draws' a
  /external/icu4c/tools/ctestfw/
uperf.cpp 286 path = pos+1; // store subpath for calling subtest

Completed in 597 milliseconds

1 2