HomeSort by relevance Sort by last modified time
    Searched defs:Keys (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/autotest/client/site_tests/desktopui_SonicExtension/extension_pages/
web_elements.py 10 from selenium.webdriver.common.keys import Keys
121 self._element.send_keys(Keys.SPACE)
124 self._element.send_keys(Keys.SPACE)
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 45 private Hashtable Keys = new Hashtable();
63 if (Keys.containsKey(alias)) {
64 return (Key) Keys.get(alias);
95 Keys.put(alias, key);
115 Keys.put(alias, keyK);
130 if (Keys.containsKey(alias)) {
131 Keys.remove(alias);
145 if (Keys.containsKey(alias)) {
155 return (Keys.size() + Cert.size());
159 if (Keys.containsKey(alias))
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 47 private Hashtable<String, Object> Keys = new Hashtable<String, Object>();
65 if (Keys.containsKey(alias)) {
66 return (Key) Keys.get(alias);
97 Keys.put(alias, key);
117 Keys.put(alias, keyK);
132 if (Keys.containsKey(alias)) {
133 Keys.remove(alias);
147 if (Keys.containsKey(alias)) {
157 return (Keys.size() + Cert.size());
161 if (Keys.containsKey(alias))
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
IndicatorIconController.java 28 import com.android.camera.settings.Keys;
179 Keys.KEY_VIDEOCAMERA_FLASH_MODE, mFlashIndicator,
184 Keys.KEY_HDR_PLUS_FLASH_MODE, mFlashIndicator,
188 Keys.KEY_FLASH_MODE, mFlashIndicator,
206 Keys.KEY_CAMERA_HDR_PLUS, mHdrIndicator,
211 Keys.KEY_CAMERA_HDR, mHdrIndicator,
230 Keys.KEY_CAMERA_PANO_ORIENTATION, mPanoIndicator,
258 mController.getCameraScope(), Keys.KEY_EXPOSURE);
287 Keys.KEY_COUNTDOWN_DURATION, mCountdownTimerIndicator,
328 if (key.equals(Keys.KEY_FLASH_MODE))
    [all...]
  /external/lzma/CPP/7zip/Crypto/
7zAes.h 43 CObjectVector<CKeyInfo> Keys;
  /external/autotest/server/cros/ap_configurators/
belkinF9K_ap_configurator.py 12 from selenium.webdriver.common.keys import Keys
48 body.send_keys(Keys.CONTROL + 't')
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 178 SmallVector<const Table::MapEntryTy *, 32> Keys;
181 Keys.push_back(&*I);
182 llvm::array_pod_sort(Keys.begin(), Keys.end(), compareEntry);
185 for (unsigned I = 0, E = Keys.size(); I != E; ++I)
186 llvm::errs() << Keys[I]->getKey() << " = " << Keys[I]->second << '\n';
188 llvm::errs() << "[stats]\n" << "num-entries = " << Keys.size() << '\n';
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 48 /// An Hashtable-backed dictionary that enumerates Keys and Values in
206 ArrayList keys = _hashList._insertionOrderList;
207 for (int i = 0; i < keys.Count; i++)
213 result.Append(keys[i]);
432 public ICollection Keys
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_abs_send_time.cc 59 std::vector<K> Keys(const std::map<K, V>& map) {
60 std::vector<K> keys; local
61 keys.reserve(map.size());
64 keys.push_back(it->first);
66 return keys;
377 observer_->OnReceiveBitrateChanged(Keys(ssrcs_), target_bitrate);
401 *ssrcs = Keys(ssrcs_);
  /packages/apps/Camera2/src/com/android/camera/settings/
Keys.java 26 * Keys is a class for storing SharedPreferences keys and configuring
34 public class Keys {
86 * Set some number of defaults for the defined keys.
131 if (!settingsManager.isSet(SettingsManager.SCOPE_GLOBAL, Keys.KEY_VIDEO_QUALITY_BACK)) {
133 Keys.KEY_VIDEO_QUALITY_BACK);
139 if (!settingsManager.isSet(SettingsManager.SCOPE_GLOBAL, Keys.KEY_VIDEO_QUALITY_FRONT)) {
141 Keys.KEY_VIDEO_QUALITY_FRONT);
185 /** Helper functions for some defined keys. */
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
ArrayMap.java 26 /** An ordered or unordered map of objects. This implementation uses arrays to store the keys and values, which means
28 * implementation, but may be acceptable for small maps and has the benefits that keys and values can be accessed by index, which
33 public K[] keys; field in class:ArrayMap
40 private Keys keysIter1, keysIter2;
57 keys = (K[])new Object[capacity];
61 /** Creates a new map with {@link #keys} and {@link #values} of the specified type.
67 keys = (K[])ArrayReflection.newInstance(keyArrayType, capacity);
71 /** Creates an ordered map with {@link #keys} and {@link #values} of the specified type and a capacity of 16. */
80 this(array.ordered, array.size, array.keys.getClass().getComponentType(), array.values.getClass().getComponentType());
82 System.arraycopy(array.keys, 0, keys, 0, size);
128 Object[] keys = this.keys; local
202 K[] keys = this.keys; local
229 Object[] keys = this.keys; local
253 Object[] keys = this.keys; local
297 Object[] keys = this.keys; local
331 K[] keys = this.keys; local
402 K[] keys = this.keys; local
500 public Keys<K> keys () { method in class:ArrayMap
    [all...]
IdentityMap.java 24 /** An unordered map that uses identity comparison for keys. This implementation is a cuckoo hash map using 3 hashes, random
25 * walking, and a small stash for problematic keys. Null keys are not allowed. Null values are allowed. No allocation is done
50 private Keys keys1, keys2;
98 // Check for existing keys.
159 /** Skips checks for existing keys. */
198 // Push keys until an empty bucket is found.
616 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each time
618 public Keys<K> keys () { method in class:IdentityMap
    [all...]
IntFloatMap.java 24 /** An unordered map where the keys are ints and values are floats. This implementation is a cuckoo hash map using 3 hashes, random
25 * walking, and a small stash for problematic keys. Null keys are not allowed. No allocation is done except when growing the table
53 private Keys keys1, keys2;
111 // Check for existing keys.
171 /** Skips checks for existing keys. */
215 // Push keys until an empty bucket is found.
659 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each time
661 public Keys keys () { method in class:IntFloatMap
    [all...]
IntIntMap.java 24 /** An unordered map where the keys and values are ints. This implementation is a cuckoo hash map using 3 hashes, random walking,
25 * and a small stash for problematic keys. No allocation is done except when growing the table size. <br>
51 private Keys keys1, keys2;
109 // Check for existing keys.
169 /** Skips checks for existing keys. */
213 // Push keys until an empty bucket is found.
645 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each time
647 public Keys keys () { method in class:IntIntMap
649 keys1 = new Keys(this)
    [all...]
IntMap.java 24 /** An unordered map that uses int keys. This implementation is a cuckoo hash map using 3 hashes, random walking, and a small stash
25 * for problematic keys. Null values are allowed. No allocation is done except when growing the table size. <br>
52 private Keys keys1, keys2;
111 // Check for existing keys.
176 /** Skips checks for existing keys. */
221 // Push keys until an empty bucket is found.
678 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each time
680 public Keys keys () { method in class:IntMap
682 keys1 = new Keys(this);
    [all...]
LongMap.java 24 /** An unordered map that uses long keys. This implementation is a cuckoo hash map using 3 hashes, random walking, and a small
25 * stash for problematic keys. Null values are allowed. No allocation is done except when growing the table size. <br>
52 private Keys keys1, keys2;
111 // Check for existing keys.
176 /** Skips checks for existing keys. */
220 // Push keys until an empty bucket is found.
670 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each time
672 public Keys keys () { method in class:LongMap
674 keys1 = new Keys(this);
    [all...]
ObjectFloatMap.java 25 * small stash for problematic keys. Null keys are not allowed. No allocation is done except when growing the table size. <br>
49 private Keys keys1, keys2;
97 // Check for existing keys.
158 /** Skips checks for existing keys. */
197 // Push keys until an empty bucket is found.
596 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each time
598 public Keys<K> keys () { method in class:ObjectFloatMap
600 keys1 = new Keys(this)
    [all...]
ObjectIntMap.java 25 * small stash for problematic keys. Null keys are not allowed. No allocation is done except when growing the table size. <br>
49 private Keys keys1, keys2;
97 // Check for existing keys.
158 /** Skips checks for existing keys. */
197 // Push keys until an empty bucket is found.
597 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each time
599 public Keys<K> keys () { method in class:ObjectIntMap
601 keys1 = new Keys(this);
    [all...]
ObjectMap.java 25 * keys. Null keys are not allowed. Null values are allowed. No allocation is done except when growing the table size. <br>
49 private Keys keys1, keys2;
102 // Check for existing keys.
169 /** Skips checks for existing keys. */
208 // Push keys until an empty bucket is found.
642 /** Returns an iterator for the keys in the map. Remove is supported. Note that the same iterator instance is returned each
643 * time this method is called. Use the {@link Keys} constructor for nested or multithreaded iteration. */
644 public Keys<K> keys () { method in class:ObjectMap
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
PhotoModule.java 64 import com.android.camera.settings.Keys;
344 Keys.KEY_CAMERA_HDR_PLUS, true);
394 settingsManager.setToDefault(mAppController.getModuleScope(), Keys.KEY_CAMERA_ID);
397 Keys.KEY_CAMERA_ID);
493 settingsManager.set(mAppController.getModuleScope(), Keys.KEY_CAMERA_ID, mCameraId);
530 if (Keys.isCameraBackFacing(settingsManager,
532 if (Keys.requestsReturnToHdrPlus(settingsManager,
562 Keys.KEY_CAMERA_ID);
565 if (Keys.isHdrOn(settingsManager)) {
566 settingsManager.set(mAppController.getCameraScope(), Keys.KEY_SCENE_MODE
    [all...]
VideoModule.java 63 import com.android.camera.settings.Keys;
344 Keys.KEY_CAMERA_ID);
734 String videoQualityKey = isCameraFrontFacing() ? Keys.KEY_VIDEO_QUALITY_FRONT
735 : Keys.KEY_VIDEO_QUALITY_BACK;
    [all...]
CaptureModule.java 73 import com.android.camera.settings.Keys;
416 mSettingsManager.getInteger(mAppController.getModuleScope(), Keys.KEY_CAMERA_ID));
493 .getInteger(SettingsManager.SCOPE_GLOBAL, Keys.KEY_COUNTDOWN_DURATION);
510 Keys.KEY_FLASH_MODE);
511 boolean gridLinesOn = Keys.areGridLinesOn(mSettingsManager);
513 .getInteger(SettingsManager.SCOPE_GLOBAL, Keys.KEY_COUNTDOWN_DURATION);
700 SettingsManager.SCOPE_GLOBAL, Keys.KEY_CAMERA_HDR_PLUS) == 1;
703 SettingsManager.SCOPE_GLOBAL, Keys.KEY_CAMERA_HDR);
765 settingsManager.set(SettingsManager.SCOPE_GLOBAL, Keys.KEY_CAMERA_HDR_PLUS, true);
766 settingsManager.set(mAppController.getModuleScope(), Keys.KEY_CAMERA_ID
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-api/1.5/
gmaven-runtime-api-1.5.jar 
  /external/libgdx/gdx/src/com/badlogic/gdx/
Input.java 35 * Keyboard keys are translated to the constants in {@link Keys} transparently on all systems. Do not use system specific key
65 /** Keys.
68 static public class Keys {
246 * {@link Input.Keys#valueOf(String)} */
541 /** @param keyname the keyname returned by the {@link Keys#toString(int)} method
548 /** lazily intialized in {@link Keys#valueOf(String)} */
640 * @param key The key code as found in {@link Input.Keys}.
646 * @param key The key code as found in {@link Input.Keys}.
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger/1.2.2/
dagger-1.2.2.jar 

Completed in 2089 milliseconds

1 2 3 4 5