HomeSort by relevance Sort by last modified time
    Searched full:keys (Results 301 - 325 of 5906) sorted by null

<<11121314151617181920>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Keyboard.java 28 * Loads an XML description of a keyboard and stores the attributes of the keys. A keyboard
29 * consists of rows of keys.
49 /** Total height of the keyboard, including the padding and keys */
51 /** Total width of the keyboard, including the padding and keys */
56 /** Base width of the keyboard, used to calculate keys' width */
70 /** More keys keyboard template */
73 /** Maximum column for more keys keyboard */
76 /** Array of keys and icons in this keyboard */
208 * Returns the array of the keys that are closest to the given point.
211 * @return the array of the nearest keys to the given point. If the give
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmarks_api.cc 57 namespace keys = bookmark_api_constants;
123 error_ = keys::kInvalidIdError;
131 error_ = keys::kEditBookmarksDisabled;
184 object_args->SetString(keys::kParentIdKey,
186 object_args->SetInteger(keys::kIndexKey, new_index);
187 object_args->SetString(keys::kOldParentIdKey,
189 object_args->SetInteger(keys::kOldIndexKey, old_index);
192 DispatchEvent(keys::kOnBookmarkMoved, args.Pass());
205 DispatchEvent(keys::kOnBookmarkCreated, args.Pass());
215 object_args->SetString(keys::kParentIdKey
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyFactory2Test.java 104 KeyPair keys = keyGen.generateKeyPair(); local
109 KeySpec privateKeySpec = fact.getKeySpec(keys.getPrivate(),
112 boolean samePrivate = Arrays.equals(keys.getPrivate()
117 fact.generatePrivate(new PKCS8EncodedKeySpec(keys.getPrivate()
145 KeyPair keys = keyGen.generateKeyPair(); local
149 KeySpec publicKeySpec = fact.getKeySpec(keys.getPublic(),
152 boolean samePublic = Arrays.equals(keys.getPublic()
254 KeyPair keys = keyGen.generateKeyPair(); local
258 KeySpec privateKeySpec = fact.getKeySpec(keys.getPrivate(),
260 KeySpec publicKeySpec = fact.getKeySpec(keys.getPublic()
328 KeyPair keys = keyGen.generateKeyPair(); local
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
keys.c 2 * keys.c: Implemetation of the keys support
29 #include "keys.h"
142 cur->keys = xmlHashCreate(0);
160 if (keyt->keys != NULL)
161 xmlHashFree(keyt->keys,
195 * Free up the memory used by XSLT keys in a stylesheet
199 if (style->keys)
200 xsltFreeKeyDefList((xsltKeyDefPtr) style->keys);
301 * Split the | and register it as as many keys
    [all...]
  /external/libxslt/libxslt/
keys.c 2 * keys.c: Implemetation of the keys support
29 #include "keys.h"
142 cur->keys = xmlHashCreate(0);
160 if (keyt->keys != NULL)
161 xmlHashFree(keyt->keys,
195 * Free up the memory used by XSLT keys in a stylesheet
199 if (style->keys)
200 xsltFreeKeyDefList((xsltKeyDefPtr) style->keys);
301 * Split the | and register it as as many keys
    [all...]
  /dalvik/vm/compiler/codegen/x86/
NcgHelper.cpp 67 s4 dvmNcgHandleSparseSwitch(const s4* keys, u2 size, s4 testVal)
70 const s4* entries = keys + size;
73 s4 k = s4FromSwitchData(&keys[i]);
87 s4 dvmJitHandleSparseSwitch(const s4* keys, u2 size, s4 testVal)
89 const s4* entries = keys + size;
92 s4 k = s4FromSwitchData(&keys[i]);
  /external/chromium_org/chrome/common/extensions/api/extension_action/
script_badge_handler.cc 19 namespace keys = extension_manifest_keys;
30 return SingleKey(keys::kIcons);
37 if (!extension->manifest()->HasKey(keys::kScriptBadge)) {
53 if (!extension->manifest()->GetDictionary(keys::kScriptBadge, &dict)) {
105 const std::vector<std::string> ScriptBadgeHandler::Keys() const {
106 return SingleKey(keys::kScriptBadge);
  /external/chromium_org/chrome/common/extensions/api/i18n/
default_locale_handler.cc 21 namespace keys = extension_manifest_keys;
29 extension->GetManifestData(keys::kDefaultLocale));
41 if (!extension->manifest()->GetString(keys::kDefaultLocale,
47 extension->SetManifestData(keys::kDefaultLocale, info.release());
115 const std::vector<std::string> DefaultLocaleHandler::Keys() const {
116 return SingleKey(keys::kDefaultLocale);
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
content_scripts_handler.cc 28 namespace keys = extension_manifest_keys;
79 if (content_script->HasKey(keys::kRunAt)) {
81 if (!content_script->GetString(keys::kRunAt, &run_location)) {
103 if (content_script->HasKey(keys::kAllFrames)) {
105 if (!content_script->GetBoolean(keys::kAllFrames, &all_frames)) {
115 if (!content_script->GetList(keys::kMatches, &matches)) {
176 if (content_script->HasKey(keys::kExcludeMatches)) { // optional
178 if (!content_script->GetList(keys::kExcludeMatches, &exclude_matches)) {
214 if (!LoadGlobsHelper(content_script, definition_index, keys::kIncludeGlobs,
219 if (!LoadGlobsHelper(content_script, definition_index, keys::kExcludeGlobs
377 static const char* keys[] = { local
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
permissions_custom_bindings.js 44 var keys = $Object.keys(a);
45 if (keys.length != 1) {
46 throw new Error("Too many keys in object-style permission.");
48 arguments[0].permissions[i] = keys[0] + '|' +
49 JSON.stringify(a[keys[0]]);
  /external/chromium_org/content/common/indexed_db/
indexed_db_key.cc 27 static size_t CalculateArraySize(const IndexedDBKey::KeyArray& keys) {
29 for (size_t i = 0; i < keys.size(); ++i)
30 size += keys[i].size_estimate();
65 IndexedDBKey::IndexedDBKey(const KeyArray& keys)
67 array_(CopyKeyArray(keys)),
70 size_estimate_(kOverheadSize + CalculateArraySize(keys)) {}
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
find-extra-includes 69 for my $include (keys %{ $includes{$file} }) {
72 for my $i (keys %{ $totalIncludes{$include} }) {
82 for my $include (keys %{ $includes{$file} }) {
85 for my $i1 (sort keys %{ $includes{$file} }) {
86 for my $i2 (keys %{ $includes{$file} }) {
100 for my $file (sort keys %includes) {
print-json-test-results 48 tests_to_print += passes.keys()
50 tests_to_print += failures.keys()
52 tests_to_print += flakes.keys()
62 new_failures = set(failures.keys()) - set(ignored_failures.keys())
69 print "\n".join(sorted(ignored_failures.keys()))
  /external/chromium_org/tools/json_schema_compiler/
model_test.py 32 sorted(self.permissions.functions.keys()))
35 self.assertEquals(['Tab'], self.tabs.types.keys())
36 self.assertEquals(['Permissions'], self.permissions.types.keys())
37 self.assertEquals(['Window'], self.windows.types.keys())
43 sorted(self.tabs.types['Tab'].properties.keys()))
64 sorted(object_prop.type_.properties.keys()))
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SampleElements.java 66 SampleElements<K> keys, SampleElements<V> values) {
68 Helpers.mapEntry(keys.e0, values.e0),
69 Helpers.mapEntry(keys.e1, values.e1),
70 Helpers.mapEntry(keys.e2, values.e2),
71 Helpers.mapEntry(keys.e3, values.e3),
72 Helpers.mapEntry(keys.e4, values.e4));
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 47 private Hashtable keys = new Hashtable(); field in class:SystemScope
94 return (Identity) keys.get(key);
111 if (key != null && keys.containsKey(key)) {
117 keys.put(key, identity);
143 contains = contains || keys.containsKey(key);
144 keys.remove(key);
  /external/chromium/chrome/browser/extensions/
extension_infobar_module.cc 24 namespace keys = extension_infobar_module_constants;
31 EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kTabId, &tab_id));
34 EXTENSION_FUNCTION_VALIDATE(args->GetString(keys::kHtmlPath, &html_path));
  /external/chromium_org/chrome/browser/extensions/
convert_web_app.cc 35 namespace keys = extension_manifest_keys;
107 root->SetString(keys::kPublicKey, GenerateKey(web_app.manifest_url));
109 root->SetString(keys::kPublicKey, GenerateKey(web_app.app_url));
112 root->SetBoolean(keys::kOfflineEnabled, true);
114 root->SetString(keys::kName, UTF16ToUTF8(web_app.title));
115 root->SetString(keys::kVersion, ConvertTimeToExtensionVersion(create_time));
116 root->SetString(keys::kDescription, UTF16ToUTF8(web_app.description));
117 root->SetString(keys::kLaunchWebURL, web_app.app_url.spec());
120 root->SetString(keys::kLaunchContainer, web_app.launch_container);
124 root->Set(keys::kIcons, icons)
    [all...]
  /external/chromium_org/chrome/browser/value_store/
testing_value_store.h 31 virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
34 virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
43 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/app/
main.js 8 var keys = [];
10 keys.push(key);
12 return keys;
  /external/chromium_org/chrome/test/mini_installer/
registry_verifier.py 12 entries: A dictionary whose keys are registry keys and values are
40 expectation: A dictionary with the following keys and values:
  /external/chromium_org/net/data/ssl/scripts/
generate-android-test-keys.sh 7 # This script is used to generate the test keys for the unit test in
10 # These are test RSA / DSA / ECDSA private keys in PKCS#8 format, as well
11 # as the corresponding DSA / ECDSA public keys.
  /external/chromium_org/sync/test/
fake_sync_encryption_handler.h 22 // (setting pending keys, installing keys).
52 const google::protobuf::RepeatedPtrField<google::protobuf::string>& keys,
  /external/chromium_org/third_party/tlslite/tlslite/
SharedKeyDB.py 1 """Class for storing shared keys."""
11 keys.
14 authenticate a client based on one of the shared keys.
  /external/clang/test/SemaObjCXX/
foreach.mm 7 id keys;
14 for (id thisKey : keys);
16 for (auto thisKey : keys) { } // expected-warning{{'auto' deduced as 'id' in declaration of 'thisKey'}}

Completed in 915 milliseconds

<<11121314151617181920>>