HomeSort by relevance Sort by last modified time
    Searched full:keyvalue (Results 1 - 25 of 43) sorted by null

1 2

  /packages/inputmethods/OpenWnn/res/xml/
debug_tool_onevent.xml 22 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase001_onEvent()_Q" displayValue = "Q" keyValue = "Q" keyCode= ""/>
23 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase002_onEvent()_W" displayValue = "W" keyValue = "W" keyCode= ""/>
24 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase003_onEvent()_E" displayValue = "E" keyValue = "E" keyCode= ""/>
25 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase004_onEvent()_R" displayValue = "R" keyValue = "R" keyCode= ""/>
26 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase005_onEvent()_T" displayValue = "T" keyValue = "T" keyCode= ""/>
27 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase006_onEvent()_Y" displayValue = "Y" keyValue = "Y" keyCode= ""/>
28 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase007_onEvent()_U" displayValue = "U" keyValue = "U" keyCode= ""/>
29 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase008_onEvent()_I" displayValue = "I" keyValue = "I" keyCode= ""/>
30 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase009_onEvent()_O" displayValue = "O" keyValue = "O" keyCode= ""/>
31 <key targetTest = "OpenWnnEN_Test" testName = "EN_TestCase010_onEvent()_P" displayValue = "P" keyValue = "P" keyCode= ""/
    [all...]
  /external/chromium/chrome/browser/chromeos/
name_value_pairs_parser.cc 45 StringTokenizer keyvalue(pair, eq);
47 if (keyvalue.GetNext()) {
48 TrimString(keyvalue.token(), kQuoteChars, &key);
49 if (keyvalue.GetNext()) {
50 TrimString(keyvalue.token(), kQuoteChars, &value);
51 if (keyvalue.GetNext()) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CookieParser.js 51 WebInspector.CookieParser.KeyValue = function(key, value, position)
130 * @return {WebInspector.CookieParser.KeyValue}
147 var result = new WebInspector.CookieParser.KeyValue(keyValueMatch[1], keyValueMatch[2] && keyValueMatch[2].trim(), this._originalInputLength - this._input.length);
165 * @param {!WebInspector.CookieParser.KeyValue} keyValue
168 _addCookie: function(keyValue, type)
171 this._lastCookie.setSize(keyValue.position - this._lastCookiePosition);
174 this._lastCookie = typeof keyValue.value === "string" ? new WebInspector.Cookie(keyValue.key, keyValue.value, type)
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractKeyValue.java 21 * Abstract pair class to assist with creating KeyValue and MapEntry implementations.
30 public abstract class AbstractKeyValue <K,V> implements KeyValue<K, V> {
DefaultMapEntry.java 46 * Constructs a new entry from the specified KeyValue.
51 public DefaultMapEntry(final KeyValue<K, V> pair) {
KeyValue.java 30 public interface KeyValue <K,V> {
  /packages/apps/Browser/src/com/android/browser/
UploadHandler.java 129 String[] keyValue = p.split("=");
130 if (keyValue.length == 2) {
132 if (mediaSourceKey.equals(keyValue[0])) {
133 mediaSource = keyValue[1];
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CombinedInputOutput.java 108 final String keyValue[] = item.split("=");
109 if (2 != keyValue.length) {
112 attributes.put(keyValue[0], keyValue[1]);
  /libcore/luni/src/test/java/tests/api/java/util/
ListResourceBundleTest.java 57 String keyValue = null;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.cpp 76 PassRefPtr<IDBKeyRange> IDBKeyRange::only(ScriptExecutionContext* context, const ScriptValue& keyValue, ExceptionState& es)
79 RefPtr<IDBKey> key = scriptValueToIDBKey(&requestState, keyValue);
IDBCursor.cpp 170 void IDBCursor::continueFunction(ScriptExecutionContext* context, const ScriptValue& keyValue, ExceptionState& es)
173 RefPtr<IDBKey> key = keyValue.isUndefined() ? 0 : scriptValueToIDBKey(&requestState, keyValue);
IDBObjectStore.cpp 140 PassRefPtr<IDBRequest> IDBObjectStore::put(IDBDatabaseBackendInterface::PutMode putMode, PassRefPtr<IDBAny> source, ScriptState* state, ScriptValue& value, const ScriptValue& keyValue, ExceptionState& es)
144 RefPtr<IDBKey> key = keyValue.isUndefined() ? 0 : scriptValueToIDBKey(&requestState, keyValue);
  /external/chromium_org/third_party/openssl/openssl/crypto/krb5/
krb5_asn.h 167 ** keyvalue[1] OCTET STRING
173 ASN1_OCTET_STRING *keyvalue; member in struct:krb5_encryptionkey_st
krb5_asn.c 130 ASN1_EXP(KRB5_ENCKEY, keyvalue, ASN1_OCTET_STRING,1)
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
krb5_asn.h 167 ** keyvalue[1] OCTET STRING
173 ASN1_OCTET_STRING *keyvalue; member in struct:krb5_encryptionkey_st
  /external/openssl/crypto/krb5/
krb5_asn.h 167 ** keyvalue[1] OCTET STRING
173 ASN1_OCTET_STRING *keyvalue; member in struct:krb5_encryptionkey_st
krb5_asn.c 130 ASN1_EXP(KRB5_ENCKEY, keyvalue, ASN1_OCTET_STRING,1)
  /external/openssl/include/openssl/
krb5_asn.h 167 ** keyvalue[1] OCTET STRING
173 ASN1_OCTET_STRING *keyvalue; member in struct:krb5_encryptionkey_st
  /external/llvm/include/llvm/ADT/
StringMap.h 323 bool insert(MapEntryTy *KeyValue) {
324 unsigned BucketNo = LookupBucketFor(KeyValue->getKey());
331 Bucket = KeyValue;
389 void remove(MapEntryTy *KeyValue) {
390 RemoveKey(KeyValue);
  /external/llvm/utils/TableGen/
CodeGenMapTable.cpp 245 std::vector<Init*> KeyValue;
250 KeyValue.push_back(CurInstrVal);
255 // their KeyValue in RowInstrMap.
259 RowInstrMap[KeyValue].push_back(CurInstr);
314 std::vector<Init*> KeyValue;
316 // Construct KeyValue using KeyInstr's values for RowFields.
320 KeyValue.push_back(KeyInstrVal);
323 // Get all the instructions that share the same KeyValue as the KeyInstr
327 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue];
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.h 35 uint32 keyvalue[4]; // Upper part of word is hash, lower is indirect prob member in struct:cld::__anon13037
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/
common.js 375 var keyValue = pairs[key_ix].split('=');
376 searchVars[unescape(keyValue[0])] =
377 keyValue.length > 1 ? unescape(keyValue[1]) : '';
  /external/apache-http/src/org/apache/commons/logging/impl/
WeakHashtable.java 209 Object keyValue = referenceKey.getValue();
210 if (keyValue != null) {
211 unreferencedKeys.add(keyValue);
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 152 //Extract KeyValue Pair Info, till terminator occurs.
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 152 * KeyValue is a simple class that stores a pair of strings representing
155 private class KeyValue {
159 public KeyValue(String key, String value) {
226 KeyValue[] pairs;
228 public Update(String eventName, KeyValue[] pairs) {
240 for (KeyValue pair : pairs) {
    [all...]

Completed in 540 milliseconds

1 2