Searched defs:getEntry (Results 1 - 7 of 7) sorted by relevance

/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DAbstractConnPool.java160 BasicPoolEntry getEntry( method in class:AbstractConnPool
/external/llvm/include/llvm/Analysis/
H A DRegionInfo.h107 inline BasicBlock* getEntry() const { return entry.getPointer(); } function in class:llvm::RegionNode
133 return getEntry();
259 BasicBlock *getEntry() const { return RegionNode::getEntry(); } function in class:llvm::Region
304 /// @return A region also starting at getEntry(), but reaching to the next
305 /// basic block that forms with getEntry() a (non canonical) region.
368 return contains(SubRegion->getEntry())
/external/srec/portable/src/
H A Dphashtable.c159 static PHashTableEntry *getEntry(PHashTable *table, function
219 if ((entry = getEntry(table, key, hashCode, idx)) != NULL)
267 result = getEntry(table, key, hashCode, idx);
351 entry = getEntry(table, key, hashCode, idx);
440 entry = getEntry(table, key, hashCode, idx);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h370 DIE *getEntry() const { return Entry; } function in class:llvm::DIEEntry
/external/clang/include/clang/Analysis/
H A DCFG.h627 CFGBlock & getEntry() { return *Entry; } function in class:clang::CFGBlock::CFG
628 const CFGBlock & getEntry() const { return *Entry; } function in class:clang::CFGBlock::CFG
805 static NodeType *getEntryNode(::clang::CFG* F) { return &F->getEntry(); }
816 return &F->getEntry();
/external/guava/src/com/google/common/collect/
H A DCustomConcurrentHashMap.java446 E getEntry(K key); method in interface:CustomConcurrentHashMap.Internals
645 public E getEntry(K key) { method in class:CustomConcurrentHashMap.Impl.InternalsImpl
650 return segmentFor(hash).getEntry(key, hash);
791 public E getEntry(Object key, int hash) { method in class:CustomConcurrentHashMap.Impl.Segment
814 E entry = getEntry(key, hash);
2015 E entry = segment.getEntry(key, hash);
2021 entry = segment.getEntry(key, hash);
/external/llvm/lib/Object/
H A DELFObjectFile.cpp313 const T *getEntry(uint16_t Section, uint32_t Entry) const;
315 const T *getEntry(const Elf_Shdr *Section, uint32_t Entry) const;
1103 const Elf_Sym *symb = getEntry<Elf_Sym>(sec->sh_link, symbol_index);
1343 ELFObjectFile<target_endianness, is64Bits>::getEntry(uint16_t Section, function in class:ELFObjectFile
1345 return getEntry<T>(getSection(Section), Entry);
1351 ELFObjectFile<target_endianness, is64Bits>::getEntry(const Elf_Shdr * Section, function in class:ELFObjectFile
1362 return getEntry<Elf_Sym>(SymbolTableSections[Symb.d.b], Symb.d.a);
1368 return getEntry<Elf_Rel>(Rel.w.b, Rel.w.c);
1374 return getEntry<Elf_Rela>(Rela.w.b, Rela.w.c);

Completed in 2148 milliseconds