Searched refs:TCK (Results 1 - 14 of 14) 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.mk42 # Builds the Objenesis TCK as a device-targeted library
54 # Builds the deployable Objenesis TCK for Android
/external/clang/lib/CodeGen/
H A DCGExpr.cpp449 void CodeGenFunction::EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, argument
469 if (TCK == TCK_DowncastPointer) {
520 llvm::ConstantInt::get(Int8Ty, TCK)
535 (TCK == TCK_MemberAccess || TCK == TCK_MemberCall ||
536 TCK == TCK_DowncastPointer || TCK == TCK_DowncastReference) &&
579 llvm::ConstantInt::get(Int8Ty, TCK)
751 LValue CodeGenFunction::EmitCheckedLValue(const Expr *E, TypeCheckKind TCK) { argument
758 EmitTypeCheck(TCK,
[all...]
H A DCodeGenFunction.h1698 void EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, llvm::Value *V,
1948 LValue EmitCheckedLValue(const Expr *E, TypeCheckKind TCK);
H A DCGExprScalar.cpp84 LValue EmitCheckedLValue(const Expr *E, CodeGenFunction::TypeCheckKind TCK) { argument
85 return CGF.EmitCheckedLValue(E, TCK);
/external/llvm/unittests/IR/
H A DInstructionsTest.cpp502 for (CallInst::TailCallKind TCK : Kinds) {
503 Call->setTailCallKind(TCK);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3091 CallInst::TailCallKind TCK = CallInst::TCK_None; local
3093 TCK = CallInst::TCK_Tail;
3095 TCK = CallInst::TCK_MustTail;
3096 cast<CallInst>(I)->setTailCallKind(TCK);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp4135 CallInst::TailCallKind TCK) {
4146 if ((TCK != CallInst::TCK_None &&
4223 CI->setTailCallKind(TCK);
/external/llvm/include/llvm/IR/
H A DInstructions.h1307 void setTailCallKind(TailCallKind TCK) { argument
1309 unsigned(TCK));

Completed in 241 milliseconds