Searched defs:Key (Results 1 - 25 of 171) sorted by relevance

1234567

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/
H A D__init__.py25 from boto.file.key import Key namespace
28 __all__ = ['Connection', 'Key', 'Bucket']
H A Dbucket.py26 from boto.file.key import Key namespace
68 key = Key(self.name, self.contained_key)
72 key_type=Key.KEY_REGULAR_FILE):
75 Returns: An instance of a Key object or None
84 :param stream_type: Type of the Key - Regular File or input/output Stream
86 :rtype: :class:`boto.file.key.Key`
87 :returns: A Key object from this bucket.
90 return Key(self.name, '-', key_type=Key.KEY_STREAM_READABLE)
93 return Key(sel
[all...]
H A Dkey.py30 class Key(object): class in inherits:object
61 Retrieves a file from a Key
89 Store an object in a file using the name of the Key object as the
166 Retrieve file data from the Key, and return contents as a string.
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
H A Dobject.py22 from boto.s3.key import Key namespace
24 class Object(Key):
/external/llvm/include/llvm/ADT/
H A DStringSet.h32 std::pair<typename base::iterator, bool> insert(StringRef Key) { argument
33 assert(!Key.empty());
34 return base::insert(std::make_pair(Key, '\0'));
/external/llvm/lib/Support/
H A DOptions.cpp25 void OptionRegistry::addOption(void *Key, cl::Option *O) { argument
26 assert(Options.find(Key) == Options.end() &&
28 Options.insert(std::make_pair(Key, O));
H A DStringPool.cpp25 PooledStringPtr StringPool::intern(StringRef Key) { argument
26 table_t::iterator I = InternTable.find(Key);
30 entry_t *S = entry_t::Create(Key);
/external/llvm/lib/IR/
H A DMetadataImpl.h24 const typename InfoT::KeyTy &Key) {
25 auto I = Store.find_as(Key);
23 getUniqued(DenseSet<T *, InfoT> &Store, const typename InfoT::KeyTy &Key) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DClassesKey.java19 private static final Key FACTORY = (Key)KeyFactory.create(Key.class, KeyFactory.OBJECT_BY_CLASS);
21 interface Key { interface in class:ClassesKey
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
H A Dlss318 from boto.s3.key import Key namespace
44 if isinstance(k, Key):
48 #If it's not a Key object, it doesn't have a last_modified time, so
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
H A Dkey.py22 class Key(object): class in inherits:object
47 raise NotImplementedError("Key Names are not currently supported")
56 raise NotImplementedError("Key parents are not currently supported")
/external/giflib/
H A Dgif_hash.c63 void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code) argument
65 int HKey = KeyItem(Key);
79 HTable[HKey] = HT_PUT_KEY(Key) | HT_PUT_CODE(Code);
83 Routine to test if given Key exists in HashTable and if so returns its code *
86 int _ExistsHashTable(GifHashTableType *HashTable, uint32_t Key) argument
88 int HKey = KeyItem(Key);
100 if (Key == HTKey) return HT_GET_CODE(HTable[HKey]);
109 The given Key is assumed to be 20 bits as follows: lower 8 bits are the *
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DKey.java13 public interface Key { interface
/external/libchrome/base/posix/
H A Dglobal_descriptors.h39 typedef uint32_t Key; typedef in class:base::GlobalDescriptors
41 Descriptor(Key key, int fd);
42 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
45 Key key;
53 // Often we want a canonical descriptor for a given Key. In this case, we add
65 int Get(Key key) const;
68 int MaybeGet(Key key) const;
71 base::MemoryMappedFile::Region GetRegion(Key key) const;
75 void Set(Key key, int fd);
78 void Set(Key ke
[all...]
/external/libcxx/test/std/containers/associative/map/
H A Dcompare.pass.cpp12 // template <class Key, class T, class Compare = less<Key>,
13 // class Allocator = allocator<pair<const Key, T>>>
23 struct Key { struct
24 template <typename T> Key(const T&) {} function in struct:Key
25 bool operator< (const Key&) const { return false; }
30 typedef std::map<Key, int> MapT;
36 m_contains[Key(0)] = 42;
38 Iter it = m_empty.find(Key(0));
40 it = m_contains.find(Key(
[all...]
/external/libcxx/test/std/containers/unord/unord.map/
H A Dcompare.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
13 // class Alloc = allocator<pair<const Key, T>>>
22 struct Key { struct
23 template <typename T> Key(const T&) {} function in struct:Key
24 bool operator== (const Key&) const { return true; }
30 struct hash<Key>
32 size_t operator()(Key const &) const {return 0;}
39 typedef std::unordered_map<Key, in
[all...]
/external/llvm/include/llvm/MC/
H A DSubtargetFeature.h53 const char *Key; // K-V key string member in struct:llvm::SubtargetFeatureKV
60 return StringRef(Key) < S;
70 const char *Key; // K-V key string member in struct:llvm::SubtargetInfoKV
75 return StringRef(Key) < S;
/external/skia/src/core/
H A DSkImageFilterCacheKey.h11 struct SkImageFilter::Cache::Key { struct in class:SkImageFilter::Cache
12 Key(const uint32_t uniqueID, const SkMatrix& matrix, function in struct:SkImageFilter::Cache::Key
19 // Assert that Key is tightly-packed, since it is hashed.
20 static_assert(sizeof(Key) == sizeof(uint32_t) + sizeof(SkMatrix) + sizeof(SkIRect) +
32 bool operator==(const Key& other) const {
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheReferencesTest.java39 private static final CacheLoader<Key,String> KEY_TO_STRING_LOADER =
40 new CacheLoader<Key, String>() {
41 @Override public String load(Key key) {
52 private Iterable<LoadingCache<Key, String>> caches() {
55 new Function<CacheBuilder<Object, Object>, LoadingCache<Key, String>>() {
56 @Override public LoadingCache<Key, String> apply(CacheBuilder<Object, Object> builder) {
63 for (LoadingCache<Key, String> cache : caches()) {
65 Key key = new Key(1);
75 for (LoadingCache<Key, Strin
156 static class Key { class in class:CacheReferencesTest
160 Key(int value) { method in class:CacheReferencesTest.Key
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DTypeListPool.java37 import org.jf.dexlib2.writer.pool.TypeListPool.Key;
44 public class TypeListPool extends BaseNullableOffsetPool<Key<? extends Collection<? extends CharSequence>>>
45 implements TypeListSection<CharSequence, Key<? extends Collection<? extends CharSequence>>> {
54 Key<? extends Collection<? extends CharSequence>> key = new Key<Collection<? extends CharSequence>>(types);
65 public Collection<? extends CharSequence> getTypes(Key<? extends Collection<? extends CharSequence>> typesKey) {
72 @Override public int getNullableItemOffset(@Nullable Key<? extends Collection<? extends CharSequence>> key) {
80 public static class Key<TypeCollection extends Collection<? extends CharSequence>> class in class:TypeListPool
81 implements Comparable<Key<? extends Collection<? extends CharSequence>>> {
84 public Key( method in class:TypeListPool.Key
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
H A Dtest_multidelete.py31 from boto.s3.key import Key namespace
63 Key(name="regular"),
64 Key(),
77 result = self.bucket.delete_keys([Key(name=">_<;")])
82 no_ver = Key(name="no")
89 result = self.bucket.delete_keys([u"漢字", Key(name=u"日本語")])
/external/clang/lib/AST/
H A DItaniumCXXABI.cpp66 QualType Key = variable
69 Key = Context.getCanonicalType(Key);
70 return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];
/external/clang/tools/diagtool/
H A DDiagnosticNames.cpp53 DiagnosticRecord Key = {nullptr, DiagID, 0}; local
58 Key, orderByID);
/external/eigen/demos/opengl/
H A Dicosphere.cpp63 typedef unsigned long long Key; typedef
64 std::map<Key,int> edgeMap;
81 Key edgeKey = Key(e0) | (Key(e1)<<32);
82 std::map<Key,int>::iterator it = edgeMap.find(edgeKey);
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp84 bool Key = (1 << s) & getUnits(); local
93 (Key << (SlotWeight * s)) * ((MaskWeight - countPopulation(getUnits()))

Completed in 2569 milliseconds

1234567