/external/llvm/lib/IR/ |
D | DebugInfoMetadata.cpp | 41 MDLocation *MDLocation::getImpl(LLVMContext &Context, unsigned Line, in getImpl() function in MDLocation 171 GenericDebugNode *GenericDebugNode::getImpl(LLVMContext &Context, unsigned Tag, in getImpl() function in GenericDebugNode 227 MDSubrange *MDSubrange::getImpl(LLVMContext &Context, int64_t Count, int64_t Lo, in getImpl() function in MDSubrange 233 MDEnumerator *MDEnumerator::getImpl(LLVMContext &Context, int64_t Value, in getImpl() function in MDEnumerator 242 MDBasicType *MDBasicType::getImpl(LLVMContext &Context, unsigned Tag, in getImpl() function in MDBasicType 254 MDDerivedType *MDDerivedType::getImpl( in getImpl() function in MDDerivedType 269 MDCompositeType *MDCompositeType::getImpl( in getImpl() function in MDCompositeType 289 MDSubroutineType *MDSubroutineType::getImpl(LLVMContext &Context, in getImpl() function in MDSubroutineType 299 MDFile *MDFile::getImpl(LLVMContext &Context, MDString *Filename, in getImpl() function in MDFile 309 MDCompileUnit *MDCompileUnit::getImpl( in getImpl() function in MDCompileUnit [all …]
|
D | Constants.cpp | 842 if (Constant *C = getImpl(Ty, V)) in get() 846 Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) { in getImpl() function in ConstantArray 1026 if (Constant *C = getImpl(V)) in get() 1031 Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) { in getImpl() function in ConstantVector 2449 Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) { in getImpl() function in ConstantDataSequential 2527 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty); in get() 2532 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty); in get() 2537 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty); in get() 2542 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty); in get() 2547 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty); in get() [all …]
|
D | Attributes.cpp | 589 AttributeSet::getImpl(LLVMContext &C, in getImpl() function in AttributeSet 644 return getImpl(C, AttrPairVec); in get() 654 return getImpl(C, Attrs); in get() 732 return getImpl(C, AttrNodeVec); in get()
|
D | Metadata.cpp | 684 MDTuple *MDTuple::getImpl(LLVMContext &Context, ArrayRef<Metadata *> MDs, in getImpl() function in MDTuple
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 25 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued); \ 29 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued, \ 34 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Distinct); \ 39 getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Temporary)); \ 259 static GenericDebugNode *getImpl(LLVMContext &Context, unsigned Tag, 264 return getImpl(Context, Tag, getCanonicalMDString(Context, Header), 268 static GenericDebugNode *getImpl(LLVMContext &Context, unsigned Tag, 333 static MDSubrange *getImpl(LLVMContext &Context, int64_t Count, 371 static MDEnumerator *getImpl(LLVMContext &Context, int64_t Value, 374 return getImpl(Context, Value, getCanonicalMDString(Context, Name), Storage, [all …]
|
D | Metadata.h | 974 static MDTuple *getImpl(LLVMContext &Context, ArrayRef<Metadata *> MDs, 987 return getImpl(Context, MDs, Uniqued); 990 return getImpl(Context, MDs, Uniqued, /* ShouldCreate */ false); 997 return getImpl(Context, MDs, Distinct); 1007 return TempMDTuple(getImpl(Context, MDs, Temporary));
|
D | Constants.h | 352 static Constant *getImpl(ArrayType *T, ArrayRef<Constant *> V); 453 static Constant *getImpl(ArrayRef<Constant *> V); 552 static Constant *getImpl(StringRef Bytes, Type *Ty);
|
D | Attributes.h | 244 static AttributeSet getImpl(LLVMContext &C,
|
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
D | ExecutionListBenchmark.java | 58 Object getImpl(); in getImpl() method 74 @Override public Object getImpl() { in newExecutionList() method 92 @Override public Object getImpl() { in newExecutionList() method 110 @Override public Object getImpl() { in newExecutionList() method 128 @Override public Object getImpl() { 146 @Override public Object getImpl() { 194 return list.getImpl();
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 111 static LiveVariablesImpl &getImpl(void *x) { in getImpl() function 178 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D); in isLive() 182 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D); in isLive() 186 return getImpl(impl).stmtsToLiveness[Loc].isLive(S); in isLive() 474 const CFG *cfg = getImpl(impl).analysisContext.getCFG(); in runOnAllBlocks() 476 getImpl(impl).runOnBlock(*it, getImpl(impl).blocksEndToLiveness[*it], &obs); in runOnAllBlocks() 566 getImpl(impl).dumpBlockLiveness(M); in dumpBlockLiveness()
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | MultimapsTest.java | 460 abstract E getImpl(); in getImpl() method in MultimapsTest.CountingSupplier 465 return getImpl(); in get() 470 @Override public Queue<Integer> getImpl() { in getImpl() method in MultimapsTest.QueueSupplier 479 public Set<Integer> getImpl() { in testNewMultimapWithCollectionRejectingNegativeElements() 480 final Set<Integer> backing = super.getImpl(); in testNewMultimapWithCollectionRejectingNegativeElements() 548 @Override public LinkedList<Integer> getImpl() { in getImpl() method in MultimapsTest.ListSupplier 572 @Override public Set<Integer> getImpl() { in getImpl() method in MultimapsTest.SetSupplier 593 @Override public TreeSet<Integer> getImpl() { in getImpl() method in MultimapsTest.SortedSetSupplier
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MultimapsTest.java | 561 abstract E getImpl(); in getImpl() method in MultimapsTest.CountingSupplier 566 return getImpl(); in get() 571 @Override public Queue<Integer> getImpl() { in getImpl() method in MultimapsTest.QueueSupplier 580 public Set<Integer> getImpl() { in testNewMultimapWithCollectionRejectingNegativeElements() 581 final Set<Integer> backing = super.getImpl(); in testNewMultimapWithCollectionRejectingNegativeElements() 659 @Override public LinkedList<Integer> getImpl() { in getImpl() method in MultimapsTest.ListSupplier 693 @Override public Set<Integer> getImpl() { in getImpl() method in MultimapsTest.SetSupplier 724 @Override public TreeSet<Integer> getImpl() { in getImpl() method in MultimapsTest.SortedSetSupplier
|
/external/icu/icu4c/source/common/ |
D | normalizer2.cpp | 252 Normalizer2Factory::getImpl(const Normalizer2 *norm2) { in getImpl() function in Normalizer2Factory
|
D | uprops.cpp | 582 const Normalizer2Impl *nfkcImpl=Normalizer2Factory::getImpl(nfkc); in u_getFC_NFKC_Closure()
|
D | normalizer2impl.h | 631 static const Normalizer2Impl *getImpl(const Normalizer2 *norm2);
|
/external/robolectric/lib/main/ |
D | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.osgi_3.6.2.R36x_v20101103.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.osgi_3.6.1.R36x_v20100806.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.pde.core_3.6.1.v20100902_r361.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/chromium-trace/trace-viewer/tracing/test_data/ |
D | ddms_calculator_start.trace | 847 0x7107e1a8 android.app.ContextImpl getImpl (Landroid/content/Context;)Landroid/app/ContextImpl; Con…
|