HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 201 - 225 of 6641) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/flatbuffers/python/
setup.py 29 description='The FlatBuffers serialization format for Python', variable
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsI18N1.java 25 @Parameter(names = "-host", description = "Host", descriptionKey = "host")
ArgsInherited.java 25 @Parameter(names = "-child", description = "Child parameter")
ArgsPassword.java 24 @Parameter(names = "-password", description = "Connection password", password = true)
Arity1.java 7 @Parameter(arity = 1, names = "-inspect", description = "", required = false)
  /external/junit/src/main/java/org/junit/rules/
TestRule.java 3 import org.junit.runner.Description;
51 * @param description A {@link Description} of the test implemented in {@code base}
55 Statement apply(Statement base, Description description);
  /external/junit/src/main/java/org/junit/runner/notification/
RunListener.java 9 import org.junit.runner.Description;
38 * have their {@link RunListener#testFailure(Failure)} called with a {@code Description}
39 * of {@link Description#TEST_MECHANISM} to indicate the failure.
58 * @param description describes the tests to be run
60 public void testRunStarted(Description description) throws Exception {
75 * @param description the description of the test that is about to be run
78 public void testStarted(Description description) throws Exception
    [all...]
  /external/mockito/src/main/java/org/mockito/verification/
After.java 43 public VerificationMode description(String description) { method in class:After
44 return VerificationModeFactory.description(this, description);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
UninitializedMessageException.java 84 /** Construct the description string for this exception. */
86 final StringBuilder description = local
93 description.append(", ");
95 description.append(field);
97 return description.toString();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
TextViewHasTextMatcher.java 4 import org.hamcrest.Description;
32 public void describeTo(Description description) {
33 description.appendText("[" + actualText + "]");
34 description.appendText(" to equal ");
35 description.appendText("[" + expected + "]");
  /external/skia/src/sksl/
SkSLPosition.h 28 String description() const { function in struct:SkSL::Position
  /external/skia/src/sksl/ast/
SkSLASTBreakStatement.h 22 String description() const override {
SkSLASTContinueStatement.h 22 String description() const override {
SkSLASTDiscardStatement.h 22 String description() const override {
SkSLASTIfStatement.h 27 String description() const override {
33 result += fTest->description();
35 result += fIfTrue->description();
38 result += fIfFalse->description();
SkSLASTTernaryExpression.h 27 String description() const override {
28 return "(" + fTest->description() + " ? " + fIfTrue->description() + " : " +
29 fIfFalse->description() + ")";
  /external/skia/src/sksl/ir/
SkSLBreakStatement.h 23 String description() const override {
SkSLContinueStatement.h 23 String description() const override {
SkSLDiscardStatement.h 23 String description() const override {
SkSLIfStatement.h 28 String description() const override {
33 result += "if (" + fTest->description() + ") " + fIfTrue->description();
35 result += " else " + fIfFalse->description();
SkSLNop.h 27 String description() const override {
SkSLTernaryExpression.h 33 String description() const override {
34 return "(" + fTest->description() + " ? " + fIfTrue->description() + " : " +
35 fIfFalse->description() + ")";
  /external/skqp/src/sksl/
SkSLPosition.h 28 String description() const { function in struct:SkSL::Position
  /external/skqp/src/sksl/ast/
SkSLASTBreakStatement.h 22 String description() const override {
SkSLASTContinueStatement.h 22 String description() const override {

Completed in 334 milliseconds

1 2 3 4 5 6 7 891011>>