HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 826 - 850 of 1431) sorted by null

<<31323334353637383940>>

  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
pipeline.py 180 slot_key: The db.Key for this slot's _SlotRecord if it's already been
186 raise UnexpectedPipelineError('Slot with key "%s" missing a name.' %
189 slot_key = db.Key.from_path(_SlotRecord.kind(), uuid.uuid4().hex)
196 self.key = slot_key
213 raise SlotNotFilledError('Slot with name "%s", key "%s" not yet filled.'
214 % (self.name, self.key))
228 raise SlotNotFilledError('Slot with name "%s", key "%s" not yet filled.'
229 % (self.name, self.key))
243 raise SlotNotFilledError('Slot with name "%s", key "%s" not yet filled.'
244 % (self.name, self.key))
    [all...]
  /external/clang/lib/AST/
ExprObjC.cpp 66 if (VK[I].Key->isTypeDependent() || VK[I].Key->isValueDependent() ||
69 if (VK[I].Key->isInstantiationDependent() ||
73 (VK[I].Key->containsUnexpandedParameterPack() ||
77 KeyValues[I].Key = VK[I].Key;
126 ObjCSubscriptRefExpr::Create(const ASTContext &C, Expr *base, Expr *key,
131 base, key, T, VK_LValue, OK_ObjCSubscript, getMethod, setMethod, RB);
  /external/protobuf/src/google/protobuf/stubs/
map_util.h 57 // Returns a const reference to the value associated with the given key if it
61 // when the key is guaranteed to exist.
70 // This version assumes the key is printable, and includes it in the fatal log
75 const typename Collection::value_type::first_type& key) {
76 typename Collection::const_iterator it = collection.find(key);
77 GOOGLE_CHECK(it != collection.end()) << "Map key not found: " << key;
85 const typename Collection::value_type::first_type& key) {
86 typename Collection::iterator it = collection.find(key);
87 GOOGLE_CHECK(it != collection.end()) << "Map key not found: " << key
    [all...]
  /frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
Camera2UtilsTest.java 30 import android.hardware.camera2.CaptureRequest.Key;
98 private <T> void requestSettingsSetAndForget(Camera2RequestSettingsSet s, Key<T> k, T v) {
154 Key<T> key, T value,
157 assertEquals(shouldHaveChanged, settings.set(key, value));
185 Key<T> key, boolean shouldHaveChanged) {
187 assertEquals(shouldHaveChanged, settings.unset(key));
413 Key<T> firstKey,
414 Key<T> secondKey
    [all...]
  /system/keymaster/
android_keymaster.cpp 34 #include "key.h"
79 // specific modes, padding, etc. are supported for that key type, and AndroidKeymaster also has
193 UniquePtr<Key> key; local
246 UniquePtr<Key> key; local
248 &sw_enforced, &key_factory, &key);
254 if (!key->authorizations().GetTagValue(TAG_ALGORITHM, &key_algorithm))
263 factory->CreateOperation(*key, request.additional_params, &response->error));
274 request.purpose, key_id, key->authorizations(), request.additional_params
399 UniquePtr<Key> key; local
427 UniquePtr<Key> key; local
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
add_point_queue.py 62 monitored_test_keys.append(parent_test.key)
100 master_keys = {ndb.Key('Master', r['master']) for r in data}
101 bot_keys = {ndb.Key('Master', r['master'], 'Bot', r['bot']) for r in data}
110 test_keys.add(ndb.Key(*start))
119 the ID, the parent key, and all of the properties. Making these three
135 test_container_key = utils.GetTestContainerKey(parent_test.key)
221 bot_name, master_entity.key, internal_only)
238 ancestor_test_name, parent.key, test_properties)
282 parent_key: The key of the parent entity.
migrate_test_names.py 150 old_path = utils.TestPath(test.key)
162 'old_test_key': test.key.urlsafe(),
259 old_test_key_urlsafe: Key of old Test entity in urlsafe form.
260 new_test_key_urlsafe: Key of new Test entity in urlsafe form.
262 old_test_key = ndb.Key(urlsafe=old_test_key_urlsafe)
263 new_test_key = ndb.Key(urlsafe=new_test_key_urlsafe)
284 old_test_key: The key of the Test to migrate data from.
285 new_test_key: The key of the Test to migrate data to.
325 old_parent_key: Test entity key of the test to move from.
326 new_parent_key: Test entity key of the test to move to
    [all...]
edit_anomalies.py 52 keys = [ndb.Key(urlsafe=k) for k in urlsafe_keys.split(',')]
post_bisect_results.py 97 job = ndb.Key(try_job.TryJob, try_job_id).get()
  /external/guice/core/test/com/google/inject/
InjectorTest.java 70 injector.getInstance(Key.get(SampleSingleton.class)));
74 injector.getInstance(Key.get(SampleSingleton.class, Other.class)));
107 Bar bar = injector.getInstance(Key.get(Bar.class));
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliPositionManagerTest.java 48 import com.intellij.openapi.util.Key;
155 @Override public <T> T getUserData(Key<T> key) { return null; }
156 @Override public <T> void putUserData(Key<T> key, T value) {}
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 140 bool Key(const Ch* str, SizeType length, bool copy = false) { return String(str, length, copy); }
176 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); }
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKey.java 19 import com.android.inputmethod.keyboard.Key;
27 * This class represents an expected key.
32 // A key that has a string label and may have "more keys".
37 // A key that has a string label and a different output text and may have "more keys".
44 // A key that has a string label and a code point output and may have "more keys".
51 // A key that has an icon and an output text and may have "more keys".
58 // A key that has an icon and a code point output and may have "more keys".
70 // The more keys are the extra keys that the main keyboard key may have in its long press
103 // The expected visual outlook of this key.
105 // The expected output of this key
176 final ExpectedKey key = (ExpectedKey) object; local
    [all...]
  /external/guice/extensions/testlib/test/com/google/inject/testing/fieldbinder/
