/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: "Expat uses an unbounded number of global references", 34 description: "Test fails, Intermediate certificate lacks BasicConstraints", 39 description: "DHParametersHelper.generateSafePrimes sometimes takes long time, other times takes a very long time", 44 description: "KeyAgreementFunctionalTest times out even with an absurdly long timeout", 57 description: "KxmlPullParser doesn't enforce top-level document element", 65 description: "URLConnection fails on URLs containing {}" [all...] |
taggedtests.txt | 7 description: "large tests",
|
brokentests.txt | 6 description: "libcore.java.io.OldFileTest#test_deleteOnExit fails on IRM05 mysid-user", 11 description: "FIONREAD/SIOCINQ returns the wrong result on sockets (5731252 is the root cause of 5534202)", 16 description: "libcore.java.net.URLConnectionTest#testServerShutdownInput fails on ICL27 mysid-userdebug (5534202 is caused by 5731252)", 21 description: "Support digest authentication in HttpURLConnection", 26 description: "Without no security manager, we don't care if checkPermission's argument is null", 31 description: "This test and testGetKeepAlive have been failing in our continuous build recently.", 39 description: "on the RI, writing the two halves of the surrogate pair in separate writes 50 description: "We're retiring the security manager. Unfortunately, tests all over the place 59 description: "ignore compilation errors due to different available APIs", 65 description: "These tests assert the exact bytes of the compressed form. Since we use [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...] |
/external/jmonkeyengine/engine/src/android/jme3test/android/ |
DemoLaunchEntry.java | 4 * Name (=appClass) and Description of one demo launch inside the main apk 11 private String description; field in class:DemoLaunchEntry 15 * @param description 17 public DemoLaunchEntry(String name, String description) { 20 this.description = description; 30 return description; 32 public void setDescription(String description) { 33 this.description = description; [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)
|
/external/mockito/src/org/mockito/internal/matchers/ |
Same.java | 8 import org.hamcrest.Description; 27 public void describeTo(Description description) { 28 description.appendText("same("); 29 appendQuoting(description); 30 description.appendText("" + wanted); 31 appendQuoting(description); 32 description.appendText(")"); 35 private void appendQuoting(Description description) { [all...] |
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/public/ |
ExcDevice.h | 49 ExcDevice(const char *description, int cause) : 50 cause(cause), description(description) { 58 return description; 64 const char *description; member in class:ExcDevice
|
/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...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
UnsupportedFormatException.java | 23 public UnsupportedFormatException(String description) { 24 super(description);
|
/frameworks/base/libs/hwui/ |
ProgramCache.cpp | 423 Program* ProgramCache::get(const ProgramDescription& description) { 424 programid key = description.key(); 434 description.log("Could not find program"); 435 program = generateProgram(description, key); 447 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) { 448 String8 vertexShader = generateVertexShader(description); 449 String8 fragmentShader = generateFragmentShader(description); 451 return new Program(description, vertexShader.string(), fragmentShader.string()); 454 static inline size_t gradientIndex(const ProgramDescription& description) { 455 return description.gradientType * 2 + description.isSimpleGradient [all...] |
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/ |
PictureData.java | 23 String description; field in class:PictureData 26 public PictureData(int resourceId, String description, Bitmap thumbnail) { 28 this.description = description;
|
/external/hamcrest/src/org/hamcrest/ |
SelfDescribing.java | 8 * Generates a description of the object. The description may be part of a 9 * a description of a larger object of which this is just a component, so it 12 * @param description 13 * The description to be built or appended to. 15 void describeTo(Description description);
|
/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)
|
/external/junit/src/junit/framework/ |
JUnit4TestAdapterCache.java | 11 import org.junit.runner.Description; 16 public class JUnit4TestAdapterCache extends HashMap<Description, Test> { 24 public Test asTest(Description description) { 25 if (description.isSuite()) 26 return createTest(description); 28 if (!containsKey(description)) 29 put(description, createTest(description)); 30 return get(description); [all...] |
/external/hamcrest/src/org/hamcrest/core/ |
IsAnything.java | 5 import org.hamcrest.Description; 16 private final String description; field in class:IsAnything 22 public IsAnything(String description) { 23 this.description = description; 30 public void describeTo(Description description) { 31 description.appendText(this.description); 45 * @param description A meaningful string used when describing itself [all...] |
/external/junit/src/org/junit/rules/ |
TestWatcher.java | 4 import org.junit.runner.Description; 19 * protected void failed(Description d) { 24 * protected void succeeded(Description d) { 41 public Statement apply(final Statement base, final Description description) { 45 starting(description); 48 succeeded(description); 52 failed(t, description); 55 finished(description); 64 * @param description [all...] |