/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_debug.h | 32 extern void _math_test_all_transform_functions( char *description ); 33 extern void _math_test_all_normal_transform_functions( char *description ); 34 extern void _math_test_all_cliptest_functions( char *description ); 38 extern void _math_test_all_vertex_functions( char *description );
|
/external/mesa3d/src/mesa/math/ |
m_debug.h | 32 extern void _math_test_all_transform_functions( char *description ); 33 extern void _math_test_all_normal_transform_functions( char *description ); 34 extern void _math_test_all_cliptest_functions( char *description ); 38 extern void _math_test_all_vertex_functions( char *description );
|
/libcore/expectations/ |
knownfailures.txt | 6 description: "four known CharsetDecoder-/CharsetEncoder-related failures", 16 description: "can't compile a pattern with negative look-behind and quantifiers with upper bounds", 21 description: "our regex implementation calls toString on CharSequences", 26 description: "Package.getPackages(), ClassLoader.getPackages() both omit results", 31 description: "Deserialization shouldn't set transient fields", 36 description: "Investigate InterruptedIOException + InputStream.read(), OutputStream.write()", 44 description: "SimpleDateFormat assumes DST always uses 60 minute offset; this fails for zones like Lord Howe Daylight Time", 49 description: "Expat uses an unbounded number of global references", 54 description: "Test fails, Intermediate certificate lacks BasicConstraints", 59 description: "DHParametersHelper.generateSafePrimes sometimes takes long time, other times takes a very long t (…) [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/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/crypto/src/main/java/org/conscrypt/ |
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 | 54 * @param description 57 protected void fatalAlert(byte description, String reason) { 58 throw new AlertException(description, new SSLHandshakeException(reason)); 63 * @param description 67 protected void fatalAlert(byte description, String reason, Throwable cause) { 68 throw new AlertException(description, new SSLException(reason, cause));
|
/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 | 414 Program* ProgramCache::get(const ProgramDescription& description) { 415 programid key = description.key(); 425 description.log("Could not find program"); 426 program = generateProgram(description, key); 438 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) { 439 String8 vertexShader = generateVertexShader(description); 440 String8 fragmentShader = generateFragmentShader(description); 442 return new Program(description, vertexShader.string(), fragmentShader.string()); 445 static inline size_t gradientIndex(const ProgramDescription& description) { 446 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/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
transportinfo.h | 48 const TransportDescription& description) 50 description(description) {} 53 TransportDescription description; member in struct:cricket::TransportInfo
|
/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/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...] |
/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/chromium_org/third_party/WebKit/public/platform/ |
WebPluginListBuilder.h | 42 const WebString& name, const WebString& description, 46 const WebString& name, const WebString& description) = 0;
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/ |
SessionDescription.java | 32 * Description of an RFC 4566 Session. 51 public final String description; field in class:SessionDescription 53 public SessionDescription(Type type, String description) { 55 this.description = description;
|