Searched refs:path (Results 151 - 175 of 855) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/MC/
H A DCommandAction.cpp36 pBuilder.createNode<InputTree::Positional>(path().stem().native(), path());
50 const sys::fs::Path* path = NULL; local
51 // find out the real path of the namespec.
58 path = m_SearchDirs.find(namespec(), Input::Archive);
62 path = m_SearchDirs.find(namespec(), Input::DynObj);
66 path = m_SearchDirs.find(namespec(), Input::Archive);
69 if (path == NULL) {
74 pBuilder.createNode<InputTree::Positional>(namespec(), *path); local
87 "bitcode", path(), Inpu
[all...]
/frameworks/av/media/libaudioprocessing/tests/
H A DAndroid.mk18 $(call include-path-for, audio-utils) \
40 $(call include-path-for, audio-utils) \
69 $(call include-path-for, audio-utils) \
/frameworks/base/core/java/android/gesture/
H A DGestureLibraries.java36 public static GestureLibrary fromFile(String path) { argument
37 return fromFile(new File(path));
40 public static GestureLibrary fromFile(File path) { argument
41 return new FileGestureLibrary(path);
55 public FileGestureLibrary(File path) { argument
56 mPath = path;
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java65 // path to primary storage
194 String path = subDirectories[i];
195 mSubDirectoriesWhereArgs[j++] = path;
196 mSubDirectoriesWhereArgs[j++] = path + "/%";
286 // check to see if the path is contained in one of our storage subdirectories
288 private boolean inStorageSubDirectory(String path) { argument
290 if (path == null) return false;
293 int pathLength = path.length();
298 path.charAt(subdirLength) == '/' &&
299 path
308 isStorageSubDirectory(String path) argument
319 inStorageRoot(String path) argument
334 beginSendObject(String path, int format, int parent, int storageId, long size, long modified) argument
385 endSendObject(String path, int handle, int format, boolean succeeded) argument
[all...]
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DPathInterpolatorCompat.java47 * Path path = new Path();
48 * path.lineTo(0.25f, 0.25f);
49 * path.moveTo(0.25f, 0.5f);
50 * path.lineTo(1f, 1f);
84 Path path = PathParser.createPathFromPathData(pathData);
85 if (path == null) {
86 throw new InflateException("The path is null, which is created"
89 initPath(path);
122 Path path = new Path();
123 path
135 initPath(Path path) argument
[all...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java70 // docId format: root:path/to/file
90 public File path; field in class:ExternalStorageProvider.RootInfo
218 root.path = volume.getInternalPathForUser(userId);
220 root.docId = getDocIdForFile(root.path);
248 root.path = new File(
251 root.docId = getDocIdForFile(root.path);
276 String path = file.getAbsolutePath();
278 // Find the most-specific root path
280 RootInfo mostSpecificRoot = getMostSpecificRootForPath(path, false);
283 // Try visible path i
314 getMostSpecificRootForPath(String path, boolean visible) argument
432 getDocumentUri(String path, List<UriPermission> accessUriPermissions) argument
[all...]
/frameworks/av/drm/libdrmframework/include/
H A DDrmManagerClientImpl.h78 * @param[in] path Path of the protected content
86 virtual DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
92 * @param[in] path Path of the protected content
98 virtual DrmMetadata* getMetadata(int uniqueId, const String8* path);
101 * Check whether the given mimetype or path can be handled
104 * @param[in] path Path of the content needs to be handled
107 * True if DrmManager can handle given path or mime type.
109 virtual bool canHandle(int uniqueId, const String8& path, const String8& mimeType);
133 * Save DRM rights to specified rights path
134 * and make association with content path
[all...]
H A DDrmManagerService.h79 DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
81 DrmMetadata* getMetadata(int uniqueId, const String8* path);
83 bool canHandle(int uniqueId, const String8& path, const String8& mimeType);
92 String8 getOriginalMimeType(int uniqueId, const String8& path, int fd);
94 int getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType);
96 int checkRightsStatus(int uniqueId, const String8& path,int action);
103 bool validateAction(int uniqueId, const String8& path,
106 status_t removeRights(int uniqueId, const String8& path);
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DIDrmEngine.h96 * @param[in] path Path of the protected content
105 int uniqueId, const String8* path, int action) = 0;
111 * @param[in] path Path of the protected content
117 virtual DrmMetadata* getMetadata(int uniqueId, const String8* path) = 0;
123 * @param[in] path Path the protected object
127 virtual bool canHandle(int uniqueId, const String8& path) = 0;
151 * Save DRM rights to specified rights path
152 * and make association with content path
156 * @param[in] rightsPath File path where rights to be saved
157 * @param[in] contentPath File path wher
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h49 * @param path Path of the protected content
57 DrmConstraints* onGetConstraints(int uniqueId, const String8* path, int action);
63 * @param path Path of the protected content
69 DrmMetadata* onGetMetadata(int uniqueId, const String8* path);
104 * @param path Path to the protected object
108 bool onCanHandle(int uniqueId, const String8& path);
122 * Save DRM rights to specified rights path
123 * and make association with content path.
127 * @param rightsPath File path where rights to be saved
128 * @param contentPath File path wher
[all...]
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h49 char *path; member in struct:lib_entry_s
63 char *path; member in struct:lib_failed_entry_s
/frameworks/av/media/libeffects/loudness/
H A DAndroid.mk22 $(call include-path-for, audio-effects) \
/frameworks/av/media/libeffects/visualizer/
H A DAndroid.mk22 $(call include-path-for, audio-effects)
/frameworks/av/services/medialog/
H A DAndroid.mk13 LOCAL_C_INCLUDES := $(call include-path-for, audio-utils)
/frameworks/base/core/jni/android/graphics/
H A DPathMeasure.cpp25 client to be sure not to edit the path while we have an active measure
28 This costs us the copy of the path, for the sake of not allowing a bad
30 native path has been modified).
33 later changes this, and is internally safe from changes to the path, then
36 Note that we do not have a reference on the java side to the java path.
38 reference, so that the java path would not get GD'd while the measure object
43 PathMeasurePair(const SkPath& path, bool forceClosed) argument
44 : fPath(path), fMeasure(fPath, forceClosed) {}
46 SkPath fPath; // copy of the user's path
57 const SkPath* path local
70 const SkPath* path = reinterpret_cast<SkPath*>(pathHandle); local
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DPathShape.java27 * The path can be drawn to a Canvas with its own draw() method,
43 * @param path a Path that defines the geometric paths for this shape
51 public PathShape(@NonNull Path path, float stdWidth, float stdHeight) { argument
52 mPath = path;
/frameworks/base/rs/java/android/renderscript/
H A DFileA3D.java228 * @param path location of the file to load
232 static public FileA3D createFromAsset(RenderScript rs, AssetManager mgr, String path) { argument
234 long fileId = rs.nFileA3DCreateFromAsset(mgr, path);
237 throw new RSRuntimeException("Unable to create a3d file from asset " + path);
249 * @param path location of the file to load
253 static public FileA3D createFromFile(RenderScript rs, String path) { argument
254 long fileId = rs.nFileA3DCreateFromFile(path);
257 throw new RSRuntimeException("Unable to create a3d file from " + path);
269 * @param path location of the file to load
273 static public FileA3D createFromFile(RenderScript rs, File path) { argument
[all...]
H A DFont.java160 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { argument
163 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
166 throw new RSRuntimeException("Unable to create font from file " + path);
176 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { argument
177 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
183 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { argument
188 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
190 throw new RSRuntimeException("Unable to create font from asset " + path);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DScaledTextActivity.java81 Path path = new Path();
82 buildPath(path);
83 return path;
86 private static void buildPath(Path path) { argument
87 path.moveTo(0.0f, 0.0f);
88 path.cubicTo(0.0f, 0.0f, 100.0f, 150.0f, 100.0f, 200.0f);
89 path.cubicTo(100.0f, 200.0f, 50.0f, 300.0f, -80.0f, 200.0f);
90 path.cubicTo(-80.0f, 200.0f, 100.0f, 200.0f, 200.0f, 0.0f);
/frameworks/base/tools/aapt/
H A DOutputSet.h30 OutputEntry(const android::String8& path, const android::sp<const AaptFile>& file) argument
31 : mPath(path), mFile(file) {}
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DGradientDrawable_Delegate.java36 * circle isn't complete. LayoutLib cannot handle drawing full circles (requires path
62 Path path = thisDrawable.buildRing_Original(st);
71 return path;
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
H A DModuleClassLoader.java33 * @param moduleRoot The path to the module root
50 String path = name.replace('.', '/').concat(".class");
52 byte[] b = Streams.readFully(getResourceAsStream(myModuleRoot + path));
/frameworks/native/opengl/tests/angeles/
H A DAndroid.mk8 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/fillrate/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/filter/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)

Completed in 565 milliseconds

1234567891011>>