HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 151 - 175 of 6641) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Row.java 23 private String description; field in class:Row
55 return description;
58 public void setDescription(String description) {
59 this.description = description;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreviewList.java 108 for (ConfigurationDescription description : mList) {
109 description.toXml(document);
126 ConfigurationDescription description = ConfigurationDescription.fromXml( local
128 if (description != null) {
129 mList.add(description);
152 for (ConfigurationDescription description : mList) {
154 configuration.setDisplayName(description.displayName);
155 configuration.setActivity(description.activity);
157 description.locale != null ? description.locale : chooserConfig.getLocale()
191 ConfigurationDescription description = preview.getDescription(); local
203 ConfigurationDescription description = local
    [all...]
RenderLogger.java 76 * Returns a (possibly multi-line) description of all the problems
127 String description = describe(message); local
129 appendToIdeLog(null, IStatus.ERROR, description);
137 addError(tag, description);
142 String description = describe(message); local
143 appendToIdeLog(throwable, IStatus.ERROR, description);
157 if (description.equals(throwable.getLocalizedMessage()) ||
158 description.equals(throwable.getMessage())) {
159 description = "Exception raised during rendering: " + description;
182 String description = describe(message); local
206 String description = describe(message); local
    [all...]
  /packages/apps/Car/Media/src/com/android/car/media/drawer/
MediaItemsFetcher.java 98 * Utility method to determine if description can be displayed in a small layout.
100 static boolean usesSmallLayout(MediaDescription description) {
102 return TextUtils.isEmpty(description.getSubtitle());
106 * Utility method to populate {@code holder} with details from {@code description}. It populates
109 static void populateViewHolderFrom(DrawerItemViewHolder holder, MediaDescription description) {
111 holder.getTitle().setText(description.getTitle());
113 if (!usesSmallLayout(description)) {
114 holder.getText().setText(description.getSubtitle());
116 Bitmap iconBitmap = description.getIconBitmap();
119 if (description.getIconUri() != null)
    [all...]
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
arguments_parser.h 37 const std::string &description) {
38 return OptionSpec(true /* needsValue */, valueName, defaultValue, description);
41 static OptionSpec switchOption(const std::string &description) {
43 description);
53 const std::string &description)
55 mDescription(description) {}
71 static ArgumentSpec singleArgument(const std::string &name, const std::string &description) {
72 return ArgumentSpec(name, 1 /* minCount */, 1 /* maxCount */, description);
76 const size_t maxCount, const std::string &description) {
77 return ArgumentSpec(name, minCount, maxCount, description);
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ActivityResultFacade.java 51 @Rpc(description = sRpcDescription)
53 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode,
63 @Rpc(description = sRpcDescription)
65 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode,
75 @Rpc(description = sRpcDescription)
77 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode,
87 @Rpc(description = sRpcDescription)
89 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode,
99 @Rpc(description = sRpcDescription)
101 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cTestPackages.hpp 37 const char* description = "OpenGL 4.0 Conformance Tests",
49 const char* description = "OpenGL 4.1 Conformance Tests",
61 const char* description = "OpenGL 4.2 Conformance Tests",
73 const char* description = "OpenGL 4.3 Conformance Tests",
85 const char* description = "OpenGL 4.4 Conformance Tests",
97 const char* description = "OpenGL 4.5 Conformance Tests",
109 const char* description = "OpenGL 4.6 Conformance Tests",
  /external/junit/src/main/java/org/junit/internal/
AssumptionViolatedException.java 3 import org.hamcrest.Description;
91 public void describeTo(Description description) {
93 description.appendText(fAssumption);
99 description.appendText(": ");
102 description.appendText("got: ");
103 description.appendValue(fValue);
106 description.appendText(", expected: ");
107 description.appendDescriptionOf(fMatcher);
  /external/skia/src/sksl/ast/
SkSLASTVarDeclaration.h 32 String description() const { function in struct:SkSL::ASTVarDeclaration
36 result += "[" + size->description() + "]";
42 result += " = " + fValue->description();
68 String description() const override {
69 String result = fModifiers.description() + fType->description() + " ";
74 result += var.description();
SkSLASTBinaryExpression.h 28 String description() const override {
29 return "(" + fLeft->description() + " " + Compiler::OperatorName(fOperator) + " " +
30 fRight->description() + ")";
SkSLASTDoStatement.h 25 String description() const override {
26 return "do " + fStatement->description() + " while (" + fTest->description() + ");";
SkSLASTSuffixExpression.h 25 String description() const override {
26 return fBase->description() + fSuffix->description();
SkSLASTWhileStatement.h 25 String description() const override {
26 return "while (" + fTest->description() + ") " + fStatement->description();
  /external/skia/src/sksl/ir/
SkSLVarDeclarations.h 32 String description() const { function in struct:SkSL::VarDeclaration
36 result += "[" + size->description() + "]";
42 result += " = " + fValue->description();
67 String description() const override {
71 String result = ((VarDeclaration&) *fVars[0]).fVar->fModifiers.description() +
72 fBaseType.description() + " ";
77 result += var->description();
SkSLDoStatement.h 26 String description() const override {
27 return "do " + fStatement->description() + " while (" + fTest->description() + ");";
SkSLWhileStatement.h 26 String description() const override {
27 return "while (" + fTest->description() + ") " + fStatement->description();
  /external/skqp/src/sksl/ast/
SkSLASTVarDeclaration.h 32 String description() const { function in struct:SkSL::ASTVarDeclaration
36 result += "[" + size->description() + "]";
42 result += " = " + fValue->description();
68 String description() const override {
69 String result = fModifiers.description() + fType->description() + " ";
74 result += var.description();
  /external/skqp/src/sksl/ir/
SkSLVarDeclarations.h 32 String description() const { function in struct:SkSL::VarDeclaration
36 result += "[" + size->description() + "]";
42 result += " = " + fValue->description();
67 String description() const override {
71 String result = ((VarDeclaration&) *fVars[0]).fVar->fModifiers.description() +
72 fBaseType.description() + " ";
77 result += var->description();
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/testutils/
TestUtilsMatchers.java 32 import org.hamcrest.Description;
48 public void describeTo(final Description description) {
49 description.appendText("with drawable of color: ");
51 description.appendText(failedComparisonDescription);
96 public void describeTo(final Description description) {
97 description.appendText("with background of color: ");
99 description.appendText(failedComparisonDescription);
138 public void describeTo(final Description description)
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
Allocation.java 29 * description of the allocation (e.g. 'int[23]', 'java.lang.Integer', or 'java.util.ArrayList'),
50 private final String description; field in class:Allocation
54 Allocation(String description, long size, List<StackTraceElement> location) {
55 this.description = descriptionInterner.intern(description);
67 return other.description.equals(description)
76 return description;
84 return Objects.hashCode(description, size, location);
89 builder.append(description).append(" (").append(size).append(" bytes)\n\tat ")
    [all...]
  /external/deqp/framework/common/
tcuTestCase.cpp 46 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description)
49 , m_description (description)
55 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const vector<TestNode*>& children)
58 , m_description (description)
113 TestCaseGroup::TestCaseGroup (TestContext& testCtx, const char* name, const char* description)
114 : TestNode(testCtx, NODETYPE_GROUP, name, description)
118 TestCaseGroup::TestCaseGroup (TestContext& testCtx, const char* name, const char* description, const vector<TestNode*>& children)
119 : TestNode(testCtx, NODETYPE_GROUP, name, description, children)
135 TestCase::TestCase (TestContext& testCtx, const char* name, const char* description)
136 : TestNode(testCtx, NODETYPE_SELF_VALIDATE, name, description)
    [all...]
tcuTestCase.hpp 91 * description. Root and test group nodes have a list of children.
107 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
108 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const std::vector<TestNode*>& children);
144 TestCaseGroup (TestContext& testCtx, const char* name, const char* description);
145 TestCaseGroup (TestContext& testCtx, const char* name, const char* description, const std::vector<TestNode*>& children);
174 TestCase (TestContext& testCtx, const char* name, const char* description);
175 TestCase (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
182 TestStatus (qpTestResult code, const std::string& description) : m_code(code), m_description(description) {}
188 static TestStatus pass (const std::string& description) { return TestStatus(QP_TEST_RESULT_PASS, description);
    [all...]
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
IsAnythingTest.java 31 String description = "description"; local
32 assertDescription(description, anything(description));
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/javadoc/
Javadoc.java 25 import com.github.javaparser.javadoc.description.JavadocDescription;
35 * It is composed by a description and a list of block tags.
42 private JavadocDescription description; field in class:Javadoc
45 public Javadoc(JavadocDescription description) {
46 this.description = description;
84 if (!description.isEmpty()) {
85 sb.append(description.toText());
131 return description;
148 return description.equals(document.description) && blockTags.equals(document.blockTags)
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/verification/
VerificationModeFactory.java 43 * @param description The custom failure message
47 public static VerificationMode description(VerificationMode mode, String description) { method in class:VerificationModeFactory
48 return new Description(mode, description);

Completed in 959 milliseconds

1 2 3 4 5 67 8 91011>>