Home
last modified time | relevance | path

Searched defs:values (Results 226 – 250 of 16701) sorted by relevance

12345678910>>...669

/aosp_15_r20/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/common/
H A DFragment.java173 private final List<ParamValue> values = new ArrayList<ParamValue>(); field in Fragment.Param
178 private Param(String key, List<ParamValue> values) { in Param()
190 public List<ParamValue> values() { in values() method in Fragment.Param
236 private final List<ParamValue.Builder> values = new ArrayList<ParamValue.Builder>(); field in Fragment.Param.Builder
238 private Builder(String key, @Nullable List<ParamValue.Builder> values) { in Builder()
254 public List<ParamValue.Builder> values() { in values() method in Fragment.Param.Builder
307 List<ParamValue> values = new ArrayList<ParamValue>(); in build() local
535 List<ParamValue.Builder> values = new ArrayList<ParamValue.Builder>(); in parse() local
/aosp_15_r20/external/armnn/generated/
H A DArmnnSchema_generated.h434 static const ActivationFunction values[] = { in EnumValuesActivationFunction() local
484 static const ArgMinMaxFunction values[] = { in EnumValuesArgMinMaxFunction() local
523 static const DataType values[] = { in EnumValuesDataType() local
573 static const DataLayout values[] = { in EnumValuesDataLayout() local
610 static const ReduceOperation values[] = { in EnumValuesReduceOperation() local
646 static const ResizeMethod values[] = { in EnumValuesResizeMethod() local
679 static const ConstTensorData values[] = { in EnumValuesConstTensorData() local
/aosp_15_r20/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/mapapi/
DBluetoothMapEmailProviderTest.java154 ContentValues values = new ContentValues(); in insert_whenFolderIdIsNull() local
168 ContentValues values = new ContentValues(); in insert_whenTableNameIsWrong() local
184 ContentValues values = new ContentValues(); in insert_success() local
272 ContentValues values = new ContentValues(); in update_whenTableIsNull() local
293 ContentValues values = new ContentValues(); in update_whenSelectionIsNotNull() local
314 ContentValues values = new ContentValues(); in update_forAccountUri_success() local
352 ContentValues values = new ContentValues(); in update_forMessageUri_success() local
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/sm/
H A Dphase_2_legacy_test.cc238 MatchingPair values = in TEST_F() local
293 MatchingPair values = GenerateMatchingConfirmAndRandom(kTk); in TEST_F() local
388 MatchingPair values = in TEST_F() local
543 MatchingPair values = in TEST_F() local
564 MatchingPair values = in TEST_F() local
640 MatchingPair values = in TEST_F() local
698 MatchingPair values = GenerateMatchingConfirmAndRandom(kTk); in TEST_F() local
759 MatchingPair values = GenerateMatchingConfirmAndRandom(passkey); in TEST_F() local
789 MatchingPair values = in TEST_F() local
829 MatchingPair values = in TEST_F() local
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
H A DRecordWriter.java18 void boolArray(String name, boolean[] values); in boolArray()
20 void characterArray(String name, char[] values); in characterArray()
22 void namedIndexArray(String name, String[] names, byte[] values); in namedIndexArray()
24 void stringArray(String name, String[] values); in stringArray()
25 void stringTable(String name, String[][] values); in stringTable()
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/
H A DRecordWriter.java17 void boolArray(String name, boolean[] values); in boolArray()
19 void characterArray(String name, char[] values); in characterArray()
21 void namedIndexArray(String name, String[] names, byte[] values); in namedIndexArray()
23 void stringArray(String name, String[] values); in stringArray()
24 void stringTable(String name, String[][] values); in stringTable()
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/support/image/
H A DBoundingBoxUtil.java147 float[] values = new float[4]; in convert() local
165 float[] values, in convertOneBoundingBox()
179 float[] values, Type type, CoordinateType coordinateType, int height, int width) { in convertOneBoundingBox()
192 float[] values, CoordinateType coordinateType, int imageHeight, int imageWidth) { in convertFromBoundaries()
201 float[] values, CoordinateType coordinateType, int imageHeight, int imageWidth) { in convertFromUpperLeft()
210 float[] values, CoordinateType coordinateType, int imageHeight, int imageWidth) { in convertFromCenter()
/aosp_15_r20/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2DefaultAccountTest.java532 ContentValues values = getRawContactContactValuesFromAccount(account); in insertRawContact() local
539 ContentValues values = getGroupContentValuesFromAccount(account); in insertGroup() local
546 ContentValues values = getRawContactContactValuesFromAccount(destinationAccount); in updateRawContactAccount() local
553 ContentValues values = getGroupContentValuesFromAccount(destinationAccount); in updateGroupAccount() local
561 ContentValues values = new ContentValues(); in getRawContactContactValuesFromAccount() local
575 ContentValues values = new ContentValues(); in getGroupContentValuesFromAccount() local
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/ui/viewmodel/
H A DLockscreenToDreamingTransitionViewModelTest.kt90 val values by collectValues(underTest.lockscreenAlpha) in lockscreenFadeOut() constant
114 val values by collectValues(underTest.lockscreenTranslationY(pixels)) in lockscreenTranslationY() constant
138 val values by collectValues(underTest.deviceEntryParentViewAlpha) in deviceEntryParentViewAlpha_shadeExpanded() constant
/aosp_15_r20/packages/apps/Contacts/src/com/android/contacts/model/
DRawContact.java72 public NamedDataItem(Uri uri, ContentValues values) { in NamedDataItem()
124 final ContentValues values = entity.getEntityValues(); in createFrom() local
141 public RawContact(ContentValues values) { in RawContact()
272 final ContentValues values = getValues(); in setAccount() local
314 public void addDataItemValues(ContentValues values) { in addDataItemValues()
318 public NamedDataItem addNamedDataItemValues(Uri uri, ContentValues values) { in addNamedDataItemValues()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
H A DDelay.kt203 val values = produce { in debounceInternal() constant
272 val values = produce(capacity = Channel.CONFLATED) { in sample() constant
391 val values = buffer(Channel.RENDEZVOUS).produceIn(this) in sample() constant
/aosp_15_r20/packages/apps/Dialer/java/com/android/contacts/common/model/
DRawContact.java70 public RawContact(ContentValues values) { in RawContact()
87 final ContentValues values = entity.getEntityValues(); in createFrom() local
185 final ContentValues values = getValues(); in setAccount() local
224 public void addDataItemValues(ContentValues values) { in addDataItemValues()
228 public NamedDataItem addNamedDataItemValues(Uri uri, ContentValues values) { in addNamedDataItemValues()
311 public NamedDataItem(Uri uri, ContentValues values) { in NamedDataItem()
/aosp_15_r20/frameworks/av/media/mtp/
H A DMtpDataPacket.cpp352 void MtpDataPacket::putAInt8(const int8_t* values, int count) { in putAInt8()
358 void MtpDataPacket::putAUInt8(const uint8_t* values, int count) { in putAUInt8()
364 void MtpDataPacket::putAInt16(const int16_t* values, int count) { in putAInt16()
370 void MtpDataPacket::putAUInt16(const uint16_t* values, int count) { in putAUInt16()
376 void MtpDataPacket::putAUInt16(const UInt16List* values) { in putAUInt16()
383 void MtpDataPacket::putAInt32(const int32_t* values, int count) { in putAInt32()
389 void MtpDataPacket::putAUInt32(const uint32_t* values, int count) { in putAUInt32()
406 void MtpDataPacket::putAInt64(const int64_t* values, int count) { in putAInt64()
412 void MtpDataPacket::putAUInt64(const uint64_t* values, int count) { in putAUInt64()
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/container/
H A Dbtree_benchmark.cc68 std::vector<V> values = GenerateValues<V>(kBenchmarkValues); in BM_InsertImpl() local
144 std::vector<V> values = GenerateValues<V>(kSize); in BM_InsertSmall() local
163 std::vector<V> values = GenerateValues<V>(kBenchmarkValues); in BM_LookupImpl() local
194 std::vector<V> values = GenerateValues<V>(kBenchmarkValues); in BM_Delete() local
221 std::vector<V> values = GenerateValues<V>(kBenchmarkValues); in BM_DeleteRange() local
350 std::vector<V> values = GenerateValues<V>(kBenchmarkValues * 2); in BM_MixedAddRem() local
408 std::vector<V> values = GenerateValues<V>(kBenchmarkValues); in BM_FwdIter() local
429 std::vector<V> values = GenerateValues<V>(kBenchmarkValues); in BM_RangeConstructionImpl() local
604 std::array<int64_t, Size> values; member
/aosp_15_r20/out/soong/.intermediates/packages/providers/CalendarProvider/CalendarProvider/android_common/repackaged-jarjar/javac/
DCalendarProvider.jar ... .net.Uri uri android.content.ContentValues values android.net.Uri result boolean applyingBatch boolean isCallerSyncAdapter ...
/aosp_15_r20/out/soong/.intermediates/packages/providers/CalendarProvider/CalendarProvider/android_common/javac/
DCalendarProvider.jar ... db String key String value android.content.ContentValues values public java.lang.String readData (java. ...
/aosp_15_r20/external/guava/android/guava/src/com/google/common/primitives/
H A DImmutableIntArray.java138 public static ImmutableIntArray copyOf(int[] values) { in copyOf()
143 public static ImmutableIntArray copyOf(Collection<Integer> values) { in copyOf()
154 public static ImmutableIntArray copyOf(Iterable<Integer> values) { in copyOf()
217 public Builder addAll(int[] values) { in addAll()
229 public Builder addAll(Iterable<Integer> values) { in addAll()
244 public Builder addAll(Collection<Integer> values) { in addAll()
257 public Builder addAll(ImmutableIntArray values) { in addAll()
H A DImmutableLongArray.java138 public static ImmutableLongArray copyOf(long[] values) { in copyOf()
145 public static ImmutableLongArray copyOf(Collection<Long> values) { in copyOf()
156 public static ImmutableLongArray copyOf(Iterable<Long> values) { in copyOf()
219 public Builder addAll(long[] values) { in addAll()
231 public Builder addAll(Iterable<Long> values) { in addAll()
246 public Builder addAll(Collection<Long> values) { in addAll()
259 public Builder addAll(ImmutableLongArray values) { in addAll()
/aosp_15_r20/packages/services/Mtp/src/com/android/mtp/
DMapper.java207 final ContentValues values = new ContentValues(); in startAddingDocuments() local
254 final ContentValues values = valuesList[i]; in putDocuments() local
262 queryCandidate(selection, args, mappingKeys, values)) { in putDocuments() argument
387 final ContentValues values = new ContentValues(); in cancelAddingDocuments() local
411 String selection, String[] args, String[] mappingKeys, ContentValues values) { in queryCandidate()
433 String selection, String[] args, String mappingKey, ContentValues values) { in queryCandidate()
/aosp_15_r20/packages/apps/Contacts/tests/src/com/android/contacts/
DContactsUtilsTests.java82 final ContentValues values = new ContentValues(); in testImIntentCustom() local
105 final ContentValues values = new ContentValues(); in testImIntent() local
123 final ContentValues values = new ContentValues(); in testImIntentWithAudio() local
144 final ContentValues values = new ContentValues(); in testImIntentWithVideo() local
169 final ContentValues values = new ContentValues(); in testImEmailIntent() local
/aosp_15_r20/packages/apps/Messaging/src/com/android/messaging/sms/
DBugleCarrierConfigValuesLoader.java59 Bundle values; in get() local
92 private String loadLocked(final int subId, final Bundle values) { in loadLocked()
109 private static void loadFromSystem(final int subId, final Bundle values) { in loadFromSystem()
127 private void loadFromResources(final int subId, final Bundle values) { in loadFromResources()
186 public static void update(final Bundle values, final String type, final String key, in update()
/aosp_15_r20/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDataRowHandlerForPhoto.java59 ContentValues values) { in insert()
78 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, in update()
107 private boolean preProcessPhoto(ContentValues values) { in preProcessPhoto()
125 private boolean hasNonNullPhoto(ContentValues values) { in hasNonNullPhoto()
145 private boolean processPhoto(ContentValues values) { in processPhoto()
/aosp_15_r20/system/media/audio_utils/tests/
H A Daudio_stringutils_tests.cpp25 std::vector<int32_t> values; in TEST() local
31 std::vector<int32_t> values; in TEST() local
36 std::vector<int32_t> values; in TEST() local
41 std::vector<int32_t> values = {1}; // should still be this when parsing fails in TEST() local
47 std::vector<int32_t> values = {2}; // should still be this when parsing fails in TEST() local
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/domain/interactor/
H A DKeyguardOcclusionInteractorTest.kt175 val values by collectValues(underTest.showWhenLockedActivityLaunchedFromPowerGesture) in showWhenLockedActivityLaunchedFromPowerGesture_notTrueSecondTime() constant
214 val values by collectValues(underTest.showWhenLockedActivityLaunchedFromPowerGesture) in showWhenLockedActivityLaunchedFromPowerGesture_falseIfReturningToGone() constant
248 val values by collectValues(underTest.showWhenLockedActivityLaunchedFromPowerGesture) in showWhenLockedActivityLaunchedFromPowerGesture_falseIfReturningToGone_scene_container() constant
/aosp_15_r20/system/chre/host/common/include/chre_host/generated/
H A Dhost_messages_generated.h250 static const Setting values[] = { in EnumValuesSetting() local
287 static const SettingState values[] = { in EnumValuesSettingState() local
320 static const LogLevel values[] = { in EnumValuesLogLevel() local
358 static const LogType values[] = { in EnumValuesLogType() local
392 static const BtSnoopDirection values[] = { in EnumValuesBtSnoopDirection() local
422 static const ChannelInfo values[] = { in EnumValuesChannelInfo() local

12345678910>>...669