/frameworks/support/v7/appcompat/tests/src/android/support/v7/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); 88 public void describeTo(final Description description) { 89 description.appendText("with background of color: "); 91 description.appendText(failedComparisonDescription); 125 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/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
TelephonyManagerFacade.java | 133 @Rpc(description = "Set network preference.") 140 @Rpc(description = "Set network preference for subscription.") 154 @Rpc(description = "Get network preference.") 160 @Rpc(description = "Get network preference for subscription.") 167 @Rpc(description = "Get current voice network type") 173 @Rpc(description = "Get current voice network type for subscription") 180 @Rpc(description = "Get current data network type") 186 @Rpc(description = "Get current data network type for subscription") 193 @Rpc(description = "Get if phone have voice capability") 198 @Rpc(description = "Get preferred network setting for " [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/integration/src/org/hamcrest/ |
MatcherAssert.java | 13 Description description = new StringDescription();
local 14 description.appendText(reason)
21 throw new java.lang.AssertionError(description.toString());
|
/external/mockito/src/org/mockito/internal/runners/util/ |
FrameworkUsageValidator.java | 7 import org.junit.runner.Description;
22 public void testFinished(Description description) throws Exception {
23 super.testFinished(description);
27 notifier.fireTestFailure(new Failure(description, t));
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/ |
UiFacade.java | 156 @Rpc(description = "Create a text input dialog.") 158 @RpcParameter(name = "title", description = "title of the input box") @RpcDefault("Value") final String title, 159 @RpcParameter(name = "message", description = "message to display above the input box") @RpcDefault("Please enter value:") final String message, 160 @RpcParameter(name = "defaultText", description = "text to insert into the input box") @RpcOptional final String text, 161 @RpcParameter(name = "inputType", description = "type of input data, ie number or text") @RpcOptional final String inputType) 171 @Rpc(description = "Create a password input dialog.") 173 @RpcParameter(name = "title", description = "title of the input box") @RpcDefault("Password") final String title, 174 @RpcParameter(name = "message", description = "message to display above the input box") @RpcDefault("Please enter password:") final String message) { 193 @Rpc(description = "Queries the user for a text input.") 195 @RpcParameter(name = "title", description = "title of the input box") @RpcDefault("Value") final String title [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
SettingsFacade.java | 70 @Rpc(description = "Sets the screen timeout to this number of seconds.", 79 @Rpc(description = "Returns the current screen timeout in seconds.", 90 @Rpc(description = "Checks the ringer silent mode setting.", 96 @Rpc(description = "Toggles ringer silent mode on and off.", 108 @Rpc(description = "Set the ringer to a specified mode") 117 @Rpc(description = "Returns the current ringtone mode.", 123 @Rpc(description = "Returns the maximum ringer volume.") 128 @Rpc(description = "Returns the current ringer volume.") 133 @Rpc(description = "Sets the ringer volume.") 138 @Rpc(description = "Returns the maximum media volume." [all...] |
/developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/ |
Attraction.java | 30 public String description; field in class:Attraction 43 public Attraction(String name, String description, String longDescription, Uri imageUrl, 46 this.description = description;
|
/developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/ |
Attraction.java | 30 public String description; field in class:Attraction 43 public Attraction(String name, String description, String longDescription, Uri imageUrl, 46 this.description = description;
|
/development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/ |
Attraction.java | 30 public String description; field in class:Attraction 43 public Attraction(String name, String description, String longDescription, Uri imageUrl, 46 this.description = description;
|
/external/autotest/utils/named_semaphore/ |
setup.py | 7 description="Named semaphore functions", variable
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
setup.py | 34 description='Record and replay web content', variable
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/elb/ |
instancestate.py | 28 def __init__(self, load_balancer=None, description=None, 33 :ivar str description: A description of the instance. 42 self.description = description 54 if name == 'Description': 55 self.description = value
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/ |
dbsubnetgroup.py | 34 :ivar description: The description of the subnet group 39 def __init__(self, connection=None, name=None, description=None, subnet_ids=None): 42 self.description = description 62 self.description = value
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/ |
run-doctest.py | 5 description="Run a test by name"
variable
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/ |
setup.py | 36 description='Google Commandline Flags Module', variable
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/socksipy-branch/ |
setup.py | 9 description = "A Python SOCKS module", variable
|
/external/chromium-trace/catapult/third_party/python_gflags/ |
setup.py | 36 description='Google Commandline Flags Module', variable
|
/external/deqp/external/vulkancts/modules/vulkan/ |
vktShaderLibrary.hpp | 33 de::MovePtr<tcu::TestCaseGroup> createShaderLibraryGroup (tcu::TestContext& testCtx, const std::string& name, const std::string& description, const std::string& filename);
|
/external/deqp/modules/gles2/functional/ |
es2fShaderExecuteTest.hpp | 39 ShaderExecuteTest (Context& context, const char* groupName, const char* description);
|
/external/e2fsprogs/contrib/python-uuid/ |
setup.py | 10 description = 'This is python uuid interface', variable
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
ArgsI18N1.java | 25 @Parameter(names = "-host", description = "Host", descriptionKey = "host")
|
ArgsInherited.java | 25 @Parameter(names = "-child", description = "Child parameter")
|