Searched defs:type (Results 101 - 125 of 457) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/preference/
H A DRingtonePreference.java76 * Returns the sound type(s) that are shown in the picker.
78 * @return The sound type(s) that are shown in the picker.
86 * Sets the sound type(s) that are shown in the picker.
88 * @param type The sound type(s) that are shown in the picker.
91 public void setRingtoneType(int type) { argument
92 mRingtoneType = type;
106 * to use will be deduced from the sound type(s) being shown.
/frameworks/base/core/java/android/text/
H A DSpanned.java50 * 0-length spans with type SPAN_MARK_MARK behave like text marks:
65 * 0-length spans with type SPAN_POINT_POINT behave like cursors:
89 * Non-0-length spans of type SPAN_INCLUSIVE_EXCLUSIVE expand
96 * Spans of type SPAN_INCLUSIVE_INCLUSIVE expand
102 * Spans of type SPAN_EXCLUSIVE_EXCLUSIVE do not expand
110 * Non-0-length spans of type SPAN_EXCLUSIVE_INCLUSIVE expand
164 * slice of this CharSequence and whose type is the specified type
165 * or a subclass of it. Specify Object.class for the type if you
166 * want all the objects regardless of type
168 getSpans(int start, int end, Class<T> type) argument
197 nextSpanTransition(int start, int limit, Class type) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DReplacementTransformationMethod.java183 public <T> T[] getSpans(int start, int end, Class<T> type) { argument
184 return mSpanned.getSpans(start, end, type);
199 public int nextSpanTransition(int start, int end, Class type) { argument
200 return mSpanned.nextSpanTransition(start, end, type);
/frameworks/base/core/java/android/view/
H A DSurfaceHolder.java50 * whose type is SURFACE_TYPE_PUSH_BUFFERS.
149 * Sets the surface's type.
154 public void setType(int type); argument
/frameworks/base/core/java/android/webkit/
H A DJsDialogHelper.java55 public JsDialogHelper(JsPromptResult result, int type, String defaultValue, String message, argument
60 mType = type;
68 mType = msg.getData().getInt("type");
83 throw new IllegalArgumentException("Unexpected type: " + mType);
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java51 public int type = TYPE_PPTP; // 1 field in class:VpnProfile
76 type = in.readInt();
97 out.writeInt(type);
128 profile.type = Integer.valueOf(values[1]);
129 if (profile.type < 0 || profile.type > TYPE_MAX) {
156 builder.append('\0').append(type);
/frameworks/base/core/java/com/android/internal/os/
H A DPowerProfile.java216 * @param type the subsystem type
219 public double getAveragePower(String type) { argument
220 if (sPowerMap.containsKey(type)) {
221 Object data = sPowerMap.get(type);
225 return (Double) sPowerMap.get(type);
234 * @param type the subsystem type
240 public double getAveragePower(String type, int level) { argument
241 if (sPowerMap.containsKey(type)) {
[all...]
/frameworks/base/core/jni/
H A Dandroid_nio_utils.cpp90 const char type[]) {
91 jfieldID f = env->GetFieldID(c, name, type);
89 getFieldID(JNIEnv* env, jclass c, const char name[], const char type[]) argument
/frameworks/base/graphics/java/android/renderscript/
H A DFileA3D.java47 * Specifies what renderscript object type is contained within
77 * object's type and also name and load the object itself if
103 * Returns the type of a renderscript object the index entry
105 * @return type of a renderscript object the index entry
159 IndexEntry(RenderScript rs, int index, int id, String name, EntryType type) { argument
164 mEntryType = type;
/frameworks/base/include/androidfw/
H A DAssetDir.h61 * Get the type of a file (usually regular or directory).
109 void set(const String8& path, FileType type) { argument
111 mFileType = type;
118 void setFileType(FileType type) { mFileType = type; } argument
H A DAssetManager.h189 * Get the type of a file in the asset hierarchy. They will either
225 FileType type; member in struct:android::AssetManager::asset_path
H A DBackupHelpers.h31 int type; // BACKUP_HEADER_ENTITY_V1 member in struct:android::__anon1039
110 status_t ReadNextHeader(bool* done, int* type);
128 int type; member in union:android::BackupDataReader::__anon1040
/frameworks/base/libs/androidfw/
H A DInputDevice.cpp44 const String8& name, InputDeviceConfigurationFileType type) {
45 path.append(CONFIGURATION_FILE_DIR[type]);
53 path.append(CONFIGURATION_FILE_EXTENSION[type]);
58 InputDeviceConfigurationFileType type) {
66 type));
76 type));
83 return getInputDeviceConfigurationFilePathByName(deviceIdentifier.name, type);
87 const String8& name, InputDeviceConfigurationFileType type) {
92 appendInputDeviceConfigurationFileRelativePath(path, name, type);
107 appendInputDeviceConfigurationFileRelativePath(path, name, type);
43 appendInputDeviceConfigurationFileRelativePath(String8& path, const String8& name, InputDeviceConfigurationFileType type) argument
56 getInputDeviceConfigurationFilePathByDeviceIdentifier( const InputDeviceIdentifier& deviceIdentifier, InputDeviceConfigurationFileType type) argument
86 getInputDeviceConfigurationFilePathByName( const String8& name, InputDeviceConfigurationFileType type) argument
[all...]
/frameworks/base/libs/hwui/
H A DProgram.cpp134 GLuint Program::buildShader(const char* source, GLenum type) { argument
135 GLuint shader = glCreateShader(type);
H A DSkiaColorFilter.h50 ANDROID_API SkiaColorFilter(SkColorFilter *skFilter, Type type, bool blend);
60 Type type() const { function in struct:android::uirenderer::SkiaColorFilter
H A DTextureCache.cpp301 GLenum type, const GLvoid * data) {
303 glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, type, data);
305 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, data);
300 uploadToTexture(bool resize, GLenum format, GLsizei width, GLsizei height, GLenum type, const GLvoid * data) argument
/frameworks/base/location/java/android/location/
H A DGeofence.java95 private static void checkType(int type) { argument
96 if (type != TYPE_HORIZONTAL_CIRCLE) {
97 throw new IllegalArgumentException("invalid type: " + type);
104 int type = in.readInt();
108 checkType(type);
130 private static String typeToString(int type) { argument
131 switch (type) {
135 checkType(type);
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java39 // MTP data type
40 int type; field in class:MtpPropertyGroup.Property
44 Property(int code, int type, int column) { argument
46 this.type = type;
94 int type;
99 type = MtpConstants.TYPE_UINT32;
103 type = MtpConstants.TYPE_UINT16;
107 type = MtpConstants.TYPE_UINT16;
111 type
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodecList.cpp98 JNIEnv *env, jobject thiz, jint index, jstring type) {
99 if (type == NULL) {
104 const char *typeStr = env->GetStringUTFChars(type, NULL);
118 env->ReleaseStringUTFChars(type, typeStr);
97 android_media_MediaCodecList_getCodecCapabilities( JNIEnv *env, jobject thiz, jint index, jstring type) argument
/frameworks/base/native/android/
H A Dsensor.cpp57 ASensor const* ASensorManager_getDefaultSensor(ASensorManager* manager, int type) argument
59 return static_cast<SensorManager*>(manager)->getDefaultSensor(type);
/frameworks/base/services/java/com/android/server/
H A DSystemBackupAgent.java126 int type, String domain, String path, long mode, long mtime)
149 FullBackup.restoreFile(data, size, type, mode, mtime, outFile);
125 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime) argument
/frameworks/base/services/java/com/android/server/display/
H A DDisplayDeviceInfo.java143 * Display type.
145 public int type; field in class:DisplayDeviceInfo
149 * Interpretation varies by display type.
178 && type == other.type
198 type = other.type;
210 + ", type " + Display.typeToString(type)
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DConnectivityServiceTest.java95 public MockNetwork(int type) { argument
97 info = new NetworkInfo(type, -1, getNetworkTypeName(type), null);
/frameworks/base/telephony/java/android/telephony/
H A DCellInfo.java53 // Observation time stamped as type in nanoseconds since boot
134 private static String timeStampTypeToString(int type) { argument
135 switch (type) {
179 protected void writeToParcel(Parcel dest, int flags, int type) { argument
180 dest.writeInt(type);
201 int type = in.readInt();
202 switch (type) {
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSgTransform.java65 public void setTransform(int index, Float4 value, TransformType type) { argument
67 mTransformData.transformTypes[index] = type.mID;

Completed in 6777 milliseconds

1234567891011>>