Searched defs:keys (Results 51 - 75 of 84) sorted by relevance

1234

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter.java432 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) { argument
434 mOrgWriter.visitLookupSwitchInsn(dflt, keys, labels);
H A DStubMethodAdapter.java349 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) { argument
351 mParentVisitor.visitLookupSwitchInsn(dflt, keys, labels);
H A DAsmAnalyzer.java711 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) { argument
H A DDependencyFinder.java589 public void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) { argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp1167 const char * keys[] = { "channel-count", "sample-rate", "is-adts" }; local
1168 for (unsigned int i = 0; i < sizeof(keys) / sizeof(keys[0]); i++) {
1170 if (!mInputFormat->findInt32(keys[i], &oldVal) ||
1171 !targetFormat->findInt32(keys[i], &newVal) ||
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp706 const char *keys[] = {"audio", "video", "subtitles"}; local
707 for (size_t j = 0; j < sizeof(keys) / sizeof(const char *); ++j) {
709 if (meta->findString(keys[j], &groupID)) {
/frameworks/base/core/java/android/view/
H A DInputDevice.java81 * The input source has buttons or keys.
145 * {@link #getKeyboardType()} to determine whether the keyboard has alphabetic keys
384 * of buttons that are not mapped as alphabetic keys suitable for text input.
389 * The keyboard supports a complement of alphabetic keys.
671 * @param keys The list of android keycodes to check for.
673 * generating the keycode given by the corresponding value at the same index in the keys array.
675 public boolean[] hasKeys(int... keys) { argument
676 return InputManager.getInstance().deviceHasKeys(mId, keys);
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp334 char const* const* files, char const* const* keys, int fileCount)
349 String8 key(keys[i]);
1497 char const* keys[] = {
1516 err = back_up_files(-1, &dataStream, newSnapshotFD, files, keys, 1);
1547 char const* keys[] = {
1568 err = back_up_files(-1, &dataStream, newSnapshotFD, files, keys, 1);
333 back_up_files(int oldSnapshotFD, BackupDataWriter* dataStream, int newSnapshotFD, char const* const* files, char const* const* keys, int fileCount) argument
/frameworks/base/media/jni/
H A Dandroid_media_Utils.cpp168 JNIEnv *env, jobjectArray keys, jobjectArray values,
173 if (keys != NULL && values != NULL) {
174 nKeyValuePairs = env->GetArrayLength(keys);
179 failed = ((keys != NULL && values == NULL) ||
180 (keys == NULL && values != NULL));
184 ALOGE("keys and values arrays have different length");
192 jstring key = (jstring) env->GetObjectArrayElement(keys, i);
314 // don't expose private keys (starting with android._)
422 JNIEnv *env, jobjectArray keys, jobjectArray values,
439 if (keys !
167 ConvertKeyValueArraysToKeyedVector( JNIEnv *env, jobjectArray keys, jobjectArray values, KeyedVector<String8, String8>* keyedVector) argument
421 ConvertKeyValueArraysToMessage( JNIEnv *env, jobjectArray keys, jobjectArray values, sp<AMessage> *out) argument
[all...]
H A Dandroid_media_MediaCodec.cpp972 jobjectArray keys, jobjectArray values,
985 status_t err = ConvertKeyValueArraysToMessage(env, keys, values, &format);
1698 JNIEnv *env, jobject thiz, jobjectArray keys, jobjectArray vals) {
1709 status_t err = ConvertKeyValueArraysToMessage(env, keys, vals, &params);
969 android_media_MediaCodec_native_configure( JNIEnv *env, jobject thiz, jobjectArray keys, jobjectArray values, jobject jsurface, jobject jcrypto, jobject descramblerBinderObj, jint flags) argument
1697 android_media_MediaCodec_setParameters( JNIEnv *env, jobject thiz, jobjectArray keys, jobjectArray vals) argument
H A Dandroid_media_MediaPlayer.cpp223 jobjectArray keys, jobjectArray values) {
249 env, keys, values, &headersVector)) {
221 android_media_MediaPlayer_setDataSourceAndHeaders( JNIEnv *env, jobject thiz, jobject httpServiceBinderObj, jstring path, jobjectArray keys, jobjectArray values) argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DWifiTracker.java318 private void requestScoresForNetworkKeys(Collection<NetworkKey> keys) { argument
319 if (keys.isEmpty()) return;
322 Log.d(TAG, "Requesting scores for Network Keys: " + keys);
324 mNetworkScoreManager.requestScores(keys.toArray(new NetworkKey[keys.size()]));
326 mRequestedScores.addAll(keys);
/frameworks/base/telecomm/java/android/telecom/
H A DConference.java64 public void onExtrasRemoved(Conference c, List<String> keys) {} argument
689 * New or existing keys are replaced in the {@code Conference} extras. Keys which are no longer
707 // to the current one and remove any keys that went away.
721 // Track the keys the last time set called setExtras. This way, the next time setExtras
734 * Adds some extras to this {@link Conference}. Existing keys are replaced and new ones are
805 * @param keys The keys of the extras to remove.
807 public final void removeExtras(List<String> keys) { argument
808 if (keys == null || keys
831 removeExtras(String .... keys) argument
[all...]
H A DRemoteConnection.java1473 void removeExtras(List<String> keys) { argument
1474 if (mExtras == null || keys == null || keys.isEmpty()) {
1477 for (String key : keys) {
/frameworks/av/media/libaudioclient/
H A DAudioSystem.cpp212 String8 AudioSystem::getParameters(audio_io_handle_t ioHandle, const String8& keys) argument
218 result = af->getParameters(ioHandle, keys);
227 String8 AudioSystem::getParameters(const String8& keys) argument
229 return getParameters(AUDIO_IO_HANDLE_NONE, keys);
H A DAudioTrack.cpp2686 String8 AudioTrack::getParameters(const String8& keys) argument
2690 return AudioSystem::getParameters(output, keys);
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java581 * @param keys Notifications to dismiss, or {@code null} to dismiss all.
585 public final void cancelNotifications(String[] keys) { argument
588 getNotificationInterface().cancelNotificationsFromListener(mWrapper, keys);
654 * @param keys Notifications to mark as seen.
656 public final void setNotificationsShown(String[] keys) { argument
659 getNotificationInterface().setNotificationsShownFromListener(mWrapper, keys);
821 * @param keys the keys of the notifications to request
822 * @return An array of notifications corresponding to the requested keys, in the
825 public StatusBarNotification[] getActiveNotifications(String[] keys) { argument
842 getActiveNotifications(String[] keys, int trim) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DStaticMetadata.java1892 * Determine whether or not all the {@code keys} are available characteristics keys
1898 * @param keys collection of camera characteristics keys
1899 * @return whether or not all characteristics keys are available
1902 Collection<Key<?>> keys) {
1903 return mCharacteristics.getKeys().containsAll(keys);
1907 * Determine whether or not all the {@code keys} are available result keys
1916 * @param keys collectio
1901 areCharacteristicsKeysAvailable( Collection<Key<?>> keys) argument
1919 areResultKeysAvailable(Collection<CaptureResult.Key<?>> keys) argument
1937 areRequestKeysAvailable(Collection<CaptureRequest.Key<?>> keys) argument
1952 areKeysAvailable(Key<?>.... keys) argument
1970 areKeysAvailable(CaptureResult.Key<?>.... keys) argument
1989 areKeysAvailable(CaptureRequest.Key<?>.... keys) argument
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java1604 private int resolveOwningUserIdLocked(int userId, Set<String> keys, String name) { argument
1606 if (parentId != userId && keys.contains(name)) {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java89 "The sets don't match! That means the keys shouldn't match also");
432 private static <K, V> void removeFromMap(Map<K, V> map, List<K> keys) { argument
433 for (K key : keys) {
436 keys.clear();
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1733 String8 MediaPlayerService::AudioOutput::getParameters(const String8& keys) argument
1737 return mTrack->getParameters(keys);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1338 Spec[] keys = getGroupBounds().keys;
1339 for (int i = 0, N = keys.length; i < N; i++) {
1340 Interval span = min ? keys[i].span : keys[i].span.inverse();
1478 for (int i = 0; i < links.keys.length; i++) {
1479 Interval key = links.keys[i];
2284 K[] keys = (K[]) Array.newInstance(keyType, N);
2287 keys[i] = get(i).first;
2290 return new PackedMap<K, V>(keys, value
2311 public final K[] keys; field in class:GridLayout.PackedMap
2314 PackedMap(K[] keys, V[] values) argument
2325 createIndex(K[] keys) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp350 android_media_AudioSystem_getParameters(JNIEnv *env, jobject thiz, jstring keys) argument
352 const jchar* c_keys = env->GetStringCritical(keys, 0);
354 if (keys) {
356 env->GetStringLength(keys));
357 env->ReleaseStringCritical(keys, c_keys);
/frameworks/base/media/java/android/media/
H A DAudioSystem.java182 * param keys list of parameters
186 public static native String getParameters(String keys); argument
765 * can press another key (non-volume keys, too) to have it NOT be audible.
H A DMediaCodec.java143 The {@link MediaFormat#KEY_WIDTH} and {@link MediaFormat#KEY_HEIGHT} keys specify the size of the
147 You need to use the following keys to get the crop rectangle of raw output images from the
148 {@linkplain #getOutputFormat output format}. If these keys are not present, the video occupies the
298 ByteBuffer entries with keys "csd-0", "csd-1", etc. These keys are always included in the track
1905 String[] keys = null;
1910 keys = new String[formatMap.size()];
1923 keys[i] = "audio-hw-sync";
1926 keys[i] = entry.getKey();
1935 native_configure(keys, value
2011 native_configure( @ullable String[] keys, @Nullable Object[] values, @Nullable Surface surface, @Nullable MediaCrypto crypto, @Nullable IBinder descramblerBinder, @ConfigureFlag int flags) argument
3452 setParameters(@onNull String[] keys, @NonNull Object[] values) argument
[all...]

Completed in 4049 milliseconds

1234