Searched defs:Key (Results 51 - 75 of 145) sorted by relevance

123456

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs58 Key, enumerator in enum:Antlr.Runtime.Collections.HashList.HashListEnumerator.EnumerationMode
94 public object Key property in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
154 if (_mode == EnumerationMode.Key)
273 return new HashListEnumerator(_hashList, HashListEnumerator.EnumerationMode.Key);
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_area.cc117 base::NullableString16 DOMStorageArea::Key(unsigned index) { function in class:content::DOMStorageArea
121 return map_->Key(index);
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.cc166 StringPiece LevelDBTransaction::DataIterator::Key() const { function in class:content::LevelDBTransaction::DataIterator
248 // Ensure the non-current iterator is positioned after Key().
254 non_current->Seek(Key());
256 !comparator_->Compare(non_current->Key(), Key())) {
258 // strictly greater than Key().
264 comparator_->Compare(non_current->Key(), Key()) > 0);
284 // Ensure the non-current iterator is positioned before Key().
290 s = non_current->Seek(Key());
317 StringPiece LevelDBTransaction::TransactionIterator::Key() const { function in class:content::LevelDBTransaction::TransactionIterator
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDOMWrapperMap.h106 static KeyType* Key(Iterator& iter) { return iter->key; } function in class:blink::DOMWrapperMap::PersistentValueMapTraits
/external/chromium_org/third_party/angle/util/
H A DEvent.h30 Key Code;
79 KeyEvent Key; // Key event parameters member in union:Event::__anon11590
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dcorruption_test.cc75 Slice key = Key(i, &key_space);
188 Slice Key(int i, std::string* storage) { function in class:leveldb::CorruptionTest
350 Status s = db_->Put(WriteOptions(), Key(5, &tmp1), Value(5, &tmp2));
361 ASSERT_OK(db_->Put(WriteOptions(), Key(1000, &tmp1), Value(1000, &tmp2)));
363 ASSERT_OK(db_->Get(ReadOptions(), Key(1000, &tmp1), &v));
366 ASSERT_OK(db_->Get(ReadOptions(), Key(1000, &tmp1), &v));
H A Dskiplist_test.cc15 typedef uint64_t Key; typedef in namespace:leveldb
18 int operator()(const Key& a, const Key& b) const {
34 SkipList<Key, Comparator> list(cmp, &arena);
37 SkipList<Key, Comparator>::Iterator iter(&list);
51 std::set<Key> keys;
54 SkipList<Key, Comparator> list(cmp, &arena);
56 Key key = rnd.Next() % R;
72 SkipList<Key, Comparator>::Iterator iter(&list);
90 SkipList<Key, Comparato
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrLayerCache.h53 struct Key { struct in struct:GrCachedLayer
54 Key(uint32_t pictureID, int start, int stop, const SkIPoint& offset, const SkMatrix& ctm) function in struct:GrCachedLayer::Key
62 // Key needs to be tightly packed.
63 GR_STATIC_ASSERT(sizeof(Key) == sizeof(uint32_t) + 2 * sizeof(int) +
68 bool operator==(const Key& other) const {
94 static const Key& GetKey(const GrCachedLayer& layer) { return layer.fKey; }
95 static uint32_t Hash(const Key& key) {
96 return SkChecksum::Murmur3(reinterpret_cast<const uint32_t*>(&key), sizeof(Key));
146 const Key fKey;
234 SkTDynamicHash<GrCachedLayer, GrCachedLayer::Key> fLayerHas
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureStripAtlas.h75 // Key to indicate an atlas row without any meaningful data stored in it
141 class Key : public GrMurmur3HashKey<sizeof(GrTextureStripAtlas::Desc)> {}; class in class:GrTextureStripAtlas::AtlasEntry
142 static const Key& GetKey(const AtlasEntry& entry) { return entry.fKey; }
143 static uint32_t Hash(const Key& key) { return key.getHash(); }
148 Key fKey;
/external/chromium_org/v8/src/
H A Dpreparse-data.h126 struct Key { struct in class:v8::internal::CompleteParserRecorder
H A Dscopeinfo.h55 struct Key { struct in class:v8::internal::ContextSlotCache
103 Key keys_[kLength];
H A Deffects.h188 typedef Var Key; typedef in struct:v8::internal::EffectsBase::SplayTreeConfig
H A Dinterface-descriptors.h109 enum Key { enum in class:v8::internal::CallDescriptors
122 CallInterfaceDescriptor(Isolate* isolate, CallDescriptors::Key key)
183 name(Isolate* isolate, CallDescriptors::Key key) : base(isolate, key) {} \
186 static inline CallDescriptors::Key key();
470 // We define the association between CallDescriptors::Key and the specialized
473 CallDescriptors::Key name##Descriptor::key() { return CallDescriptors::name; }
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-gap-resolver.cc36 typedef std::pair<InstructionOperand::Kind, int> Key; typedef in class:InterpreterState
37 typedef Key Value;
38 typedef std::map<Key, Value> OperandMap;
53 static Key KeyFor(const InstructionOperand* op) {
54 return Key(op->kind(), op->index());
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp120 const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr(); local
123 if (CGT.isRecordLayoutComplete(Key)) return true;
126 if (CGT.isRecordBeingLaidOut(Key))
627 const Type *Key = Context.getTagDeclType(RD).getTypePtr(); local
629 llvm::StructType *&Entry = RecordDeclTypes[Key];
651 bool InsertResult = RecordsBeingLaidOut.insert(Key); (void)InsertResult;
665 CGRecordLayouts[Key] = Layout;
668 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
689 const Type *Key = Context.getTagDeclType(RD).getTypePtr(); local
691 const CGRecordLayout *Layout = CGRecordLayouts.lookup(Key);
[all...]
/external/clang/lib/Lex/
H A DHeaderMap.cpp38 uint32_t Key; // Offset (into strings) of key. member in struct:clang::HMapBucket
140 Result.Key = HMAP_EmptyBucketKey;
154 Result.Key = getEndianAdjustedWord(BucketPtr->Key);
191 if (B.Key == HMAP_EmptyBucketKey) continue;
193 const char *Key = getString(B.Key); local
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
226 if (B.Key == HMAP_EmptyBucketKey) return StringRef(); // Hash miss.
229 if (!Filename.equals_lower(getString(B.Key)))
[all...]
/external/clang/test/CodeGen/
H A D2008-03-24-BitField-And-Alloca.c63 } Key; typedef in typeref:union:_Key
65 static void foo(const Key iospec, int* ret)
86 __attribute__ ((unused)) Key iospec = (Key) key_token2;
/external/llvm/include/llvm/ADT/
H A DScopedHashTable.h47 K Key; member in class:llvm::ScopedHashTableVal
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
52 const K &getKey() const { return Key; }
175 size_type count(const K &Key) const {
176 return TopLevelMap.count(Key);
179 V lookup(const K &Key) { argument
180 typename DenseMap<K, ValTy*, KInfo>::iterator I = TopLevelMap.find(Key);
187 void insert(const K &Key, const V &Val) { argument
188 insertIntoScope(CurScope, Key, Val);
195 iterator begin(const K &Key) { argument
209 insertIntoScope(ScopeTy *S, const K &Key, const V &Val) argument
[all...]
/external/llvm/lib/IR/
H A DDebugLoc.cpp196 unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) { argument
197 return static_cast<unsigned>(hash_combine(Key.LineCol, Key.ScopeIdx));
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs62 enum Key enum in class:SevenZip.LzmaAlone
156 if (parser[(int)Key.Help1].ThereIs || parser[(int)Key.Help2].ThereIs)
172 if (parser[(int)Key.Dictionary].ThereIs)
175 if (!GetNumber((string)parser[(int)Key.Dictionary].PostStrings[0], out dicLog))
181 if (parser[(int)Key.MatchFinder].ThereIs)
182 mf = (string)parser[(int)Key.MatchFinder].PostStrings[0];
196 if (parser[(int)Key.Train].ThereIs)
197 train = (string)parser[(int)Key.Train].PostStrings[0];
207 bool stdInMode = parser[(int)Key
[all...]
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMetaHeader.h68 UINT32 Key; // GDIP_WMF_ALDUSKEY member in struct:__anon28779
78 // Key contains a special identification value that indicates the presence
/external/stlport/test/unit/
H A Dmap_test.cpp303 struct Key struct
305 Key() : m_data(0) {} function in struct:Key
306 explicit Key(int data) : m_data(data) {} function in struct:Key
313 bool operator () (Key lhs, Key rhs) const
316 bool operator () (Key lhs, int rhs) const
319 bool operator () (int lhs, Key rhs) const
325 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
328 bool operator () (Key cons
[all...]
H A Dset_test.cpp360 struct Key struct
362 Key() : m_data(0) {} function in struct:Key
363 explicit Key(int data) : m_data(data) {} function in struct:Key
370 bool operator () (Key lhs, Key rhs) const
373 bool operator () (Key lhs, int rhs) const
376 bool operator () (int lhs, Key rhs) const
382 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
385 bool operator () (Key cons
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Daddressmap-inl.h107 typedef const void* Key; typedef in class:AddressMap
116 inline const Value* Find(Key key) const;
117 inline Value* FindMutable(Key key);
121 void Insert(Key key, Value value);
126 bool FindAndRemove(Key key, Value* removed_value);
138 Key key, Key* res_key);
145 inline void Iterate(void (*callback)(Key, Value*, Type), Type arg) const;
164 Key key;
289 inline const Value* AddressMap<Value>::Find(Key ke
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Daddressmap-inl.h107 typedef const void* Key; typedef in class:AddressMap
116 inline const Value* Find(Key key) const;
117 inline Value* FindMutable(Key key);
121 void Insert(Key key, Value value);
126 bool FindAndRemove(Key key, Value* removed_value);
138 Key key, Key* res_key);
145 inline void Iterate(void (*callback)(Key, Value*, Type), Type arg) const;
164 Key key;
289 inline const Value* AddressMap<Value>::Find(Key ke
[all...]

Completed in 423 milliseconds

123456