HomeSort by relevance Sort by last modified time
    Searched full:description (Results 101 - 125 of 22476) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mockito/src/org/mockito/internal/matchers/
StartsWith.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("startsWith(\"" + prefix + "\")");
  /external/mockito/src/org/mockito/internal/matchers/apachecommons/
ReflectionEquals.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("refEq(" + wanted + ")");
  /external/snakeyaml/src/test/resources/compactnotation/
error8.yaml 5 description: >
  /external/snakeyaml/src/test/resources/representer/
scalar-style1.yaml 6 description: 1111111111 2222222222 3333333333 4444444444 5555555555 6666666666 7777777777 8888888888 9999999999 0000000000
scalar-style2.yaml 6 description: >-
scalar-style3.yaml 6 description: >-
  /external/testng/src/test/java/test/dataprovider/
InheritedDataProviderBaseSampleTest.java 5 //@Test(description = "parent")
  /system/connectivity/apmanager/
libapmanager-client-test.pc.in 5 Description: apmanager client interface mock library
libapmanager-client.pc.in 5 Description: apmanager client interface library
  /system/connectivity/shill/
libshill-client-test.pc.in 5 Description: shill client interface mock library
libshill-client.pc.in 5 Description: shill client interface library
  /system/core/libsysutils/
EventLogTags.logtags 1 # See system/core/logcat/event.logtags for a description of the format of this file.
  /system/firewalld/
libfirewalld-client-test.pc.in 5 Description: firewalld client interface mock library
libfirewalld-client.pc.in 5 Description: firewalld client interface library
  /system/update_engine/
libupdate_engine-client-test.pc.in 5 Description: update_engine client interface mock library
libupdate_engine-client.pc.in 5 Description: update_engine client interface library
  /external/junit/src/org/junit/runner/
Description.java 12 * <p>A <code>Description</code> describes a test which is to be run or has been run. <code>Descriptions</code>
22 * a superclass below {@link Object}. We needed a way to pass a class and name together. Description
28 public class Description implements Serializable {
32 * Create a <code>Description</code> named <code>name</code>.
33 * Generally, you will add children to this <code>Description</code>.
34 * @param name the name of the <code>Description</code>
36 * @return a <code>Description</code> named <code>name</code>
38 public static Description createSuiteDescription(String name, Annotation... annotations) {
41 return new Description(name, annotations);
45 * Create a <code>Description</code> of a single test named <code>name</code> in the class <code>clazz</code>
    [all...]
  /external/junit/src/org/junit/experimental/max/
MaxHistory.java 14 import org.junit.runner.Description;
80 Long getFailureTimestamp(Description key) {
84 void putTestFailureTimestamp(Description key, long end) {
88 boolean isNewTest(Description key) {
92 Long getTestDuration(Description key) {
96 void putTestDuration(Description description, long duration) {
97 fDurations.put(description.toString(), duration);
103 private Map<Description, Long> starts= new HashMap<Description, Long>()
    [all...]
  /external/libusb-compat/examples/
testlibusb.c 65 char description[256]; local
74 snprintf(description, sizeof(description), "%s - ", string);
76 snprintf(description, sizeof(description), "%04X - ",
79 snprintf(description, sizeof(description), "%04X - ",
85 snprintf(description + strlen(description), sizeof(description)
    [all...]
  /packages/inputmethods/LatinIME/java/res/values/
strings-letter-descriptions.xml 26 <!-- Spoken description for Unicode code point U+00AA: "ª" FEMININE ORDINAL INDICATOR -->
28 <!-- Spoken description for Unicode code point U+00B5: "µ" MICRO SIGN -->
30 <!-- Spoken description for Unicode code point U+00BA: "º" MASCULINE ORDINAL INDICATOR -->
32 <!-- Spoken description for Unicode code point U+00DF: "ß" LATIN SMALL LETTER SHARP S -->
34 <!-- Spoken description for Unicode code point U+00E0: "à" LATIN SMALL LETTER A WITH GRAVE -->
36 <!-- Spoken description for Unicode code point U+00E1: "á" LATIN SMALL LETTER A WITH ACUTE -->
38 <!-- Spoken description for Unicode code point U+00E2: "â" LATIN SMALL LETTER A WITH CIRCUMFLEX -->
40 <!-- Spoken description for Unicode code point U+00E3: "ã" LATIN SMALL LETTER A WITH TILDE -->
42 <!-- Spoken description for Unicode code point U+00E4: "ä" LATIN SMALL LETTER A WITH DIAERESIS -->
44 <!-- Spoken description for Unicode code point U+00E5: "å" LATIN SMALL LETTER A WITH RING ABOVE --
    [all...]
  /external/junit/src/org/junit/runner/notification/
RunListener.java 4 import org.junit.runner.Description;
38 * @param description describes the tests to be run
40 public void testRunStarted(Description description) throws Exception {
52 * @param description the description of the test that is about to be run
55 public void testStarted(Description description) throws Exception {
60 * @param description the description of the test that just ra
    [all...]
  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunListener.java 19 import org.junit.runner.Description;
36 public void testRunStarted(Description description) throws Exception {
47 public void testStarted(Description description) throws Exception {
49 description.getClassName(), description.getMethodName()));
53 public void testFinished(Description description) throws Exception {
65 public void testIgnored(Description description) throws Exception
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRewriteRuleNodeStream.m 14 + (ANTLRRewriteRuleNodeStream*) newANTLRRewriteRuleNodeStream:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
16 return [[ANTLRRewriteRuleNodeStream alloc] initWithTreeAdaptor:aTreeAdaptor description:anElementDescription];
19 + (ANTLRRewriteRuleNodeStream*) newANTLRRewriteRuleNodeStream:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
21 return [[ANTLRRewriteRuleNodeStream alloc] initWithTreeAdaptor:aTreeAdaptor description:anElementDescription element:anElement];
24 + (ANTLRRewriteRuleNodeStream*) newANTLRRewriteRuleNode:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
26 return [[ANTLRRewriteRuleNodeStream alloc] initWithTreeAdaptor:aTreeAdaptor description:anElementDescription elements:theElements];
29 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription
31 if ((self = [super initWithTreeAdaptor:aTreeAdaptor description:anElementDescription]) != nil) {
38 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement
40 if ((self = [super initWithTreeAdaptor:aTreeAdaptor description:anElementDescription element:anElement]) != nil)
    [all...]
  /system/bt/btif/include/
btif_api.h 23 * Description: Main API header file for all BTIF functions accessed
46 ** Description Creates BTIF task and prepares BT scheduler for startup
57 ** Description Performs chip power on and kickstarts OS scheduler
68 ** Description Inititates shutdown of Bluetooth system.
81 ** Description Cleanup BTIF state.
93 ** Description Checks if BT was enabled in restriced mode. In restricted
110 ** Description Fetches all local adapter properties
121 ** Description Fetches property value from local cache
132 ** Description Updates core stack with property value and stores it in
144 ** Description Fetches the remote device property from the NVRA
    [all...]
  /external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
ErrorReportingRunner.java 10 import org.junit.runner.Description;
30 * <li>uses the cause to construct the description allowing filtering on specific error messages.
51 public Description getDescription() {
53 Description description= Description.createSuiteDescription(fTestClassName); local
56 description.addChild(describeCause(each));
57 return description;
72 Description description = describeCause(cause) local
118 Description description= describeCause(child); local
    [all...]

Completed in 2159 milliseconds

1 2 3 45 6 7 8 91011>>