BoundFieldModuleTest.java 28 import com.google.inject.Key;
189 injector.getInstance(Key.get(Integer.class, SomeBindingAnnotation.class)));
212 injector.getInstance(Key.get(Integer.class, SomeQualifier.class)));
233 injector.getInstance(Key.get(Integer.class, Names.named(name1))));
236 injector.getInstance(Key.get(Integer.class, Names.named(name2))));
256 injector.getInstance(Key.get(Integer.class, Names.named(name))));
270 assertEquals(testIntList, injector.getInstance(new Key<List<Integer>>() {}));
271 assertEquals(testBoolList, injector.getInstance(new Key<List<Boolean>>() {}));
333 assertEquals(testValue, injector.getInstance(Key.get(Number.class, Names.named("foo"))));
444 assertContains(e.getMessage(), "T cannot be used as a key; It is not fully specified.")
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RelativeDateTimeFormatter.java 591 String key = locale.toString(); local
592 RelativeDateTimeFormatterData result = cache.get(key);
595 cache.put(key, result);
601 private static Direction keyToDirection(UResource.Key key) {
602 if (key.contentEquals("-2")) {
605 if (key.contentEquals("-1")) {
608 if (key.contentEquals("0")) {
611 if (key.contentEquals("1")) {
614 if (key.contentEquals("2"))
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 638 String key = locale.toString(); local
639 RelativeDateTimeFormatterData result = cache.get(key);
642 cache.put(key, result);
648 private static Direction keyToDirection(UResource.Key key) {
649 if (key.contentEquals("-2")) {
652 if (key.contentEquals("-1")) {
655 if (key.contentEquals("0")) {
658 if (key.contentEquals("1")) {
661 if (key.contentEquals("2"))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardBuilder.java 31 import com.android.inputmethod.keyboard.Key;
62 * &lt;Key key_attributes* /&gt;
76 * &lt;Key key_attributes* /&gt;
85 * &lt;Key key_attributes* /&gt;
102 * You can declare Key style and specify styles within Key tags.
106 * &lt;key-style styleName="f1-key" parentStyle="modifier-key"
111 * &lt;key-style styleName="f1-key" parentStyle="modifier-key
458 final Key key = new Key(label, KeyboardIconsSet.ICON_UNDEFINED, code, outputText, local
484 final Key key = new Key(keySpec, keyAttr, keyStyle, mParams, row); local
    [all...]
  /system/connectivity/shill/
property_store_unittest.cc 218 new_value["new key"] = "new value";
225 new_value[0]["new key"] = "new value";
317 const char kKey[] = "key";
344 EXPECT_EQ(keys[1], it.Key());
365 EXPECT_EQ(keys[1], it.Key());
386 EXPECT_EQ(keys[1], it.Key());
407 EXPECT_EQ(keys[1], it.Key());
431 EXPECT_EQ(keys[1], it.Key());
459 EXPECT_EQ(keys[1], it.Key());
486 EXPECT_EQ(keys[1], it.Key());
550 const string key = "boolp"; local
568 const string key = "int16p"; local
586 const string key = "int32p"; local
604 const string key = "stringp"; local
622 const string key = "stringmapp"; local
642 const string key = "stringsp"; local
666 const string key = "uint8p"; local
684 const string key = "uint16p"; local
702 const string key = "uint32p"; local
721 const string key = "keyvaluestorep"; local
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 24 import java.security.Key;
46 static Key cipherKey;
56 fail("No key " + e);
186 * @tests javax.crypto.Cipher#init(int, java.security.Key)
194 * @tests javax.crypto.Cipher#init(int, java.security.Key,
205 * @tests javax.crypto.Cipher#init(int, java.security.Key,
230 * @tests javax.crypto.Cipher#init(int, java.security.Key,
263 + index + ".key");
266 Key k = skf.generateSecret(keySpec);
312 + index + ".key");
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/
key.py 23 # File representation of key, for use with "file://" URIs.
30 class Key(object):
61 Retrieves a file from a Key
89 Store an object in a file using the name of the Key object as the
90 key in file URI and the contents of the file pointed to by 'fp' as the
102 bucket with the same key. If it does, it won't
166 Retrieve file data from the Key, and return contents as a string.
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/appengine/
sessions_ndb.py 67 session = model.Key(cls, sid).get()
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ComponentWriter.java 43 Key.Factory keyFactory,
DependencyRequest.java 55 * Represents a request for a key at an injection point. Parameters to {@link Inject} constructors
56 * or {@link Provides} methods are examples of key requests.
92 abstract Key key(); method in class:DependencyRequest
102 return BindingKey.create(BindingKey.Kind.CONTRIBUTION, key());
104 return BindingKey.create(BindingKey.Kind.MEMBERS_INJECTION, key());
135 private final Key.Factory keyFactory;
137 Factory(Elements elements, Key.Factory keyFactory) {
170 * @param mapOfFactoryKey a key equivalent to {@code mapOfValueRequest}'s key, whose type i
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 8 import com.bumptech.glide.load.Key;
59 private Key signature;
91 Key signature,
163 Key signature,
  /external/guice/core/src/com/google/inject/
Scopes.java 54 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) {
84 * com.google.inject.spi.LinkedKeyBinding linked key binding} and belongs to an injector (ie. it
120 * com.google.inject.spi.LinkedKeyBinding linked key binding} and belongs to an injector (ie. it

Completed in 801 milliseconds

<<31323334353637383940>>