/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Annotations.java | 37 public class Annotations { class 90 private final UnicodeMap<Annotations> localeData = new UnicodeMap<>(); 102 UnicodeMap<Annotations> templocaleData = null; in cleanup() 107 Annotations parentValue = parentData.baseData.get(key); in cleanup() 108 Annotations myValue = localeData.get(key); in cleanup() 118 templocaleData.put(key, new Annotations(annotations, tts)); in cleanup() 168 …private void addItems(UnicodeMap<Annotations> unicodeMap, UnicodeSet us, Set<String> attributes, S… in addItems() 174 …private void addItems(UnicodeMap<Annotations> unicodeMap, String entry, Set<String> attributes, St… in addItems() 175 Annotations annotations = unicodeMap.get(entry); in addItems() 177 unicodeMap.put(entry, new Annotations(attributes, tts)); in addItems() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | ChartAnnotations.java | 15 import org.unicode.cldr.util.Annotations; 16 import org.unicode.cldr.util.Annotations.AnnotationSet; 104 Set<String> locales = Annotations.getAvailableLocales(); in writeSubcharts() 106 AnnotationSet english = Annotations.getDataSet("en"); in writeSubcharts() 197 AnnotationSet annotations = Annotations.getDataSet(locale); in writeSubcharts() 198 … AnnotationSet parentAnnotations = Annotations.getDataSet(LocaleIDParser.getParent(locale)); in writeSubcharts() 207 AnnotationSet subAnnotations = Annotations.getDataSet(sub); in writeSubcharts() 208 … AnnotationSet subParentAnnotations = Annotations.getDataSet(LocaleIDParser.getParent(locale)); in writeSubcharts() 337 … + "In this chart, missing items are marked with “" + Annotations.MISSING_MARKER + "”, " in getExplanation() 338 + "‘fallback’ constructed items with “" + Annotations.BAD_MARKER + "”, " in getExplanation() [all …]
|
D | GenerateDerivedAnnotations.java | 14 import org.unicode.cldr.util.Annotations; 15 import org.unicode.cldr.util.Annotations.AnnotationSet; 36 .add(Annotations.ENGLISH_MARKER) 37 .add(Annotations.BAD_MARKER) 38 .add(Annotations.MISSING_MARKER) 48 AnnotationSet enAnnotations = Annotations.getDataSet("en"); in main() 53 Set<String> locales = ImmutableSortedSet.copyOf(Annotations.getAvailable()); in main() 64 annotations = Annotations.getDataSet(locale); in main() 68 annotations = Annotations.getDataSet(locale); in main()
|
D | MakeAnnotationHistogram.java | 8 import org.unicode.cldr.util.Annotations; 9 import org.unicode.cldr.util.Annotations.AnnotationSet; 22 AnnotationSet english = Annotations.getDataSet("en"); in main() 27 for (String locale : Annotations.getAvailable()) { in main() 29 AnnotationSet annotationSet = Annotations.getDataSet(locale); in main()
|
D | CheckAnnotations.java | 6 import org.unicode.cldr.util.Annotations; 7 import org.unicode.cldr.util.Annotations.AnnotationSet; 12 AnnotationSet data = Annotations.getDataSet("en"); in main()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestAnnotations.java | 18 import org.unicode.cldr.util.Annotations; 19 import org.unicode.cldr.util.Annotations.AnnotationSet; 61 UnicodeMap<Annotations> data = Annotations.getData(test[0]); in TestBasic() 101 for (String locale : Annotations.getAvailable()) { in TestList() 102 for (EntryRange<Annotations> s : Annotations.getData(locale).entryRanges()) { in TestList() 110 AnnotationSet eng = Annotations.getDataSet("en"); in TestNames() 174 AnnotationSet eng = Annotations.getDataSet("en"); in TestNamesVsEmojiData() 175 for (Entry<String, Annotations> s : eng.getExplicitValues().entrySet()) { in TestNamesVsEmojiData() 177 Annotations annotations = s.getValue(); in TestNamesVsEmojiData() 194 locales.addAll(Annotations.getAvailable()); in TestUniqueness() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | SymbolRecord.h | 169 BinaryAnnotationIterator(ArrayRef<uint8_t> Annotations) : Data(Annotations) {} in BinaryAnnotationIterator() 209 static uint32_t GetCompressedAnnotation(ArrayRef<uint8_t> &Annotations) { in GetCompressedAnnotation() 210 if (Annotations.empty()) in GetCompressedAnnotation() 213 uint8_t FirstByte = Annotations.front(); in GetCompressedAnnotation() 214 Annotations = Annotations.drop_front(); in GetCompressedAnnotation() 219 if (Annotations.empty()) in GetCompressedAnnotation() 222 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() 223 Annotations = Annotations.drop_front(); in GetCompressedAnnotation() 228 if (Annotations.empty()) in GetCompressedAnnotation() 231 uint8_t ThirdByte = Annotations.front(); in GetCompressedAnnotation() [all …]
|
/external/guice/core/src/com/google/inject/ |
D | Key.java | 21 import static com.google.inject.internal.Annotations.generateAnnotation; 22 import static com.google.inject.internal.Annotations.isAllDefaultMethods; 24 import com.google.inject.internal.Annotations; 320 if (Annotations.isMarker(annotationType)) { in strategyFor() 324 return new AnnotationInstanceStrategy(Annotations.canonicalizeIfNamed(annotation)); in strategyFor() 329 annotationType = Annotations.canonicalizeIfNamed(annotationType); in strategyFor() 342 Annotations.isRetainedAtRuntime(annotationType), in ensureRetainedAtRuntime() 349 Annotations.isBindingAnnotation(annotationType), in ensureIsBindingAnnotation()
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | SymbolRecord.h | 266 BinaryAnnotationIterator(ArrayRef<uint8_t> Annotations) : Data(Annotations) {} in BinaryAnnotationIterator() 307 static uint32_t GetCompressedAnnotation(ArrayRef<uint8_t> &Annotations) { in GetCompressedAnnotation() 308 if (Annotations.empty()) in GetCompressedAnnotation() 311 uint8_t FirstByte = Annotations.front(); in GetCompressedAnnotation() 312 Annotations = Annotations.drop_front(); in GetCompressedAnnotation() 317 if (Annotations.empty()) in GetCompressedAnnotation() 320 uint8_t SecondByte = Annotations.front(); in GetCompressedAnnotation() 321 Annotations = Annotations.drop_front(); in GetCompressedAnnotation() 326 if (Annotations.empty()) in GetCompressedAnnotation() 329 uint8_t ThirdByte = Annotations.front(); in GetCompressedAnnotation() [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | Annotations.java | 30 public abstract class Annotations extends Attribute { class 42 …Annotations(final byte annotation_type, final int name_index, final int length, final DataInput in… in Annotations() method in Annotations 59 …public Annotations(final byte annotation_type, final int name_index, final int length, final Annot… in Annotations() method in Annotations
|
D | AnnotationEntry.java | 161 if (attribute instanceof Annotations) { in createAnnotationEntries() 162 final Annotations runtimeAnnotations = (Annotations) attribute; in createAnnotationEntries()
|
/external/guice/core/test/com/google/inject/name/ |
D | NamedEquivalanceTest.java | 30 import com.google.inject.internal.Annotations; 128 + Annotations.memberValueString("foo") in assertMissingBindingErrorMessageUsesType() 144 + Annotations.memberValueString("foo") in assertDuplicateBinding() 242 + Annotations.memberValueString(value) 287 + Annotations.memberValueString(value)
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/aosp/ |
D | Annotations.java | 28 public final class Annotations { class 30 private Annotations() { in Annotations() method in Annotations
|
/external/guice/core/src/com/google/inject/name/ |
D | NamedImpl.java | 21 import com.google.inject.internal.Annotations; 56 return "@" + Named.class.getName() + "(value=" + Annotations.memberValueString(value) + ")"; in toString()
|
/external/guice/core/src/com/google/inject/internal/ |
D | ScopeBindingProcessor.java | 43 if (!Annotations.isScopeAnnotation(annotationType)) { in visit() 48 if (!Annotations.isRetainedAtRuntime(annotationType)) { in visit()
|
/external/guice/core/test/com/google/inject/ |
D | BindingTest.java | 25 import com.google.inject.internal.Annotations; 555 + Annotations.memberValueString("Turky") in testTurkeyBaconProblemUsingToConstuctor() 560 + Annotations.memberValueString("Turkey") in testTurkeyBaconProblemUsingToConstuctor() 564 + Annotations.memberValueString("Tofu") in testTurkeyBaconProblemUsingToConstuctor() 569 + Annotations.memberValueString("Turky") in testTurkeyBaconProblemUsingToConstuctor() 595 + Annotations.memberValueString("turkey") in testMissingAnnotationOneChoice() 600 + Annotations.memberValueString("Turkey") in testMissingAnnotationOneChoice() 604 + Annotations.memberValueString("turkey") in testMissingAnnotationOneChoice()
|
/external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | AnnotationId.java | 21 import com.android.dx.rop.annotation.Annotations; 154 Annotations annotations = new Annotations(); in addToMethod()
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/ |
D | AnnotationGenTestCase.java | 30 import org.apache.bcel.classfile.Annotations; 99 assertTrue(((Annotations) attribute).isRuntimeVisible()); in testVisibleInvisibleAnnotationGen() 114 assertFalse(((Annotations) attribute).isRuntimeVisible()); in testVisibleInvisibleAnnotationGen()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | FieldGen.java | 25 import org.apache.bcel.classfile.Annotations; 95 } else if (attr instanceof Annotations) { in FieldGen() 96 final Annotations runtimeAnnotations = (Annotations)attr; in FieldGen()
|
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/ |
D | CheckedProvideUtils.java | 21 import com.google.inject.internal.Annotations; 58 Annotations.findBindingAnnotation( in findThrowingConstructor()
|
D | CheckedProviderMethodsModule.java | 28 import com.google.inject.internal.Annotations; 119 Annotations.findScopeAnnotation(errors, method.getAnnotations()); in createProviderMethod() 138 Annotation bindingAnnotation = Annotations.findBindingAnnotation(errors, member, annotations); in getKey()
|
/external/turbine/java/com/google/turbine/bytecode/ |
D | Attribute.java | 104 interface Annotations extends Attribute { interface 109 class RuntimeVisibleAnnotations implements Annotations { 128 class RuntimeInvisibleAnnotations implements Annotations {
|
/external/pdfium/testing/resources/ |
D | links_highlights_annots.in | 43 (Link Annotations) Tj 49 (PDF Reference, Version 1.7, Section 8.4.5 defines Annotations) Tj
|
/external/clang/lib/Sema/ |
D | CodeCompleteConsumer.cpp | 193 const char **Annotations, in CodeCompletionString() argument 210 StoredAnnotations[I] = Annotations[I]; in CodeCompletionString() 331 + sizeof(const char *) * Annotations.size(), in TakeString() 336 Annotations.data(), Annotations.size(), in TakeString()
|
/external/python/cpython2/Doc/tools/extensions/ |
D | c_annotations.py | 36 class Annotations(dict): class 102 refcounts = Annotations.fromfile(
|