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

12 3 4 5 6 7 8 91011>>

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/javadoc/description/
JavadocDescriptionElement.java 22 package com.github.javaparser.javadoc.description;
25 * An element of a description: either an inline tag or a piece of text.
27 * So for example <code>a text</code> or <code>{@link String}</code> could be valid description elements.
  /external/skia/src/sksl/ast/
SkSLASTNode.h 22 virtual String description() const = 0;
SkSLASTModifiersDeclaration.h 26 String description() const { function in struct:SkSL::ASTModifiersDeclaration
27 return fModifiers.description() + ";";
  /external/skqp/src/sksl/ast/
SkSLASTNode.h 22 virtual String description() const = 0;
SkSLASTModifiersDeclaration.h 26 String description() const { function in struct:SkSL::ASTModifiersDeclaration
27 return fModifiers.description() + ";";
  /external/webrtc/webrtc/p2p/base/
transportinfo.h 31 const TransportDescription& description)
33 description(description) {}
36 TransportDescription description; member in struct:cricket::TransportInfo
  /external/toolchain-utils/crosperf/
settings_factory.py 23 description='The name of the test to run. '
27 'test_args', description='Arguments to be passed to the '
34 description='Number of iterations to run the test. '
39 'suite', default='', description='The type of the benchmark.'))
44 description='Number of times to retry a '
49 description='Run benchmark harness on the DUT. '
65 description='The path to the image to run tests '
72 description='Autotest directory path relative to chroot which '
78 description='The path to a chromeos checkout which '
85 description='A comma-separated list of IPs of chromeos
    [all...]
  /external/junit/src/main/java/junit/framework/
