/external/pdfium/core/fxcrt/ |
D | cfx_string_pool_template_unittest.cpp | 23 CFX_ByteString interned_null1 = pool.Intern(null1); in TEST() 24 CFX_ByteString interned_null2 = pool.Intern(null2); in TEST() 25 CFX_ByteString interned_goats1 = pool.Intern(goats1); in TEST() 26 CFX_ByteString interned_goats2 = pool.Intern(goats2); in TEST() 41 CFX_ByteString reinterned_null2 = pool.Intern(null2); in TEST() 42 CFX_ByteString reinterned_null1 = pool.Intern(null2); in TEST() 43 CFX_ByteString reinterned_goats2 = pool.Intern(goats2); in TEST() 44 CFX_ByteString reinterned_goats1 = pool.Intern(goats2); in TEST() 66 CFX_WideString interned_null1 = pool.Intern(null1); in TEST() 67 CFX_WideString interned_null2 = pool.Intern(null2); in TEST() [all …]
|
D | cfx_string_pool_template.h | 17 StringType Intern(const StringType& str) { return *m_Pool.insert(str).first; } in Intern() function
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_string.cpp | 21 m_String = pPool->Intern(m_String); in CPDF_String() 28 m_String = pPool->Intern(m_String); in CPDF_String()
|
D | cpdf_name.cpp | 16 m_Name = pPool->Intern(m_Name); in CPDF_Name()
|
D | cpdf_dictionary.cpp | 237 return m_pPool ? m_pPool->Intern(str) : str; in MaybeIntern()
|
/external/llvm/test/Linker/Inputs/ |
D | testlink.ll | 17 ;; Intern in both testlink[12].ll 22 ;; Intern in one but not in other
|
/external/swiftshader/third_party/LLVM/test/Linker/ |
D | testlink2.ll | 19 ;; Intern in both testlink[12].ll 22 ;; Intern in one but not in other
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | FoldingSet.cpp | 175 FoldingSetNodeID::Intern(BumpPtrAllocator &Allocator) const { in Intern() function in FoldingSetNodeID
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | FoldingSet.cpp | 176 FoldingSetNodeID::Intern(BumpPtrAllocator &Allocator) const { in Intern() function in FoldingSetNodeID
|
/external/llvm/lib/Support/ |
D | FoldingSet.cpp | 176 FoldingSetNodeID::Intern(BumpPtrAllocator &Allocator) const { in Intern() function in FoldingSetNodeID
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | FoldingSet.h | 334 FoldingSetNodeIDRef Intern(BumpPtrAllocator &Allocator) const;
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | FoldingSet.h | 367 FoldingSetNodeIDRef Intern(BumpPtrAllocator &Allocator) const;
|
/external/llvm/include/llvm/ADT/ |
D | FoldingSet.h | 361 FoldingSetNodeIDRef Intern(BumpPtrAllocator &Allocator) const;
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ScalarEvolution.cpp | 290 SCEV *S = new (SCEVAllocator) SCEVConstant(ID.Intern(SCEVAllocator), V); in getConstant() 873 SCEV *S = new (SCEVAllocator) SCEVTruncateExpr(ID.Intern(SCEVAllocator), in getTruncateExpr() 1032 SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator), in getZeroExtendExpr() 1280 SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator), in getSignExtendExpr() 1807 S = new (SCEVAllocator) SCEVAddExpr(ID.Intern(SCEVAllocator), in getAddExpr() 2097 S = new (SCEVAllocator) SCEVMulExpr(ID.Intern(SCEVAllocator), in getMulExpr() 2218 SCEV *S = new (SCEVAllocator) SCEVUDivExpr(ID.Intern(SCEVAllocator), in getUDivExpr() 2346 S = new (SCEVAllocator) SCEVAddRecExpr(ID.Intern(SCEVAllocator), in getAddRecExpr() 2452 SCEV *S = new (SCEVAllocator) SCEVSMaxExpr(ID.Intern(SCEVAllocator), in getSMaxExpr() 2556 SCEV *S = new (SCEVAllocator) SCEVUMaxExpr(ID.Intern(SCEVAllocator), in getUMaxExpr() [all …]
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 315 SCEV *S = new (SCEVAllocator) SCEVConstant(ID.Intern(SCEVAllocator), V); in getConstant() 1142 SCEV *S = new (SCEVAllocator) SCEVTruncateExpr(ID.Intern(SCEVAllocator), in getTruncateExpr() 1594 SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator), in getZeroExtendExpr() 1821 SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator), in getSignExtendExpr() 2374 S = new (SCEVAllocator) SCEVAddExpr(ID.Intern(SCEVAllocator), in getAddExpr() 2664 S = new (SCEVAllocator) SCEVMulExpr(ID.Intern(SCEVAllocator), in getMulExpr() 2784 SCEV *S = new (SCEVAllocator) SCEVUDivExpr(ID.Intern(SCEVAllocator), in getUDivExpr() 2964 S = new (SCEVAllocator) SCEVAddRecExpr(ID.Intern(SCEVAllocator), in getAddRecExpr() 3118 SCEV *S = new (SCEVAllocator) SCEVSMaxExpr(ID.Intern(SCEVAllocator), in getSMaxExpr() 3219 SCEV *S = new (SCEVAllocator) SCEVUMaxExpr(ID.Intern(SCEVAllocator), in getUMaxExpr() [all …]
|
/external/python/cpython2/Doc/c-api/ |
D | string.rst | 249 Intern the argument *\*string* in place. The argument must be the address of a
|
/external/libmtp/logs/ |
D | mtp-detect-acer-e380.txt | 444 StorageDescription: Interní úložiště
|
D | mtp-detect-acer-z200.txt | 445 StorageDescription: Interní úložiště
|
D | mtp-detect-huawei-y560-l01.txt | 482 StorageDescription: Interní úložiště
|
D | mtp-detect-sony-xperia-j.txt | 519 StorageDescription: Intern lagring
|
D | mtp-detect-trekstor-vibez.txt | 717 StorageDescription: Intern
|
/external/libexif/po/ |
D | da.po | 997 msgstr "Intern" 2391 msgstr "Intern fejl (ukendt værdi %i)" 4858 msgstr "Intern + ekstern" 5009 msgstr "Intern fejl (ukendt værdi %hi)" 5352 msgstr "Intern blitztabel" 5695 msgstr "Intern fejl (ukendt værdi %i %i)"
|
D | sv.po | 964 msgstr "Intern" 4479 msgstr "Intern + Extern" 4986 msgstr "Intern blixttabell"
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 5648 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2); in getVTList() 5668 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3); in getVTList() 5690 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4); in getVTList() 5709 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs); in getVTList()
|
/external/elfutils/libdwfl/ |
D | ChangeLog | 1300 * derelocate.c (cache_sections): Intern mod->reloc_info check.
|