/external/v8/test/unittests/compiler/ |
D | liveness-analyzer-unittest.cc | 78 void Lookup(int var) { current_block()->Lookup(var); } in Lookup() function in v8::internal::compiler::LivenessAnalysisTest 204 Lookup(1); in TEST_F() 225 Lookup(1); in TEST_F() 227 Lookup(3); in TEST_F() 235 Lookup(3); in TEST_F() 237 Lookup(2); in TEST_F() 245 Lookup(0); in TEST_F() 289 Lookup(2); in TEST_F() 300 Lookup(0); in TEST_F() 301 Lookup(1); in TEST_F() [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | LookupList.java | 15 private Lookup[] lookups; 20 lookups = new Lookup[10]; in LookupList() 24 public int addLookup(Lookup lookup) in addLookup() 27 Lookup[] newLookups = new Lookup[lookups.length + 5]; in addLookup()
|
D | CanonGSUBBuilder.java | 230 Lookup initLookup, mediLookup, finaLookup, ligaLookup; in buildArabicTables() 232 initLookup = new Lookup(Lookup.GSST_Single, 0); in buildArabicTables() 235 mediLookup = new Lookup(Lookup.GSST_Single, 0); in buildArabicTables() 238 finaLookup = new Lookup(Lookup.GSST_Single, 0); in buildArabicTables() 241 ligaLookup = new Lookup(Lookup.GSST_Ligature, Lookup.LF_IgnoreMarks); in buildArabicTables() 332 Lookup compLookup, dcmpLookup; in buildLookups() 335 compLookup = new Lookup(Lookup.GSST_Ligature, 0); in buildLookups() 338 dcmpLookup = new Lookup(Lookup.GSST_Multiple, 0); in buildLookups()
|
D | Lookup.java | 14 public /*abstract*/ class Lookup class 48 public Lookup(int theLookupType, int theLookupFlags) in Lookup() method in Lookup
|
/external/v8/test/cctest/ |
D | test-dictionary.cc | 54 CHECK_EQ(table->Lookup(a), *b); in TestHashMap() 56 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value()); in TestHashMap() 61 CHECK_EQ(table->Lookup(a), *b); in TestHashMap() 62 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value()); in TestHashMap() 67 CHECK_NE(table->Lookup(a), *b); in TestHashMap() 74 CHECK_EQ(table->Lookup(a), CcTest::heap()->the_hole_value()); in TestHashMap() 84 CHECK_EQ(table->Lookup(key), *value); in TestHashMap() 94 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value()); in TestHashMap() 102 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value()); in TestHashMap() 126 return Smi::cast(Lookup(key_obj))->value(); in lookup() [all …]
|
/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_font/ |
D | ttgsubtable.cpp | 48 FX_BOOL CFX_GlyphMap::Lookup(int key, int& value) { in Lookup() function in CFX_GlyphMap 124 if (LookupList.Lookup[index].LookupType == 1) { in GetVerticalGlyphSub() 126 &LookupList.Lookup[index])) { in GetVerticalGlyphSub() 135 struct TLookup* Lookup) { in GetVerticalGlyphSub2() argument 136 for (int i = 0; i < Lookup->SubTableCount; i++) { in GetVerticalGlyphSub2() 137 switch (Lookup->SubTable[i]->SubstFormat) { in GetVerticalGlyphSub2() 139 TSingleSubstFormat1* tbl1 = (TSingleSubstFormat1*)Lookup->SubTable[i]; in GetVerticalGlyphSub2() 147 TSingleSubstFormat2* tbl2 = (TSingleSubstFormat2*)Lookup->SubTable[i]; in GetVerticalGlyphSub2() 276 rec->Lookup = new struct TLookup[rec->LookupCount]; in ParseLookupList() 279 ParseLookup(&raw[offset], &rec->Lookup[i]); in ParseLookupList()
|
D | ttgsubtable.h | 23 FX_BOOL Lookup(int key, int& value); 293 struct TLookup* Lookup; member 294 TLookupList() : LookupCount(0), Lookup(NULL) {} in TLookupList() 295 ~TLookupList() { delete[] Lookup; } in ~TLookupList() 320 struct TLookup* Lookup);
|
/external/libchrome/base/ |
D | id_map_unittest.cc | 36 EXPECT_EQ(&obj1, map.Lookup(id1)); in TEST() 42 EXPECT_EQ(&obj1, map.Lookup(id1)); in TEST() 43 EXPECT_EQ(&obj2, map.Lookup(id2)); in TEST() 55 EXPECT_EQ(&obj1, map.Lookup(1)); in TEST() 56 EXPECT_EQ(&obj2, map.Lookup(2)); in TEST() 59 EXPECT_EQ(&obj1, map.Lookup(2)); in TEST() 366 EXPECT_EQ(&obj1, map.Lookup(kId1)); in TEST()
|
/external/v8/src/ |
D | compilation-cache.cc | 144 Handle<SharedFunctionInfo> CompilationCacheScript::Lookup( in Lookup() function in v8::internal::CompilationCacheScript 156 Handle<Object> probe = table->Lookup(source, context, language_mode); in Lookup() 202 MaybeHandle<SharedFunctionInfo> CompilationCacheEval::Lookup( in Lookup() function in v8::internal::CompilationCacheEval 244 MaybeHandle<FixedArray> CompilationCacheRegExp::Lookup( in Lookup() function in v8::internal::CompilationCacheRegExp 296 return script_.Lookup(source, name, line_offset, column_offset, in LookupScript() 309 eval_global_.Lookup(source, outer_info, language_mode, scope_position); in LookupEval() 312 result = eval_contextual_.Lookup(source, outer_info, language_mode, in LookupEval() 323 return reg_exp_.Lookup(source, flags); in LookupRegExp()
|
D | identity-map.cc | 22 IdentityMapBase::RawEntry IdentityMapBase::Lookup(Object* key) { in Lookup() function in v8::internal::IdentityMapBase 100 result = Lookup(key); in GetEntry() 118 RawEntry result = Lookup(key); in FindEntry() 121 result = Lookup(key); in FindEntry()
|
D | context-measure.cc | 40 if (back_reference_map_.Lookup(object).is_valid()) return; in MeasureObject() 41 if (root_index_map_.Lookup(object) != RootIndexMap::kInvalidRootIndex) return; in MeasureObject()
|
D | address-map.h | 30 return map->Lookup(Key(obj), Hash(obj)); in LookupEntry() 50 int Lookup(HeapObject* obj) { in Lookup() function 155 BackReference Lookup(HeapObject* obj) { in Lookup() function
|
D | compilation-cache.h | 79 Handle<SharedFunctionInfo> Lookup(Handle<String> source, Handle<Object> name, 115 MaybeHandle<SharedFunctionInfo> Lookup(Handle<String> source, 134 MaybeHandle<FixedArray> Lookup(Handle<String> source, JSRegExp::Flags flags);
|
D | cancelable-task.cc | 42 while ((id == 0) || (cancelable_tasks_.Lookup(reinterpret_cast<void*>(id), in Register() 65 cancelable_tasks_.Lookup(reinterpret_cast<void*>(id), id); in TryAbort()
|
/external/google-benchmark/test/ |
D | map_test.cc | 46 BENCHMARK_DEFINE_F(MapFixture, Lookup)(benchmark::State& state) { in BENCHMARK_DEFINE_F() argument 55 BENCHMARK_REGISTER_F(MapFixture, Lookup)->Range(1<<3, 1<<12);
|
/external/pdfium/xfa/src/fgas/src/font/ |
D | fx_stdfontmgr.cpp | 62 if (m_CPFonts.Lookup((void*)(uintptr_t)dwHash, (void*&)pFont)) { in GetDefFontByCodePage() 101 if (m_UnicodeFonts.Lookup((void*)(uintptr_t)dwHash, (void*&)pFont)) { in GetDefFontByUnicode() 166 if (m_FamilyFonts.Lookup((void*)(uintptr_t)dwHash, (void*&)pFont)) { in LoadFont() 192 if (m_BufferFonts.Lookup((void*)pBuffer, (void*&)pFont)) { in LoadFont() 209 if (m_FileFonts.Lookup((void*)(uintptr_t)dwHash, (void*&)pFont)) { in LoadFont() 229 if (m_StreamFonts.Lookup((void*)pFontStream, (void*&)pFont)) { in LoadFont() 265 m_DeriveFonts.Lookup((void*)(uintptr_t)dwHash, (void*&)pFont); in LoadFont() 737 if (m_Hash2Fonts.Lookup(dwHash, pFonts)) { in GetFontByCodePage() 749 if (!m_Hash2CandidateList.Lookup(dwHash, sortedFonts)) { in GetFontByCodePage() 776 if (m_FailedUnicodes2NULL.Lookup(wUnicode, pFont)) { in GetFontByUnicode() [all …]
|
/external/pdfium/core/src/fxcrt/ |
D | fx_xml_parser.cpp | 610 pwsSpace = pElement->m_AttrMap.Lookup("", "xmlns"); in GetNamespaceURI() 612 pwsSpace = pElement->m_AttrMap.Lookup("xmlns", qName); in GetNamespaceURI() 636 return m_AttrMap.Lookup(bsSpace, bsName) != NULL; in HasAttr() 647 const CFX_WideString* pValue = m_AttrMap.Lookup(space, name); in GetAttrValue() 658 const CFX_WideString* pwsValue = m_AttrMap.Lookup(bsSpace, bsName); in GetAttrInteger() 668 const CFX_WideString* pwsValue = m_AttrMap.Lookup(space, name); in GetAttrInteger() 684 const CFX_WideString* pValue = m_AttrMap.Lookup(space, name); in GetAttrFloat() 768 const CFX_WideString* CXML_AttrMap::Lookup(const CFX_ByteStringC& space, in Lookup() function in CXML_AttrMap
|
/external/clang/lib/Frontend/Rewrite/ |
D | InclusionRewriter.cpp | 83 const DirectoryLookup *Lookup, Token &Tok, 330 FileID FileId, Lexer &RawLex, const DirectoryLookup *Lookup, Token &Tok, in HandleHasInclude() argument 512 const DirectoryLookup *Lookup = PP.GetCurDirLookup(); in Process() local 513 if (Lookup) in Process() 514 ++Lookup; in Process() 516 if (!HandleHasInclude(FileId, RawLex, Lookup, RawToken, in Process()
|
/external/pdfium/xfa/src/fxfa/src/common/ |
D | xfa_utils.h | 159 FX_BOOL Lookup(KeyType key) const { in Lookup() function 161 return CFX_MapPtrToPtr::Lookup((void*)key, pValue); in Lookup() 164 FX_BOOL operator[](KeyType key) { return Lookup(key); }
|
/external/webrtc/webrtc/base/ |
D | flags.cc | 131 Flag* FlagList::Lookup(const char* name) { in Lookup() function in rtc::FlagList 193 Flag* flag = Lookup(name); in SetFlagsFromCommandLine() 260 RTC_CHECK(!Lookup(flag->name())) << "flag " << flag->name() in Register()
|
/external/opencv3/samples/winrt/ImageManipulations/ |
D | MainPage.xaml.cpp | 247 … StatusBlock->Style = safe_cast<Windows::UI::Xaml::Style^>(this->Resources->Lookup("StatusStyle")); 251 … StatusBlock->Style = safe_cast<Windows::UI::Xaml::Style^>(this->Resources->Lookup("ErrorStyle")); 297 startingScenarioIndex = safe_cast<int>(pageState->Lookup("SelectedScenarioIndex"));
|
/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/libchrome/sandbox/linux/bpf_dsl/ |
D | codegen_unittest.cc | 121 Hash digest(code, k, Lookup(jt), Lookup(jf)); in MakeInstruction() 156 EXPECT_EQ(Lookup(head), prog_hashes.at(0)); in RunTest() 160 const Hash& Lookup(CodeGen::Node next) const { in Lookup() function in sandbox::__anon7ec0eee30111::ProgramTest
|
/external/llvm/lib/IR/ |
D | ConstantsContext.h | 612 LookupKey Lookup(Ty, V); 615 auto I = find(Lookup); 626 typename MapTy::iterator find(LookupKey Lookup) { 627 return Map.find_as(Lookup); 645 LookupKey Lookup(CP->getType(), ValType(Operands, CP)); 646 auto I = find(Lookup);
|