/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
xmlreader.py | 307 return self._attrs.keys() 310 return self._attrs.keys() 318 def keys(self): member in class:AttributesImpl 319 return self._attrs.keys()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MapConstraintsTest.java | 239 assertEquals(multimap.keys(), constrained.keys()); 414 assertEquals(multimap.keys(), constrained.keys());
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/ |
InputManager.java | 86 private final KeyInput keys;
field in class:InputManager 126 * @param keys
131 public InputManager(MouseInput mouse, KeyInput keys, JoyInput joystick, TouchInput touch) {
132 if (keys == null || mouse == null) {
136 this.keys = keys;
141 keys.setInputListener(this);
151 firstTime = keys.getInputTimeNanos();
619 * Called to reset pressed keys or buttons when focus is restored.
835 long currentTime = keys.getInputTimeNanos(); [all...] |
/frameworks/base/services/java/com/android/server/net/ |
NetworkStatsCollection.java | 297 ArrayList<Key> keys = keysByIdent.get(key.ident); local 298 if (keys == null) { 299 keys = Lists.newArrayList(); 300 keysByIdent.put(key.ident, keys); 302 keys.add(key); 310 final ArrayList<Key> keys = keysByIdent.get(ident); local 313 out.writeInt(keys.size()); 314 for (Key key : keys) { 468 final ArrayList<Key> keys = Lists.newArrayList(); local 469 keys.addAll(mStats.keySet()) [all...] |
/libcore/luni/src/main/java/java/util/ |
ResourceBundle.java | 628 Enumeration<String> keys = getKeys(); local 629 while (keys.hasMoreElements()) { 630 ret.add(keys.nextElement()); [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
AbstractMapTest.java | 293 Vector keys = new Vector(); field in class:AbstractMapTest.AMT 310 Object k = keys.elementAt(index); 342 keys.add(k);
|
WeakHashMapTest.java | 172 List<Object> keys = Arrays.asList(KEY_ARRAY); local 182 assertTrue("Assert 1: Invalid map entry key returned", keys 191 keys = values = null; 245 List keys = Arrays.asList(keyArray); local 253 assertTrue("Invalid map entry returned--bad key", keys 258 keys = null; 349 List keys = Arrays.asList(keyArray); local 353 assertEquals("Incorrect number of keys returned,", 100, keySet.size()); 357 assertTrue("Invalid map entry returned--bad key", keys 360 keys = null 413 List keys = Arrays.asList(keyArray); local [all...] |
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/ |
PreferencesTest.java | 80 assertEquals(0, p.keys().length); 118 assertEquals(0, p.keys().length); 355 public String[] keys() throws BackingStoreException { method in class:PreferencesTest.MockPreferences
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemApplyTemplates.java | 215 final Vector keys = (m_sortElems == null) local 220 if (null != keys) 221 sourceNodes = sortNodes(xctxt, keys, sourceNodes);
|
ElemForEach.java | 286 * @param keys Vector of sort keyx 294 XPathContext xctxt, Vector keys, DTMIterator sourceNodes) 305 sorter.sort(sourceNodes, keys, xctxt); 336 final Vector keys = (m_sortElems == null) local 341 if (null != keys) 342 sourceNodes = sortNodes(xctxt, keys, sourceNodes);
|
/external/chromium_org/chrome/test/chromedriver/ |
util.cc | 33 string16 keys; local 37 return Status(kUnknownError, "keys should be a string"); 44 keys.append(keys_list_part); 46 *dest = keys; 57 string16 keys; local 58 Status status = FlattenStringArray(key_list, &keys); 64 keys, release_modifiers, &sticky_modifiers_tmp, &events);
|
/external/chromium_org/content/child/indexed_db/ |
indexed_db_dispatcher.cc | 607 const std::vector<IndexedDBKey>& keys = p.keys; local 616 cursor->SetPrefetchData(keys, primary_keys, values);
|
/external/chromium_org/content/renderer/webcrypto/ |
webcrypto_impl_unittest.cc | 568 // keys). 710 // Generate a small sample of AES keys. 711 std::vector<blink::WebArrayBuffer> keys; local 721 keys.push_back(key_bytes); 724 // estimate of whether the generated keys appear random. 725 EXPECT_FALSE(CopiesExist(keys)); 739 // Generate a small sample of HMAC keys. 740 std::vector<blink::WebArrayBuffer> keys; local 752 // estimate of whether the generated keys appear random. 753 EXPECT_FALSE(CopiesExist(keys)); [all...] |
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/ |
ps_instance.cc | 464 pp::VarArray keys = dictionary.GetKeys(); local 465 if (keys.GetLength() == 1) { 466 pp::Var key = keys.Get(0);
|
/external/chromium_org/sync/internal_api/ |
sync_encryption_handler_impl_unittest.cc | 66 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 67 keys.Add()->assign(encryption_key); 68 return keys; 520 // Receive an old nigori with old encryption keys and encrypted types. We should 539 // Set up the current encryption state (containing both keys and encrypt 564 // Has an old set of keys, and no encrypted types. 584 // The cryptographer should be able to decrypt both sets of keys and still 610 // Passing no keys should do nothing. 622 // Build a set of keystore keys. 626 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 1993 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 2047 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 2080 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 2126 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 2166 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 2221 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local 2265 google::protobuf::RepeatedPtrField<google::protobuf::string> keys; local [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
HashMap.h | 83 // iterators iterate over pairs of keys and values 89 HashMapKeysProxy& keys() { return static_cast<HashMapKeysProxy&>(*this); } function in class:WTF::HashMap 90 const HashMapKeysProxy& keys() const { return static_cast<const HashMapKeysProxy&>(*this); } function in class:WTF::HashMap 146 typedef typename HashMapType::iterator::Keys iterator; 147 typedef typename HashMapType::const_iterator::Keys const_iterator; 151 return HashMapType::begin().keys(); 156 return HashMapType::end().keys(); 161 return HashMapType::begin().keys(); 166 return HashMapType::end().keys(); 474 typedef typename HashMap<T, U, V, W, X>::const_iterator::Keys iterator [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/ |
ircbot.py | 253 Dictionary keys a and b are considered equal if and only if 261 self.canon_keys = {} # Canonical keys 296 def keys(self): member in class:IRCDict 297 return self.data.keys() 325 return self.userdict.keys() 329 return self.operdict.keys() 334 return self.voiceddict.keys()
|
/external/chromium_org/third_party/bintrees/bintrees/ |
treemixin.py | 64 * keys([reverse]) -> generator for keys of T, O(n) 72 slicing by keys 75 * keyslice(s, e) -> generator for keys of T for s <= key < e, O(n) 77 * T[s:e] -> TreeSlice object, with keys in range s <= key < e, O(n) 89 * TreeSlice[s1:e1] -> TreeSlice object, with keys in range s1 <= key < e1 97 * keys() -> generator for keys of T, O(n) 99 * __iter__ <==> keys() 127 * intersection(t1, t2, ...) -> Tree with keys *common* to all tree 205 def keys(self, reverse=False): member in class:TreeMixin [all...] |
/external/chromium_org/third_party/jinja2/ |
runtime.py | 104 `keys`, `values`, `items`, `iterkeys`, `itervalues`, `iteritems`, 214 keys = _all('keys') variable in class:Context
|
utils.py | 450 def keys(self): member in class:LRUCache 451 """Return a list of all keys ordered by most recent usage.""" 455 """Iterate over all keys in the cache dict, ordered by
|
/external/clang/tools/scan-view/ |
ScanView.py | 247 keys = {} 250 keys[k] = v 251 return keys 403 keys = self.load_report(report) 407 file = keys.get('FILE') 476 keys = self.load_report(report) variable in class:ScanViewRequestHandler.get_report_context.Context 478 c.title = keys.get('DESC','clang error (unrecognized') 485 """%(c.title, keys.get('FILE','<unknown>'), keys.get('LINE', '<unknown>'))
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableMultimap.java | 39 * An immutable {@link Multimap}. Does not permit null keys or values. 224 * of the {@code multimap.asMap()} view, with new keys and values following 225 * any existing keys and values. 239 * Specifies the ordering of the generated multimap's keys. 470 * Returns an immutable set of the distinct keys in this multimap. These keys 558 private transient ImmutableMultiset<K> keys; typedefs 561 * Returns a collection, which may contain duplicates, of all keys. The number 563 * mappings the key has in the multimap. Duplicate keys appear consecutively 567 public ImmutableMultiset<K> keys() { method [all...] |
Synchronized.java | 515 transient Multiset<K> keys; field in class:Synchronized.SynchronizedMultimap 658 public Multiset<K> keys() { method in class:Synchronized.SynchronizedMultimap 660 if (keys == null) { 661 keys = multiset(delegate().keys(), mutex); 663 return keys;
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableMultimap.java | 38 * An immutable {@link Multimap}. Does not permit null keys or values. 223 * of the {@code multimap.asMap()} view, with new keys and values following 224 * any existing keys and values. 238 * Specifies the ordering of the generated multimap's keys. 460 * Returns an immutable set of the distinct keys in this multimap. These keys 548 private transient ImmutableMultiset<K> keys; typedefs 551 * Returns a collection, which may contain duplicates, of all keys. The number 553 * mappings the key has in the multimap. Duplicate keys appear consecutively 557 public ImmutableMultiset<K> keys() { method [all...] |
Synchronized.java | 502 transient Multiset<K> keys; field in class:Synchronized.SynchronizedMultimap 645 public Multiset<K> keys() { method in class:Synchronized.SynchronizedMultimap 647 if (keys == null) { 648 keys = multiset(delegate().keys(), mutex); 650 return keys;
|