HomeSort by relevance Sort by last modified time
    Searched refs:key (Results 476 - 500 of 4983) sorted by null

<<11121314151617181920>>

  /external/quake/quake/src/QW/client/
gl_vidlinux_x11.c 167 int key; local
171 key = 0;
178 case XK_Page_Up: key = K_PGUP; break;
181 case XK_Page_Down: key = K_PGDN; break;
184 case XK_Home: key = K_HOME; break;
187 case XK_End: key = K_END; break;
190 case XK_Left: key = K_LEFTARROW; break;
193 case XK_Right: key = K_RIGHTARROW; break;
196 case XK_Down: key = K_DOWNARROW; break;
199 case XK_Up: key = K_UPARROW; break
297 int key; member in struct:__anon11565
    [all...]
menu.h 34 void M_Keydown (int key);
  /external/smali/util/src/main/java/ds/tree/
Visitor.java 41 * when it finds a node matching the key given to it.
43 * @param key The key that matched the node
47 public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node);
  /external/srec/srec/Semproc/src/
SymbolTable.c 79 ESR_ReturnCode ST_putKeyValue(SymbolTable* self, const LCHAR* key, const LCHAR* value)
85 if (self == NULL || key == NULL || value == NULL)
91 but if no old entry exists for this key then I need to create a new one */
92 rc = HashMapGet(self->hashmap, key, (void**) & buf);
97 /* copy the key */
98 MEMCHK(rc, LSTRLEN(key), MAX_SEMPROC_KEY);
99 LSTRCPY(symbol->key, key);
102 CHKLOG(rc, HashMapPut(self->hashmap, symbol->key, symbol->value));
149 ESR_ReturnCode ST_getKeyValue(SymbolTable* self, const LCHAR* key, LCHAR** value
    [all...]
  /external/v8/src/
splay-tree-inl.h 45 bool SplayTree<Config, Allocator>::Insert(const Key& key, Locator* locator) {
48 root_ = new Node(key, Config::NoValue());
50 // Splay on the key to move the last node on the search path
51 // for the key to the root of the tree.
52 Splay(key);
53 // Ignore repeated insertions with the same key.
54 int cmp = Config::Compare(key, root_->key_);
60 Node* node = new Node(key, Config::NoValue());
84 bool SplayTree<Config, Allocator>::FindInternal(const Key& key)
    [all...]
  /external/webkit/LayoutTests/http/tests/resources/
post-and-verify.cgi 14 ($key, $value) = split(/=/, $element);
15 $values{$key} = $value;
  /external/webkit/Source/WebCore/css/
WebKitCSSKeyframesRule.idl 41 void deleteRule(in DOMString key);
42 WebKitCSSKeyframeRule findRule(in DOMString key);
  /external/webkit/Source/WebCore/html/
BaseButtonInputType.cpp 49 const String& key = event->keyIdentifier(); local
50 if (key == "U+0020") {
73 const String& key = event->keyIdentifier(); local
74 if (key != "U+0020")
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageMap.h 45 String key(unsigned index);
47 PassRefPtr<StorageMap> setItem(const String& key, const String& value, String& oldValue, bool& quota_exception);
50 bool contains(const String& key) const;
52 void importItem(const String& key, const String& value);
  /external/webkit/Source/WebKit/chromium/public/
WebIDBCursor.h 48 virtual WebIDBKey key() const function in class:WebKit::WebIDBCursor
62 WebIDBKey key; local
63 value(serializedScriptValue, key);
66 virtual void value(WebSerializedScriptValue& serializedScriptValue, WebIDBKey& key) const
  /external/webkit/Source/WebKit/chromium/src/
WebIDBCursorImpl.cpp 55 WebIDBKey WebIDBCursorImpl::key() const function in class:WebKit::WebIDBCursorImpl
57 return m_idbCursorBackend->key();
75 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key, WebIDBCallbacks* callbacks, WebExceptionCode& ec)
77 m_idbCursorBackend->continueFunction(key, IDBCallbacksProxy::create(callbacks), ec);
WebStorageAreaImpl.h 46 virtual WebString key(unsigned index);
47 virtual WebString getItem(const WebString& key);
48 virtual void setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*);
49 virtual void removeItem(const WebString& key, const WebURL& url, WebString& oldValue);
  /external/webkit/Source/WebKit/win/
WebLocalizableStrings.cpp 165 static CFStringRef copyLocalizedStringFromBundle(WebLocalizableStringsBundle* stringsBundle, const String& key)
173 RetainPtr<CFStringRef> keyString(AdoptCF, key.createCFString());
176 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key);
180 static LocalizedString* findCachedString(WebLocalizableStringsBundle* stringsBundle, const String& key)
184 return mainBundleLocStrings().get(key);
189 return frameworkLocStrings().get(key);
195 static void cacheString(WebLocalizableStringsBundle* stringsBundle, const String& key, LocalizedString* value)
199 mainBundleLocStrings().set(key, value);
204 frameworkLocStrings().set(key, value);
207 static const LocalizedString& localizedString(WebLocalizableStringsBundle* stringsBundle, const String& key)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKDatabaseManager.cpp 45 static WebString* key = WebString::create(WebDatabaseManagerProxy::originKey()).releaseRef(); local
46 return toAPI(key);
51 static WebString* key = WebString::create(WebDatabaseManagerProxy::originQuotaKey()).releaseRef(); local
52 return toAPI(key);
57 static WebString* key = WebString::create(WebDatabaseManagerProxy::originUsageKey()).releaseRef(); local
58 return toAPI(key);
63 static WebString* key = WebString::create(WebDatabaseManagerProxy::databaseDetailsKey()).releaseRef(); local
64 return toAPI(key);
69 static WebString* key = WebString::create(WebDatabaseManagerProxy::databaseDetailsNameKey()).releaseRef(); local
70 return toAPI(key);
75 static WebString* key = WebString::create(WebDatabaseManagerProxy::databaseDetailsDisplayNameKey()).releaseRef(); local
81 static WebString* key = WebString::create(WebDatabaseManagerProxy::databaseDetailsExpectedUsageKey()).releaseRef(); local
87 static WebString* key = WebString::create(WebDatabaseManagerProxy::databaseDetailsCurrentUsageKey()).releaseRef(); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_none.c 26 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_peap_common.h 18 void peap_prfplus(int version, const u8 *key, size_t key_len,
  /external/wpa_supplicant_8/src/crypto/
crypto_none.c 21 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
sha1.h 14 int hmac_sha1_vector(const u8 *key, size_t key_len, size_t num_elem,
16 int hmac_sha1(const u8 *key, size_t key_len, const u8 *data, size_t data_len,
18 int sha1_prf(const u8 *key, size_t key_len, const char *label,
20 int sha1_t_prf(const u8 *key, size_t key_len, const char *label,
  /external/wpa_supplicant_8/src/eap_common/
eap_peap_common.h 12 int peap_prfplus(int version, const u8 *key, size_t key_len,
  /frameworks/av/media/libstagefright/rtsp/
ASessionDescription.cpp 97 AString key, value; local
101 key = line;
103 key.setTo(line, 0, colonPos);
105 if (key == "a=fmtp" || key == "a=rtpmap"
106 || key == "a=framesize") {
112 key.setTo(line, 0, spacePos);
120 key.trim();
123 ALOGV("adding '%s' => '%s'", key.c_str(), value.c_str());
125 mTracks.editItemAt(mTracks.size() - 1).add(key, value)
141 AString key, value; local
214 char key[20]; local
231 char key[20]; local
    [all...]
  /frameworks/base/libs/hwui/
Program.h 208 * Computes the unique key identifying this program.
210 programid key() const {
211 programid key = 0;
212 if (hasTexture) key |= PROGRAM_KEY_TEXTURE;
213 if (hasAlpha8Texture) key |= PROGRAM_KEY_A8_TEXTURE;
215 key |= PROGRAM_KEY_BITMAP;
217 key |= PROGRAM_KEY_BITMAP_NPOT;
218 key |= getEnumForWrap(bitmapWrapS) << PROGRAM_BITMAP_WRAPS_SHIFT;
219 key |= getEnumForWrap(bitmapWrapT) << PROGRAM_BITMAP_WRAPT_SHIFT;
222 if (hasGradient) key |= PROGRAM_KEY_GRADIENT
    [all...]
  /libcore/luni/src/main/java/java/util/
Map.java 23 * in which each key is mapped to a single value. The class of the objects
29 * the key/value pairs.
34 * {@code Map.Entry} is a key/value mapping contained in a {@code Map}.
40 * same key and value.
51 * Returns the key.
53 * @return the key
95 * Returns whether this {@code Map} contains the specified key.
97 * @param key
98 * the key to search for.
99 * @return {@code true} if this map contains the specified key,
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
UserDataHandler.java 16 * When associating an object to a key on a node using
59 * @param key Specifies the key for which this handler is being called.
67 String key,
  /packages/apps/KeyChain/support/src/com/android/keychain/tests/support/
IKeyChainServiceTestSupport.aidl 35 boolean keystorePut(String key, in byte[] value);
36 boolean keystoreImportKey(String key, in byte[] value);

Completed in 855 milliseconds

<<11121314151617181920>>