Searched refs:path (Results 126 - 150 of 670) sorted by relevance

1234567891011>>

/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/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)
/frameworks/native/opengl/tests/finish/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/gl2_basic/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/gl2_yuvtex/
H A DAndroid.mk18 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/gl_basic/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/gl_perf/
H A DAndroid.mk19 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/gl_yuvtex/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/linetex/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/swapinterval/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/textures/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/native/opengl/tests/tritex/
H A DAndroid.mk17 LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIsimFileHandler.java44 String path = getCommonIccEFPath(efid);
45 return path;
/frameworks/wilhelm/tests/native-media/jni/
H A DAndroid.mk9 LOCAL_CFLAGS += -I$(call include-path-for, wilhelm)
/frameworks/wilhelm/tests/sandbox/streamSource/
H A DAndroid.mk10 $(call include-path-for, wilhelm)
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java113 * beforehand. To specify a directory, specify the its storage area and path in XML, using child
119 * &lt;files-path name="my_images" path="images/"/&gt;
129 *&lt;files-path name="<i>name</i>" path="<i>path</i>" /&gt;
138 *&lt;external-path name="<i>name</i>" path="<i>path</i>" /&gt;
142 * Represents the root of the external storage. The root path o
[all...]
/frameworks/av/drm/drmserver/
H A DDrmManagerService.cpp159 int uniqueId, const String8* path, const int action) {
161 return mDrmManager->getConstraints(uniqueId, path, action);
164 DrmMetadata* DrmManagerService::getMetadata(int uniqueId, const String8* path) { argument
166 return mDrmManager->getMetadata(uniqueId, path);
169 bool DrmManagerService::canHandle(int uniqueId, const String8& path, const String8& mimeType) { argument
171 return mDrmManager->canHandle(uniqueId, path, mimeType);
191 String8 DrmManagerService::getOriginalMimeType(int uniqueId, const String8& path, int fd) { argument
193 return mDrmManager->getOriginalMimeType(uniqueId, path, fd);
197 int uniqueId, const String8& path, const String8& mimeType) {
199 return mDrmManager->getDrmObjectType(uniqueId, path, mimeTyp
158 getConstraints( int uniqueId, const String8* path, const int action) argument
196 getDrmObjectType( int uniqueId, const String8& path, const String8& mimeType) argument
202 checkRightsStatus( int uniqueId, const String8& path, int action) argument
226 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
233 removeRights(int uniqueId, const String8& path) argument
[all...]
/frameworks/av/drm/libdrmframework/include/
H A DIDrmManagerService.h97 int uniqueId, const String8* path, const int action) = 0;
99 virtual DrmMetadata* getMetadata(int uniqueId, const String8* path) = 0;
101 virtual bool canHandle(int uniqueId, const String8& path, const String8& mimeType) = 0;
110 virtual String8 getOriginalMimeType(int uniqueId, const String8& path, int fd) = 0;
113 int uniqueId, const String8& path, const String8& mimeType) = 0;
115 virtual int checkRightsStatus(int uniqueId, const String8& path, int action) = 0;
124 int uniqueId, const String8& path,
127 virtual status_t removeRights(int uniqueId, const String8& path) = 0;
186 virtual DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
188 virtual DrmMetadata* getMetadata(int uniqueId, const String8* path);
[all...]
/frameworks/av/media/libnbaio/
H A DAndroid.mk20 #LOCAL_C_INCLUDES += path/to/libsndfile/src
32 LOCAL_C_INCLUDES := $(call include-path-for, audio-utils)
/frameworks/base/core/java/android/gesture/
H A DGesture.java129 public Path toPath(Path path) { argument
130 if (path == null) path = new Path();
136 path.addPath(strokes.get(i).getPath());
139 return path;
146 public Path toPath(Path path, int width, int height, int edge, int numSample) { argument
147 if (path == null) path = new Path();
153 path.addPath(strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample));
156 return path;
[all...]
/frameworks/base/core/java/android/webkit/
H A DPlugin.java62 String path,
66 mPath = path;
138 public void setPath(String path) { argument
139 mPath = path;
61 Plugin(String name, String path, String fileName, String description) argument

Completed in 911 milliseconds

1234567891011>>