Searched refs:key (Results 126 - 150 of 578) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java69 String key = (String) vars[i];
71 if ("simultaneousTween".equals(key)) {
73 } else if ("ease".equals(key)) {
75 } else if ("onUpdate".equals(key) || "onUpdateListener".equals(key)) {
77 } else if ("onComplete".equals(key) || "onCompleteListener".equals(key)) {
79 } else if ("delay".equals(key)) {
81 } else if ("syncWith".equals(key)) {
84 props.add(PropertyValuesHolder.ofFloat(key,
[all...]
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java456 * Settings class constructor from a key=value; pairs formatted string. The string is
466 String key = st.nextToken();
467 if (!key.equals("Equalizer")) {
469 "invalid settings for Equalizer: " + key);
472 key = st.nextToken();
473 if (!key.equals("curPreset")) {
474 throw new IllegalArgumentException("invalid key name: " + key);
477 key = st.nextToken();
478 if (!key
[all...]
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java270 * @deprecated Use {@link #cancelNotification(String key)}
299 * @param key Notification to dismiss from {@link StatusBarNotification#getKey()}.
301 public final void cancelNotification(String key) { argument
305 new String[] {key});
396 * Request one or more notifications by key. Useful if you have been keeping track of
402 * same order as the key list.
409 * Request one or more notifications by key. Useful if you have been keeping track of
418 * same order as the key list.
724 * Returns the key of the notification this Ranking applies to.
771 private void populate(String key, in argument
816 getRanking(String key, Ranking outRanking) argument
823 getRank(String key) argument
833 isAmbient(String key) argument
842 isIntercepted(String key) argument
851 getVisibilityOverride(String key) argument
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DParsedMessage.h25 // key/value pairs making up the headers and an optional body/content.
40 static bool GetAttribute(const char *s, const char *key, AString *value);
43 const char *s, const char *key, int32_t *value);
/frameworks/base/core/java/android/app/backup/
H A DBackupDataInputStream.java29 * {@link BackupDataInput}. The entity's key string and total data size are available
40 String key; field in class:BackupDataInputStream
98 * Report the key string associated with this entity within the backup data set.
100 * @return The key string for this entity, equivalent to calling
104 return this.key;
H A DBackupDataOutput.java31 * as a set of "entities," key/value pairs in which each binary data record "value" is
32 * named with a string "key."
36 * onBackup()} method first writes an "entity header" that supplies the key string for the record
42 * Entity key strings are considered to be unique within a given application's backup
43 * data set. If a backup agent writes a new entity under an existing key string, its value will
46 * existing record's key, but supplying a negative <code>dataSize</code> parameter.
82 * @param key A string key that uniquely identifies the data record within the application.
85 * of -1 indicates that the record under this key should be deleted.
89 public int writeEntityHeader(String key, in argument
132 writeEntityHeader_native(long mBackupWriter, String key, int dataSize) argument
[all...]
H A DFileBackupHelper.java96 String key = data.getKey();
97 if (isKeyInList(key, mFiles)) {
98 File f = new File(mFilesDir, key);
/frameworks/base/drm/java/android/drm/
H A DDrmEvent.java39 * The key that is used in the <code>attributes</code> HashMap to pass the return status.
43 * The key that is used in the <code>attributes</code> HashMap to pass the
120 * Retrieves the attribute associated with the specified key.
123 * the key is found.
125 public Object getAttribute(String key) { argument
126 return mAttributes.get(key);
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DSyncOperationTest.java122 assertEquals(op1.key, op2.key);
123 assertNotSame(op1.key, op3.key);
124 assertNotSame(op1.key, op4.key);
125 assertNotSame(op1.key, op5.key);
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DTest.java24 void report(String key, float value) {
25 mBundle.putFloat(key, value);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DILearning_StochasticLinearRanker.aidl33 boolean SetModelParameter(in String key, in String value);
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.h52 // setBlob attempts to insert a new key/value blob pair into the cache.
55 void setBlob(const void* key, EGLsizeiANDROID keySize, const void* value,
58 // getBlob attempts to retrieve the value blob associated with a given key
61 EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
78 // key/value blob pairs. If the BlobCache object has not yet been created,
99 // mBlobCache is the cache in which the key/value blob pairs are stored. It
112 // pending. Each time a key/value pair is inserted into the cache via
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConfigStore.java103 * (key, value) pairs for a given network are grouped together and can
104 * be in any order. A EOS at the end of a set of (key, value) pairs
105 * indicates that the next set of (key, value) pairs are for a new
107 * ID_KEY in the (key, value) pairs, the data is discarded.
141 /* configured networks with network id as the key */
615 // directly by the key or networkId
672 // directly by the key or networkId
734 * Get the Wificonfiguration for this key
737 WifiConfiguration getWifiConfiguration(String key) { argument
738 if (key
1529 readNetworkVariablesFromSupplicantFile(String key) argument
1582 readNetworkVariableFromSupplicantFile(String ssid, String key) argument
3519 enterpriseConfigKeyShouldBeQuoted(String key) argument
3866 isHardwareBackedKey(PrivateKey key) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DSession.cpp55 const KeyMap::value_type& key = keys.valueAt(i); local
56 mKeyMap.add(keyId, key);
76 const Vector<uint8_t>& key = mKeyMap.valueFor(keyIdVector); local
79 key, iv,
/frameworks/av/media/libstagefright/webm/
H A DWebmFrame.h33 WebmFrame(int type, bool key, uint64_t absTimecode, MediaBuffer *buf);
/frameworks/base/core/java/com/android/internal/util/
H A DIndentingPrintWriter.java67 public void printPair(String key, Object value) { argument
68 print(key + "=" + String.valueOf(value) + " ");
71 public void printHexPair(String key, int value) { argument
72 print(key + "=0x" + Integer.toHexString(value) + " ");
/frameworks/support/v4/java/android/support/v4/util/
H A DArrayMap.java24 * ArrayMap is a generic key->value mapping data structure that is
29 * codes for each item, and an Object array of the key/value pairs. This allows it to
85 protected int colIndexOfKey(Object key) {
86 return indexOfKey(key);
100 protected void colPut(K key, V value) {
101 put(key, value);
126 * @return Returns true if this array map contains a key for every entry
134 * Perform a {@link #put(Object, Object)} of all key/value pairs in <var>map</var>
/frameworks/av/include/drm/
H A DDrmInfo.h52 * Iterator for key
129 * Adds optional information as <key, value> pair to this instance
131 * @param[in] key Key to add
135 status_t put(const String8& key, const String8& value);
138 * Retrieves the value of given key
140 * @param key Key whose value to be retrieved
143 String8 get(const String8& key) const;
160 * Returns index of the given key
164 int indexOfKey(const String8& key) const;
/frameworks/av/include/media/
H A DMetadata.h111 // @param key Is the metadata Id.
115 bool appendBool(Type key, bool val);
116 bool appendInt32(Type key, int32_t val);
123 // Checks the key is valid and not already present.
124 bool checkKey(Type key);
/frameworks/av/media/libstagefright/wifi-display/
H A DParameters.cpp77 AString key = name; local
78 key.tolower();
80 ssize_t index = mDict.indexOfKey(key);
/frameworks/base/cmds/backup/
H A Dbackup.cpp77 String8 key; local
79 err = reader.ReadEntityHeader(&key, &dataSize);
81 printf(" entity: %s (%d bytes)\n", key.string(), dataSize);
/frameworks/base/core/java/com/android/internal/net/
H A DLegacyVpnInfo.java41 public String key; field in class:LegacyVpnInfo
52 out.writeString(key);
62 info.key = in.readString();
/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dbrightness.c41 void brightness_setvalue(const char* key, const char* value, void* user_data) { argument
42 if (strcmp(key, "brightness") == 0)
45 LOGE("Unknown parameter: %s!", key);
H A Dcontrast.c36 void contrast_setvalue(const char* key, const char* value, void* user_data) { argument
37 if (strcmp(key, "contrast") == 0)
40 LOGE("Unknown parameter: %s!", key);
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapObexAuthenticator.java39 public synchronized void setReply(String key) { argument
40 Log.d(TAG, "setReply key=" + key);
42 mSessionKey = key;

Completed in 9330 milliseconds

1234567891011>>