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

1 2 3 45 6 7 8 91011>>

  /external/mockito/src/org/mockito/
ArgumentMatcher.java 9 import org.hamcrest.Description;
17 * In case of failure, ArgumentMatcher generates description based on <b>decamelized class name</b> - to promote meaningful class names.
18 * For example <b>StringWithStrongLanguage</b> matcher will generate 'String with strong language' description.
19 * You can always override describeTo() method and provide detailed description.
79 * For example <b>StringWithStrongLanguage</b> matcher will generate 'String with strong language' description in case of failure.
82 * provide more specific description of the matcher (useful when
85 * @param description the description to which the matcher description is
88 public void describeTo(Description description)
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
ArrayEquals.java 11 import org.hamcrest.Description;
47 public void describeTo(Description description) {
49 appendArray(createObjectArray(getWanted()), description); local
51 super.describeTo(description);
55 private void appendArray(Object[] array, Description description) {
56 description.appendText("[");
58 new Equals(array[i]).describeTo(description);
60 description.appendText(", ")
    [all...]
Contains.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("contains(\"" + substring + "\")");
EndsWith.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("endsWith(\"" + suffix + "\")");
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/
InvalidProtocolBufferException.java 44 public InvalidProtocolBufferException(final String description) {
45 super(description);
  /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);
  /external/smack/src/org/xbill/DNS/
SingleCompressedNameBase.java 21 Name singleName, String description)
23 super(name, type, dclass, ttl, singleName, description);
  /external/webkit/Source/WebCore/plugins/
DOMMimeType.idl 26 readonly attribute DOMString description;
  /external/webkit/Source/WebKit/chromium/src/
WebPluginListBuilderImpl.h 46 virtual void addPlugin(const WebString& name, const WebString& description, const WebString& fileName);
47 virtual void addMediaTypeToLastPlugin(const WebString& name, const WebString& description);
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 78 description {
88 description {
102 description {
110 description {
115 description {
123 description {
131 description {
145 description {
162 description {
171 description {
    [all...]
  /external/chromium/chrome/browser/
browsing_data_indexed_db_helper_browsertest.cc 31 const string16 description(ASCIIToUTF16("description"));
39 helper->AddIndexedDB(origin1, description);
40 helper->AddIndexedDB(origin2, description);
56 const string16 description(ASCIIToUTF16("description"));
62 helper->AddIndexedDB(origin, description);
63 helper->AddIndexedDB(origin, description);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketChannelOpenFailure.java 21 public String description; field in class:PacketChannelOpenFailure
24 public PacketChannelOpenFailure(int recipientChannelID, int reasonCode, String description,
29 this.description = description;
49 description = tr.readString();
64 tw.writeString(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...]
  /external/webkit/LayoutTests/storage/resources/
database-common.js 3 function openDatabaseWithSuffix(name, version, description, size, callback)
6 return openDatabase(name + DB_TEST_SUFFIX, version, description, size, callback);
8 return openDatabase(name + DB_TEST_SUFFIX, version, description, size);
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/progressbar/
progressbar.edc 50 description {
60 description {
64 description {
75 description {
97 description {
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/cancel/
search_cancel.edc 56 description {
65 description {
70 description {
74 description {
78 description {
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/decoration/
search_decoration.edc 56 description {
66 description {
71 description {
75 description {
79 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/webkit/Source/WebKit2/Shared/Plugins/Netscape/win/
NetscapePluginModuleWin.cpp 68 String description = getVersionInfo(versionInfoData.get(), "FileDescription"); local
69 if (name.isNull() || description.isNull())
87 String description = i < descriptions.size() ? descriptions[i] : ""; local
93 // Get rid of the extension list that may be at the end of the description string.
94 int pos = description.find("(*");
97 if (pos > 1 && description[pos - 1] == ' ')
99 description = description.left(pos);
103 mimes[i].desc = description;
108 plugin.info.desc = description;
    [all...]

Completed in 1225 milliseconds

1 2 3 45 6 7 8 91011>>