HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 1 - 25 of 1687) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/expectations/
knownfailures.txt 6 description: "Package.getPackages(), ClassLoader.getPackages() both omit results",
11 description: "Deserialization shouldn't set transient fields",
16 description: "Investigate InterruptedIOException + InputStream.read(), OutputStream.write()",
24 description: "SimpleDateFormat assumes DST always uses 60 minute offset; this fails for zones like Lord Howe Daylight Time",
29 description: "Encoded bytes don't match for EC elliptic curve keys created through KeyFactory.generatePrivate()",
37 description: "Expat uses an unbounded number of global references",
42 description: "Test fails, Intermediate certificate lacks BasicConstraints",
47 description: "DHParametersHelper.generateSafePrimes sometimes takes long time, other times takes a very long time",
52 description: "KeyAgreementFunctionalTest times out even with an absurdly long timeout",
57 description: "CipherTest.test_doFinal() is flaky"
    [all...]
taggedtests.txt 7 description: "large tests",
brokentests.txt 6 description: "Without no security manager, we don't care if checkPermission's argument is null",
11 description: "This test and testGetKeepAlive have been failing in our continuous build recently.",
19 description: "on the RI, writing the two halves of the surrogate pair in separate writes
30 description: "We're retiring the security manager. Unfortunately, tests all over the place
39 description: "ignore compilation errors due to different available APIs",
45 description: "These tests assert the exact bytes of the compressed form. Since we use a
56 description: "The RI avoids blocking calls when '\\r' is the last character. We don't
64 description: "The RI avoids blocking calls when '\\r' is the last character. We don't
72 description: "The test is checking that the implementation doesn't read any characters
80 description: "These tests only pass if the root logger hasn't yet been initialized. The
    [all...]
icebox.txt 6 description: "javasqlite doesn't honor query timeouts",
16 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
22 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
28 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
34 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
40 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
46 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
52 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
60 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
66 description: "Dalvik doesn't support XML Schemas, DTDs or validation"
    [all...]
  /frameworks/base/core/java/android/database/
CursorWindowAllocationException.java 26 public CursorWindowAllocationException(String description) {
27 super(description);
StaleDataException.java 30 public StaleDataException(String description)
32 super(description);
  /external/chromium/chrome/browser/chromeos/login/
wizard_accessibility_handler_unittest.cc 21 std::string* description) {
27 description,
35 std::string description; local
50 &description,
53 EXPECT_EQ("Save Button", description);
61 &description,
64 EXPECT_EQ("Accessibility Unchecked check box", description);
69 &description,
72 EXPECT_EQ("Accessibility Checked check box", description);
82 &description,
91 std::string description; local
    [all...]
  /external/webkit/Source/WebCore/dom/
DOMCoreException.h 38 static PassRefPtr<DOMCoreException> create(const ExceptionCodeDescription& description)
40 return adoptRef(new DOMCoreException(description));
44 DOMCoreException(const ExceptionCodeDescription& description)
45 : ExceptionBase(description)
ExceptionBase.cpp 36 ExceptionBase::ExceptionBase(const ExceptionCodeDescription& description)
37 : m_code(description.code)
38 , m_name(description.name)
39 , m_description(description.description)
41 if (description.name)
42 m_message = makeString(description.name, ": ", description.typeName, " Exception ", String::number(description.code));
44 m_message = makeString(description.typeName, " Exception ", String::number(description.code))
    [all...]
EventException.h 38 static PassRefPtr<EventException> create(const ExceptionCodeDescription& description)
40 return adoptRef(new EventException(description));
51 EventException(const ExceptionCodeDescription& description)
52 : ExceptionBase(description)
RangeException.h 34 static PassRefPtr<RangeException> create(const ExceptionCodeDescription& description)
36 return adoptRef(new RangeException(description));
48 RangeException(const ExceptionCodeDescription& description)
49 : ExceptionBase(description)
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
UnsupportedFormatException.java 23 public UnsupportedFormatException(String description) {
24 super(description);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AlertException.java 31 // alert description code
32 private final byte description; field in class:AlertException
37 * @param description The alert description code from {@link AlertProtocol}
42 protected AlertException(byte description, SSLException reason) {
45 this.description = description;
58 * Returns alert's description code.
60 * @return alert description code from {@link AlertProtocol}
64 return description;
    [all...]
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/webkit/Source/WebCore/svg/
SVGException.h 32 static PassRefPtr<SVGException> create(const ExceptionCodeDescription& description)
34 return adoptRef(new SVGException(description));
47 SVGException(const ExceptionCodeDescription& description)
48 : ExceptionBase(description)
  /external/webkit/Source/WebCore/xml/
XMLHttpRequestException.h 38 static PassRefPtr<XMLHttpRequestException> create(const ExceptionCodeDescription& description)
40 return adoptRef(new XMLHttpRequestException(description));
52 XMLHttpRequestException(const ExceptionCodeDescription& description)
53 : ExceptionBase(description)
XPathException.h 40 static PassRefPtr<XPathException> create(const ExceptionCodeDescription& description)
42 return adoptRef(new XPathException(description));
54 XPathException(const ExceptionCodeDescription& description)
55 : ExceptionBase(description)
  /frameworks/base/libs/hwui/
ProgramCache.cpp 369 Program* ProgramCache::get(const ProgramDescription& description) {
370 programid key = description.key();
374 description.log("Could not find program");
375 program = generateProgram(description, key);
387 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
388 String8 vertexShader = generateVertexShader(description);
389 String8 fragmentShader = generateFragmentShader(description);
395 String8 ProgramCache::generateVertexShader(const ProgramDescription& description) {
398 if (description.hasTexture || description.hasExternalTexture)
    [all...]
  /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)
  /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/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)

Completed in 619 milliseconds

1 2 3 4 5 6 7 8 91011>>