HomeSort by relevance Sort by last modified time
    Searched refs:Statement (Results 1 - 25 of 361) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/rules/
TestRule.java 4 import org.junit.runners.model.Statement;
26 * {@link Statement} that executes the method or suite is passed to each annotated
28 * {@link Statement}, which is passed to the next {@link org.junit.Rule}, if any. For
47 * Modifies the method-running {@link Statement} to implement this
50 * @param base The {@link Statement} to be modified
52 * @return a new statement, which may be the same as {@code base},
53 * a wrapper around {@code base}, or a completely new Statement.
55 Statement apply(Statement base, Description description);
ExternalResource.java 4 import org.junit.runners.model.Statement;
38 public Statement apply(Statement base, Description description) {
39 return statement(base);
42 private Statement statement(final Statement base) { method in class:ExternalResource
43 return new Statement() {
Verifier.java 4 import org.junit.runners.model.Statement;
31 public Statement apply(final Statement base, Description description) {
32 return new Statement() {
RunRules.java 4 import org.junit.runners.model.Statement;
7 * Runs a collection of rules on a statement.
11 public class RunRules extends Statement {
12 private final Statement statement; field in class:RunRules
14 public RunRules(Statement base, Iterable<TestRule> rules, Description description) {
15 statement = applyAll(base, rules, description);
20 statement.evaluate();
23 private static Statement applyAll(Statement result, Iterable<TestRule> rules
    [all...]
MethodRule.java 5 import org.junit.runners.model.Statement;
10 * {@link Statement} that executes the method is passed to each annotated
12 * {@link Statement}, which is passed to the next {@link Rule}, if any. For
34 * Modifies the method-running {@link Statement} to implement an additional
37 * @param base The {@link Statement} to be modified
40 * @return a new statement, which may be the same as {@code base},
41 * a wrapper around {@code base}, or a completely new Statement.
43 Statement apply(Statement base, FrameworkMethod method, Object target);
  /external/junit/src/main/java/org/junit/runners/model/
Statement.java 10 public abstract class Statement {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenMetaFileMisc.py 35 Statement = (u'%s ' % DT.TAB_INF_DEFINES_ENTRY_POINT).ljust(LeftOffset) + u'= %s' % EntryPoint
37 Statement += ' | %s' % FFE
39 Statement = HelpStringList[0].GetString() + '\n' + Statement
41 Statement = Statement + HelpStringList[1].GetString()
42 SectionDict[Arch] = SectionDict[Arch] + [Statement]
45 Statement = (u'%s ' % DT.TAB_INF_DEFINES_UNLOAD_IMAGE).ljust(LeftOffset) + u'= %s' % UnloadImage
47 Statement += ' | %s' % FFE
50 Statement = HelpStringList[0].GetString() + '\n' + Statement
    [all...]
  /external/skia/src/sksl/ir/
SkSLBreakStatement.h 17 * A 'break' statement.
19 struct BreakStatement : public Statement {
27 typedef Statement INHERITED;
SkSLContinueStatement.h 17 * A 'continue' statement.
19 struct ContinueStatement : public Statement {
27 typedef Statement INHERITED;
SkSLDiscardStatement.h 17 * A 'discard' statement.
19 struct DiscardStatement : public Statement {
27 typedef Statement INHERITED;
SkSLIfStatement.h 17 * An 'if' statement.
19 struct IfStatement : public Statement {
21 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse)
36 const std::unique_ptr<Statement> fIfTrue;
37 const std::unique_ptr<Statement> fIfFalse;
39 typedef Statement INHERITED;
SkSLDoStatement.h 17 * A 'do' statement.
19 struct DoStatement : public Statement {
20 DoStatement(Position position, std::unique_ptr<Statement> statement,
23 , fStatement(std::move(statement))
30 const std::unique_ptr<Statement> fStatement;
33 typedef Statement INHERITED;
SkSLWhileStatement.h 19 struct WhileStatement : public Statement {
21 std::unique_ptr<Statement> statement)
24 , fStatement(std::move(statement)) {}
31 const std::unique_ptr<Statement> fStatement;
33 typedef Statement INHERITED;
SkSLExpressionStatement.h 17 * A lone expression being used as a statement.
19 struct ExpressionStatement : public Statement {
30 typedef Statement INHERITED;
SkSLStatement.h 19 struct Statement : public IRNode {
35 Statement(Position position, Kind kind)
SkSLVarDeclarationsStatement.h 17 * One or more variable declarations appearing as a statement within a function.
19 struct VarDeclarationsStatement : public Statement {
30 typedef Statement INHERITED;
  /external/deqp/framework/randomshaders/
rsgStatement.hpp 37 class Statement
40 Statement (void);
41 virtual ~Statement (void);
43 virtual Statement* createNextChild (GeneratorState& state) = DE_NULL;
55 class ExpressionStatement : public Statement
61 Statement* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; }
71 class DeclarationStatement : public Statement
77 Statement* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; }
88 class BlockStatement : public Statement
97 Statement* createNextChild (GeneratorState& state)
    [all...]
  /external/mockito/src/test/java/org/mockitoutil/
RetryRule.java 10 import org.junit.runners.model.Statement;
25 public Statement apply(final Statement base, final Description description) {
38 public Statement apply(final Statement base, final Description description) {
39 return new Statement() {
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/recyclerview/test/
SameActivityTestRule.java 22 import org.junit.runners.model.Statement;
38 public Statement apply(final Statement base, Description description) {
50 private class ReUsedActivityStatement extends Statement {
52 private final Statement mBase;
54 public ReUsedActivityStatement(Statement base) {
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
ParsedStatement.java 22 * A class that stores a list of statement and/or a list of delegate url.
26 private final List<Statement> mStatements;
29 public ParsedStatement(List<Statement> statements, List<String> delegates) {
34 public List<Statement> getStatements() {
  /cts/hostsidetests/content/test-apps/CtsSyncAccountAccessSameCertTests/src/com/android/cts/content/
FlakyTestRule.java 20 import org.junit.runners.model.Statement;
35 public Statement apply(Statement statement, Description description) {
36 return new Statement() {
42 statement.evaluate();
  /external/junit/src/main/java/org/junit/internal/runners/statements/
RunBefores.java 6 import org.junit.runners.model.Statement;
8 public class RunBefores extends Statement {
9 private final Statement next;
15 public RunBefores(Statement next, List<FrameworkMethod> befores, Object target) {
Fail.java 3 import org.junit.runners.model.Statement;
5 public class Fail extends Statement {
  /external/junit-params/src/main/java/junitparams/internal/
MethodBlockSupplier.java 20 import org.junit.runners.model.Statement;
23 * Wraps the {@link Statement} provided by
24 * {@link InvokableFrameworkMethod#getInvokeStatement(Object)} with additional {@link Statement}.
31 Statement getMethodBlock(InvokableFrameworkMethod method);
  /external/vogar/src/vogar/target/junit/
DescribableStatement.java 21 import org.junit.runners.model.Statement;
24 * A {@link Statement} that also provides a {@link Description}
29 public abstract class DescribableStatement extends Statement implements Describable {

Completed in 1010 milliseconds

1 2 3 4 5 6 7 8 91011>>