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

1 2 3 4 5 6 7 8 91011>>

  /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 );
  /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);
  /libcore/expectations/
taggedtests.txt 7 description: "large tests",
brokentests.txt 6 description: "libcore.java.io.OldFileTest#test_deleteOnExit fails on IRM05 mysid-user",
11 description: "libcore.java.net.URLConnectionTest#testServerShutdownInput fails on ICL27 mysid-userdebug (5534202 is caused by 5731252)",
16 description: "This test has been failing in our continuous build recently.",
23 description: "We're retiring the security manager. Unfortunately, tests all over the place
32 description: "ignore compilation errors due to different available APIs",
38 description: "the average length of possible UTF-8 sequences is 2 bytes.",
44 description: "Some tests (ExcludedProxyTest) connect to a public webserver to check that the HTTP client works",
50 description: "Some tests depend on ICU data, which has changed. Others make assumptions about floating point rounding",
66 description: "(Needs investigation) Some tests make assertions that don't make sense, others use broken port allocation logic.",
75 description: "(Needs investigation) Test failures from the harmony import of external/apache-harmony/archive"
    [all...]
knownfailures.txt 6 description: "can't compile a pattern with negative look-behind and quantifiers with upper bounds",
12 description: "Package.getPackages(), ClassLoader.getPackages() both omit results",
17 description: "KeyAgreementFunctionalTest times out even with an absurdly long timeout",
22 description: "RandomAccessFile missing finalizer",
27 description: "ICU seems to treat unknown and invalid locales differently",
32 description: "NaN character not found when deserializing DecimalFormatSymbols",
37 description: "DecimalFormat is limited to 127 digits",
42 description: "HTTPS connections should not be pooled.",
47 description: "We fake support for these by substituting similar (but not identical) charsets",
61 description: "UTF-16 and UTF-32 encoders don't write big-endian output on little-endian devices"
    [all...]
icebox.txt 6 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
12 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
18 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
24 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
30 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
36 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
42 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
50 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
56 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
62 description: "Dalvik doesn't support XML Schemas, DTDs or validation"
    [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...]
  /external/deqp/framework/opengl/
gluContextFactory.cpp 29 ContextFactory::ContextFactory (const std::string& name, const std::string& description)
30 : FactoryBase(name, description)
  /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 425 Program* ProgramCache::get(const ProgramDescription& description) {
426 programid key = description.key();
436 description.log("Could not find program");
437 program = generateProgram(description, key);
449 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
450 String8 vertexShader = generateVertexShader(description);
451 String8 fragmentShader = generateFragmentShader(description);
453 return new Program(description, vertexShader.string(), fragmentShader.string());
456 static inline size_t gradientIndex(const ProgramDescription& description) {
457 return description.gradientType * 2 + description.isSimpleGradient
    [all...]
  /art/tools/
libcore_failures.txt 12 description: "Assert.java differences between vogar and junit.",
18 description: "Differences between vogar and cts in user directory",
24 description: "Differences between vogar and cts",
32 description: "Failures needing investigation",
48 description: "Failing due to a locale problem on hammerhead.",
66 description: "Failing due to missing localhost on hammerhead and volantis.",
81 description: "Test timeouts",
87 description: "Needs the newest cat version on the device",
93 description: "Short date format flag ignored for es_US locale.",
99 description: "Error decoding digital signature bytes."
    [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/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/proguard/src/proguard/
LineWordReader.java 34 private final String description; field in class:LineWordReader
41 String description,
47 this.description = description;
61 return "line " + reader.getLineNumber() + " of " + description;
  /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/deqp/modules/gles2/
tes2TestCase.hpp 38 TestCaseGroup (Context& context, const char* name, const char* description);
39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
51 TestCase (Context& context, const char* name, const char* description);
52 TestCase (Context& context, tcu::TestNodeType type, const char* name, const char* description);
59 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description)
60 : tcu::TestCaseGroup (context.getTestContext(), name, description)
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children)
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
71 inline TestCase::TestCase (Context& context, const char* name, const char* description)
72 : tcu::TestCase (context.getTestContext(), name, description)
    [all...]
  /external/deqp/modules/gles3/
tes3TestCase.hpp 38 TestCaseGroup (Context& context, const char* name, const char* description);
39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
51 TestCase (Context& context, const char* name, const char* description);
52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
59 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description)
60 : tcu::TestCaseGroup (context.getTestContext(), name, description)
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children)
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
71 inline TestCase::TestCase (Context& context, const char* name, const char* description)
72 : tcu::TestCase (context.getTestContext(), name, description)
    [all...]
  /external/deqp/modules/gles31/
tes31TestCase.hpp 38 TestCaseGroup (Context& context, const char* name, const char* description);
39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
51 TestCase (Context& context, const char* name, const char* description);
52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
59 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description)
60 : tcu::TestCaseGroup (context.getTestContext(), name, description)
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children)
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
71 inline TestCase::TestCase (Context& context, const char* name, const char* description)
72 : tcu::TestCase (context.getTestContext(), name, description)
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Gauge.cpp 15 lldb_perf::GetResult (const char *description, double value)
17 if (description && description[0])
20 value_dict_ap->AddString("description", NULL, description);
29 lldb_perf::GetResult (const char *description, uint64_t value)
31 if (description && description[0])
34 value_dict_ap->AddString("description", NULL, description);
    [all...]
  /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;

Completed in 791 milliseconds

1 2 3 4 5 6 7 8 91011>>