Searched refs:type (Results 276 - 300 of 583) sorted by relevance

<<11121314151617181920>>

/frameworks/base/cmds/servicemanager/
H A Dbinder.h14 uint32_t type; member in struct:binder_object
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java89 * If an {@link AccessibilityService} is the default for a given type.
127 * The feedback type an {@link AccessibilityService} provides.
140 * The timeout after the most recent event of a given type before an
222 int type = 0;
223 while (type != XmlPullParser.END_DOCUMENT && type != XmlPullParser.START_TAG) {
224 type = parser.next();
459 * Returns the string representation of a feedback type. For example,
462 * @param feedbackType The feedback type.
/frameworks/base/graphics/java/android/graphics/drawable/
H A DShapeDrawable.java336 int type;
338 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
339 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
340 if (type != XmlPullParser.START_TAG) {
H A DInsetDrawable.java79 int type;
105 while ((type=parser.next()) == XmlPullParser.TEXT) {
107 if (type != XmlPullParser.START_TAG) {
/frameworks/base/include/media/
H A DIMediaPlayer.h54 virtual status_t setAudioStreamType(int type) = 0;
/frameworks/base/libs/rs/
H A DrsType.cpp170 LOGE("type loading skipped due to invalid class id\n");
187 Type *type = Type::getType(rsc, elem, x, y, z, lod != 0, faces !=0 ); local
189 return type;
277 void rsaTypeGetNativeData(RsContext con, RsType type, uint32_t *typeData, uint32_t typeDataSize) { argument
281 Type *t = static_cast<Type *>(type);
/frameworks/base/media/libstagefright/codecs/avc/common/include/
H A Davcapi_common.h19 This file contains common type definitions and enumerations used by AVC encoder
86 This enumeration follows Table 7-1 for NAL unit type codes.
107 This enumeration specifies debug logging type.
227 \param "type" "Type of logging message, see definition of AVCLogType."
231 typedef void (*FunctionType_DebugLog)(uint32 *userData, AVCLogType type, char *string1, int val1, int val2);
/frameworks/base/media/libstagefright/timedtext/
H A DTimedTextPlayer.cpp113 TimedTextParser::FileType fileType = text.type;
316 text.type = TimedTextParser::OUT_OF_BAND_FILE_SRT;
392 uint32_t type; local
396 kKeyTextFormatData, &type, &data, &size)) {
H A DTimedTextPlayer.h90 TimedTextParser::FileType type; member in struct:android::TimedTextPlayer::OutOfBandText
/frameworks/base/media/mtp/
H A DMtpProperty.h79 MtpDataType type,
/frameworks/base/opengl/libagl/
H A Diterators.S24 .type iterators0032, %function
/frameworks/base/services/java/com/android/server/wm/
H A DInputMonitor.java188 final int type = child.mAttrs.type;
193 && (type != WindowManager.LayoutParams.TYPE_KEYGUARD);
204 inputWindowHandle.layoutParamsType = type;
/frameworks/base/services/sensorservice/tests/
H A Dsensorservicetest.cpp46 if (buffer[i].type == Sensor::TYPE_ACCELEROMETER) {
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java288 * Returns the current phone type.
319 * Returns a constant indicating the device phone type. This
320 * indicates the type of radio used to transmit voice calls.
335 int type =
338 return type;
343 // use the system property for default network type.
400 /** Network type is unknown */
434 * Returns a constant indicating the radio technology (network type)
436 * @return the network type
483 * Return general class of network type, suc
525 getNetworkTypeName(int type) argument
[all...]
/frameworks/base/voip/java/android/net/rtp/
H A DAudioGroup.java149 String codecSpec = String.format("%d %s %s", codec.type,
/frameworks/base/cmds/service/
H A Dservice.cpp154 char* type = NULL; local
180 else if (strcmp(key, "type") == 0)
182 type = value;
210 writeString16(data, type);
269 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/base/core/java/android/accounts/
H A DChooseAccountActivity.java72 getDrawableForType(((Account) mAccounts[i]).type));
93 mTypeToAuthDescription.put(desc.type, desc);
107 Log.w(TAG, "No icon name for account type " + accountType);
112 Log.w(TAG, "No icon resource for account type " + accountType);
124 bundle.putString(AccountManager.KEY_ACCOUNT_TYPE, account.type);
/frameworks/base/core/java/android/app/
H A DWallpaperInfo.java105 int type;
106 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
107 && type != XmlPullParser.START_TAG) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteProgram.java225 private void bind(int type, int index, Object value) { argument
227 addToBindArgs(index, (type == Cursor.FIELD_TYPE_NULL) ? null : value);
232 switch (type) {
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java125 * meaning may be specific to a particular network type. Retrieve
296 public static String getNetworkTypeName(int type) { argument
297 switch (type) {
327 return Integer.toString(type);
475 * @param networkType the type of the network over which traffic to the specified
494 * @param networkType the type of the network over which traffic to the specified
631 * @return error A TETHER_ERROR value indicating success or failure type
643 * @return error A TETHER_ERROR value indicating success or failure type
762 * @param networkType The type of network you want to report on
821 * Returns true if the hardware supports the given network type
[all...]
/frameworks/base/core/java/android/webkit/
H A DFileLoader.java39 private int mType; // Indicates the type of the load
61 FileLoader(String url, LoadListener loadListener, int type, argument
64 mType = type;
137 if (value.type == TypedValue.TYPE_STRING) {
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp37 jfieldID type; member in struct:android::SensorOffsets
74 env->SetIntField(sensor, sensorOffsets.type, list->getType());
155 sensorOffsets.type = _env->GetFieldID(sensorClass, "mType", "I");
/frameworks/base/libs/hwui/
H A DSkiaShader.h57 ANDROID_API SkiaShader(Type type, SkShader* key, SkShader::TileMode tileX,
76 Type type() const { function in struct:android::uirenderer::SkiaShader
209 SkiaSweepGradientShader(Type type, float x, float y, uint32_t* colors, float* positions,
H A DTextureCache.cpp271 GLenum type, const GLvoid * data) {
273 glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, type, data);
275 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, data);
270 uploadToTexture(bool resize, GLenum format, GLsizei width, GLsizei height, GLenum type, const GLvoid * data) argument
/frameworks/base/libs/ui/
H A DKeyboard.cpp148 const String8& name, InputDeviceConfigurationFileType type) {
150 ? getInputDeviceConfigurationFilePathByDeviceIdentifier(deviceIdentifier, type)
151 : getInputDeviceConfigurationFilePathByName(name, type);
147 getPath(const InputDeviceIdentifier& deviceIdentifier, const String8& name, InputDeviceConfigurationFileType type) argument

Completed in 1368 milliseconds

<<11121314151617181920>>