/system/bt/build/toolchain/gcc/ |
BUILD.gn | 24 description = "CC {{output}}" 34 description = "CXX {{output}}" 43 description = "AR {{target_output_name}}{{output_extension}}" 61 description = "SOLINK $soname" 81 description = "LINK $outfile" 90 description = "STAMP {{output}}" 95 description = "COPY {{source}} {{output}}"
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/ |
IPerfOutput.java | 26 * @param description 27 * textual description of the test case 33 void writeTimeResult(String description, long duration, long reference); 39 * @param description 40 * textual description of the test case 46 void writeByteResult(String description, long size, long reference);
|
PerfOutputWriter.java | 43 public void writeTimeResult(final String description, final long duration, 47 writeResult(description, dms, "%.2f", "ms"); 50 writeResult(description, dms, rms, "%.2f", "ms"); 54 public void writeByteResult(String description, long size, long reference) { 59 writeResult(description, size, "%.0f", "bytes"); 61 writeResult(description, size, reference, "%.0f", "bytes"); 65 private void writeResult(final String description, final double subject, 67 writer.printf("%-30s%8s %-6s%n", description, 71 private void writeResult(final String description, final double subject, 74 writer.printf("%-30s%8s%8s %-6s%4.0f%%%n", description, [all...] |
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
Args1.java | 33 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity", required = true) 36 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run") 39 @Parameter(names = "-debug", description = "Debug mode") 42 @Parameter(names = "-long", description = "A long number") 45 @Parameter(names = "-double", description = "A double number") 48 @Parameter(names = "-float", description = "A float number") 51 @Parameter(names = "-bigdecimal", description = "A BigDecimal number") 54 @Parameter(names = "-date", description = "An ISO 8601 formatted date.")
|
ArgsMultipleUnparsed.java | 30 @Parameter(description = "Bogus1") 33 @Parameter(description = "Bogus2")
|
ArgsOutOfMemory.java | 8 description = "pattern used by 'tail'. See http://logback.qos.ch/manual/layouts.html#ClassicPatternLayout and http://logback.qos.ch/manual/layouts.html#AccessPatternLayout") 11 @Parameter(names = "-q", description = "Filler arg")
|
ArgsDefault.java | 31 @Parameter(names = "-log", description = "Level of verbosity") 34 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run") 37 @Parameter(names = "-debug", description = "Debug mode") 40 @Parameter(names = "-level", description = "A long number")
|
ArgsLongDescription.java | 7 @Parameter(names = "--classpath", description = "The classpath. This is a very long " 8 + "description in order to test the line wrapping. Let's see how this works." 14 @Parameter(names = { "-c", "--convention" }, description = "The convention", required = true) 17 @Parameter(names = { "-d", "--destination" }, description = "The destination to go to") 20 @Parameter(names = "--configure", description = "How to configure")
|
Args2.java | 28 @Parameter(description = "List of parameters") 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 = "-debug", description = "Debug mode") 40 @Parameter(names = "-host", description = "The host")
|
/packages/apps/TV/src/com/android/tv/ui/sidepanel/ |
SimpleItem.java | 20 * A simple item which shows title and description. 27 public SimpleItem(String title, String description) { 28 super(title, description);
|
/system/connectivity/shill/init/ |
shill-start-user-session.conf | 17 description "Perform connection-manager-specific session setup tasks."
|
shill-stop-user-session.conf | 17 description "Perform connection-manager-related session cleanup tasks."
|
/external/testng/src/test/java/test/jason/ |
MainBase.java | 7 @Test(description = "This test is never run but prevents AfterClass")
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
SessionDescription.java | 32 * Description of an RFC 4566 Session. 51 public final String description; field in class:SessionDescription 53 public SessionDescription(Type type, String description) { 55 this.description = description;
|
/external/testng/src/main/java/org/testng/ |
CommandLineArgs.java | 14 @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/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/testng/src/main/java/org/testng/remote/ |
RemoteArgs.java | 7 @Parameter(names = PORT, description = "The port for the serialization protocol") 11 @Parameter(names = DONT_EXIT, description = "Do not exit the JVM once done") 15 @Parameter(names = ACK, description = "Use ACK's")
|
/external/sl4a/Docs/ |
generate_api_reference_md.pl | 45 my $description = ""; 51 if ($line =~ m /^\@Rpc\(description/) { 52 $description = ""; 56 $description = $description . $l; 62 $description = _format_description($description); 65 if ($line =~ m /^public/ && $description ne "") { 72 $description = ""; 95 "$func_name(" . $func_names_and_params . "\n$description\n```\n\n" [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;
|
/external/jhead/ |
iptc.c | 102 char * description = NULL; local 124 case IPTC_SUPLEMENTAL_CATEGORIES: description = "SuplementalCategories"; break; 125 case IPTC_KEYWORDS: description = "Keywords"; break; 126 case IPTC_CAPTION: description = "Caption"; break; 127 case IPTC_AUTHOR: description = "Author"; break; 128 case IPTC_HEADLINE: description = "Headline"; break; 129 case IPTC_SPECIAL_INSTRUCTIONS: description = "Spec. Instr."; break; 130 case IPTC_CATEGORY: description = "Category"; break; 131 case IPTC_BYLINE: description = "Byline"; break; 132 case IPTC_BYLINE_TITLE: description = "Byline Title"; break [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
Measurement.java | 42 return input.description; 51 private String description; 56 this.description = ""; 61 this.description = builder.description; 72 && this.description.equals(that.description); 79 return Objects.hashCode(value, weight, description); 86 .add("description", description) [all...] |
/external/junit/src/org/junit/internal/ |
AssumptionViolatedException.java | 3 import org.hamcrest.Description; 30 public void describeTo(Description description) { 32 description.appendText("got: "); 33 description.appendValue(fValue); 34 description.appendText(", expected: "); 35 description.appendDescriptionOf(fMatcher); 37 description.appendText("failed assumption: " + fValue);
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRRewriteRuleSubtreeStream.h | 37 description:(NSString *)anElementDescription; 39 description:(NSString *)anElementDescription 42 description:(NSString *)anElementDescription 45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription; 46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement; 47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
|