/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | AnnotatedTypeNameTest.java | 46 TypeName.BOOLEAN.annotated((AnnotationSpec[]) null); in nullAnnotationArray() 50 TypeName.DOUBLE.annotated((List<AnnotationSpec>) null); in nullAnnotationList() 53 @Test public void annotated() { in annotated() method in AnnotatedTypeNameTest 58 TypeName annotated = simpleString.annotated(NEVER_NULL); in annotated() local 59 assertTrue(annotated.isAnnotated()); in annotated() 60 assertEquals(annotated, annotated.annotated()); in annotated() 65 TypeName actual = type.annotated(TYPE_USE_ANNOTATION); in annotatedType() 72 type.annotated(NEVER_NULL) in annotatedTwice() 73 .annotated(TYPE_USE_ANNOTATION); in annotatedTwice() 80 TypeName actual = type.annotated(TYPE_USE_ANNOTATION); in annotatedParameterizedType() [all …]
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
D | ObjectDescriptorFactory.java | 128 … Set<Class<? extends BaseDescriptor>> annotated = new HashSet<Class<? extends BaseDescriptor>>(); 130 annotated.add(DecoderSpecificInfo.class); 131 annotated.add(SLConfigDescriptor.class); 132 annotated.add(BaseDescriptor.class); 133 annotated.add(ExtensionDescriptor.class); 134 annotated.add(ObjectDescriptorBase.class); 135 annotated.add(ProfileLevelIndicationDescriptor.class); 136 annotated.add(AudioSpecificConfig.class); 137 annotated.add(ExtensionProfileLevelDescriptor.class); 138 annotated.add(ESDescriptor.class); [all …]
|
/external/proguard/examples/annotations/lib/ |
D | annotations.pro | 23 # @Keep specifies not to shrink, optimize, or obfuscate the annotated class 33 # @KeepName specifies not to optimize or obfuscate the annotated class or 46 # resp. all public, implementations or extensions of the annotated class as 53 # @KeepApplication specifies to keep the annotated class as an application, 62 # all public or protected, class members of the annotated class from being 79 # all public or protected, class members of the annotated class from being 95 # all public, getters and setters of the annotated class from being shrunk,
|
/external/python/cpython2/Doc/library/ |
D | trace.rst | 12 annotated statement coverage listings, print caller/callee relationships and 26 The above will execute :file:`somefile.py` and generate annotated listings of 52 Produce a set of annotated listing files upon program completion that shows 67 Produce an annotated list from an earlier program run that used the 92 When generating annotated listings, mark lines which were not executed with 102 Do not generate annotated listings. This is useful if you intend to make 104 annotated listings at the end.
|
/external/python/cpython3/Doc/library/ |
D | trace.rst | 12 annotated statement coverage listings, print caller/callee relationships and 32 The above will execute :file:`somefile.py` and generate annotated listings of 58 Produce a set of annotated listing files upon program completion that shows 73 Produce an annotated list from an earlier program run that used the 98 When generating annotated listings, mark lines which were not executed with 108 Do not generate annotated listings. This is useful if you intend to make 110 annotated listings at the end.
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | llvm-prof.pod | 27 =item B<--annotated-llvm> or B<-A> 30 program, annotated with execution frequency information. This can be 37 Using this option enables the B<--annotated-llvm> option, but it
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | DeprecatedFieldTest.java | 78 private boolean isDeprecated(AnnotatedElement annotated) { in isDeprecated() argument 79 return annotated.isAnnotationPresent(Deprecated.class); in isDeprecated()
|
/external/libcxx/utils/google-benchmark/ |
D | releasing.md | 9 commits between the last annotated tag and HEAD 13 * Update this to an annotated tag:
|
/external/google-benchmark/ |
D | releasing.md | 9 commits between the last annotated tag and HEAD 13 * Update this to an annotated tag:
|
/external/clang/test/SemaObjC/ |
D | super-dealloc-attribute.m | 19 - (void) MyDeallocMeth; // Method in root is not annotated. 28 - (void) MyDeallocMeth __attribute((objc_requires_super)); // 'Baz' author has annotated method 30 - (void) AnnotMeth __attribute((objc_requires_super)); // 'Baz' author has annotated method
|
/external/llvm/docs/ |
D | MarkedUpDisassembly.rst | 55 annotation: '<' tag-name tag-modifier-list ':' annotated-text '>' 71 might be annotated as: 78 …character. For example, a literal '<' character is output as '<<' in an annotated assembly string.
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | MarkedUpDisassembly.rst | 55 annotation: '<' tag-name tag-modifier-list ':' annotated-text '>' 71 might be annotated as: 78 …character. For example, a literal '<' character is output as '<<' in an annotated assembly string.
|
/external/boringssl/src/util/ |
D | generate-asm-lcov.py | 150 annotated = merge(cg_files, srcs) variable 151 lcov = generate(annotated)
|
/external/javapoet/src/main/java/com/squareup/javapoet/ |
D | ParameterizedTypeName.java | 44 this.rawType = checkNotNull(rawType, "rawType == null").annotated(annotations); in ParameterizedTypeName() 56 @Override public ParameterizedTypeName annotated(List<AnnotationSpec> annotations) { in annotated() method in ParameterizedTypeName
|
D | TypeName.java | 111 public final TypeName annotated(AnnotationSpec... annotations) { in annotated() method in TypeName 112 return annotated(Arrays.asList(annotations)); in annotated() 115 public TypeName annotated(List<AnnotationSpec> annotations) { in annotated() method in TypeName
|
/external/guice/core/src/com/google/inject/internal/ |
D | InternalProvisionException.java | 141 Method annotated = (Method) dependency.getInjectionPoint().getMember(); in onNullInjectedIntoNonNullableDependency() local 142 if (annotated.isAnnotationPresent(Provides.class)) { in onNullInjectedIntoNonNullableDependency()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LowerExpectIntrinsic/ |
D | phi_or.ll | 8 ; annotated. 12 ; For the above case, two branches should be annotated.
|
/external/turbine/javatests/com/google/turbine/lower/testdata/ |
D | annouse16.test | 29 @Anno2 int annotated;
|
/external/tensorflow/tensorflow/java/src/gen/java/org/tensorflow/processor/ |
D | OperatorProcessor.java | 104 Set<? extends Element> annotated = roundEnv.getElementsAnnotatedWith(annotation); in process() local 107 if (annotated.size() == 0) { in process() 115 for (Element e : annotated) { in process()
|
/external/javapoet/ |
D | CHANGELOG.md | 29 * Fix: Use the right imports for annotated type parameters. 92 * New: `TypeName.annotated()` adds an annotation to a type. 97 * Fix: Don’t break import resolution on annotated types. 124 * New: Type annotations! `TypeName.annotated()` can attach annotations like `@Nullable` directly to
|
/external/flatbuffers/tests/docker/ |
D | TODO.Dockerfile.testing.php.hhvm_2019_01_16 | 3 …teBuffer::getX() expects parameter 1 by reference, but the call was not annotated with '&'. in /co…
|
/external/python/cpython3/Lib/test/ |
D | inspect_fodder2.py | 106 def annotated(arg1: list): function
|
/external/python/cpython2/Misc/ |
D | README.coverity | 19 False positives were annotated so that the comments can
|
/external/python/setuptools/ |
D | tox.ini | 14 # These should probably be individually annotated to explain what needs them.
|
/external/libcxx/utils/google-benchmark/cmake/ |
D | GetGitVersion.cmake | 3 # This function inspects the annotated git tags for the project and returns a string
|