Searched refs:dataType (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthAppConfiguration.java40 * @param dataType Data Type of the remote Bluetooth Health device
43 BluetoothHealthAppConfiguration(String name, int dataType) { argument
45 mDataType = dataType;
54 * @param dataType Data Type of the remote Bluetooth Health device
59 BluetoothHealthAppConfiguration(String name, int dataType, int role, int argument
62 mDataType = dataType;
104 * @return dataType
H A DBluetoothHealth.java107 * @param dataType The dataType of the Source role of Health Profile to which
113 public boolean registerSinkAppConfiguration(String name, int dataType, argument
117 if (DBG) log("registerSinkApplication(" + name + ":" + dataType + ")");
118 return registerAppConfiguration(name, dataType, SINK_ROLE,
130 * @param dataType The dataType of the Source role of Health Profile.
138 public boolean registerAppConfiguration(String name, int dataType, int role, argument
143 if (DBG) log("registerApplication(" + name + ":" + dataType + ")");
146 new BluetoothHealthAppConfiguration(name, dataType, rol
[all...]
/frameworks/native/opengl/libs/GLES_trace/tools/
H A Dgenapi.py222 dataType = " ".join(elements[:-1]).strip() # everything else is the data type
229 dataType += "*" * pointersInName
236 dataType += "*"
238 dataType = elements[0]
239 return (name, getDataTypeFromKw(dataType))
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp89 env->SetIntField(outValue, gTypedValueOffsets.mType, value.dataType);
929 if (value.dataType == Res_value::TYPE_REFERENCE) {
941 if (value.dataType == value.TYPE_ATTRIBUTE) {
943 value.dataType = Res_value::TYPE_NULL;
946 if (value.dataType == value.TYPE_REFERENCE) {
991 value.dataType = Res_value::TYPE_NULL;
1008 value.dataType, value.data));
1017 if (value.dataType == Res_value::TYPE_NULL) {
1022 value.dataType, value.data));
1033 if (value.dataType
[all...]
H A Dandroid_util_XmlBlock.cpp329 return value.dataType == value.TYPE_REFERENCE
330 || value.dataType == value.TYPE_ATTRIBUTE
H A Dandroid_server_BluetoothService.cpp1298 jint dataType, jstring role,
1325 "DataType", DBUS_TYPE_UINT16, &dataType,
1361 jint dataType, jstring role,
1388 "DataType", DBUS_TYPE_UINT16, &dataType,
1297 registerHealthApplicationNative(JNIEnv *env, jobject object, jint dataType, jstring role, jstring name, jstring channelType) argument
1360 registerSinkHealthApplicationNative(JNIEnv *env, jobject object, jint dataType, jstring role, jstring name) argument
/frameworks/rs/driver/
H A DrsdShader.cpp283 if (f->mHal.state.dataType == RS_TYPE_MATRIX_4X4) {
285 } else if (f->mHal.state.dataType == RS_TYPE_MATRIX_3X3) {
287 } else if (f->mHal.state.dataType == RS_TYPE_MATRIX_2X2) {
310 RsDataType dataType = field->mHal.state.dataType; local
316 if (dataType == RS_TYPE_MATRIX_4X4) {
322 } else if (dataType == RS_TYPE_MATRIX_3X3) {
327 } else if (dataType == RS_TYPE_MATRIX_2X2) {
357 RsDataType dataType = field->mHal.state.dataType; local
[all...]
H A DrsdMeshObj.cpp55 RsDataType dt = elem->mHal.state.fields[fieldIdx]->mHal.state.dataType;
112 mAttribs[userNum].type = rsdTypeToGLType(f->mHal.state.dataType);
113 mAttribs[userNum].normalized = f->mHal.state.dataType != RS_TYPE_FLOAT_32;
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl50 void notePhoneDataConnectionState(int dataType, boolean hasData);
/frameworks/compile/libbcc/lib/ScriptCRT/
H A Drs_structs.h169 rs_data_type dataType; member in struct:Element::__anon1249::__anon1250
H A Drs_element.c92 return element->mHal.state.dataType;
/frameworks/base/tools/aapt/
H A DXMLNode.h77 value.dataType = Res_value::TYPE_NULL;
82 || value.dataType == Res_value::TYPE_NULL
83 || value.dataType == Res_value::TYPE_STRING;
H A DXMLNode.cpp453 if (value.dataType == Res_value::TYPE_NULL) {
455 } else if (value.dataType == Res_value::TYPE_REFERENCE) {
457 } else if (value.dataType == Res_value::TYPE_ATTRIBUTE) {
459 } else if (value.dataType == Res_value::TYPE_STRING) {
464 printf("=(type 0x%x)0x%x", (int)value.dataType, (int)value.data);
908 String8(e.name).string(), e.value.dataType,
1255 if (ae.value.dataType == Res_value::TYPE_NULL
1256 || ae.value.dataType == Res_value::TYPE_STRING) {
1435 cdataExt.typedData.dataType = mCharsValue.dataType;
[all...]
H A DCommand.cpp249 if (value.dataType != Res_value::TYPE_STRING) {
267 if (value.dataType != Res_value::TYPE_STRING) {
286 if (value.dataType < Res_value::TYPE_FIRST_INT
287 || value.dataType > Res_value::TYPE_LAST_INT) {
304 if (value.dataType == Res_value::TYPE_REFERENCE) {
307 if (value.dataType < Res_value::TYPE_FIRST_INT
308 || value.dataType > Res_value::TYPE_LAST_INT) {
325 if (value.dataType == Res_value::TYPE_STRING) {
331 if (value.dataType != Res_value::TYPE_STRING) {
H A DResourceTable.cpp2111 outValue->dataType = outValue->TYPE_STRING;
2120 if (outValue->dataType == outValue->TYPE_STRING) {
2296 outValue->dataType = Res_value::TYPE_INT_HEX;
3265 if (it.parsedValue.dataType == Res_value::TYPE_STRING) {
3272 if (it.parsedValue.dataType == Res_value::TYPE_STRING) {
3311 par.dataType = it.parsedValue.dataType;
3316 String8(mName).string(), it.parsedValue.dataType,
3352 map.value.dataType = it.parsedValue.dataType;
[all...]
H A DResource.cpp461 if (value.dataType == Res_value::TYPE_REFERENCE) {
488 if (value.dataType == Res_value::TYPE_STRING) {
505 value.dataType);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp132 dataType = src.dataType;
1003 return attr->typedValue.dataType;
2518 attrRes, bag->map.value.dataType, bag->map.value.data,
2519 curEntry->value.dataType));
2520 if (force || curEntry->value.dataType == Res_value::TYPE_NULL) {
2604 te.value.dataType, te.value.data));
2605 const uint8_t type = te.value.dataType;
2634 //printf("Resolving type=0x%x\n", inOutValue->dataType);
2635 if (inOutValue->dataType
[all...]
/frameworks/rs/
H A DrsElement.h43 RsDataType dataType; member in struct:android::renderscript::Element::Hal::State
H A DrsElement.cpp167 mHal.state.dataType = mComponent.getType();
/frameworks/base/services/java/com/android/server/am/
H A DBatteryStatsService.java215 public void notePhoneDataConnectionState(int dataType, boolean hasData) { argument
218 mStats.notePhoneDataConnectionStateLocked(dataType, hasData);
/frameworks/base/core/java/android/content/
H A DIntentFilter.java321 * @param dataType The type to match, i.e. "vnd.android.cursor.dir/person".
327 public static IntentFilter create(String action, String dataType) { argument
329 return new IntentFilter(action, dataType);
369 * @param dataType The type to match, i.e. "vnd.android.cursor.dir/person".
372 public IntentFilter(String action, String dataType) argument
377 addDataType(dataType);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1942 public void notePhoneDataConnectionStateLocked(int dataType, boolean hasData) { argument
1945 switch (dataType) {
1993 if (DEBUG) Log.i(TAG, "Phone Data Connection -> " + dataType + " = " + hasData);
2305 @Override public int getPhoneSignalStrengthCount(int dataType, int which) { argument
2306 return mPhoneDataConnectionsTimer[dataType].getCountLocked(which);
2309 @Override public long getPhoneDataConnectionTime(int dataType, argument
2311 return mPhoneDataConnectionsTimer[dataType].getTotalTimeLocked(
2315 @Override public int getPhoneDataConnectionCount(int dataType, int which) { argument
2316 return mPhoneDataConnectionsTimer[dataType].getCountLocked(which);
/frameworks/base/include/androidfw/
H A DResourceTypes.h281 uint8_t dataType; member in struct:android::Res_value
329 // The data for this item, as interpreted according to dataType.
/frameworks/base/core/java/android/os/
H A DBatteryStats.java841 public abstract long getPhoneDataConnectionTime(int dataType, argument
850 public abstract int getPhoneDataConnectionCount(int dataType, int which); argument
/frameworks/base/core/java/android/server/
H A DBluetoothService.java2912 native String registerHealthApplicationNative(int dataType, String role, String name, argument
2914 native String registerHealthApplicationNative(int dataType, String role, String name); argument

Completed in 833 milliseconds