JUnit4TestAdapterCache.java 8 import org.junit.runner.Description;
13 public class JUnit4TestAdapterCache extends HashMap<Description, Test> {
21 public Test asTest(Description description) {
22 if (description.isSuite()) {
23 return createTest(description);
25 if (!containsKey(description)) {
26 put(description, createTest(description));
28 return get(description);
    [all...]
  /external/proguard/src/proguard/
LineWordReader.java 34 private final String description; field in class:LineWordReader
41 String description,
47 this.description = description;
61 return "line " + reader.getLineNumber() + " of " + description;
  /external/jcommander/src/test/java/com/beust/jcommander/args/
CommandLineArgs2.java 28 @Parameter(description = "list of files")
31 @Parameter(names = { "-v", "--verbose" }, description = "print verbose log messages.", arity = 1)
34 @Parameter(names = { "-h", "--help" }, description = "show this help.")
37 @Parameter(names = { "-F", "--flush-preferences" }, description = "flush gui preferences.")
40 @Parameter(names = { "-L", "--flush-licensed" }, description = "flush licensed.")
43 @Parameter(names = { "-I", "--index-file" }, description = "indexes the given file.")
46 @Parameter(names = { "-b", "--bonjour" }, description = "enable Bonjour.")
49 @Parameter(names = { "-m", "--md5" }, description = "create an MD5 checksum for the given file.", converter = FileConverter.class)
52 @Parameter(names = { "-c", "--cat" }, description = "'cat' the given Lilith logfile.", converter = FileConverter.class)
55 @Parameter(names = { "-t", "--tail" }, description = "'tail' the given Lilith logfile.", converter = FileConverter.class
    [all...]
Args1.java 33 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity", required = true)
36 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
39 @Parameter(names = "-debug", description = "Debug mode")
42 @Parameter(names = "-long", description = "A long number")
45 @Parameter(names = "-double", description = "A double number")
48 @Parameter(names = "-float", description = "A float number")
51 @Parameter(names = "-bigdecimal", description = "A BigDecimal number")
54 @Parameter(names = "-date", description = "An ISO 8601 formatted date.")
ArgsMultipleUnparsed.java 30 @Parameter(description = "Bogus1")
33 @Parameter(description = "Bogus2")
ArgsOutOfMemory.java 8 description = "pattern used by 'tail'. See http://logback.qos.ch/manual/layouts.html#ClassicPatternLayout and http://logback.qos.ch/manual/layouts.html#AccessPatternLayout")
11 @Parameter(names = "-q", description = "Filler arg")
  /system/bt/build/toolchain/gcc/
BUILD.gn 24 description = "CC {{output}}"
34 description = "CXX {{output}}"
43 description = "AR {{target_output_name}}{{output_extension}}"
61 description = "SOLINK $soname"
81 description = "LINK $outfile"
90 description = "STAMP {{output}}"
95 description = "COPY {{source}} {{output}}"
  /external/junit/src/main/java/org/junit/rules/
TestWatcher.java 7 import org.junit.runner.Description;
23 * protected void failed(Throwable e, Description description) {
24 * watchedLog+= description + &quot;\n&quot;;
28 * protected void succeeded(Description description) {
29 * watchedLog+= description + &quot; &quot; + &quot;success!\n&quot;;
47 public Statement apply(final Statement base, final Description description) {
53 startingQuietly(description, errors)
    [all...]
  /platform_testing/libraries/device-collectors/src/main/java/android/device/loggers/
TestCaseLogger.java 20 import org.junit.runner.Description;
31 public void testStarted(Description description) throws Exception {
35 description.getClassName(), description.getMethodName());
40 public void testFinished(Description description) throws Exception {
44 description.getClassName(), description.getMethodName());
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
IPerfOutput.java 26 * @param description
27 * textual description of the test case
33 void writeTimeResult(String description, long duration, long reference);
39 * @param description
40 * textual description of the test case
46 void writeByteResult(String description, long size, long reference);
  /external/ltp/testcases/kernel/syscalls/add_key/
add_key03.c 37 static key_serial_t create_keyring(const char *description)
39 TEST(add_key("keyring", description, NULL, 0,
43 "unable to create keyring '%s'", description);
61 char description[32]; local
78 sprintf(description, "_uid.%u", uid);
79 fake_user_keyring = create_keyring(description);
80 sprintf(description, "_uid_ses.%u", uid);
81 fake_user_session_keyring = create_keyring(description);
  /external/mockito/src/main/java/org/mockito/verification/
VerificationMode.java 40 * Description will be prepended to the assertion error if verification fails.
41 * @param description The custom failure message
45 VerificationMode description(String description); method in interface:VerificationMode
  /external/skia/src/sksl/ir/
SkSLModifiersDeclaration.h 26 String description() const { function in struct:SkSL::ModifiersDeclaration
27 return fModifiers.description() + ";";
  /external/skqp/src/sksl/ir/
SkSLModifiersDeclaration.h 26 String description() const { function in struct:SkSL::ModifiersDeclaration
27 return fModifiers.description() + ";";
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
VoicemailTosMessage.java 22 public VoicemailTosMessage(CharSequence title, CharSequence description, Action... actions) {
23 super(title, description, actions);
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
SimpleActionItem.java 19 /** A simple item which shows title and description. */
25 public SimpleActionItem(String title, String description) {
26 super(title, description);
  /platform_testing/libraries/device-collectors/src/test/java/android/device/collectors/
StubTestMetricListener.java 18 import org.junit.runner.Description;
28 public void onTestRunStart(DataRecord runData, Description description) {
29 runData.addStringMetric("run_start", "run_Start" + description.getClassName());
38 public void onTestStart(DataRecord testData, Description description) {
39 testData.addStringMetric("test_start", "test_start" + description.getMethodName());
43 public void onTestFail(DataRecord testData, Description description, Failure failure) {
44 testData.addStringMetric("test_fail", "test_fail" + description.getMethodName())
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/annotations/Validator/src/
PositiveIntegerSupplier.java 45 description = "It's not an Integer ")
47 description = "It's not a positive Number")

Completed in 504 milliseconds

12 3 4 5 6 7 8 91011>>