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

12 3 4 5 6 7 8 91011>>

  /cts/tools/signature-tools/src/signature/model/impl/
SigApi.java 30 private String description; field in class:SigApi
33 public SigApi(String description, Visibility visibility) {
34 this.description = description;
39 return description;
42 public void setName(String description) {
43 this.description = description;
  /external/webkit/Source/WebKit/chromium/public/
WebPluginListBuilder.h 42 const WebString& name, const WebString& description,
46 const WebString& name, const WebString& description) = 0;
  /external/webkit/Source/WebCore/bindings/objc/
ExceptionHandlers.mm 46 ExceptionCodeDescription description;
47 getExceptionCodeDescription(ec, description);
50 if (strcmp(description.typeName, "DOM Range") == 0)
52 else if (strcmp(description.typeName, "DOM Events") == 0)
55 else if (strcmp(description.typeName, "DOM SVG") == 0)
58 else if (strcmp(description.typeName, "DOM XPath") == 0)
64 if (description.name)
65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code];
67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code]
    [all...]
  /external/webkit/Source/WebCore/storage/
SQLException.h 42 static PassRefPtr<SQLException> create(const ExceptionCodeDescription& description)
44 return adoptRef(new SQLException(description));
62 SQLException(const ExceptionCodeDescription& description)
63 : ExceptionBase(description)
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
Message.java 56 * @param description
59 protected void fatalAlert(byte description, String reason) {
60 throw new AlertException(description, new SSLHandshakeException(reason));
65 * @param description
69 protected void fatalAlert(byte description, String reason, Throwable cause) {
70 throw new AlertException(description, new SSLException(reason, cause));
  /external/proguard/src/proguard/gui/
ExtensionFileFilter.java 35 private final String description; field in class:ExtensionFileFilter
41 * @param description a description of the filter.
44 public ExtensionFileFilter(String description, String[] extensions)
46 this.description = description;
55 return description;
  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
Macro.java 32 private String description; field in class:Macro
45 return description;
48 public void setDescription(String description) {
49 this.description = description;
  /external/jhead/
iptc.c 102 char * description = NULL; local
124 case IPTC_SUPLEMENTAL_CATEGORIES: description = "SuplementalCategories"; break;
125 case IPTC_KEYWORDS: description = "Keywords"; break;
126 case IPTC_CAPTION: description = "Caption"; break;
127 case IPTC_AUTHOR: description = "Author"; break;
128 case IPTC_HEADLINE: description = "Headline"; break;
129 case IPTC_SPECIAL_INSTRUCTIONS: description = "Spec. Instr."; break;
130 case IPTC_CATEGORY: description = "Category"; break;
131 case IPTC_BYLINE: description = "Byline"; break;
132 case IPTC_BYLINE_TITLE: description = "Byline Title"; break
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DynamicAnnotations.h 53 #define WTF_ANNOTATE_BENIGN_RACE_SIZED(address, size, description) WTFAnnotateBenignRaceSized(__FILE__, __LINE__, address, size, description)
54 #define WTF_ANNOTATE_BENIGN_RACE(pointer, description) WTFAnnotateBenignRaceSized(__FILE__, __LINE__, pointer, sizeof(*(pointer)), description)
80 void WTFAnnotateBenignRaceSized(const char* file, int line, const volatile void* memory, long size, const char* description);
90 #define WTF_ANNOTATE_BENIGN_RACE_SIZED(address, size, description)
91 #define WTF_ANNOTATE_BENIGN_RACE(pointer, description)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
while-004.js 4 * Description: while statement
44 description = "return statement in a while block";
50 "DoWhile_1" + description,
63 var description = "while with a labeled continue statement";
79 "DoWhile_2: " +description + " - code inside the loop, before the continue should be executed ("+j+")",
85 "DoWhile_2: " +description +" - code after labeled continue should not be executed",
91 "DoWhile_2: " +description +" - code after loop but inside label should be executed",
101 var description = "while with a labeled break statement";
118 "DoWhile_3: " +description +" - verify break out of loop",
125 "DoWhile_3: " +description +" - verify break out of label"
    [all...]
  /external/junit/src/org/junit/internal/
AssumptionViolatedException.java 3 import org.hamcrest.Description;
30 public void describeTo(Description description) {
32 description.appendText("got: ");
33 description.appendValue(fValue);
34 description.appendText(", expected: ");
35 description.appendDescriptionOf(fMatcher);
37 description.appendText("failed assumption: " + fValue);
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/mutebutton/
mute_button.edc 34 description { state: "default" 0.0;
37 description { state: "mute" 0.0;
41 description { state: "sound" 0.0;
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/playpausebutton/
playpause_button.edc 34 description { state: "default" 0.0;
37 description { state: "play" 0.0;
41 description { state: "pause" 0.0;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRewriteRuleSubtreeStream.h 37 description:(NSString *)anElementDescription;
39 description:(NSString *)anElementDescription
42 description:(NSString *)anElementDescription
45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
ANTLRRewriteRuleTokenStream.h 36 description:(NSString *)elementDescription;
39 description:(NSString *)elementDescription
43 description:(NSString *)elementDescription
48 description:(NSString *)aDescription;
50 description:(NSString *)aDescription
53 description:(NSString *)aDescription
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRewriteRuleSubtreeStream.h 37 description:(NSString *)anElementDescription;
39 description:(NSString *)anElementDescription
42 description:(NSString *)anElementDescription
45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
ANTLRRewriteRuleTokenStream.h 36 description:(NSString *)elementDescription;
39 description:(NSString *)elementDescription
43 description:(NSString *)elementDescription
48 description:(NSString *)aDescription;
50 description:(NSString *)aDescription
53 description:(NSString *)aDescription
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRewriteRuleSubtreeStream.h 37 description:(NSString *)anElementDescription;
39 description:(NSString *)anElementDescription
42 description:(NSString *)anElementDescription
45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
ANTLRRewriteRuleTokenStream.h 36 description:(NSString *)elementDescription;
39 description:(NSString *)elementDescription
43 description:(NSString *)elementDescription
48 description:(NSString *)aDescription;
50 description:(NSString *)aDescription
53 description:(NSString *)aDescription
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRewriteRuleNodeStream.h 36 + (ANTLRRewriteRuleNodeStream *) newANTLRRewriteRuleNodeStream:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
37 + (ANTLRRewriteRuleNodeStream *) newANTLRRewriteRuleNodeStream:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
38 + (ANTLRRewriteRuleNodeStream *) newANTLRRewriteRuleNode:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
40 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
41 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
42 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
ANTLRRewriteRuleSubtreeStream.h 37 description:(NSString *)anElementDescription;
39 description:(NSString *)anElementDescription
42 description:(NSString *)anElementDescription
45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
ANTLRRewriteRuleTokenStream.h 36 description:(NSString *)elementDescription;
39 description:(NSString *)elementDescription
43 description:(NSString *)elementDescription
48 description:(NSString *)aDescription;
50 description:(NSString *)aDescription
53 description:(NSString *)aDescription
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssItem.java 21 * title, link, description.
34 public RssItem(CharSequence title, CharSequence link, CharSequence description) {
37 mDescription = description;
44 public void setDescription(CharSequence description) {
45 mDescription = description;
  /external/junit/src/org/junit/rules/
RunRules.java 3 import org.junit.runner.Description;
12 public RunRules(Statement base, Iterable<TestRule> rules, Description description) {
13 statement= applyAll(base, rules, description);
22 Description description) {
24 result= each.apply(result, description);
  /external/junit/src/org/junit/runner/manipulation/
Filter.java 3 import org.junit.runner.Description;
21 public boolean shouldRun(Description description) {
45 public static Filter matchMethodDescription(final Description desiredDescription) {
48 public boolean shouldRun(Description description) {
49 if (description.isTest())
50 return desiredDescription.equals(description);
53 for (Description each : description.getChildren()
    [all...]

Completed in 1308 milliseconds

12 3 4 5 6 7 8 91011>>