HomeSort by relevance Sort by last modified time
    Searched defs:Key (Results 76 - 100 of 425) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
connection.py 35 from boto.s3.key import Key
78 def build_url_base(self, connection, protocol, server, bucket, key=''):
81 url_base += connection.get_path(self.build_path_base(bucket, key))
90 def build_auth_path(self, bucket, key=''):
91 key = boto.utils.get_utf8_value(key)
95 return path + '/%s' % urllib.parse.quote(key)
97 def build_path_base(self, bucket, key=''):
98 key = boto.utils.get_utf8_value(key
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
model.py 23 from boto.sdb.db.key import Key
45 for key in dict.keys():
46 if isinstance(dict[key], Property):
47 property = dict[key]
48 property.__property_config__(cls, key)
93 raise NotImplementedError("Key Names are not currently supported")
98 for key, value in params.items():
99 q.filter('%s =' % key, value)
114 for key in cls.__dict__.keys()
248 def key(self): member in class:Model
    [all...]
property.py 23 from boto.sdb.db.key import Key
28 import boto.s3.key namespace
263 data_type = boto.s3.key.Key
480 data_type = Key
691 for key in value:
692 if not isinstance(value[key], item_type):
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 120 const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr();
123 if (CGT.isRecordLayoutComplete(Key)) return true;
126 if (CGT.isRecordBeingLaidOut(Key))
651 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
653 llvm::StructType *&Entry = RecordDeclTypes[Key];
675 bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
690 CGRecordLayouts[Key] = Layout;
693 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
714 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
716 const CGRecordLayout *Layout = CGRecordLayouts.lookup(Key);
    [all...]
  /external/clang/lib/Serialization/
MultiOnDiskHashTable.h 145 const internal_key_type &Key = InfoObj.ReadKey(LocalPtr, L.first);
146 data_type_builder ValueBuilder(Merged->Data[Key]);
147 InfoObj.ReadDataInto(Key, LocalPtr + L.first, L.second,
221 internal_key_type Key = Info::GetInternalKey(EKey);
222 auto KeyHash = Info::ComputeHash(Key);
225 auto It = M->Data.find(Key);
234 auto It = HT.find_hashed(Key, KeyHash);
236 HT.getInfoObj().ReadDataInto(Key, It.getDataPtr(), It.getDataLen(),
265 const internal_key_type &Key = InfoObj.ReadKey(LocalPtr, L.first);
266 InfoObj.ReadDataInto(Key, LocalPtr + L.first, L.second, ResultBuilder)
    [all...]
  /external/clang/test/CodeGen/
2008-03-24-BitField-And-Alloca.c 61 } key; member in union:_Key
63 } Key;
65 static void foo(const Key iospec, int* ret)
86 __attribute__ ((unused)) Key iospec = (Key) key_token2;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
SizeStrategy.java 19 private final GroupedLinkedMap<Key, Bitmap> groupedMap = new GroupedLinkedMap<Key, Bitmap>();
25 final Key key = keyPool.get(size); local
27 groupedMap.put(key, bitmap);
29 Integer current = sortedSizes.get(key.size);
30 sortedSizes.put(key.size, current == null ? 1 : current + 1);
36 Key key = keyPool.get(size); local
40 keyPool.offer(key);
    [all...]
  /external/guice/core/test/com/google/inject/spi/
SpiBindingsTest.java 30 import com.google.inject.Key;
66 assertEquals(Key.get(Integer.class, Names.named("one")), binding.getKey());
85 assertEquals(Key.get(String.class), binding.getKey());
117 assertEquals(Key.get(String.class), binding.getKey());
143 assertEquals(Key.get(String.class), binding.getKey());
146 assertEquals(Key.get(StringProvider.class), binding.getProviderKey());
157 final Key<String> aKey = Key.get(String.class, Names.named("a"));
158 final Key<String> bKey = Key.get(String.class, Names.named("b"))
    [all...]
  /external/guice/core/test/com/googlecode/guice/bundle/
OSGiTestActivator.java 25 import com.google.inject.Key;
495 injector.getInstance(Key.get(api, named(vis.name())));
497 aopInjector.getInstance(Key.get(api, named(vis.name())));
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
AbstractInjectorGrapherTest.java 26 import com.google.inject.Key;
112 aNode = new ImplementationNode(NodeId.newTypeId(Key.get(A.class)), null,
114 a2Node = new ImplementationNode(NodeId.newTypeId(Key.get(A2.class)), null,
116 iaNode = new InterfaceNode(NodeId.newTypeId(Key.get(IA.class)), null);
117 iaAnnNode = new InterfaceNode(NodeId.newTypeId(Key.get(IA.class, Ann.class)), null);
118 stringNode = new InterfaceNode(NodeId.newTypeId(Key.get(String.class)), null);
119 stringInstanceNode = new InstanceNode(NodeId.newInstanceId(Key.get(String.class)), null,
155 Node a2ProviderNode = new InstanceNode(NodeId.newInstanceId(Key.get(IA.class)), null,
176 }), ImmutableSet.<Key<?>>of(Key.get(String.class)))
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ScopeRequestIntegrationTest.java 24 import com.google.inject.Key;
70 ImmutableMap.<Key<?>, Object>of(Key.get(SomeObject.class), someObject))).get();
81 ImmutableMap.<Key<?>, Object>of(Key.get(SomeObject.class), someObject))).get();
103 ImmutableMap.<Key<?>, Object>of(Key.get(SomeObject.class), "Boo!"));
106 assertEquals("Value[Boo!] of type[java.lang.String] is not compatible with key[" + Key.get(SomeObject.class) + "]", iae.getMessage());
127 Map<Key<?>, Object> map = Maps.newHashMap()
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UResource.java 19 * ICU resource bundle key and value types.
24 * Represents a resource bundle item's key string.
29 public static final class Key implements CharSequence, Cloneable, Comparable<Key> {
30 // Stores a reference to the resource bundle key string bytes array,
31 // with an offset of the key, to avoid creating a String object
33 // Alternatively, we could try to always just get the key String object,
41 * Constructs an empty resource key string object.
43 public Key() {}
45 private Key(byte[] keyBytes, int keyOffset, int keyLength)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
BaseLocale.java 62 Key key = new Key(language, script, region, variant); local
63 BaseLocale baseLocale = CACHE.get(key);
149 private static class Key implements Comparable<Key> {
157 public Key(String language, String script, String region, String variant) {
175 (obj instanceof Key)
176 && AsciiUtil.caseIgnoreMatch(((Key)obj)._lang, this._lang)
177 && AsciiUtil.caseIgnoreMatch(((Key)obj)._scrt, this._scrt
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
BaseLocale.java 58 Key key = new Key(language, script, region, variant); local
59 BaseLocale baseLocale = CACHE.get(key);
145 private static class Key implements Comparable<Key> {
153 public Key(String language, String script, String region, String variant) {
171 (obj instanceof Key)
172 && AsciiUtil.caseIgnoreMatch(((Key)obj)._lang, this._lang)
173 && AsciiUtil.caseIgnoreMatch(((Key)obj)._scrt, this._scrt
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UResource.java 18 * ICU resource bundle key and value types.
22 * Represents a resource bundle item's key string.
27 public static final class Key implements CharSequence, Cloneable, Comparable<Key> {
28 // Stores a reference to the resource bundle key string bytes array,
29 // with an offset of the key, to avoid creating a String object
31 // Alternatively, we could try to always just get the key String object,
39 * Constructs an empty resource key string object.
41 public Key() {}
43 private Key(byte[] keyBytes, int keyOffset, int keyLength)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
BaseLocale.java 58 Key key = new Key(language, script, region, variant); local
59 BaseLocale baseLocale = CACHE.get(key);
145 private static class Key implements Comparable<Key> {
153 public Key(String language, String script, String region, String variant) {
171 (obj instanceof Key)
172 && AsciiUtil.caseIgnoreMatch(((Key)obj)._lang, this._lang)
173 && AsciiUtil.caseIgnoreMatch(((Key)obj)._scrt, this._scrt
    [all...]
  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 47 K Key;
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
52 const K &getKey() const { return Key; }
63 const K &key, const V &val,
67 new (New) ScopedHashTableVal(key, val);
174 /// Return 1 if the specified key is in the table, 0 otherwise.
175 size_type count(const K &Key) const {
176 return TopLevelMap.count(Key);
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 274 auto Key = I->second.first;
275 void *StubAddr = IndirectStubsInfos[Key.first].getStub(Key.second);
289 auto Key = I->second.first;
290 void *PtrAddr = IndirectStubsInfos[Key.first].getPtr(Key.second);
300 auto Key = I->second.first;
301 *IndirectStubsInfos[Key.first].getPtr(Key.second) =
326 auto Key = FreeStubs.back()
    [all...]
  /external/llvm/lib/ExecutionEngine/
GDBRegistrationListener.cpp 172 const char *Key = Object.getMemoryBufferRef().getBufferStart();
174 assert(Key && "Attempt to register a null object with a debugger.");
176 assert(ObjectBufferMap.find(Key) == ObjectBufferMap.end() &&
187 ObjectBufferMap[Key] = RegisteredObjectInfo(Size, JITCodeEntry,
194 const char *Key = Object.getMemoryBufferRef().getBufferStart();
196 RegisteredObjectBufferMap::iterator I = ObjectBufferMap.find(Key);
  /external/llvm/lib/IR/
Module.cpp 307 MDString *Key = cast<MDString>(Flag->getOperand(1));
309 Flags.push_back(ModuleFlagEntry(MFB, Key, Val));
314 /// Return the corresponding value if Key appears in module flags, otherwise
316 Metadata *Module::getModuleFlag(StringRef Key) const {
320 if (Key == MFE.Key->getString())
343 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
348 MDString::get(Context, Key), Val};
351 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
353 addModuleFlag(Behavior, Key, ConstantAsMetadata::get(Val))
    [all...]
  /external/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 275 yaml::ScalarNode *Key;
280 Key = dyn_cast<yaml::ScalarNode>(Entry.getKey());
281 if (!Key) {
292 RewriteType = Key->getValue(KeyStorage);
294 return parseRewriteFunctionDescriptor(YS, Key, Value, DL);
296 return parseRewriteGlobalVariableDescriptor(YS, Key, Value, DL);
298 return parseRewriteGlobalAliasDescriptor(YS, Key, Value, DL);
314 yaml::ScalarNode *Key;
320 Key = dyn_cast<yaml::ScalarNode>(Field.getKey());
321 if (!Key) {
    [all...]
  /external/skia/src/core/
SkResourceCache.h 20 * Cache object for bitmaps (with possible scale in X Y as part of the key).
31 struct Key {
32 /** Key subclasses must call this after their own fields and data are initialized.
34 * @param nameSpace must be unique per Key subclass.
40 /** Returns the size of this key. */
51 bool operator==(const Key& other) const {
75 typedef SkResourceCache::Key Key;
82 virtual const Key& getKey() const = 0;
90 static uint32_t Hash(const Key& key) { return key.hash();
    [all...]
  /external/v8/src/
address-map.h 28 map->LookupOrInsert(Key(obj), Hash(obj));
30 return map->Lookup(Key(obj), Hash(obj));
38 static void* Key(HeapObject* obj) {
effects.h 186 typedef Var Key;
  /external/v8/src/parsing/
preparse-data.h 162 struct Key {

Completed in 1833 milliseconds

1 2 34 5 6 7 8 91011>>