Searched defs:Entry (Results 226 - 250 of 347) sorted by relevance

1234567891011>>

/external/chromium_org/net/websockets/
H A Dwebsocket_job_test.cc154 struct Entry { struct in class:net::__anon9840::MockCookieStore
165 Entry entry;
177 Entry& entry = entries_[i];
240 const std::vector<Entry>& entries() const { return entries_; }
246 std::vector<Entry> entries_;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DIndexedDBModel.js357 * @param {function(!Array.<!WebInspector.IndexedDBModel.Entry>, boolean)} callback
371 * @param {function(!Array.<!WebInspector.IndexedDBModel.Entry>, boolean)} callback
386 * @param {function(!Array.<!WebInspector.IndexedDBModel.Entry>, boolean)} callback
410 entries.push(new WebInspector.IndexedDBModel.Entry(key, primaryKey, value));
428 WebInspector.IndexedDBModel.Entry = function(key, primaryKey, value)
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-table.cc643 struct HeapProfileTable::Snapshot::Entry { struct in class:HeapProfileTable::Snapshot
647 Entry() : count(0), bytes(0) { } function in struct:HeapProfileTable::Snapshot::Entry
650 bool operator<(const Entry& x) const {
658 map<Bucket*, Entry> buckets_;
665 Entry* e = &state->buckets_[v->bucket()]; // Creates empty Entry first time
689 Entry* entries = new Entry[n];
691 for (map<Bucket*,Entry>::const_iterator iter = state.buckets_.begin();
708 const Entry
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-js-typed-lowering.cc1334 struct Entry { struct
1342 Entry ops[] = {
/external/clang/lib/AST/
H A DDeclTemplate.cpp172 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos); local
173 return Entry ? SETraits::getMostRecentDecl(Entry) : nullptr;
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp420 llvm::BasicBlock *Entry = Scope.getNormalBlock(); local
421 if (!Entry) {
422 Entry = CGF.createBasicBlock("cleanup");
423 Scope.setNormalBlock(Entry);
425 return Entry;
434 llvm::BasicBlock *Entry) {
435 llvm::BasicBlock *Pred = Entry->getSinglePredecessor();
436 if (!Pred) return Entry;
439 if (!Br || Br->isConditional()) return Entry;
440 assert(Br->getSuccessor(0) == Entry);
433 SimplifyCleanupEntry(CodeGenFunction &CGF, llvm::BasicBlock *Entry) argument
[all...]
/external/clang/lib/Lex/
H A DPragma.cpp68 llvm::StringMapEntry<PragmaHandler *> &Entry = local
70 Entry.setValue(Handler);
/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp134 llvm::BitstreamEntry Entry = Cursor.advance(); local
136 switch (Entry.Kind) {
157 if (!InGlobalIndexBlock && Entry.ID == GLOBAL_INDEX_BLOCK_ID) {
170 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) {
527 llvm::BitstreamEntry Entry = InStream.advance(); local
528 switch (Entry.Kind) {
536 InStream.skipRecord(Entry.ID);
544 if (Entry.ID == CONTROL_BLOCK_ID) {
553 if (Entry.ID == AST_BLOCK_ID) {
575 unsigned Code = InStream.readRecord(Entry
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp46 const CFGBlock *Entry = &(CalleeCFG->getEntry()); local
49 assert(Entry->empty());
50 assert(Entry->succ_size() == 1);
53 const CFGBlock *Succ = *(Entry->succ_begin());
56 BlockEdge Loc(Entry, Succ, calleeCtx);
/external/clang/test/Analysis/
H A Dmisc-ps-region-store.cpp564 struct Entry;
568 struct PR11146::Entry { struct in class:PR11146
573 (void) &Entry::x;
/external/guava/guava/src/com/google/common/collect/
H A DMaps.java50 import java.util.Map.Entry;
361 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
550 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
712 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
720 public static <K, V> Entry<K, V> immutableEntry(
727 * Entry#setValue} operation throws an {@link UnsupportedOperationException},
733 static <K, V> Set<Entry<K, V>> unmodifiableEntrySet(
734 Set<Entry<K, V>> entrySet) {
741 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
743 * the Entry contrac
748 unmodifiableEntry(final Entry<K, V> entry) argument
797 addAll( Collection<? extends Entry<K, V>> collection) argument
1495 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1538 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1551 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1563 AbstractFilteredMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
1696 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1707 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1795 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DMultimaps.java49 import java.util.Map.Entry;
406 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
490 transient Collection<Entry<K, V>> entries;
518 Set<Entry<K, Collection<V>>> entrySet;
520 @Override public Set<Map.Entry<K, Collection<V>>> entrySet() {
521 Set<Entry<K, Collection<V>>> result = entrySet;
552 @Override public Collection<Entry<K, V>> entries() {
553 Collection<Entry<K, V>> result = entries;
693 @Override public Set<Map.Entry<K, V>> entries() {
903 * The {@link Entry#setValu
2271 filterEntries( Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2286 filterFiltered(FilteredMultimap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2297 FilteredMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java48 import java.util.Map.Entry;
358 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
547 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
683 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
691 public static <K, V> Entry<K, V> immutableEntry(
698 * Entry#setValue} operation throws an {@link UnsupportedOperationException},
704 static <K, V> Set<Entry<K, V>> unmodifiableEntrySet(
705 Set<Entry<K, V>> entrySet) {
712 * Entry#setValue} operation throws an {@link UnsupportedOperationException}.
714 * the Entry contrac
719 unmodifiableEntry(final Entry<K, V> entry) argument
768 addAll( Collection<? extends Entry<K, V>> collection) argument
1466 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1509 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1522 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1534 AbstractFilteredMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
1667 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
1678 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1766 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DMultimaps.java45 import java.util.Map.Entry;
317 for (Map.Entry<? extends V, ? extends K> entry : source.entries()) {
401 transient Collection<Entry<K, V>> entries;
429 Set<Entry<K, Collection<V>>> entrySet;
431 @Override public Set<Map.Entry<K, Collection<V>>> entrySet() {
432 Set<Entry<K, Collection<V>>> result = entrySet;
463 @Override public Collection<Entry<K, V>> entries() {
464 Collection<Entry<K, V>> result = entries;
604 @Override public Set<Map.Entry<K, V>> entries() {
814 * The {@link Entry#setValu
2069 filterFiltered(FilteredMultimap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2080 FilteredMultimap(Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) argument
[all...]
/external/lldb/examples/darwin/heap_find/heap/
H A Dheap_find.cpp477 m_entries = (Entry *)safe_malloc (m_size * sizeof(Entry));
515 ::qsort (m_entries, m_size, sizeof(Entry), (comare_function_t)compare_bytes);
534 ::qsort (m_entries, m_size, sizeof(Entry), (comare_function_t)compare_count);
549 struct Entry struct in class:ObjCClassInfo
557 compare_bytes (const Entry *a, const Entry *b)
566 compare_count (const Entry *a, const Entry *b)
574 Entry *m_entrie
[all...]
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp409 VariableGEPIndex Entry = {Index, Extension, local
411 VarIndices.push_back(Entry);
1394 VariableGEPIndex Entry = { V, Extension, -Scale }; local
1395 Dest.push_back(Entry);
H A DLazyValueInfo.cpp984 ValueCacheEntryTy &Entry = ValueCache[LVIValueHandle(*I, this)]; local
985 ValueCacheEntryTy::iterator CI = Entry.find(ToUpdate);
987 assert(CI != Entry.end() && "Couldn't find entry to update?");
988 Entry.erase(CI);
H A DMemoryDependenceAnalysis.cpp694 NonLocalDepInfo::iterator Entry = local
697 if (Entry != Cache.begin() && std::prev(Entry)->getBB() == DirtyBB)
698 --Entry;
701 if (Entry != Cache.begin()+NumSortedEntries &&
702 Entry->getBB() == DirtyBB) {
705 if (!Entry->getResult().isDirty())
709 ExistingResult = &*Entry;
805 NonLocalDepInfo::iterator Entry = local
808 if (Entry !
878 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry = local
888 MemoryDependenceAnalysis::NonLocalDepInfo::iterator Entry = local
[all...]
/external/llvm/lib/IR/
H A DType.cpp314 IntegerType *&Entry = C.pImpl->IntegerTypes[NumBits]; local
316 if (!Entry)
317 Entry = new (C.pImpl->TypeAllocator) IntegerType(C, NumBits);
319 return Entry;
457 EntryTy *Entry = &getContext().pImpl->NamedStructTypes.GetOrCreateValue(Name); local
460 if (Entry->getValue()) {
471 Entry = &getContext().pImpl->
473 } while (Entry->getValue());
477 Entry->setValue(this);
482 SymbolTableEntry = Entry;
681 ArrayType *&Entry = local
710 VectorType *&Entry = ElementType->getContext().pImpl local
734 PointerType *&Entry = AddressSpace == 0 ? CImpl->PointerTypes[EltTy] local
[all...]
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp308 for (auto &Entry : LocalSymbolData)
309 if (&Entry.SymbolData->getSymbol() == &Sym)
310 return &Entry;
312 for (auto &Entry : ExternalSymbolData)
313 if (&Entry.SymbolData->getSymbol() == &Sym)
314 return &Entry;
316 for (auto &Entry : UndefinedSymbolData)
317 if (&Entry.SymbolData->getSymbol() == &Sym)
318 return &Entry;
521 MCSymbolData &Entry local
566 uint64_t &Entry = StringIndexMap[Symbol.getName()]; local
601 uint64_t &Entry = StringIndexMap[Symbol.getName()]; local
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp210 MachineBasicBlock *Entry = MI->getParent(); local
211 MachineFunction *MF = Entry->getParent();
216 assert(MBBI != Entry->end() && MBBI->getOpcode() == PPC::MTVRSAVE);
242 assert(MBBI != Entry->begin() && "UPDATE_VRSAVE is first instr in block?");
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp950 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", FlushF); local
956 IRBuilder<> Builder(Entry);
/external/llvm/lib/Transforms/Scalar/
H A DSampleProfile.cpp569 std::pair<BlockWeightMap::iterator, bool> Entry = local
571 if (!Entry.second)
572 return Entry.first->second;
581 Entry.first->second = Weight;
H A DStructurizeCFG.cpp149 /// | / 1 = "Entry" block
416 BasicBlock *Entry = R->getEntry(); local
417 if (Visited.count(Entry))
418 Pred[Entry] = BoolTrue;
420 LPred[Entry] = BoolFalse;
647 BasicBlock *Entry = PrevNode->getEntry(); local
650 killTerminator(Entry);
651 if (!NeedEmpty || Entry->getFirstInsertionPt() == Entry->end())
652 return Entry;
736 BasicBlock *Entry = Node->getEntry(); local
[all...]
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp62 BasicBlock *Entry = BasicBlock::Create(M->getContext(), "entry", F); local
63 IRBuilder<> builder(Entry);
299 BasicBlock *Entry = BasicBlock::Create(Context, "entry", TestFunction); local
300 IRBuilder<> Builder(Entry);
522 BasicBlock *Entry = BasicBlock::Create(Context, "entry", F); local
523 IRBuilder<> Builder(Entry);
534 Entry->eraseFromParent();

Completed in 1270 milliseconds

1234567891011>>