Searched defs:description (Results 226 - 250 of 903) sorted by relevance

1234567891011>>

/external/deqp/modules/gles3/functional/
H A Des3fFunctionalTests.cpp151 ShaderLibraryTest (Context& context, const char* name, const char* description) argument
152 : TestCaseGroup(context, name, description)
H A Des3fInternalFormatQueryTests.cpp47 SamplesCase(Context& context, const char* name, const char* description, GLenum internalFormat, bool isIntegerInternalFormat) argument
48 : ApiCase (context, name, description)
128 SamplesBufferSizeCase(Context& context, const char* name, const char* description, GLenum internalFormat) argument
129 : ApiCase (context, name, description)
H A Des3fRandomShaderTests.cpp39 gls::RandomShaderCase* createRandomShaderCase (Context& context, const char* description, const rsg::ProgramParameters& baseParams, deUint32 seed, bool vertex, bool fragment) argument
48 return new gls::RandomShaderCase(context.getTestContext(), context.getRenderContext(), de::toString(seed).c_str(), description, params);
/external/deqp/modules/gles3/performance/
H A Des3pRedundantStateChangeTests.cpp51 RedundantStateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description);
60 RedundantStateChangeCase::RedundantStateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description) argument
61 : gls::StateChangePerformanceCase(context.getTestContext(), context.getRenderContext(), name, description,
108 RedundantStateChangeCase_ ## NAME (Context& context, int drawCallCount, int triangleCount, const char* name, const char* description)\
109 : RedundantStateChangeCase(context, drawCallCount, triangleCount, (DRAWARRAYS), (INDEXBUFFER), name, description)\
H A Des3pStateChangeTests.cpp51 StateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description);
61 StateChangeCase::StateChangeCase (Context& context, int drawCallCount, int triangleCount, bool drawArrays, bool useIndexBuffer, const char* name, const char* description) argument
62 : gls::StateChangePerformanceCase(context.getTestContext(), context.getRenderContext(), name, description,
117 StateChangeCase_ ## NAME (Context& context, int drawCallCount, int triangleCount, const char* name, const char* description)\
118 : StateChangeCase(context, drawCallCount, triangleCount, (DRAWARRAYS), (INDEXBUFFER), name, description)\
/external/deqp/modules/gles3/
H A Dtes3InfoTests.cpp48 QueryStringCase (Context& context, const char* name, const char* description, deUint32 query) argument
49 : TestCase (context, name, description)
/external/deqp/modules/gles31/functional/
H A Des31fFunctionalTests.cpp89 ShaderLibraryTest (Context& context, const char* name, const char* description) argument
90 : TestCaseGroup (context, name, description)
95 ShaderLibraryTest (Context& context, const char* filename, const char* name, const char* description) argument
96 : TestCaseGroup (context, name, description)
/external/deqp/modules/gles31/
H A Dtes31InfoTests.cpp48 QueryStringCase (Context& context, const char* name, const char* description, deUint32 query) argument
49 : TestCase (context, name, description)
/external/deqp/scripts/
H A Dconvert_case_list_to_xml.py6 def __init__(self, casePath, description, caseType):
8 self.description = description
38 element.setAttribute("Description", testCase.description)
60 description = m.group(2) variable
63 parent.children.append(TestCase(casePath, description, caseType))
/external/e2fsprogs/lib/ext2fs/
H A Dbitops.c70 const char *description)
73 if (description)
74 com_err(0, errcode, "#%lu for %s", arg, description);
69 ext2fs_warn_bitmap(errcode_t errcode, unsigned long arg, const char *description) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraphItem.java23 String description=null; field in class:TimeLineGraphItem
33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { argument
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { argument
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { argument
44 this(title, description, value, color,timestamp);
48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) { argument
52 this.description= description;
[all...]
/external/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java117 * @param description A meaningful string used when describing itself.
119 public static <T> org.hamcrest.Matcher<T> anything(java.lang.String description) { argument
120 return org.hamcrest.core.IsAnything.anything(description);
159 * Wraps an existing matcher and overrides the description when it fails.
161 public static <T> org.hamcrest.Matcher<T> describedAs(java.lang.String description, org.hamcrest.Matcher<T> matcher, java.lang.Object... values) { argument
162 return org.hamcrest.core.DescribedAs.describedAs(description, matcher, values);
/external/junit/src/junit/framework/
H A DJUnit4TestAdapter.java53 Description description= fRunner.getDescription();
54 return removeIgnored(description);
57 private Description removeIgnored(Description description) { argument
58 if (isIgnored(description))
60 Description result = description.childlessCopy();
61 for (Description each : description.getChildren()) {
69 private boolean isIgnored(Description description) { argument
70 return description.getAnnotation(Ignore.class) != null;
/external/junit/src/org/junit/experimental/max/
H A DMaxCore.java129 throw new RuntimeException("Can't build a runner from description [" + each + "]");
159 private void findLeaves(Description parent, Description description, List<Description> results) { argument
160 if (description.getChildren().isEmpty())
161 if (description.toString().equals("warning(junit.framework.TestSuite$1)"))
164 results.add(description);
166 for (Description each : description.getChildren())
167 findLeaves(description, each, results);
/external/junit/src/org/junit/internal/
H A DTextListener.java32 public void testStarted(Description description) { argument
42 public void testIgnored(Description description) { argument
/external/junit/src/org/junit/internal/runners/
H A DMethodRoadie.java31 public MethodRoadie(Object test, TestMethod method, RunNotifier notifier, Description description) { argument
34 fDescription= description;
/external/junit/src/org/junit/runner/
H A DResult.java69 public void testRunStarted(Description description) throws Exception { argument
80 public void testFinished(Description description) throws Exception { argument
90 public void testIgnored(Description description) throws Exception { argument
/external/junit/src/org/junit/runner/notification/
H A DRunNotifier.java55 public void fireTestRunStarted(final Description description) { argument
59 each.testRunStarted(description);
78 * @param description the description of the atomic test (generally a class and method name)
81 public void fireTestStarted(final Description description) throws StoppedByUserException { argument
87 each.testStarted(description);
94 * @param failure the description of the test that failed and the exception thrown
110 * the description of the test that failed and the
124 * @param description the description o
126 fireTestIgnored(final Description description) argument
141 fireTestFinished(final Description description) argument
[all...]
/external/lldb/include/lldb/Interpreter/
H A DProperty.h36 const char *description; member in struct:lldb_private::PropertyDefinition
/external/lldb/source/API/
H A DSBInstructionList.cpp92 SBInstructionList::GetDescription (lldb::SBStream &description) argument
100 // exist already inside description...
101 Stream &sref = description.ref();
H A DSBTypeFilter.cpp62 SBTypeFilter::GetDescription (lldb::SBStream &description, argument
68 description.Printf("%s\n",
H A DSBTypeFormat.cpp78 SBTypeFormat::GetDescription (lldb::SBStream &description, argument
84 description.Printf("%s\n",
H A DSBTypeNameSpecifier.cpp86 SBTypeNameSpecifier::GetDescription (lldb::SBStream &description, argument
91 description.Printf("SBTypeNameSpecifier(%s,%s)", GetName(), IsRegex() ? "regex" : "plain");
/external/lldb/source/DataFormatters/
H A DTypeSummary.cpp147 const char* description) :
150 m_description(description ? description : "")
145 CXXFunctionSummaryFormat(const TypeSummaryImpl::Flags& flags, Callback impl, const char* description) argument
/external/lldb/tools/lldb-perf/lib/
H A DResults.cpp60 dict.AddValueCString(CFSTR("description"), result->GetDescription());
131 dict.AddValueCString(CFSTR("description"), result->GetDescription());
180 Results::Dictionary::AddUnsigned (const char *name, const char *description, uint64_t value) argument
183 if (description && description[0])
186 value_dict_ap->AddString("description", NULL, description);
191 m_dictionary[std::string(name)] = ResultSP (new Unsigned (name, description, value));
196 Results::Dictionary::AddDouble (const char *name, const char *description, double value) argument
200 if (description
212 AddString(const char *name, const char *description, const char *value) argument
228 Add(const char *name, const char *description, const ResultSP &result_sp) argument
[all...]

Completed in 267 milliseconds

1234567891011>>