Searched refs:TCK (Results 1 - 16 of 16) sorted by relevance

/external/objenesis/tck/test/org/objenesis/tck/
H A DTCKTest.java52 // Given... a TCK with some candidate classes: A, B and C.
53 TCK tck = new TCK();
63 // When... the TCK tests are run
68 // notifying it of what the TCK is doing.
79 // Given... a TCK with some candidate classes: A, B and C.
80 TCK tck = new TCK();
89 // When... the TCK tests are run
124 * A poor man's mock. Using a recording test double to verify interactions between the TCK an
[all...]
H A DCandidateLoaderTest.java35 TCK tck = new TCK() {
H A DObjenesisTest.java103 private TCK tck = null;
110 tck = new TCK();
/external/objenesis/tck/src/org/objenesis/tck/
H A DCandidateLoader.java24 * Loads a set of candidate classes from a properties file into the TCK. <p/> The properties file
28 * @see TCK
32 private final TCK tck;
70 * @param tck TCK that will use the candidates
74 public CandidateLoader(TCK tck, ClassLoader classloader, ErrorHandler errorHandler) {
88 // entries directly to the TCK (which retains order).
H A DMain.java26 * Command line launcher for Technology Compatibility Kit (TCK).
29 * @see TCK
60 * Main class of the TCK. Can also be called as a normal method from an application server.
63 * @throws IOException When the TCK fails to read properties' files.
93 TCK tck = new TCK();
H A DTCK.java28 * <b>Technology Compatibility Kit</b> (TCK) for {@link Objenesis}s.
30 * This TCK accepts a set of candidate classes (class it attempts to instantiate) and a set of
36 * TCK tck = new TCK();
54 public class TCK { class
83 * Run all TCK tests.
/external/objenesis/
H A DAndroid.mk50 # Builds the Objenesis TCK as a device-targeted library
62 # Builds the deployable Objenesis TCK for Android
/external/jsr330/
H A DAndroid.mk44 # TCK (Test Compatibility Kit)
/external/clang/lib/CodeGen/
H A DCGClass.cpp2492 CFITypeCheckKind TCK,
2498 EmitVTablePtrCheck(ClassDecl, VTable, TCK, Loc);
2504 CFITypeCheckKind TCK,
2538 EmitVTablePtrCheck(ClassDecl, VTable, TCK, Loc);
2548 CFITypeCheckKind TCK,
2572 switch (TCK) {
2590 llvm::ConstantInt::get(Int8Ty, TCK),
2490 EmitVTablePtrCheckForCall(const CXXMethodDecl *MD, llvm::Value *VTable, CFITypeCheckKind TCK, SourceLocation Loc) argument
2501 EmitVTablePtrCheckForCast(QualType T, llvm::Value *Derived, bool MayBeNull, CFITypeCheckKind TCK, SourceLocation Loc) argument
2546 EmitVTablePtrCheck(const CXXRecordDecl *RD, llvm::Value *VTable, CFITypeCheckKind TCK, SourceLocation Loc) argument
H A DCGExpr.cpp507 void CodeGenFunction::EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, argument
524 bool AllowNullPointers = TCK == TCK_DowncastPointer || TCK == TCK_Upcast ||
525 TCK == TCK_UpcastToVirtualBase;
583 llvm::ConstantInt::get(Int8Ty, TCK)
598 (TCK == TCK_MemberAccess || TCK == TCK_MemberCall ||
599 TCK == TCK_DowncastPointer || TCK == TCK_DowncastReference ||
600 TCK
917 EmitCheckedLValue(const Expr *E, TypeCheckKind TCK) argument
[all...]
H A DCodeGenFunction.h1397 bool MayBeNull, CFITypeCheckKind TCK,
1403 CFITypeCheckKind TCK, SourceLocation Loc);
1408 CFITypeCheckKind TCK, SourceLocation Loc);
1944 void EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, llvm::Value *V,
2423 LValue EmitCheckedLValue(const Expr *E, TypeCheckKind TCK);
H A DCGExprScalar.cpp85 LValue EmitCheckedLValue(const Expr *E, CodeGenFunction::TypeCheckKind TCK) { argument
86 return CGF.EmitCheckedLValue(E, TCK);
/external/llvm/unittests/IR/
H A DInstructionsTest.cpp504 for (CallInst::TailCallKind TCK : Kinds) {
505 Call->setTailCallKind(TCK);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5093 CallInst::TailCallKind TCK = CallInst::TCK_None; local
5095 TCK = CallInst::TCK_Tail;
5097 TCK = CallInst::TCK_MustTail;
5099 TCK = CallInst::TCK_NoTail;
5100 cast<CallInst>(I)->setTailCallKind(TCK);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp5621 CallInst::TailCallKind TCK) {
5633 if (TCK != CallInst::TCK_None &&
5643 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5723 CI->setTailCallKind(TCK);
/external/llvm/include/llvm/IR/
H A DInstructions.h1526 void setTailCallKind(TailCallKind TCK) { argument
1528 unsigned(TCK));

Completed in 227 milliseconds