Home
last modified time | relevance | path

Searched defs:K (Results 1 – 25 of 61) sorted by relevance

123

/aosp12/frameworks/base/services/core/java/com/android/server/utils/
H A DWatchedArrayMap.java155 public WatchedArrayMap(@Nullable Map<? extends K, ? extends V> map) { in WatchedArrayMap()
165 public WatchedArrayMap(@NonNull ArrayMap<K, V> c) { in WatchedArrayMap()
172 public WatchedArrayMap(@NonNull WatchedArrayMap<K, V> c) { in WatchedArrayMap()
179 public void copyFrom(@NonNull ArrayMap<K, V> src) { in copyFrom()
191 public void copyTo(@NonNull ArrayMap<K, V> dst) { in copyTo()
310 public void putAll(@NonNull Map<? extends K, ? extends V> map) { in putAll()
446 public void snapshot(@NonNull WatchedArrayMap<K, V> r) { in snapshot()
458 public static <K, V> void snapshot(@NonNull WatchedArrayMap<K, V> dst, in snapshot()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/timedetector/
H A DArrayMapWithHistoryTest.java115 private static <K, V> void putAndCompareReturnValue(ArrayMapWithHistory<K, V> historyMap, in putAndCompareReturnValue()
116 ArrayMap<K, V> arrayMap, K key, V value) { in putAndCompareReturnValue()
135 private static <K, V> void compareGetAndSizeForKeys(ArrayMapWithHistory<K, V> historyMap, in compareGetAndSizeForKeys()
136 ArrayMap<K, V> arrayMap, Entry<K, V>... expectedEntries) { in compareGetAndSizeForKeys()
/aosp12/system/libvintf/include/vintf/
H A DMapValueIterator.h29 using K = typename Map::key_type; member
129 ConstMapValueIterable<K, V> iterateValues(const std::map<K, V> &map) { in iterateValues()
133 ConstMultiMapValueIterable<K, V> iterateValues(const std::multimap<K, V> &map) { in iterateValues()
137 MapValueIterable<K, V> iterateValues(std::map<K, V>& map) { in iterateValues()
141 MultiMapValueIterable<K, V> iterateValues(std::multimap<K, V>& map) { in iterateValues()
147 const std::multimap<K, V>& map, const K& key) { in iterateValues()
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Ddtoa.h59 …ne void DigitGen(const DiyFp& W, const DiyFp& Mp, uint64_t delta, char* buffer, int* len, int* K) { in DigitGen()
110 inline void Grisu2(double value, char* buffer, int* length, int* K) { in Grisu2()
124 inline char* WriteExponent(int K, char* buffer) { in WriteExponent()
204 int length, K; in dtoa() local
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
H A DSetMultimapTest.java147 private static <K, V> SetMultimap<K, V> createFromMultimap(Multimap<K, V> multimap) { in createFromMultimap()
155 SetMultimap<K, V> actual, Multimap<K, V> expected) { in assertContainsExactlyEntries()
/aosp12/art/test/960-default-smali/src/
H A DK.java17 class K implements Foo { } class
/aosp12/frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DLinkedHashMap_Delegate.java32 public static <K,V> Map.Entry<K,V> eldest(LinkedHashMap<K,V> map) { in eldest()
/aosp12/packages/apps/Dialer/java/com/android/dialer/util/
H A DExpirableCache.java105 private ExpirableCache(LruCache<K, CachedValue<V>> cache) { in ExpirableCache()
121 public static <K, V> ExpirableCache<K, V> create(LruCache<K, CachedValue<V>> cache) { in create()
/aosp12/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSimpleCache.java35 protected boolean removeEldestEntry(final Map.Entry<K, V> eldest) { in removeEldestEntry()
/aosp12/frameworks/base/core/java/com/android/internal/util/
H A DCollectionUtils.java204 public static @NonNull <K, V> Map<K, V> emptyIfNull(@Nullable Map<K, V> cur) { in emptyIfNull()
360 public static @NonNull <K, V> Map<K, V> add(@Nullable Map<K, V> map, K key, V value) { in add()
443 public static <K, V> void forEach(@Nullable Map<K, V> cur, @Nullable BiConsumer<K, V> action) { in forEach()
/aosp12/frameworks/av/services/camera/libcameraservice/tests/
H A DDistortionMapperComp.py14 K = np.array([[Fx, 0, Cx],[0, Fy, Cy],[0, 0, 1]]) variable
/aosp12/frameworks/base/core/java/android/util/
H A DMapCollections.java171 public boolean add(Map.Entry<K, V> object) { in add()
176 public boolean addAll(Collection<? extends Map.Entry<K, V>> collection) { in addAll()
460 public static <K, V> boolean containsAllHelper(Map<K, V> map, Collection<?> collection) { in containsAllHelper()
470 public static <K, V> boolean removeAllHelper(Map<K, V> map, Collection<?> collection) { in removeAllHelper()
479 public static <K, V> boolean retainAllHelper(Map<K, V> map, Collection<?> collection) { in retainAllHelper()
H A DArrayMap.java354 public ArrayMap(ArrayMap<K, V> map) { in ArrayMap() method in ArrayMap
702 public void putAll(ArrayMap<? extends K, ? extends V> array) { in putAll()
987 public void putAll(Map<? extends K, ? extends V> map) { in putAll()
/aosp12/frameworks/rs/cpp/
H A DScriptIntrinsicBLAS.cpp1274 int M = -1, N = -1, K = -1; in SGEMM() local
1296 int M = -1, N = -1, K = -1; in DGEMM() local
1318 int M = -1, N = -1, K = -1; in CGEMM() local
1411 int K = -1; in SSYRK() local
1426 int K = -1; in DSYRK() local
1441 int K = -1; in CSYRK() local
1456 int K = -1; in ZSYRK() local
1497 int K = -1; in SSYR2K() local
1512 int K = -1; in DSYR2K() local
1527 int K = -1; in CSYR2K() local
[all …]
/aosp12/packages/apps/Car/Radio/src/com/android/car/radio/platform/
H A DImageMemoryCache.java58 protected boolean removeEldestEntry(Map.Entry<K, V> eldest) { in removeEldestEntry()
/aosp12/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicBLAS.java2350 int M = -1, N = -1, K = -1; in SGEMM() local
2386 int M = -1, N = -1, K = -1; in DGEMM() local
2422 int M = -1, N = -1, K = -1; in CGEMM() local
2597 int K = -1; in SSYRK() local
2624 int K = -1; in DSYRK() local
2650 int K = -1; in CSYRK() local
2677 int K = -1; in ZSYRK() local
2730 int K = -1; in SSYR2K() local
2756 int K = -1; in DSYR2K() local
2782 int K = -1; in CSYR2K() local
[all …]
/aosp12/art/test/Interfaces/
H A DInterfaces.java26 interface K extends J { interface in Interfaces
/aosp12/frameworks/compile/slang/
H A Dslang_rs_exportable.h43 RSExportable(RSContext *Context, RSExportable::Kind K, clang::SourceLocation Loc) in RSExportable() function
/aosp12/frameworks/base/apex/appsearch/testing/java/com/android/server/appsearch/testing/
H A DAppSearchSessionShimImpl.java215 BatchResultCallbackAdapter(SettableFuture<AppSearchBatchResult<K, V>> future) { in BatchResultCallbackAdapter()
220 public void onResult(AppSearchBatchResult<K, V> result) { in onResult()
/aosp12/packages/apps/Dialer/java/com/android/dialer/phonenumberproto/
H A DPartitionedNumbers.java119 private static <K, V> ImmutableMap<K, ImmutableSet<V>> makeImmutable( in makeImmutable()
/aosp12/system/bt/embdrv/sbc/decoder/srce/
H A Dsynthesis-dct8.c91 #define FLOAT_MULT_DCT(K, sample) (FIX(K, 20) * sample) in float_dct2_8() argument
254 #define FIX_MULT_DCT(K, x) (MUL_32S_32S_HI(K, x) << 2) in dct2_8() argument
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DObjectCounter.java114 public <T> T[] toProto(Class<T> protoClass, ProtobufConverter<K, T> converter) { in toProto()
/aosp12/frameworks/base/core/tests/coretests/src/android/database/sqlite/
H A DSQLiteCursorTest.java143 int K = N / 2; in testFillWindow() local
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/
H A DScriptIntrinsicBLAS.java2953 int M = -1, N = -1, K = -1; in SGEMM() local
2999 int M = -1, N = -1, K = -1; in DGEMM() local
3045 int M = -1, N = -1, K = -1; in CGEMM() local
3280 int K = -1; in SSYRK() local
3314 int K = -1; in DSYRK() local
3348 int K = -1; in CSYRK() local
3383 int K = -1; in ZSYRK() local
3444 int K = -1; in SSYR2K() local
3480 int K = -1; in DSYR2K() local
3516 int K = -1; in CSYR2K() local
[all …]
/aosp12/system/bt/service/ipc/binder/
H A Dremote_callback_map.h216 RemoteCallbackMap<K, V>::CallbackDeathRecipient::CallbackDeathRecipient( in CallbackDeathRecipient()

123