HomeSort by relevance Sort by last modified time
    Searched full:description (Results 51 - 75 of 29811) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
IfrParse.h 67 Routine Description:
69 GC_TODO: Add function description
73 VarIndex - GC_TODO: add argument description
74 VarPack - GC_TODO: add argument description
91 Routine Description:
93 GC_TODO: Add function description
97 Handle - GC_TODO: add argument description
98 PackHeader - GC_TODO: add argument description
99 PackageGuid - GC_TODO: add argument description
115 Routine Description:
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
DescribedAs.java 4 import org.hamcrest.Description;
12 * Provides a custom description to another matcher.
33 public void describeTo(Description description) {
38 description.appendText(descriptionTemplate.substring(textStart, arg.start()));
39 description.appendValue(values[parseInt(arg.group(1))]);
44 description.appendText(descriptionTemplate.substring(textStart));
49 public void describeMismatch(Object item, Description description) {
50 matcher.describeMismatch(item, description);
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/verification/
Description.java 12 * Description verification mode wraps an existing verification mode and prepends
17 public class Description implements VerificationMode {
20 private final String description; field in class:Description
25 * @param description The failure message to prepend if verification fails
27 public Description(VerificationMode verification, String description) {
29 this.description = description;
43 throw new MockitoAssertionError(e, description);
48 public VerificationMode description(String description) method in class:Description
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtSerialIoDxe/
WinNtSerialIo.h 178 Routine Description:
180 TODO: Add function description
184 ImageHandle - TODO: add argument description
185 SystemTable - TODO: add argument description
203 Routine Description:
205 TODO: Add function description
209 This - TODO: add argument description
210 Handle - TODO: add argument description
211 RemainingDevicePath - TODO: add argument description
229 Routine Description:
    [all...]
  /external/clang/test/CodeGenObjC/
property-getter-dot-syntax.m 4 - (void *)description;
10 void *eggsText= eggs.description;
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
CustomTypeSafeMatcher.java 12 * public void describeMismatchSafely(String string, Description mismatchDescription) {
28 public CustomTypeSafeMatcher(String description) {
29 if (description == null) {
30 throw new IllegalArgumentException("Description must be non null!");
32 this.fixedDescription = description;
36 public final void describeTo(Description description) {
37 description.appendText(fixedDescription);
DiagnosingMatcher.java 12 return matches(item, Description.NONE);
16 public final void describeMismatch(Object item, Description mismatchDescription) {
20 protected abstract boolean matches(Object item, Description mismatchDescription);
  /external/junit/src/main/java/org/junit/runner/
Describable.java 11 * @return a {@link Description} showing the tests to be run by the receiver
13 public abstract Description getDescription();
FilterFactoryParams.java 4 private final Description topLevelDescription;
7 public FilterFactoryParams(Description topLevelDescription, String args) {
20 public Description getTopLevelDescription() {
  /external/snakeyaml/src/test/resources/compactnotation/
error9.yaml 2 - Row(id111, description = text)
6 description: >
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestClass.java 3 import org.junit.runner.Description;
11 public JUnit4TestClass(Description test) {
  /prebuilts/tools/common/m2/repository/docbook/docbook-xsl/1.75.2/
docbook-xsl-1.75.2.pom 8 <description>Artifactory auto generated POM</description>
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.9.1/
xercesImpl-2.9.1.pom 6 <description>Auto generated POM</description>
  /art/test/499-bce-phi-array-length/
info.txt 2 for a description of the bug.
  /external/e2fsprogs/debian/attic/
comerrg-dev.info 1 DESCR="The Common Error Description library."
  /external/e2fsprogs/tests/m_dasd_bs/
script 0 DESCRIPTION="2048 byte sector devices"
  /external/e2fsprogs/tests/m_std/
script 0 DESCRIPTION="standard filesystem options"
  /external/linux-kselftest/tools/testing/selftests/ftrace/samples/
fail.tc 2 # description: failure-case example
  /external/ltp/runtest/
net.ipv6_lib 0 #DESCRIPTION:IPV6 related tests
  /external/ltp/testcases/kernel/fs/scsi/ltpfs/
ltpfs.part1 0 #DESCRIPTION:filesystem tests
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
Filters.java 7 import org.junit.runner.Description;
14 public boolean shouldRun(Description description) {
15 return description.getDisplayName().contains(substring);
  /external/selinux/dbus/
org.selinux.policy 11 <description>SELinux write access</description>
20 <description>SELinux write access</description>
29 <description>SELinux write access</description>
38 <description>SELinux Read access</description>
47 <description>SELinux list modules access</description>
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/res/raw/
media.json 4 "description": "Description0",
11 "description": "Description1",
18 "description": "Description2",
25 "description": "Description3",
  /external/junit-params/src/main/java/junitparams/internal/
ParameterisedFrameworkMethod.java 7 import org.junit.runner.Description;
22 * The base description, used as a template when creating {@link Description}.
24 private final Description baseDescription;
33 * The {@link Description}, created lazily and updated after filtering.
35 private Description description; field in class:ParameterisedFrameworkMethod
37 public ParameterisedFrameworkMethod(Method method, Description baseDescription,
45 public Description getDescription() {
46 if (description == null)
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
Description.cpp 25 #include "Description.h"
29 Description::Description() {
39 Description::~Description() {
42 void Description::setPlaneAlpha(GLclampf planeAlpha) {
46 void Description::setPremultipliedAlpha(bool premultipliedAlpha) {
50 void Description::setOpaque(bool opaque) {
54 void Description::setTexture(const Texture& texture) {
59 void Description::disableTexture()
    [all...]

Completed in 3531 milliseconds

1 23 4 5 6 7 8 91011>>