/external/v8/test/cctest/ |
D | test-ordered-hash-table.cc | 118 CHECK(ordered_map->Lookup(obj)->IsTheHole()); in TEST() 121 Object* lookup = ordered_map->Lookup(obj); in TEST() 127 CHECK(ordered_map->Lookup(obj)->IsTheHole()); in TEST() 140 lookup = ordered_map->Lookup(obj1); in TEST() 142 lookup = ordered_map->Lookup(obj2); in TEST() 144 lookup = ordered_map->Lookup(obj3); in TEST() 152 lookup = ordered_map->Lookup(obj); in TEST() 154 lookup = ordered_map->Lookup(obj1); in TEST() 156 lookup = ordered_map->Lookup(obj2); in TEST() 158 lookup = ordered_map->Lookup(obj3); in TEST() [all …]
|
D | test-dictionary.cc | 53 CHECK_EQ(table->Lookup(a), *b); in TestHashMap() 55 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value()); in TestHashMap() 60 CHECK_EQ(table->Lookup(a), *b); in TestHashMap() 61 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value()); in TestHashMap() 66 CHECK_NE(table->Lookup(a), *b); in TestHashMap() 73 CHECK_EQ(table->Lookup(a), CcTest::heap()->the_hole_value()); in TestHashMap() 83 CHECK_EQ(table->Lookup(key), *value); in TestHashMap() 93 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value()); in TestHashMap() 101 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value()); in TestHashMap() 126 return Smi::cast(Lookup(key_obj))->value(); in lookup() [all …]
|
D | test-hashmap.cc | 51 HashMap::Entry* p = map_.Lookup(reinterpret_cast<void*>(x), hash_(x), true); in Insert() 64 map_.Lookup(reinterpret_cast<void*>(x), hash_(x), false); in Present()
|
/external/clang/test/SemaTemplate/ |
D | instantiate-expr-2.cpp | 89 struct Lookup {}; struct 93 typedef Lookup<B ? sizeof(T) : sizeof(E)> True; 94 typedef Lookup<!B ? sizeof(T) : sizeof(E)> False; 101 Lookup<1> const &L1(False()); 102 Lookup<sizeof(int)> const &L2(True()); 109 struct Lookup {}; struct 114 typedef Lookup<sizeof(B ? T() : E())> Type;
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
D | fpdf_page_doc.cpp | 280 if (m_FontMap.Lookup(pFontDict, fontData)) { in GetFont() 290 if (m_FontMap.Lookup(pFontDict, fontData)) { in GetFont() 371 if (!m_FontMap.Lookup(pFontDict, fontData)) { in ReleaseFont() 429 if (m_ColorSpaceMap.Lookup(pCSObj, csData)) { in GetColorSpace() 458 if (!m_ColorSpaceMap.Lookup(pCSObj, csData)) { in GetCopiedColorSpace() 473 if (!m_ColorSpaceMap.Lookup(pColorSpace, csData)) { in ReleaseColorSpace() 487 if (m_PatternMap.Lookup(pPatternObj, ptData)) { in GetPattern() 529 if (!m_PatternMap.Lookup(pPatternObj, ptData)) { in ReleasePattern() 544 if (m_ImageMap.Lookup(dwImageObjNum, imageData)) { in GetImage() 569 if (m_IccProfileMap.Lookup(pIccProfileStream, ipData)) { in GetIccProfile() [all …]
|
/external/pdfium/core/src/fpdfapi/fpdf_font/ |
D | ttgsubtable.cpp | 49 FX_BOOL CFX_GlyphMap::Lookup(int key, int &value) in Lookup() function in CFX_GlyphMap 92 if (!m_featureMap.Lookup(index, value)) { in GetVerticalGlyph() 103 if (!m_featureMap.Lookup(i, value)) { in GetVerticalGlyph() 131 if(LookupList.Lookup[index].LookupType == 1) { in GetVerticalGlyphSub() 135 &LookupList.Lookup[index])) { in GetVerticalGlyphSub() 145 struct TLookup *Lookup) in GetVerticalGlyphSub2() argument 147 for(int i = 0; i < Lookup->SubTableCount; i++) { in GetVerticalGlyphSub2() 148 switch(Lookup->SubTable[i]->SubstFormat) { in GetVerticalGlyphSub2() 150 TSingleSubstFormat1 *tbl1 = (TSingleSubstFormat1*)Lookup->SubTable[i]; in GetVerticalGlyphSub2() 158 TSingleSubstFormat2 *tbl2 = (TSingleSubstFormat2*)Lookup->SubTable[i]; in GetVerticalGlyphSub2() [all …]
|
D | ttgsubtable.h | 20 FX_BOOL Lookup(int key, int &value); 335 struct TLookup *Lookup; member 336 TLookupList(): LookupCount(0), Lookup(NULL) {} in TLookupList() 339 if(Lookup) { in ~TLookupList() 340 delete[] Lookup; in ~TLookupList() 371 struct TLookup *Lookup);
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | CompileOnDemandLayer.h | 142 std::shared_ptr<CODScopedLookup> Lookup; member 152 ModuleSetInfo(std::shared_ptr<CODScopedLookup> Lookup) in ModuleSetInfo() 153 : Lookup(std::move(Lookup)) {} in ModuleSetInfo() 157 Lookup->removeLogicalModule(LMH); in releaseResources() 237 auto DylibLookup = MSI.Lookup; in partitionAndAdd() 337 auto DylibLookup = MSI.Lookup; in addModule()
|
/external/v8/src/ |
D | compilation-cache.cc | 143 Handle<SharedFunctionInfo> CompilationCacheScript::Lookup( in Lookup() function in v8::internal::CompilationCacheScript 158 Handle<Object> probe = table->Lookup(source, context); in Lookup() 223 MaybeHandle<SharedFunctionInfo> CompilationCacheEval::Lookup( in Lookup() function in v8::internal::CompilationCacheEval 264 MaybeHandle<FixedArray> CompilationCacheRegExp::Lookup( in Lookup() function in v8::internal::CompilationCacheRegExp 319 return script_.Lookup(source, name, line_offset, column_offset, in LookupScript() 332 eval_global_.Lookup(source, outer_info, strict_mode, scope_position); in LookupEval() 335 result = eval_contextual_.Lookup(source, outer_info, strict_mode, in LookupEval() 346 return reg_exp_.Lookup(source, flags); in LookupRegExp()
|
D | compilation-cache.h | 75 Handle<SharedFunctionInfo> Lookup(Handle<String> source, 116 MaybeHandle<SharedFunctionInfo> Lookup(Handle<String> source, 135 MaybeHandle<FixedArray> Lookup(Handle<String> source, JSRegExp::Flags flags);
|
D | hashmap.h | 49 Entry* Lookup(void* key, uint32_t hash, bool insert, 114 TemplateHashMapImpl<AllocationPolicy>::Lookup( in Lookup() function 285 Entry* entry = Lookup(p->key, p->hash, true, allocator); in Resize() 341 return Iterator(this, this->Lookup(key, key->Hash(), insert, allocator));
|
D | serialize.h | 121 return *Lookup(key); in Decode() 127 Address* Lookup(uint32_t key) const { in Lookup() function 135 *Lookup(key) = value; in Put() 340 return serialization_map_->Lookup(Key(obj), Hash(obj), false) != NULL; in IsMapped() 346 serialization_map_->Lookup(Key(obj), Hash(obj), false)->value)); in MappedTo() 352 serialization_map_->Lookup(Key(obj), Hash(obj), true); in AddMapping()
|
D | interface.cc | 12 Interface* Interface::Lookup(Handle<String> name, Zone* zone) { in Lookup() function in v8::internal::Interface 17 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false, in Lookup() 68 (*map)->Lookup(const_cast<void*>(name), hash, !IsFrozen(), allocator); in DoAdd()
|
D | scopes.h | 30 Variable* Lookup(const AstRawString* name); 115 Variable* Lookup(const AstRawString* name); 405 return variables_.Lookup(name) != NULL; in IsDeclared()
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
D | fpdf_parser_objects.cpp | 594 m_Map.Lookup(key, (void*&)p); in GetElement() 600 m_Map.Lookup(key, (void*&)p); in GetElementValue() 606 m_Map.Lookup(key, (void*&)p); in GetString() 615 m_Map.Lookup(key, (void*&)p); in GetConstString() 624 m_Map.Lookup(key, (void*&)p); in GetUnicodeText() 640 m_Map.Lookup(key, (void*&)p); in GetString() 649 m_Map.Lookup(key, (void*&)p); in GetConstString() 658 m_Map.Lookup(key, (void*&)p); in GetInteger() 667 m_Map.Lookup(key, (void*&)p); in GetInteger() 676 m_Map.Lookup(key, (void*&)p); in GetNumber() [all …]
|
/external/pdfium/core/src/fxge/ge/ |
D | fx_ge_linux.cpp | 102 if (m_FontList.Lookup(LinuxGpFontList[index].NameArr[i], p)) { in MapFont() 110 if (m_FontList.Lookup(g_LinuxGbFontList[i], p)) { in MapFont() 118 if (m_FontList.Lookup(g_LinuxB5FontList[i], p)) { in MapFont() 126 if (m_FontList.Lookup(g_LinuxHGFontList[i], p)) { in MapFont()
|
/external/pdfium/core/src/fxge/apple/ |
D | fx_mac_imp.cpp | 61 if (m_FontList.Lookup(face, p)) { in MapFont() 83 if (m_FontList.Lookup(face, p)) { in MapFont()
|
/external/pdfium/core/src/fxcrt/ |
D | fx_xml_parser.cpp | 626 pwsSpace = pElement->m_AttrMap.Lookup(FX_BSTRC(""), FX_BSTRC("xmlns")); in GetNamespaceURI() 628 pwsSpace = pElement->m_AttrMap.Lookup(FX_BSTRC("xmlns"), qName); in GetNamespaceURI() 651 return m_AttrMap.Lookup(bsSpace, bsName) != NULL; in HasAttr() 661 const CFX_WideString* pValue = m_AttrMap.Lookup(space, name); in GetAttrValue() 672 const CFX_WideString* pwsValue = m_AttrMap.Lookup(bsSpace, bsName); in GetAttrInteger() 681 const CFX_WideString* pwsValue = m_AttrMap.Lookup(space, name); in GetAttrInteger() 696 const CFX_WideString* pValue = m_AttrMap.Lookup(space, name); in GetAttrFloat() 782 const CFX_WideString* CXML_AttrMap::Lookup(FX_BSTR space, FX_BSTR name) const in Lookup() function in CXML_AttrMap
|
/external/clang/lib/Frontend/Rewrite/ |
D | InclusionRewriter.cpp | 83 const DirectoryLookup *Lookup, Token &Tok, 314 FileID FileId, Lexer &RawLex, const DirectoryLookup *Lookup, Token &Tok, in HandleHasInclude() argument 497 const DirectoryLookup *Lookup = PP.GetCurDirLookup(); in Process() local 498 if (Lookup) in Process() 499 ++Lookup; in Process() 501 if (!HandleHasInclude(FileId, RawLex, Lookup, RawToken, in Process()
|
/external/pdfium/core/src/fpdfapi/ |
D | fpdf_basic_module.cpp | 94 if (!m_SecurityHandlerMap.Lookup(filter, (void*&)CreateHandler)) { in CreateSecurityHandler() 101 m_SecurityHandlerMap.Lookup(FX_BSTRC("_param_") + filter, param); in CreateSecurityHandler()
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_cache.cpp | 102 if (!m_ImageCaches.Lookup(pStream, (FX_LPVOID&)pImageCache)) { in GetCachedSize() 112 FX_BOOL bFind = m_ImageCaches.Lookup(pStream, (FX_LPVOID&)pImageCache); in GetCachedBitmap() 127 m_bCurFindCache = m_ImageCaches.Lookup(pStream, (FX_LPVOID&)m_pCurImageCache); in StartGetCachedBitmap() 162 if (!m_ImageCaches.Lookup(pStream, (FX_LPVOID&)pImageCache)) { in ResetBitmap()
|
/external/llvm/lib/IR/ |
D | ConstantsContext.h | 575 LookupKey Lookup(Ty, V); 578 auto I = find(Lookup); 589 typename MapTy::iterator find(LookupKey Lookup) { 590 return Map.find_as(Lookup); 608 LookupKey Lookup(CP->getType(), ValType(Operands, CP)); 609 auto I = find(Lookup);
|
/external/libvorbis/doc/ |
D | 03-codebook.tex | 157 Lookup type zero indicates no lookup to be read. Proceed past 160 Lookup types one and two are similar, differing only in the 161 number of lookup values to be read. Lookup type one reads a list of 163 each vector of order \varname{[codebook_dimensions]} scalars. Lookup 166 possible scalar values. Lookup decode proceeds as follows: 302 \paragraph{Vector value decode: Lookup type 1} 304 Lookup type one specifies a lattice VQ lookup table built 334 \paragraph{Vector value decode: Lookup type 2} 336 Lookup type two specifies a VQ lookup table in which each scalar in
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | PERFORMANCE.README | 30 1.1.1 Directory Lookup performance 66 1.2.1 Directory Lookup performance 109 2.1.1 Directory Lookup performance 142 2.2.1 Directory Lookup performance
|
/external/fonttools/Lib/fontTools/ |
D | merge.py | 453 lookupMap = dict((id(v),v) for v in table.table.LookupList.Lookup) 482 synthLookup = otTables.Lookup() 487 table.table.LookupList.Lookup.append(synthLookup) 580 @_add_method(otTables.Lookup) 588 for l in self.Lookup: 809 lookupMap = dict((i,id(v)) for i,v in enumerate(t.table.LookupList.Lookup)) 834 lookupMap = dict((id(v),i) for i,v in enumerate(t.table.LookupList.Lookup))
|