| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
| ShortcutsScreen.js | 116 * @param {!Array.<!WebInspector.KeyboardShortcut.Descriptor>} keys 119 addRelatedKeys: function(keys, description) 121 this._addLine(this._renderSequence(keys, "/"), description); 125 * @param {!Array.<!WebInspector.KeyboardShortcut.Descriptor>} keys 128 addAlternateKeys: function(keys, description) 130 this._addLine(this._renderSequence(keys, WebInspector.UIString("or")), description); 180 var plus = this._createSpan("help-combine-keys", "+");
|
| /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
| model.js | 133 Object.keys(model.state.resultsByBuilder).forEach(function(builderName) { 149 Object.keys(model.state.resultsByBuilder).forEach(function(builderName) { 162 Object.keys(model.state.resultsByBuilder).forEach(function(builderName) { 171 results.fetchResultsByBuilder(Object.keys(platformBuilders), function(resultsByBuilder) { 186 var tracker = new base.RequestTracker(Object.keys(unexpectedFailures).length, completionCallback); 188 var builderNameList = Object.keys(resultNodesByBuilder); 219 return Object.keys(resultsByTest[testName]).map(function(builderName) {
|
| /external/chromium_org/v8/test/mjsunit/harmony/ |
| array-iterator.js | 33 assertTrue(Array.prototype.hasOwnProperty('keys')); 37 assertFalse(Array.prototype.propertyIsEnumerable('keys')); 72 var iterator = array.keys(); 85 var iterator = array.keys(); 126 assertEquals(ArrayIterator.prototype, array.keys().__proto__); 132 assertEquals('Array Iterator', %_ClassOf(array.keys())); 164 for (var key of array.keys()) {
|
| /external/marisa-trie/tools/ |
| marisa-build.cc | 40 void read_keys(std::istream *input, std::vector<Key> *keys) { 57 keys->push_back(key); 62 std::vector<Key> keys; local 64 read_keys(&std::cin, &keys); 74 read_keys(&input_file, &keys); 79 trie.build(keys, NULL, param_num_tries 87 std::cerr << "#keys: " << trie.num_keys() << std::endl;
|
| /external/marisa-trie/v0_1_5/tools/ |
| marisa_alpha-build.cc | 40 void read_keys(std::istream *input, std::vector<Key> *keys) { 57 keys->push_back(key); 62 std::vector<Key> keys; local 64 read_keys(&std::cin, &keys); 74 read_keys(&input_file, &keys); 79 trie.build(keys, NULL, param_num_tries 87 std::cerr << "#keys: " << trie.num_keys() << std::endl;
|
| /external/openssh/ |
| ssh-keyscan.0 | 4 ssh-keyscan - gather ssh public keys 11 ssh-keyscan is a utility for gathering the public ssh host keys of a 17 possible in parallel, so it is very efficient. The keys from a domain of 60 verifying the keys, users will be vulnerable to man in the middle 71 Output format for rsa1 keys: 75 Output format for rsa, dsa and ecdsa keys: 89 Find all hosts from the file ssh_hosts which have new or different keys
|
| ssh-keyscan.1 | 14 .Nd gather ssh public keys 28 is a utility for gathering the public ssh host keys of a number of 40 The keys from a domain of 1,000 108 without verifying the keys, users will be vulnerable to 121 .Pa Output format for rsa1 keys: 126 .Pa Output format for rsa, dsa and ecdsa keys: 153 which have new or different keys from those in the sorted file
|
| /bionic/libc/bionic/ |
| pthread_key.cpp | 36 * There can be up to BIONIC_TLS_SLOTS independent TLS keys in a given process, 37 * The keys below TLS_SLOT_FIRST_USER_SLOT are reserved for Bionic to hold 43 * currently created/allocated TLS keys and the destructors associated 46 * The global TLS map simply contains a bitmap of allocated keys, and 75 /* bitmap of allocated keys */ 87 // mark the slots belonging to well-known keys as being in use. 88 // This isn't currently necessary because the well-known keys 133 // from this thread's TLS area. This must call the destructor of all keys 139 // keys, we need to implement this in a loop.
|
| /external/chromium_org/chrome/browser/extensions/api/content_settings/ |
| content_settings_api.cc | 62 namespace keys = content_settings_api_constants; 86 error_ = keys::kIncognitoContextError; 107 error_ = ErrorUtils::FormatErrorMessage(keys::kInvalidUrlError, 116 error_ = ErrorUtils::FormatErrorMessage(keys::kInvalidUrlError, 140 error_ = keys::kIncognitoSessionOnlyError; 163 result->SetString(keys::kContentSettingKey, 232 error_ = keys::kIncognitoContextError; 281 dict->SetString(keys::kIdKey, group_identifier); 282 dict->SetString(keys::kDescriptionKey, plugin_metadata->name());
|
| /external/chromium_org/third_party/skia/src/animator/ |
| SkDisplayEvent.cpp | 27 SK_PROPERTY(keys) 36 SK_MEMBER_PROPERTY(keys, String), // a single key or dash-delimited range of keys 99 SkDebugf("keys=\"%c - %c\" ", code, fMax); 151 case SK_PROPERTY(keys): { 154 SkKey convert = index == SK_PROPERTY(keys) ? code : fLastCode; 158 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code) 236 SkASSERT(index == SK_PROPERTY(key) || index == SK_PROPERTY(keys)); 244 SkASSERT(count == 1 || index == SK_PROPERTY(keys));
|
| /external/chromium_org/tools/site_compare/drivers/win32/ |
| keyboard.py | 9 pressing keys on a keyboard. Support is provided for formatted strings 10 including special characters to represent modifier keys like CTRL and ALT 79 nonprintable keys (F-keys, ESC, arrow keys, etc), 84 time_between_keystrokes: length of time (seconds) to pause between keys 103 # {abc} for ALT-modified keys or [abc] for CTRL-modified keys 164 # Release the modifier keys, if held
|
| /external/guava/guava/src/com/google/common/cache/ |
| LoadingCache.java | 30 * A semi-persistent mapping from keys to values. Values are automatically loaded by the cache, 54 * multiple threads can concurrently load values for distinct keys. 80 * multiple threads can concurrently load values for distinct keys. 99 * Returns a map of the values associated with {@code keys}, creating or retrieving those values 101 * loaded entries; it will never contain null keys or values. 104 * {@link CacheLoader#loadAll} for all keys which are not already present in the cache. All 107 * {@link CacheLoader#loadAll} returns {@code null}, returns a map containing null keys or values, 110 * <p>Note that duplicate elements in {@code keys}, as determined by {@link Object#equals}, will 119 ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException;
|
| /external/skia/src/animator/ |
| SkDisplayEvent.cpp | 27 SK_PROPERTY(keys) 36 SK_MEMBER_PROPERTY(keys, String), // a single key or dash-delimited range of keys 99 SkDebugf("keys=\"%c - %c\" ", code, fMax); 151 case SK_PROPERTY(keys): { 154 SkKey convert = index == SK_PROPERTY(keys) ? code : fLastCode; 158 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code) 236 SkASSERT(index == SK_PROPERTY(key) || index == SK_PROPERTY(keys)); 244 SkASSERT(count == 1 || index == SK_PROPERTY(keys));
|
| /frameworks/base/docs/html/training/managing-audio/ |
| volume-playback.jd | 18 <li><a href="#HardwareVolumeKeys">Use Hardware Volume Keys to Control Your App?s Audio 20 <li><a href="#PlaybackControls">Use Hardware Playback Control Keys to Control Your App?s Audio 39 playback keys should perform their respective actions on the audio stream used by your app.</p> 56 <h2 id="HardwareVolumeKeys">Use Hardware Volume Keys to Control Your App?s Audio Volume</h2> 59 app isn't currently playing anything, hitting the volume keys adjusts the ringer volume.<p> 61 <p>If you've got a game or music app, then chances are good that when the user hits the volume keys 83 <p>From this point onwards, pressing the volume keys on the device affect the audio stream you 87 <h2 id="PlaybackControls">Use Hardware Playback Control Keys to Control Your App?s Audio 92 keys, the system broadcasts an intent with the {@link android.content.Intent#ACTION_MEDIA_BUTTON}
|
| /external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
| ACBTree.h | 44 __strong ACBKey **keys; /* pointer to keys */ variable 62 @property (assign) ACBKey **keys; variable
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/ |
| PKCS12KeyStoreSpi.java | 96 private IgnoresCaseHashtable keys = new IgnoresCaseHashtable(); field in class:PKCS12KeyStoreSpi 216 Enumeration e = certs.keys(); 222 e = keys.keys(); 232 return tab.keys(); 238 return (certs.get(alias) != null || keys.get(alias) != null); 249 Key k = (Key)keys.remove(alias); 308 Enumeration k = certs.keys(); 322 k = keyCerts.keys(); 395 Enumeration e = chainCerts.keys(); 1629 private Hashtable keys = new Hashtable(); field in class:PKCS12KeyStoreSpi.IgnoresCaseHashtable 1644 public Enumeration keys() method in class:PKCS12KeyStoreSpi.IgnoresCaseHashtable [all...] |
| /external/chromium/base/ |
| path_service.h | 17 // The path service is a global table mapping keys to file system paths. It is 43 // To extend the set of supported keys, you can register a path provider, 54 // key_end)" of supported path keys.
|
| /external/chromium-trace/trace-viewer/src/base/ |
| iteration_helpers.js | 56 var keys = []; 58 keys.push(key); 59 return keys;
|
| /external/chromium_org/chrome/browser/extensions/api/storage/ |
| policy_value_store.h | 47 virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE; 50 virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE; 59 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
|
| /external/chromium_org/chrome/browser/performance_monitor/ |
| key_builder.h | 48 // This class is responsible for building the keys which are used internally by 49 // PerformanceMonitor's database. These keys should only be referenced by the 56 // Key Creation: Create the keys for different databases. The schemas are
|
| /external/chromium_org/chrome/common/ |
| crash_keys.cc | 47 base::debug::CrashKey keys[] = { local 72 return base::debug::InitCrashKeys(keys, arraysize(keys), kSingleChunkLength);
|
| /external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
| commands.html | 10 have many commands but only 4 suggested keys can be specified. The user can 13 <p>Supported keys: A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Insert, 14 Delete, Tab and the arrow keys (Up, Down, Left, Right).</p>
|
| /external/chromium_org/chrome/common/policy/ |
| policy_schema.h | 20 // Maps known policy keys to their expected types, and recursively describes 21 // the known keys within dictionary or list types. 49 // for keys not found in the map, and may be NULL.
|
| /external/chromium_org/chrome/test/chromedriver/ |
| key_converter.cc | 28 // Ordered list of all the key codes corresponding to special WebDriver keys. 29 // These WebDriver keys are defined in the Unicode Private Use Area. 135 // key. Shorthand keys are common text equivalents for keys, such as the newline 195 string16 keys = client_keys; 199 keys.push_back(kWebDriverNullKey); 202 for (size_t i = 0; i < keys.size(); ++i) { 203 char16 key = keys[i]; 206 // Release all modifier keys and clear |stick_modifiers|. 270 // To prevent char event for special keys like DELETE [all...] |
| /external/chromium_org/content/test/ |
| mock_keyboard.h | 66 // These modifiers explicitly distinguish left-keys and right-keys because we 89 // specified keys on a specified layout.
|