Home
last modified time | relevance | path

Searched refs:rawValue (Results 1 – 25 of 44) sorted by relevance

12

/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DValueParser.java44 byte[] rawValue = ctlv.getRawValue(); in retrieveCommandDetails()
70 byte[] rawValue = ctlv.getRawValue(); in retrieveDeviceIdentities()
93 byte[] rawValue = ctlv.getRawValue(); in retrieveDuration()
115 byte[] rawValue = ctlv.getRawValue(); in retrieveItem()
145 byte[] rawValue = ctlv.getRawValue(); in retrieveItemId()
149 id = rawValue[valueIndex] & 0xff; in retrieveItemId()
167 byte[] rawValue = ctlv.getRawValue(); in retrieveIconId()
192 byte[] rawValue = ctlv.getRawValue(); in retrieveItemsIconId()
223 byte[] rawValue = ctlv.getRawValue(); in retrieveTextAttribute()
284 byte[] rawValue = ctlv.getRawValue(); in retrieveAlphaId()
[all …]
H A DCommandParamsFactory.java531 byte[] rawValue = ctlv.getRawValue(); in processGetInput()
533 input.minLen = rawValue[valueIndex] & 0xff; in processGetInput()
534 input.maxLen = rawValue[valueIndex + 1] & 0xff; in processGetInput()
755 byte[] rawValue = ctlv.getRawValue(); in processSetUpEventList()
762 eventValue = rawValue[valueIndex] & 0xff; in processSetUpEventList()
810 byte[] rawValue = ctlv.getRawValue(); in processLaunchBrowser()
814 url = GsmAlphabet.gsm8BitUnpackedToString(rawValue, in processLaunchBrowser()
886 byte[] rawValue = ctlv.getRawValue(); in processPlayTone()
888 int toneVal = rawValue[valueIndex]; in processPlayTone()
1052 byte[] rawValue = ctlv.getRawValue(); in processLanguageNotification()
[all …]
/aosp12/packages/apps/Dialer/java/com/android/contacts/common/model/account/
H A DAccountType.java323 public int rawValue; field in AccountType.EditType
335 public EditType(int rawValue, int labelRes) { in EditType() argument
336 this.rawValue = rawValue; in EditType()
360 return other.rawValue == rawValue; in equals()
367 return rawValue; in hashCode()
374 + rawValue in toString()
390 public EventEditType(int rawValue, int labelRes) { in EventEditType() argument
391 super(rawValue, labelRes); in EventEditType()
/aosp12/packages/apps/Contacts/src/com/android/contacts/model/account/
H A DAccountType.java356 public int rawValue; field in AccountType.EditType
366 public EditType(int rawValue, int labelRes) { in EditType() argument
367 this.rawValue = rawValue; in EditType()
391 return other.rawValue == rawValue; in equals()
398 return rawValue; in hashCode()
404 + " rawValue=" + rawValue in toString()
415 public EventEditType(int rawValue, int labelRes) { in EventEditType() argument
416 super(rawValue, labelRes); in EventEditType()
/aosp12/system/tools/hidl/
H A DConstantExpression.cpp210 uint64_t rawValue = 0; in tryParse() local
227 if(rawValue <= UINT32_MAX) in tryParse()
235 else if(rawValue <= UINT32_MAX) in tryParse()
239 else if(rawValue <= UINT64_MAX) in tryParse()
414 std::string literal(rawValue(castKind)); in cppValue()
446 literal = rawValue(SK(INT64)) + "L"; in javaValue()
452 literal = rawValue(SK(INT32)); in javaValue()
455 literal = rawValue(SK(INT16)); in javaValue()
458 literal = rawValue(SK(INT8)); in javaValue()
464 literal = rawValue(castKind); in javaValue()
[all …]
H A DConstantExpression.h135 std::string rawValue() const;
136 std::string rawValue(ScalarType::Kind castKind) const;
H A DArrayType.cpp494 out << "vector_size: " << mSizes[0]->rawValue() << "\n"; in emitVtsTypeDeclarations()
503 out << "vector_size: " << mSizes[index]->rawValue() << "\n"; in emitVtsTypeDeclarations()
H A DEnumType.cpp608 std::string value = entry->rawValue(scalarType->getKind()); in emitVtsTypeDeclarations()
801 std::string EnumValue::rawValue(ScalarType::Kind castKind) const { in rawValue() function in android::EnumValue
803 return mValue->rawValue(castKind); in rawValue()
H A DEnumType.h155 std::string rawValue(ScalarType::Kind castKind) const;
/aosp12/packages/apps/Contacts/src/com/android/contacts/model/
H A DRawContactModifier.java228 if (rawValue == null) return null; in getCurrentType()
229 return getType(kind, rawValue.intValue()); in getCurrentType()
239 if (rawValue == null) return null; in getCurrentType()
240 return getType(kind, rawValue); in getCurrentType()
251 final int rawValue = cursor.getInt(index); in getCurrentType() local
252 return getType(kind, rawValue); in getCurrentType()
260 if (type.rawValue == rawValue) { in getType()
274 if (type.rawValue == rawValue) { in getTypePrecedence()
306 if (exactValue == type.rawValue) { in getBestValidType()
361 after.put(kind.typeColumn, type.rawValue); in insertChild()
[all …]
/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
H A DBpfMap.java213 final byte[] rawValue = getRawValue(key.writeToBytes()); in containsKey()
214 return rawValue != null; in containsKey()
220 final byte[] rawValue = getRawValue(key.writeToBytes()); in getValue()
222 if (rawValue == null) return null; in getValue()
224 final ByteBuffer buffer = ByteBuffer.wrap(rawValue); in getValue()
/aosp12/packages/services/Car/service/src/com/android/car/hal/
H A DPropertyHalServiceIds.java820 VehiclePropValue.RawValue rawValue = propValue.value; in checkFormatForAllProperties() local
822 int sizeOfAllValue = rawValue.int32Values.size() + rawValue.floatValues.size() in checkFormatForAllProperties()
823 + rawValue.int64Values.size() + rawValue.bytes.size() in checkFormatForAllProperties()
824 + rawValue.stringValue.length(); in checkFormatForAllProperties()
838 return sizeOfAllValue == rawValue.floatValues.size(); in checkFormatForAllProperties()
840 return sizeOfAllValue == rawValue.int64Values.size(); in checkFormatForAllProperties()
842 return sizeOfAllValue == rawValue.int32Values.size(); in checkFormatForAllProperties()
844 return sizeOfAllValue == rawValue.bytes.size(); in checkFormatForAllProperties()
846 return sizeOfAllValue == rawValue.stringValue.length(); in checkFormatForAllProperties()
854 VehiclePropValue.RawValue rawValue = propValue.value; in checkDataEnum() local
[all …]
/aosp12/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java1523 final String rawValue, final boolean isPrimary) { in appendEmailLine() argument
1569 rawValue); in appendEmailLine()
1855 for (String rawValue : rawValueList) { in appendAndroidSpecificProperty()
1864 encodedValue = escapeCharacters(rawValue); in appendAndroidSpecificProperty()
1873 final String rawValue) { in appendLineWithCharsetAndQPDetection() argument
1909 appendLine(propertyName, rawValue, false, false); in appendLine()
1923 final String rawValue) { in appendLine() argument
1944 encodedValue = encodeQuotedPrintable(rawValue); in appendLine()
1948 encodedValue = escapeCharacters(rawValue); in appendLine()
1980 for (String rawValue : rawValueList) { in appendLine()
[all …]
H A DVCardProperty.java107 public void setRawValue(String rawValue) { in setRawValue() argument
108 mRawValue = rawValue; in setRawValue()
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); in onValueReceived() argument
/aosp12/packages/services/Car/packages/ScriptExecutor/tests/unit/src/com/android/car/scriptexecutor/
H A DJniUtilsTestHelper.cpp163 const char* rawValue = env->GetStringUTFChars(value, nullptr); in Java_com_android_car_scriptexecutor_JniUtilsTest_nativeHasStringValue() local
164 result = strcmp(lua_tostring(luaState, -1), rawValue) == 0; in Java_com_android_car_scriptexecutor_JniUtilsTest_nativeHasStringValue()
165 env->ReleaseStringUTFChars(value, rawValue); in Java_com_android_car_scriptexecutor_JniUtilsTest_nativeHasStringValue()
/aosp12/frameworks/base/tools/aapt2/format/binary/
H A DXmlFlattener.cpp244 flat_attr->rawValue.index = util::HostToDevice32(-1); in WriteAttributes()
293 AddString(xml_attr->value, kLowPriority, &flat_attr->rawValue); in WriteAttributes()
295 AddString(compiled_text.value(), kLowPriority, &flat_attr->rawValue); in WriteAttributes()
298 AddString(xml_attr->value, kLowPriority, &flat_attr->rawValue); in WriteAttributes()
/aosp12/frameworks/base/apex/appsearch/framework/java/external/android/app/appsearch/
H A DGenericDocument.java250 Object rawValue = getRawPropertyFromRawDocument(path, mBundle); in getProperty() local
253 if (rawValue instanceof Bundle) { in getProperty()
256 GenericDocument document = new GenericDocument((Bundle) rawValue); in getProperty()
260 if (rawValue instanceof List) { in getProperty()
264 List<Bundle> bundles = (List<Bundle>) rawValue; in getProperty()
285 if (rawValue instanceof Parcelable[]) { in getProperty()
288 Parcelable[] bundles = (Parcelable[]) rawValue; in getProperty()
315 return rawValue; in getProperty()
/aosp12/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
H A DDataItem.java249 private static int getTypePrecedence(DataKind kind, int rawValue) { in getTypePrecedence() argument
252 if (type.rawValue == rawValue) { in getTypePrecedence()
/aosp12/frameworks/base/core/java/android/view/autofill/
H A DAutofillValue.java230 int rawValue = parcel.readInt(); in AutofillValue() local
231 mValue = rawValue != 0; in AutofillValue()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapVcardManager.java325 public String onValueReceived(String rawValue, int type, String label, in getSelectedPhonebookNameList()
327 String numberWithControlSequence = rawValue.replace(PhoneNumberUtils.PAUSE, 'p') in getSelectedPhonebookNameList()
744 public String onValueReceived(String rawValue, int type, String label, in composeContactsAndSendVCards()
750 String numberWithControlSequence = rawValue.replace(PhoneNumberUtils.PAUSE, 'p') in composeContactsAndSendVCards()
845 public String onValueReceived(String rawValue, int type, String label, in composeContactsAndSendSelectedVCards()
849 String numberWithControlSequence = rawValue.replace(PhoneNumberUtils.PAUSE, 'p') in composeContactsAndSendSelectedVCards()
/aosp12/frameworks/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java214 String rawValue = in getText() local
217 if (rawValue != null && !rawValue.equals(value)) { in getText()
218 return Html.fromHtml(rawValue, FROM_HTML_MODE_COMPACT); in getText()
/aosp12/hardware/interfaces/broadcastradio/1.0/default/
H A DUtils.cpp269 newMetadata[outCount].rawValue.setToExternal(static_cast<uint8_t *>(value), size); in convertMetaDataFromHal()
271 newMetadata[outCount].rawValue.resize(size); in convertMetaDataFromHal()
/aosp12/hardware/interfaces/broadcastradio/1.1/default/
H A DVirtualProgram.cpp43 bmp.rawValue = hidl_vec<uint8_t>(resources::demoPng, std::end(resources::demoPng)); in createDemoBitmap()
/aosp12/packages/apps/Contacts/src/com/android/contacts/editor/
H A DLabeledEditorView.java470 mEntry.put(mKind.typeColumn, mType.rawValue); in createCustomDialog()
535 mEntry.put(mKind.typeColumn, mType.rawValue); in onTypeSelectionChange()

12