HomeSort by relevance Sort by last modified time
    Searched defs:keys (Results 276 - 300 of 2356) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/drm/src/android/drm/cts/
DrmInfoTest.java 84 Iterator<String> keys = attributes.keySet().iterator(); local
85 while (keys.hasNext()) {
86 final String key = (String) keys.next();
90 // info object must have all the keys that attributes does.
92 while (keys.hasNext()) {
93 final String key = (String) keys.next();
97 // Attributes object must have all the keys that info does.
  /cts/tests/tests/media/src/android/media/cts/
NdkMediaCodec.java 223 String keys[] = new String[] { local
227 for (String key : keys) {
  /developers/build/prebuilts/gradle/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
ProvisioningValuesLoader.java 135 Set<String> keys = new HashSet<>(values.keySet()); local
136 for (String key : keys) {
  /developers/samples/android/admin/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
ProvisioningValuesLoader.java 135 Set<String> keys = new HashSet<>(values.keySet()); local
136 for (String key : keys) {
  /development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/
ProvisioningValuesLoader.java 141 Set<String>keys = new HashSet(values.keySet()); local
142 for (String key : keys) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
collections.py 28 # An inherited dict maps keys to values.
33 # The internal self.__map dict maps keys to links in a doubly linked list.
105 def keys(self): member in class:OrderedDict
106 'od.keys() -> list of keys in od'
118 'od.iterkeys() -> an iterator over the keys in od'
198 '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S.
223 "od.viewkeys() -> a set-like object providing a view on od's keys"
271 raise ValueError('Got unexpected field names: %r' % kwds.keys())
397 or multiset. Elements are stored as dictionary keys and their counts
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/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()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ConfigParser.py 29 keys must be strings, the values must be appropriate for %()s string
243 return self._sections.keys()
275 return opts.keys()
570 def keys(self): member in class:_Chainmap
589 optional argument `raw' is true. Values for interpolation keys are
639 options = d.keys()
collections.py 27 # An inherited dict maps keys to values.
32 # The internal self.__map dict maps keys to links in a doubly linked list.
103 def keys(self): member in class:OrderedDict
104 'od.keys() -> list of keys in od'
116 'od.iterkeys() -> an iterator over the keys in od'
196 '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S.
221 "od.viewkeys() -> a set-like object providing a view on od's keys"
319 raise ValueError('Got unexpected field names: %%r' %% kwds.keys())
357 or multiset. Elements are stored as dictionary keys and their counts
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
message.py 326 def keys(self):
545 Parameter keys are always compared case insensitively. The return
324 def keys(self): member in class:Message
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
mapping_tests.py 53 knownkey = self.other.keys()[0]
77 # keys(), items(), iterkeys() ...
83 check_iterandlist(d.iterkeys(), d.keys(), self.reference.keys())
84 check_iterandlist(iter(d), d.keys(), self.reference.keys())
101 for key in self.reference.keys():
147 self.assertEqual(d.keys(), [])
149 self.assertIn(self.inmapping.keys()[0], d.keys())
204 def keys(self): member in class:BasicTestMappingProtocol.test_update.SimpleUserDict
220 def keys(self): member in class:BasicTestMappingProtocol.test_update.FailingUserDict
227 def keys(self): member in class:BasicTestMappingProtocol.test_update.FailingUserDict
244 def keys(self): member in class:BasicTestMappingProtocol.test_update.FailingUserDict
427 def keys(self): member in class:TestMappingProtocol.test_update.SimpleUserDict
    [all...]
test_cfgparser.py 16 def keys(self): member in class:SortedDict
17 result = self.data.keys()
27 def iterkeys(self): return iter(self.keys())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 291 ## A dict which can access its keys and/or values orderly
293 # The class implements a new kind of dict which its keys or values can be
295 # by making use of an internal list to keep a copy of keys.
366 ## Return a copy of keys
368 def keys(self): member in class:Sdict
369 Keys = []
371 Keys.append(Key)
372 return Keys
395 ## Keys interation support
398 return iter(self.keys())
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
OutputProperties.java 570 * Copy the keys and values from the source to this object. This will
583 * Copy the keys and values from the source to this object. This will
595 Enumeration keys = src.keys(); local
597 while (keys.hasMoreElements())
599 String key = (String) keys.nextElement();
624 * Copy the keys and values from the source to this object. This will
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 199 Enumeration keys = entities.getKeys(); local
200 while (keys.hasMoreElements()){
201 String name = (String) keys.nextElement();
Encodings.java 339 Enumeration keys = props.keys(); local
342 String javaName = (String) keys.nextElement();
OutputPropertiesFactory.java 49 * Other constants defined in this class are the non-standard property keys
51 * that is used to create or configure a serializer. Here are the non-standard keys:
114 // Some special Xalan keys.
442 Enumeration keys = ((Properties) props.clone()).keys(); local
443 while (keys.hasMoreElements())
445 String key = (String) keys.nextElement();
  /external/autotest/client/site_tests/hardware_Keyboard/src/
evtest.c 52 char *keys[KEY_MAX + 1] = { variable
295 [EV_SYN] = events, [EV_KEY] = keys,
313 if (keys[i] && 0 == strcmp(keys[i], name))
324 int state = 0; // assume keys are up.
504 /* number of keys supported by this event */
544 printf(" -n Show number of keys supported by eventX\n");
  /external/boringssl/src/fipstools/
cavp_tdes_test.cc 58 // If it is not, the keys are concatenated in a single attribute "KEYs".
89 std::vector<uint8_t> keys, key1, key2, key3, iv, in, result; local
94 (num_keys == 0 && !t->GetBytes(&keys, "KEYs")) ||
112 key.insert(key.end(), keys.begin(), keys.end());
113 key.insert(key.end(), keys.begin(), keys.end());
114 key.insert(key.end(), keys.begin(), keys.end())
    [all...]
  /external/clang/test/CodeGen/
designated-initializers.c 166 int *keys; member in struct:S
176 .keys = 0,
  /external/clang/tools/scan-view/share/
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/emma/core/java12/com/vladium/util/
Property.java 350 * Overrides Properties.keys () [this is used for debug logging only]
352 public Enumeration keys () method in class:Property.FilePropertyLookup
356 return m_contents.keys ();
437 * Overrides Properties.keys () [this is used for debug logging only]
439 public synchronized Enumeration keys () method in class:Property.SystemPropertyLookup
470 return _propertyNames.keys ();
522 * Overrides Properties.keys () [this is used for debug logging only]
524 public synchronized Enumeration keys () method in class:Property.SystemRedirectsLookup
538 return _propertyNames.keys ();
  /external/fonttools/Lib/fontTools/ttLib/
__init__.py 198 tags = list(self.keys())
240 tables = list(self.keys())
355 def keys(self): member in class:TTFont
356 keys = list(self.tables.keys())
358 for key in list(self.reader.keys()):
359 if key not in keys:
360 keys.append(key)
362 if "GlyphOrder" in keys:
363 keys.remove("GlyphOrder"
679 def keys(self): member in class:_TTGlyphSet
    [all...]
  /external/google-breakpad/src/processor/
static_map_unittest.cc 68 // Keys:
69 Key* keys = reinterpret_cast<Key*>(address); local
76 keys[index] = iter->first;
129 KeyType* keys = reinterpret_cast<KeyType*>( local
131 // Set keys in non-increasing order.
132 keys[0] = 10;
133 keys[1] = 7;

Completed in 641 milliseconds

<<11121314151617181920>>