HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 151 - 175 of 4403) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mockito/src/org/mockito/internal/matchers/
NotNull.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("notNull()");
Null.java 10 import org.hamcrest.Description;
26 public void describeTo(Description description) {
27 description.appendText("isNull()");
StartsWith.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("startsWith(\"" + prefix + "\")");
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
InvalidProtocolBufferMicroException.java 44 public InvalidProtocolBufferMicroException(final String description) {
45 super(description);
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
InvalidProtocolBufferNanoException.java 44 public InvalidProtocolBufferNanoException(final String description) {
45 super(description);
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
RadioButtonItem.java 26 public RadioButtonItem(String title, String description) {
27 super(title, description);
  /system/connectivity/shill/init/
network-services.conf.in 17 description "Abstract job that runs when boot-services is complete"
  /system/extras/ext4_utils/
key_control.h 19 const char *description,
29 const char *description, key_serial_t destringid);
  /external/google-breakpad/src/common/mac/testing/
GTMSenTestCase.h 66 // as a description if you have the NS_FORMAT_FUNCTION on.
82 // description: A format string as in the printf() function. Can be nil or
85 #define STAssertNoErr(a1, description, ...) \
95 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
103 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
111 // description: A format string as in the printf() function. Can be nil or
114 #define STAssertErr(a1, a2, description, ...) \
125 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
133 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
141 // description: A format string as in the printf() function. Can be nil o
    [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/deqp/modules/egl/
teglTestCase.cpp 76 TestCaseGroup::TestCaseGroup (EglTestContext& eglTestCtx, const char* name, const char* description)
77 : tcu::TestCaseGroup (eglTestCtx.getTestContext(), name, description)
86 TestCase::TestCase (EglTestContext& eglTestCtx, const char* name, const char* description)
87 : tcu::TestCase (eglTestCtx.getTestContext(), name, description)
92 TestCase::TestCase (EglTestContext& eglTestCtx, tcu::TestNodeType type, const char* name, const char* description)
93 : tcu::TestCase (eglTestCtx.getTestContext(), type, name, description)
  /external/hamcrest/src/org/hamcrest/core/
DescribedAs.java 7 import org.hamcrest.Description;
13 * Provides a custom description to another matcher.
32 public void describeTo(Description description) {
37 description.appendText(descriptionTemplate.substring(textStart, arg.start()));
39 description.appendValue(values[argIndex]);
44 description.appendText(descriptionTemplate.substring(textStart));
49 * Wraps an existing matcher and overrides the description when it fails.
52 public static <T> Matcher<T> describedAs(String description, Matcher<T> matcher, Object... values) {
53 return new DescribedAs<T>(description, matcher, values);
    [all...]
  /external/junit/src/org/junit/experimental/results/
ResultMatchers.java 4 import org.hamcrest.Description;
29 public void describeTo(Description description) {
30 description.appendText("has " + count + " failures");
49 public void describeTo(Description description) {
50 description.appendText("has single failure containing " + string);
65 public void describeTo(Description description) {
66 description.appendText("has failure containing " + string)
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewProviderInfo.java 31 public WebViewProviderInfo(String packageName, String description,
34 this.description = description;
54 description = in.readString();
68 out.writeString(description);
76 public final String description; field in class:WebViewProviderInfo
  /frameworks/base/tools/aapt2/
Flags.h 32 Flags& requiredFlag(const StringPiece& name, const StringPiece& description,
34 Flags& requiredFlagList(const StringPiece& name, const StringPiece& description,
36 Flags& optionalFlag(const StringPiece& name, const StringPiece& description,
38 Flags& optionalFlagList(const StringPiece& name, const StringPiece& description,
40 Flags& optionalSwitch(const StringPiece& name, const StringPiece& description,
53 std::string description; member in struct:aapt::Flags::Flag
  /external/chromium-trace/catapult/tracing/tracing/value/
__init__.py 11 def __init__(self, canonical_url, name, units, description=None,
16 self.description = description
31 if self.description is not None:
32 d['description'] = self.description
63 def __init__(self, canonical_url, name, value, description=None,
67 description=description,
84 description=d.get('description', None)
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
CommonIntentsFacade.java 55 @Rpc(description = "Display content to be picked by URI (e.g. contacts)", returns = "A map of result values.")
60 @Rpc(description = "Starts the barcode scanner.", returns = "A Map representation of the result Intent.")
77 @Rpc(description = "Start activity with view action by URI (i.e. browser, contacts, etc.).")
80 @RpcParameter(name = "type", description = "MIME type/subtype of the URI") @RpcOptional String type,
81 @RpcParameter(name = "extras", description = "a Map of extras to add to the Intent") @RpcOptional JSONObject extras)
86 @Rpc(description = "Opens a map search for query (e.g. pizza, 123 My Street).")
92 @Rpc(description = "Opens the list of contacts.")
97 @Rpc(description = "Opens the browser to display a local HTML file.")
99 @RpcParameter(name = "path", description = "the path to the HTML file") String path)
105 @Rpc(description = "Starts a search for the given query."
    [all...]
AndroidFacade.java 412 @Rpc(description = "Starts an activity and returns the result.",
419 @RpcParameter(name = "type", description = "MIME type/subtype of the URI")
421 @RpcParameter(name = "extras", description = "a Map of extras to add to the Intent")
424 description = "name of package. If used, requires classname to be useful")
427 description = "name of class. If used, requires packagename to be useful")
434 @Rpc(description = "Starts an activity and returns the result.",
438 description = "Intent in the format as returned from makeIntent")
487 @Rpc(description = "Put a text string in the clipboard.")
496 @Rpc(description = "Get the device serial number.")
501 @Rpc(description = "Get the name of system bootloader version number."
    [all...]
  /external/webrtc/webrtc/api/objctests/
RTCSessionDescriptionTest.mm 31 RTCSessionDescription *description =
36 description.nativeDescription;
54 RTCSessionDescription *description =
58 [RTCSessionDescription stringForType:description.type]);
59 EXPECT_TRUE([[self sdp] isEqualToString:description.sdp]);
  /external/v8/test/mjsunit/es6/
mirror-symbols.js 8 function testSymbolMirror(symbol, description) {
21 assertEquals(description, mirror.description());
24 var description_text = description === undefined ? "" : description;
31 assertEquals(description, fromJSON.description);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRewriteRuleElementStream.h 51 description:(NSString *)anElementDescription;
53 description:(NSString *)anElementDescription
56 description:(NSString *)anElementDescription
59 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
60 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
61 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
80 - (void) setDescription:(NSString *)description;
  /external/junit/src/org/junit/internal/runners/
ErrorReportingRunner.java 7 import org.junit.runner.Description;
24 public Description getDescription() {
25 Description description= Description.createSuiteDescription(fTestClass); local
27 description.addChild(describeCause(each));
28 return description;
49 private Description describeCause(Throwable child) {
50 return Description.createTestDescription(fTestClass,
55 Description description= describeCause(child) local
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothFacade.java 180 @Rpc(description = "Requests that the device be made connectable.")
186 @Rpc(description = "Requests that the device be discoverable for Bluetooth connections.")
189 description = "period of time, in seconds,"
198 @Rpc(description = "Requests that the device be not discoverable.")
204 @Rpc(description = "Queries a remote device for it's name or null if it can't be resolved")
206 @RpcParameter(name = "address", description = "Bluetooth Address For Target Device")
217 @Rpc(description = "Get local Bluetooth device name")
222 @Rpc(description = "Sets the Bluetooth visible device name", returns = "true on success")
224 @RpcParameter(name = "name", description = "New local name")
229 @Rpc(description = "Returns the hardware address of the local Bluetooth adapter. "
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NFSubstitution.java 49 * Parses the description, creates the right kind of substitution,
50 * and initializes it based on the description.
61 * @param description The description to parse to build the substitution
62 * (this is just the substring of the rule's description containing
64 * @return A new substitution constructed according to the description
71 String description) {
72 // if the description is empty, return a NullSubstitution
73 if (description.length() == 0) {
77 switch (description.charAt(0))
    [all...]