Searched defs:type (Results 126 - 150 of 801) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/gesture/
H A DGestureLibrary.java51 public void setSequenceType(int type) { argument
52 mStore.setSequenceType(type);
/frameworks/base/core/java/android/hardware/
H A DSensorAdditionalInfo.java46 public final int type; field in class:SensorAdditionalInfo
49 * Sequence number of frame for a certain type.
54 * Additional info payload data represented in float values. Depending on the type of
60 * Additional info payload data represented in int values. Depending on the type of information,
66 * Typical values of additional infomation type. The set of values is subject to extension in
137 type = aType;
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DTypeReference.java29 * Super type token; allows capturing generic types at runtime by forcing them to be reified.
43 * <p>See <a href="http://gafter.blogspot.com/2007/05/limitation-of-super-type-tokens.html">
44 * http://gafter.blogspot.com/2007/05/limitation-of-super-type-tokens.html</a>
52 * Create a new type reference for {@code T}.
54 * @throws IllegalArgumentException if {@code T}'s actual type contains a type variable
65 * Prohibit type references with type variables such as
69 * Since the "T" there is not known without an instance of T, type equality would
71 * some of the type safet
87 TypeReference(Type type) argument
104 SpecializedBaseTypeReference(Type type) argument
139 createSpecializedTypeReference(Type type) argument
162 getRawType(Type type) argument
216 getComponentType(Type type) argument
271 containsTypeVariable(Type type) argument
369 toString(Type type, StringBuilder out) argument
[all...]
/frameworks/base/core/java/android/net/
H A DWifiLinkQualityInfo.java28 /* Indicates Wifi network type such as b/g etc*/
76 * returns Wifi network type
77 * @return network type or {@link android.net.LinkQualityInfo#UNKNOWN_INT}
86 public void setType(int type) { argument
87 mType = type;
/frameworks/base/core/java/android/os/
H A DHardwarePropertiesManager.java102 * @param type type of requested device temperature, one of {@link #DEVICE_TEMPERATURE_CPU},
115 public @NonNull float[] getDeviceTemperatures(@DeviceTemperatureType int type, argument
117 switch (type) {
128 return mService.getDeviceTemperatures(mContext.getOpPackageName(), type,
138 Log.w(TAG, "Unknown device temperature type.");
H A DPatternMatcher.java26 * Pattern type: the given pattern must exactly match the string it is
32 * Pattern type: the given pattern must match the
38 * Pattern type: the given pattern is interpreted with a
51 public PatternMatcher(String pattern, int type) { argument
53 mType = type;
69 String type = "? ";
72 type = "LITERAL: ";
75 type = "PREFIX: ";
78 type = "GLOB: ";
81 return "PatternMatcher{" + type
109 matchPattern(String pattern, String match, int type) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindowInfo.java40 public int type; field in class:WindowInfo
64 window.type = other.type;
96 parcel.writeInt(type);
118 builder.append(", type=").append(type);
131 type = parcel.readInt();
150 type = 0;
/frameworks/base/core/java/android/widget/
H A DEditText.java88 public void setText(CharSequence text, BufferType type) { argument
H A DExpandableListPosition.java35 * This data type represents a child position
40 * This data type represents a group position
62 * What type of position this ExpandableListPosition represents
64 public int type; field in class:ExpandableListPosition
70 type = 0;
77 if (type == CHILD) return ExpandableListView.getPackedPositionForChild(groupPos, childPos);
98 elp.type = CHILD;
101 elp.type = GROUP;
106 static ExpandableListPosition obtain(int type, int groupPos, int childPos, int flatListPos) { argument
108 elp.type
[all...]
/frameworks/base/core/jni/android/graphics/
H A DDrawFilter.cpp44 virtual bool filter(SkPaint* paint, Type type) { argument
45 SkPaintFlagsDrawFilter::filter(paint, type);
/frameworks/base/core/jni/
H A Dandroid_backup_BackupDataInput.cpp58 int type = 0; local
60 err = reader->ReadNextHeader(&done, &type);
69 switch (type) {
85 ALOGD("Unknown header type: 0x%08x\n", type);
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
H A DActionBarContainerTest.java85 View originalView, ActionMode.Callback callback, int type) {
87 return super.startActionModeForChild(originalView, callback, type);
84 startActionModeForChild( View originalView, ActionMode.Callback callback, int type) argument
/frameworks/base/libs/androidfw/tests/
H A DBackupData_test.cpp90 int type; local
91 reader->ReadNextHeader(&done, &type);
92 EXPECT_EQ(BACKUP_HEADER_ENTITY_V1, type)
93 << "wrong type from ReadNextHeader";
129 int type; local
134 reader->ReadNextHeader(&done, &type);
141 reader->ReadNextHeader(&done, &type);
142 EXPECT_EQ(BACKUP_HEADER_ENTITY_V1, type)
143 << "wrong type from ReadNextHeader";
179 int type; local
231 int type; local
272 int type; local
332 int type; local
398 int type; local
[all...]
/frameworks/base/libs/hwui/
H A DPixelBuffer.cpp163 uint32_t width, uint32_t height, BufferType type) {
164 if (type == kBufferType_Auto && Caches::getInstance().gpuPixelBuffersEnabled) {
162 create(GLenum format, uint32_t width, uint32_t height, BufferType type) argument
H A DReadback.cpp60 GLenum type; local
65 type = GL_UNSIGNED_BYTE;
69 type = GL_UNSIGNED_SHORT_5_6_5;
73 type = GL_UNSIGNED_SHORT_4_4_4_4;
78 type = GL_UNSIGNED_BYTE;
97 0, format, type, nullptr);
179 type, bitmap->getPixels());
/frameworks/base/media/java/android/media/
H A DAudioDevicePort.java22 * The AudioDevicePort is a specialized type of AudioPort
28 * - the device type (e.g AudioManager.DEVICE_OUT_SPEAKER)
41 int[] formats, AudioGain[] gains, int type, String address) {
43 (AudioManager.isInputDevice(type) == true) ?
46 mType = type;
51 * Get the device type (e.g AudioManager.DEVICE_OUT_SPEAKER)
53 public int type() { method in class:AudioDevicePort
58 * Get the device address. Address format varies with the device type.
87 if (mType != other.type()) {
101 String type
39 AudioDevicePort(AudioHandle handle, String deviceName, int[] samplingRates, int[] channelMasks, int[] channelIndexMasks, int[] formats, AudioGain[] gains, int type, String address) argument
[all...]
H A DAudioRoutesInfo.java58 return getClass().getSimpleName() + "{ type=" + typeToString(mainType)
63 private static String typeToString(int type) { argument
64 if (type == MAIN_SPEAKER) return "SPEAKER";
65 if ((type & MAIN_HEADSET) != 0) return "HEADSET";
66 if ((type & MAIN_HEADPHONES) != 0) return "HEADPHONES";
67 if ((type & MAIN_DOCK_SPEAKERS) != 0) return "DOCK_SPEAKERS";
68 if ((type & MAIN_HDMI) != 0) return "HDMI";
69 if ((type & MAIN_USB) != 0) return "USB";
70 return Integer.toHexString(type);
/frameworks/base/media/java/android/media/audiopolicy/
H A DAudioPolicyConfig.java221 private static String mixTypeId(int type) { argument
222 if (type == AudioMix.MIX_TYPE_PLAYERS) return "p";
223 else if (type == AudioMix.MIX_TYPE_RECORDERS) return "r";
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java55 * Return the type as defined by OpenGL ES of the supplied bitmap, if there
57 * a valid OpenGL ES type.
58 * @throws IllegalArgumentException if the bitmap does not have a type.
60 * @return the OpenGL ES type of the bitmap.
71 throw new IllegalArgumentException("Unknown type");
112 * A version of texImage2D() that takes an explicit type parameter
113 * as defined by the OpenGL ES specification. The actual type and
115 * type and internalformat parameters.
121 * @param type
125 Bitmap bitmap, int type, in
124 texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
206 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
266 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
268 native_texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
[all...]
/frameworks/base/packages/Osu/src/com/android/anqp/eap/
H A DNonEAPInnerAuth.java44 public NonEAPInnerAuth(NonEAPType type) { argument
45 mType = type;
69 public static String mapInnerType(NonEAPType type) { argument
70 return sOmaMap.get(type);
/frameworks/base/packages/Osu/src/com/android/configparse/
H A DConfigBuilder.java137 throw new IOException("Invalid certificate type for TLS: " +
245 private static int remapInnerMethod(NonEAPInnerAuth.NonEAPType type) throws IOException { argument
246 switch (type) {
255 throw new IOException("Inner method " + type + " not supported");
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DAccelerationClassifier.java63 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
/frameworks/base/services/core/java/com/android/server/am/
H A DInstrumentationReporter.java105 Report(int type, IInstrumentationWatcher watcher, ComponentName name, int resultCode, argument
107 mType = type;
/frameworks/base/services/core/java/com/android/server/pm/
H A DBasePermission.java36 final int type; field in class:BasePermission
59 type = _type;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowToken.java40 // The type of window this token is for, as per WindowManager.LayoutParams.
73 WindowToken(WindowManagerService _service, IBinder _token, int type, boolean _explicit) { argument
76 windowType = type;

Completed in 541 milliseconds

1234567891011>>