/external/chromium-trace/catapult/perf_insights/perf_insights/mre/ |
failure.py | 11 failure_type_name, description, stack): 18 self.description = description 24 'of type %s wtih description %s. Stack:\n\n%s' % ( 27 self.failure_type_name, self.description, self.stack)) 35 'description': self.description, 52 failure_type_name, failure_dict['description'],
|
/external/chromium-trace/catapult/perf_insights/perf_insights/ui/ |
generic_results_view_test.html | 22 {description: 'Description', 25 {description: 'WhySkipped'}); 30 {description: 'WhySkipped'}); 36 {description: 'Description', 39 {description: 'Description',
|
/external/e2fsprogs/lib/et/ |
com_err.pc.in | 7 Description: Common error description library
|
/external/libxml2/result/schemas/ |
changelog093_1_0.err | 1 ./test/schemas/changelog093_0.xml:7: element description: Schemas validity error : Element '{http://www.blackperl.com/XML/ChangeLog}description': Duplicate key-sequence ['PL'] in unique identity-constraint '{http://www.blackperl.com/XML/ChangeLog}changelogDescriptionLangConstraint'.
|
/libcore/luni/src/test/resources/ |
recipt.dtd | 1 <!ELEMENT collection (description,recipe+)> 2 <!ELEMENT description ANY>
|
/libcore/luni/src/test/resources/systemid/ |
recipt.dtd | 1 <!ELEMENT collection (description,recipe+)> 2 <!ELEMENT description ANY>
|
/prebuilts/tools/common/m2/repository/aopalliance/aopalliance/1.0/ |
aopalliance-1.0.pom | 7 <description>AOP Alliance</description>
|
/external/llvm/bindings/ocaml/llvm/ |
META.llvm.in | 3 description = "LLVM OCaml bindings" 11 description = "Intermediate representation analysis for LLVM" 19 description = "Bitcode reader for LLVM" 27 description = "Bitcode writer for LLVM" 35 description = "JIT and Interpreter for LLVM" 43 description = "IPO Transforms for LLVM" 51 description = "IR assembly reader for LLVM" 59 description = "Scalar Transforms for LLVM" 67 description = "Transform utilities for LLVM" 75 description = "Vector Transforms for LLVM [all...] |
/system/bt/btif/include/ |
btif_av.h | 23 * Description: Main API header file for all BTIF AV functions accessed 62 ** Description Fetches current av SM handle 74 ** Description Fetches current AV BD address 85 ** Description Checks if A2DP Sink is enabled or not 97 ** Description Checks whether AV is ready for starting a stream 109 ** Description Checks whether AV ready for media start in streaming state 121 ** Description Send event to AV statemachine 134 ** Description Initializes btif AV if not already done 146 ** Description Checks if av has a connected sink 159 ** Description Check if the connected a2dp device support [all...] |
/packages/inputmethods/LatinIME/java/res/values/ |
strings-emoji-descriptions.xml | 25 <!-- Spoken description for Unicode code point U+00A9: "©" COPYRIGHT SIGN --> 27 <!-- Spoken description for Unicode code point U+00AE: "®" REGISTERED SIGN --> 29 <!-- Spoken description for Unicode code point U+203C: "?" DOUBLE EXCLAMATION MARK --> 31 <!-- Spoken description for Unicode code point U+2049: "?" EXCLAMATION QUESTION MARK --> 33 <!-- Spoken description for Unicode code point U+2122: "?" TRADE MARK SIGN --> 35 <!-- Spoken description for Unicode code point U+2139: "?" INFORMATION SOURCE --> 37 <!-- Spoken description for Unicode code point U+2194: "?" LEFT RIGHT ARROW --> 39 <!-- Spoken description for Unicode code point U+2195: "?" UP DOWN ARROW --> 41 <!-- Spoken description for Unicode code point U+2196: "?" NORTH WEST ARROW --> 43 <!-- Spoken description for Unicode code point U+2197: "?" NORTH EAST ARROW -- [all...] |
/external/e2fsprogs/ |
SHLIBS | 2 Description: Common error code library 9 Description: Generic Subsystem library (Simple tty UI) 16 Description: The ext2fs (raw interface) library 23 Description: The e2p (ext2fs's programmers) library 30 Description: DCE Universally Unique ID (UUID) library
|
/external/junit/src/org/junit/internal/runners/model/ |
EachTestNotifier.java | 7 import org.junit.runner.Description; 15 private final Description fDescription; 17 public EachTestNotifier(RunNotifier notifier, Description description) { 19 fDescription= description;
|
/external/junit/src/org/junit/runner/manipulation/ |
Filter.java | 3 import org.junit.runner.Description; 21 public boolean shouldRun(Description description) { 45 public static Filter matchMethodDescription(final Description desiredDescription) { 48 public boolean shouldRun(Description description) { 49 if (description.isTest()) 50 return desiredDescription.equals(description); 53 for (Description each : description.getChildren() [all...] |
/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/testng/src/main/java/org/testng/internal/annotations/ |
BaseBeforeAfter.java | 15 * @return the description 23 * @param description the description to set 26 public void setDescription(String description) { 27 m_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/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
DescriptionBox.java | 27 * Gives a language dependent description of the media contained in the ISO file. 33 private String description; field in class:DescriptionBox 44 return description; 48 return 7 + Utf8.utf8StringLengthInBytes(description); 55 description = IsoTypeReader.readString(content); 62 byteBuffer.put(Utf8.convert(description)); 67 return "DescriptionBox[language=" + getLanguage() + ";description=" + getDescription() + "]"; 74 public void setDescription(String description) { 75 this.description = description; [all...] |
/frameworks/base/libs/hwui/ |
ProgramCache.cpp | 404 Program* ProgramCache::get(const ProgramDescription& description) { 405 programid key = description.key(); 415 description.log("Could not find program"); 416 program = generateProgram(description, key); 428 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) { 429 String8 vertexShader = generateVertexShader(description); 430 String8 fragmentShader = generateFragmentShader(description); 432 return new Program(description, vertexShader.string(), fragmentShader.string()); 435 static inline size_t gradientIndex(const ProgramDescription& description) { 436 return description.gradientType * 2 + description.isSimpleGradient [all...] |
/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/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/chromium-trace/catapult/tracing/tracing/value/ |
__init__.py | 11 def __init__(self, canonical_url, name, units, description=None, 16 self.description = description 31 if self.description is not None: 32 d['description'] = self.description 63 def __init__(self, canonical_url, name, value, description=None, 67 description=description, 84 description=d.get('description', None) [all...] |
/external/hamcrest/library/src/org/hamcrest/collection/ |
IsArray.java | 5 import org.hamcrest.Description; 26 public void describeTo(Description description) { 27 description.appendList(descriptionStart(), descriptionSeparator(), descriptionEnd(), 32 * Returns the string that starts the description. 42 * Returns the string that separates the elements in the description. 52 * Returns the string that ends the description.
|
/external/icu/icu4j/demos/ |
build.xml | 18 <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/> 20 <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/> 22 <target name="clean" depends="@clean" description="Clean up the build outputs"/> 24 <target name="compile" depends="@compile" description="Compile java source files"/> 26 <target name="copy" depends="@copy" description="Copy non-java runtime files to the project's binary directory"/> 28 <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/> 30 <target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/>
|
/external/icu/icu4j/main/tests/framework/ |
build.xml | 18 <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/> 20 <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/> 22 <target name="clean" depends="@clean" description="Clean up the build outputs"/> 24 <target name="compile" depends="@compile" description="Compile java source files"/> 26 <target name="copy" depends="@copy" description="Copy non-java runtime files to the project's binary directory"/> 28 <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/> 30 <target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/>
|
/external/icu/icu4j/main/tests/localespi/ |
build.xml | 18 <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/> 20 <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/> 22 <target name="clean" depends="@clean" description="Clean up the build outputs"/> 24 <target name="compile" depends="@compile" description="Compile java source files"/> 26 <target name="copy" depends="@copy" description="Copy non-java runtime files to the project's binary directory"/> 28 <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/> 30 <target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/>
|