Home
last modified time | relevance | path

Searched full:description (Results 1 – 25 of 7256) sorted by relevance

12345678910>>...291

/external/ImageMagick/config/
Dmime.xml7 <!ATTLIST mime description CDATA #IMPLIED>
17 …<mime type="application/andrew-inset" acronym="ATK" description="Andrew Toolkit" priority="100" pa…
18 …<mime type="application/illustrator" description="Adobe Illustrator document" priority="100" patte…
19 …<mime type="application/mac-binhex40" description="Macintosh BinHex-encoded file" data-type="strin…
20 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
21 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
22 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
23 …<mime type="application/mathematica" description="Mathematica Notebook" priority="100" pattern="*.…
24 …<mime type="application/mbox" description="mailbox file" data-type="string" offset="0" magic="From…
25 <mime type="application/octet-stream" description="unknown" priority="100" pattern="*.bin" />
[all …]
Dthresholds.xml4 <!ELEMENT threshold (description , levels)>
5 <!ELEMENT description (CDATA)>
15 Each "<threshold>" element defines the map name, description, and an array
22 The description is a english description of what the threshold map achieves
57 <description>Threshold 1x1 (non-dither)</description>
64 <description>Checkerboard 2x1 (dither)</description>
75 <description>Ordered 2x2 (dispersed)</description>
83 <description>Ordered 3x3 (dispersed)</description>
96 <description>Ordered 4x4 (dispersed)</description>
107 <description>Ordered 8x8 (dispersed)</description>
[all …]
/external/ImageMagick/www/source/
Dmime.xml7 <!ATTLIST mime description CDATA #IMPLIED>
17 …<mime type="application/andrew-inset" acronym="ATK" description="Andrew Toolkit" priority="100" pa…
18 …<mime type="application/illustrator" description="Adobe Illustrator document" priority="100" patte…
19 …<mime type="application/mac-binhex40" description="Macintosh BinHex-encoded file" data-type="strin…
20 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
21 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
22 …<mime type="application/mathematica" description="Mathematica Notebook" data-type="string" offset=…
23 …<mime type="application/mathematica" description="Mathematica Notebook" priority="100" pattern="*.…
24 …<mime type="application/mbox" description="mailbox file" data-type="string" offset="0" magic="From…
25 <mime type="application/octet-stream" description="unknown" priority="100" pattern="*.bin" />
[all …]
Dthresholds.xml4 <!ELEMENT threshold (description , levels)>
5 <!ELEMENT description (CDATA)>
15 Each "<threshold>" element defines the map name, description, and an array
22 The description is a english description of what the threshold map achieves
57 <description>Threshold 1x1 (non-dither)</description>
64 <description>Checkerboard 2x1 (dither)</description>
75 <description>Ordered 2x2 (dispersed)</description>
83 <description>Ordered 3x3 (dispersed)</description>
96 <description>Ordered 4x4 (dispersed)</description>
107 <description>Ordered 8x8 (dispersed)</description>
[all …]
/external/v8/src/inspector/
Djs_protocol.json6 "description": "Provides information about the protocol schema.", string
11 "description": "Description of the protocol domain.", string
13 { "name": "name", "type": "string", "description": "Domain name." }, string
14 { "name": "version", "type": "string", "description": "Domain version." } string
21 "description": "Returns supported domains.", string
24 …{ "name": "domains", "type": "array", "items": { "$ref": "Domain" }, "description": "List of suppo… string
31 …"description": "Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror… string
36 "description": "Unique script identifier." string
41 "description": "Unique object identifier." string
47 "description": "Primitive value which cannot be JSON-stringified." string
[all …]
Djs_protocol-1.2.json6 "description": "Provides information about the protocol schema.", string
11 "description": "Description of the protocol domain.", string
14 { "name": "name", "type": "string", "description": "Domain name." }, string
15 { "name": "version", "type": "string", "description": "Domain version." } string
22 "description": "Returns supported domains.", string
25 …{ "name": "domains", "type": "array", "items": { "$ref": "Domain" }, "description": "List of suppo… string
32 …"description": "Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror… string
37 "description": "Unique script identifier." string
42 "description": "Unique object identifier." string
48 "description": "Primitive value which cannot be JSON-stringified." string
[all …]
/external/junit/src/main/java/org/junit/rules/
DTestWatcher.java7 import org.junit.runner.Description;
23 * protected void failed(Throwable e, Description description) {
24 * watchedLog+= description + &quot;\n&quot;;
28 * protected void succeeded(Description description) {
29 * watchedLog+= description + &quot; &quot; + &quot;success!\n&quot;;
47 public Statement apply(final Statement base, final Description description) { in apply() argument
53 startingQuietly(description, errors); in apply()
56 succeededQuietly(description, errors); in apply()
59 skippedQuietly(e, description, errors); in apply()
62 failedQuietly(e, description, errors); in apply()
[all …]
DStopwatch.java4 import org.junit.runner.Description;
19 * private static void logInfo(Description description, String status, long nanos) {
20 * String testName = description.getMethodName();
28 * protected void succeeded(long nanos, Description description) {
29 * logInfo(description, &quot;succeeded&quot;, nanos);
33 * protected void failed(long nanos, Throwable e, Description description) {
34 * logInfo(description, &quot;failed&quot;, nanos);
38 … protected void skipped(long nanos, AssumptionViolatedException e, Description description) {
39 * logInfo(description, &quot;skipped&quot;, nanos);
43 * protected void finished(long nanos, Description description) {
[all …]
/external/junit/src/main/java/junit/framework/
DJUnit4TestAdapterCache.java8 import org.junit.runner.Description;
13 public class JUnit4TestAdapterCache extends HashMap<Description, Test> {
21 public Test asTest(Description description) { in asTest() argument
22 if (description.isSuite()) { in asTest()
23 return createTest(description); in asTest()
25 if (!containsKey(description)) { in asTest()
26 put(description, createTest(description)); in asTest()
28 return get(description); in asTest()
32 Test createTest(Description description) { in createTest() argument
33 if (description.isTest()) { in createTest()
[all …]
DJUnit4TestAdapter.java7 import org.junit.runner.Description;
51 public Description getDescription() { in getDescription()
52 Description description = fRunner.getDescription(); in getDescription() local
53 return removeIgnored(description); in getDescription()
56 private Description removeIgnored(Description description) { in removeIgnored() argument
57 if (isIgnored(description)) { in removeIgnored()
58 return Description.EMPTY; in removeIgnored()
60 Description result = description.childlessCopy(); in removeIgnored()
61 for (Description each : description.getChildren()) { in removeIgnored()
62 Description child = removeIgnored(each); in removeIgnored()
[all …]
/external/junit/src/main/java/org/junit/runner/
DDescription.java13 …* A <code>Description</code> describes a test which is to be run or has been run. <code>Descriptio…
23 * a superclass below {@link Object}. We needed a way to pass a class and name together. Description
30 public class Description implements Serializable { class
37 * Create a <code>Description</code> named <code>name</code>.
38 * Generally, you will add children to this <code>Description</code>.
40 * @param name the name of the <code>Description</code>
42 * @return a <code>Description</code> named <code>name</code>
44 public static Description createSuiteDescription(String name, Annotation... annotations) { in createSuiteDescription()
45 return new Description(null, name, annotations); in createSuiteDescription()
49 * Create a <code>Description</code> named <code>name</code>.
[all …]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DDescription.java4 * A description of a Matcher. A Matcher will describe itself to a description
7 * @see Matcher#describeTo(Description)
9 public interface Description { interface
11 * A description that consumes input but does nothing.
13 static final Description NONE = new NullDescription();
16 * Appends some plain text to the description.
18 Description appendText(String text); in appendText()
21 * Appends the description of a {@link SelfDescribing} value to this description.
23 Description appendDescriptionOf(SelfDescribing value); in appendDescriptionOf()
26 * Appends an arbitrary value to the description.
[all …]
/external/libxml2/test/schemas/
Dbug306806_0.xml7 <description>/all/turbine/r.turbshaft</description>
15 <description>/all/turbine/r.turbshaft/s.turbshaft</description>
22 <description>/all/turbine/r.turbshaft</description>
27 <description>/all/turbine/r.turbshaft/s.turbshaft</description>
34 <description>/all/turbine/r.turbshaft</description>
39 <description>/all/turbine/r.turbshaft/s.turbshaft</description>
46 <description>/all/turbine/r.turbshaft</description>
51 <description>/all/turbine/r.turbshaft/s.turbshaft</description>
57 <description>/all/turbine/r.turbshaft</description>
62 <description>/all/turbine/r.turbshaft/s.turbshaft</description>
[all …]
/external/toolchain-utils/crosperf/
Dsettings_factory.py23 description='The name of the test to run. '
27 'test_args', description='Arguments to be passed to the '
33 description='Number of iterations to run the '
37 'suite', default='', description='The type of the benchmark.'))
42 description='Number of times to retry a '
47 description='Run benchmark harness on the DUT. '
63 description='The path to the image to run tests '
70 description='Autotest directory path relative to chroot which '
76 description='The path to a chromeos checkout which '
83 description='A comma-separated list of IPs of chromeos'
[all …]
Dunittest_keyval_file.txt1 {"description": "Box2D", "graph": "Box2D", "higher_is_better": true, "units": "score", "value": 477…
2 {"description": "CodeLoad", "graph": "CodeLoad", "higher_is_better": true, "units": "score", "value…
3 {"description": "Crypto", "graph": "Crypto", "higher_is_better": true, "units": "score", "value": 8…
4 {"description": "DeltaBlue", "graph": "DeltaBlue", "higher_is_better": true, "units": "score", "val…
5 {"description": "EarleyBoyer", "graph": "EarleyBoyer", "higher_is_better": true, "units": "score", …
6 {"description": "Gameboy", "graph": "Gameboy", "higher_is_better": true, "units": "score", "value":…
7 {"description": "Mandreel", "graph": "Mandreel", "higher_is_better": true, "units": "score", "value…
8 {"description": "MandreelLatency", "graph": "MandreelLatency", "higher_is_better": true, "units": "…
9 {"description": "NavierStokes", "graph": "NavierStokes", "higher_is_better": true, "units": "score"…
10 {"description": "PdfJS", "graph": "PdfJS", "higher_is_better": true, "units": "score", "value": 645…
[all …]
/external/testng/src/main/java/org/testng/
DCommandLineArgs.java14 @Parameter(description = "The XML suite files to run")
19 @Parameter(names = { LOG, VERBOSE }, description = "Level of verbosity")
23 @Parameter(names = GROUPS, description = "Comma-separated list of group names to be run")
27 @Parameter(names = EXCLUDED_GROUPS, description ="Comma-separated list of group names to "
32 @Parameter(names = OUTPUT_DIRECTORY, description ="Output directory")
36 @Parameter(names = JUNIT, description ="JUnit mode")
40 @Parameter(names = MIXED, description ="Mixed mode - autodetect the type of current test" +
45 @Parameter(names = LISTENER, description = "List of .class files or list of class names" +
50 @Parameter(names = METHOD_SELECTORS, description = "List of .class files or list of class " +
55 @Parameter(names = OBJECT_FACTORY, description = "List of .class files or list of class " +
[all …]
/external/protobuf/objectivec/
DGPBExtensionInternals.m96 GPBExtensionDescription *description, id object) {
99 return GPBCompute##TYPE##Size(description->fieldNumber, \
103 return GPBCompute##TYPE##Size(description->fieldNumber, object);
104 switch (description->dataType) {
123 if (GPBExtensionIsWireFormat(description)) {
124 return GPBComputeMessageSetExtensionSize(description->fieldNumber,
127 return GPBComputeMessageSize(description->fieldNumber, object);
135 GPBExtensionDescription *description, NSArray *values) {
136 if (GPBExtensionIsPacked(description)) {
138 size_t typeSize = DataTypeSize(description->dataType);
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DTelephonyManagerFacade.java123 @Rpc(description = "Resets TelephonyManager settings to factory default.")
132 @Rpc(description = "Set network preference.")
139 @Rpc(description = "Set network preference for subscription.")
157 @Rpc(description = "Set network selection mode to automatic for subscriber.")
163 @Rpc(description = "Get network preference.")
169 @Rpc(description = "Get network preference for subscription.")
176 @Rpc(description = "Get current voice network type")
182 @Rpc(description = "Get current voice network type for subscription")
189 @Rpc(description = "Get current data network type")
195 @Rpc(description = "Get current data network type for subscription")
[all …]
/external/mockito/src/test/java/org/mockito/internal/hamcrest/
DMatcherGenericTypeExtractorTest.java4 import org.hamcrest.Description;
22 public void describeTo(Description description) {} in describeTo() argument
30 public void describeTo(Description description) {} in describeTo() argument
38 public void describeTo(Description description) {} in describeTo() argument
47 public void describeTo(Description description) {} in describeTo() argument
55 public void describeMismatch(Object item, Description mismatchDescription) {} in describeMismatch()
56 public void describeTo(Description description) {} in describeTo() argument
64 public void describeMismatch(Object item, Description mismatchDescription) {} in describeMismatch()
65 public void describeTo(Description description) {} in describeTo() argument
74 public void describeMismatch(Object item, Description mismatchDescription) {} in describeMismatch()
[all …]
/external/jcommander/src/test/java/com/beust/jcommander/args/
DCommandLineArgs.java28 @Parameter(description = "The XML suite files to run")
31 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity")
34 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
37 @Parameter(names = "-excludedgroups", description ="Comma-separated list of group names to be " +
41 @Parameter(names = "-d", description ="Output directory")
44 @Parameter(names = "-junit", description ="JUnit mode")
47 @Parameter(names = "-listener", description = "List of .class files or list of class names" +
51 @Parameter(names = "-methodselectors", description = "List of .class files or list of class " +
55 @Parameter(names = "-objectfactory", description = "List of .class files or list of class " +
59 @Parameter(names = "-parallel", description = "Parallel mode (methods, tests or classes)")
[all …]
/external/google-breakpad/src/common/mac/testing/
DGTMSenTestCase.h66 // as a description if you have the NS_FORMAT_FUNCTION on.
82 // description: A format string as in the printf() function. Can be nil or
85 #define STAssertNoErr(a1, description, ...) \ argument
95 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
103 … withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
111 // description: A format string as in the printf() function. Can be nil or
114 #define STAssertErr(a1, a2, description, ...) \ argument
125 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
133 … withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
141 // description: A format string as in the printf() function. Can be nil or
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DActivityResultFacade.java51 @Rpc(description = sRpcDescription)
53 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode, in setResultBoolean() argument
63 @Rpc(description = sRpcDescription)
65 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode, in setResultByte() argument
75 @Rpc(description = sRpcDescription)
77 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode, in setResultShort() argument
87 @Rpc(description = sRpcDescription)
89 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode, in setResultChar() argument
99 @Rpc(description = sRpcDescription)
101 @RpcParameter(name = "resultCode", description = sCodeDescription) Integer resultCode, in setResultInteger() argument
[all …]
/external/autotest/server/site_tests/enterprise_CFM_Perf/
Denterprise_CFM_Perf.py152 self.output_perf_value(description='average_cpu_usage',
154 self.output_perf_value(description='average_memory_usage',
156 self.output_perf_value(description='average_temperature',
159 self.output_perf_value(description='cpu_usage',
161 self.output_perf_value(description='memory_usage',
163 self.output_perf_value(description='temperature',
166 self.output_perf_value(description='peak_cpu_usage',
168 self.output_perf_value(description='peak_memory_usage',
171 self.output_perf_value(description='peak_temperature',
325 self.output_perf_value(description='sum_vid_in_frames_decoded',
[all …]
/external/llvm/test/tools/llvm-readobj/ARM/
Dattribute-0.s9 @CHECK-OBJ-NEXT: Description: Pre-v4
16 @CHECK-OBJ-NEXT: Description: None
23 @CHECK-OBJ-NEXT: Description: Not Permitted
30 @CHECK-OBJ-NEXT: Description: Not Permitted
37 @CHECK-OBJ-NEXT: Description: Not Permitted
44 @CHECK-OBJ-NEXT: Description: Not Permitted
51 @CHECK-OBJ-NEXT: Description: Not Permitted
58 @CHECK-OBJ-NEXT: Description: None
65 @CHECK-OBJ-NEXT: Description: v6
72 @CHECK-OBJ-NEXT: Description: Absolute
[all …]
Dattribute-1.s9 @CHECK-OBJ-NEXT: Description: ARM v4
16 @CHECK-OBJ-NEXT: Description: Permitted
23 @CHECK-OBJ-NEXT: Description: Thumb-1
30 @CHECK-OBJ-NEXT: Description: VFPv1
37 @CHECK-OBJ-NEXT: Description: WMMXv1
44 @CHECK-OBJ-NEXT: Description: NEONv1
51 @CHECK-OBJ-NEXT: Description: Bare Platform
58 @CHECK-OBJ-NEXT: Description: Static Base
65 @CHECK-OBJ-NEXT: Description: PC-relative
72 @CHECK-OBJ-NEXT: Description: PC-relative
[all …]

12345678910>>...291