| /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
| D | ShapeImmutableTest.java | 16 package org.yaml.snakeyaml.immutable; 27 Color loaded = (Color) yaml.load("!!org.yaml.snakeyaml.immutable.Color BLACK"); in testColor() 33 Code loaded = (Code) yaml.load("!!org.yaml.snakeyaml.immutable.Code 123"); in testCode() 40 … .load("!!org.yaml.snakeyaml.immutable.SuperColor [!!org.yaml.snakeyaml.immutable.Color BLACK]"); in testSuperColor() 47 yaml.load("!!org.yaml.snakeyaml.immutable.SuperColor BLACK"); in testSuperColorFail() 53 …:yaml.org,2002:org.yaml.snakeyaml.immutable.SuperColor; exception=Unsupported class: class org.yam… in testSuperColorFail() 59 Code2 code2 = (Code2) yaml.load("!!org.yaml.snakeyaml.immutable.Code2 555"); in testCode2() 66 yaml.load("!!org.yaml.snakeyaml.immutable.Code3 777"); in testCode3() 72 …,2002:org.yaml.snakeyaml.immutable.Code3; exception=No single argument constructor found for class… in testCode3() 79 yaml.load("!!org.yaml.snakeyaml.immutable.Code4 777"); in testCode4() [all …]
|
| /external/protobuf/src/google/protobuf/compiler/java/ |
| D | java_name_resolver.cc | 66 bool immutable) { in ClassNameWithoutPackage() argument 73 bool immutable) { in ClassNameWithoutPackage() argument 79 return ClassNameWithoutPackage(message_descriptor, immutable) + in ClassNameWithoutPackage() 86 bool immutable) { in ClassNameWithoutPackage() argument 148 bool immutable) { in GetFileClassName() argument 149 if (immutable) { in GetFileClassName() 184 bool immutable) { in GetClassName() argument 185 string result = FileJavaPackage(descriptor, immutable); in GetClassName() 187 result += GetFileClassName(descriptor, immutable); in GetClassName() 195 bool immutable, in GetClassFullName() argument [all …]
|
| D | java_name_resolver.h | 59 string GetFileClassName(const FileDescriptor* file, bool immutable); 60 // Gets the unqualified immutable outer class name of a file. 62 // Gets the unqualified default immutable outer class name of a file 72 // Descriptors are shared between immutable messages and mutable messages. 78 string GetClassName(const Descriptor* descriptor, bool immutable); 79 string GetClassName(const EnumDescriptor* descriptor, bool immutable); 80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable); 81 string GetClassName(const FileDescriptor* descriptor, bool immutable); 94 bool immutable); 107 bool immutable, [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | admin_directory_v1.members.html | 104 groupKey: string, Email or immutable Id of the group (required) 105 memberKey: string, Email or immutable Id of the member (required) 114 groupKey: string, Email or immutable Id of the group (required) 115 memberKey: string, Email or immutable Id of the member (required) 121 "status": "A String", # Status of member (Immutable) 126 "type": "A String", # Type of member (Immutable) 136 groupKey: string, Email or immutable Id of the group (required) 141 "status": "A String", # Status of member (Immutable) 146 "type": "A String", # Type of member (Immutable) 155 "status": "A String", # Status of member (Immutable) [all …]
|
| /external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/teststructs/ |
| D | project1.go | 25 !pb.Equal(x.Immutable.Proto(), y.Immutable.Proto()) { 58 !pb.Equal(x.Immutable.Proto(), y.Immutable.Proto()) { 111 pb.Equal(x.Immutable.Proto(), y.Immutable.Proto()) 116 !pb.Equal(x.Immutable.Proto(), y.Immutable.Proto()) { 133 pb.Equal(x.Immutable.Proto(), y.Immutable.Proto()) 148 Immutable *EagleImmutable member 177 Immutable *DreamerImmutable member 200 Immutable *SlapImmutable member 220 Immutable *GoatImmutable member 235 Immutable *DonkeyImmutable member
|
| /external/jsr305/ri/src/main/java/javax/annotation/concurrent/ |
| D | Immutable.java | 17 * Immutable 19 * The class to which this annotation is applied is immutable. This means that 22 * to other immutable objects, and that methods do not publish references to any 24 * Immutable objects may still have internal mutable state for purposes of 26 * long as they are computed from immutable state and that callers cannot tell 29 * Immutable objects are inherently thread-safe; they may be passed between 35 public @interface Immutable { annotation
|
| /external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
| D | MicroProps.java | 32 private final boolean immutable; field in MicroProps 36 * @param immutable 37 … * Whether this MicroProps should behave as an immutable after construction with respect 40 public MicroProps(boolean immutable) { in MicroProps() argument 41 this.immutable = immutable; in MicroProps() 46 if (immutable) { in processQuantity()
|
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
| D | MicroProps.java | 28 private final boolean immutable; field in MicroProps 32 * @param immutable 33 … * Whether this MicroProps should behave as an immutable after construction with respect 36 public MicroProps(boolean immutable) { in MicroProps() argument 37 this.immutable = immutable; in MicroProps() 42 if (immutable) { in processQuantity()
|
| /external/guava/guava/src/com/google/common/collect/ |
| D | ImmutableList.java | 38 * A high-performance, immutable, random-access {@code List} implementation. 50 * guaranteed to be immutable. 54 * immutable collections</a>. 70 * Returns the empty immutable list. This set behaves and performs comparably 81 * Returns an immutable list containing a single element. This list behaves 93 * Returns an immutable list containing the given elements, in order. 102 * Returns an immutable list containing the given elements, in order. 111 * Returns an immutable list containing the given elements, in order. 120 * Returns an immutable list containing the given elements, in order. 129 * Returns an immutable list containing the given elements, in order. [all …]
|
| D | ImmutableBiMap.java | 24 * An immutable {@link BiMap} with reliable user-specified iteration order. Does 35 * guaranteed to be immutable. 54 * Returns an immutable bimap containing a single entry. 61 * Returns an immutable map containing the given entries, in order. 70 * Returns an immutable map containing the given entries, in order. 80 * Returns an immutable map containing the given entries, in order. 91 * Returns an immutable map containing the given entries, in order. 112 * A builder for creating immutable bimap instances, especially {@code public 122 * <p>For <i>small</i> immutable bimaps, the {@code ImmutableBiMap.of()} methods 161 * Returns a newly-created immutable bimap. [all …]
|
| D | ImmutableSortedMultiset.java | 32 * An immutable {@code SortedMultiset} that stores its elements in a sorted array. Some instances 67 * avoid general confusion, it is strongly recommended to place only immutable objects into this 71 * protected constructors. Thus, instances of this type are guaranteed to be immutable. 75 * immutable collections</a>. 92 * Returns the empty immutable sorted multiset. 100 * Returns an immutable sorted multiset containing a single element. 111 * Returns an immutable sorted multiset containing the given elements sorted by their natural 122 * Returns an immutable sorted multiset containing the given elements sorted by their natural 133 * Returns an immutable sorted multiset containing the given elements sorted by their natural 145 * Returns an immutable sorted multiset containing the given elements sorted by their natural [all …]
|
| D | ImmutableSet.java | 38 * A high-performance, immutable {@code Set} with reliable, user-specified 50 * only immutable objects into this collection. 54 * (as a well-behaved immutable object should). While this class's factory 60 * instances of this type are guaranteed to be immutable. 64 * immutable collections</a>. 77 * Returns the empty immutable set. This set behaves and performs comparably 88 * Returns an immutable set containing a single element. This set behaves and 98 * Returns an immutable set containing the given elements, in order. Repeated 109 * Returns an immutable set containing the given elements, in order. Repeated 120 * Returns an immutable set containing the given elements, in order. Repeated [all …]
|
| D | ImmutableMultimap.java | 40 * An immutable {@link Multimap}. Does not permit null keys or values. 52 * are guaranteed to be immutable. 59 * immutable collections</a>. 74 * Returns an immutable multimap containing a single entry. 81 * Returns an immutable multimap containing the given entries, in order. 88 * Returns an immutable multimap containing the given entries, in order. 96 * Returns an immutable multimap containing the given entries, in order. 104 * Returns an immutable multimap containing the given entries, in order. 137 * A builder for creating immutable multimap instances, especially 251 * Returns a newly-created immutable multimap. [all …]
|
| D | ImmutableSortedMap.java | 36 * An immutable {@link SortedMap}. Does not permit null keys or values. 47 * guaranteed to be immutable. 51 * immutable collections</a>. 121 * Returns an immutable map containing a single entry. 129 * Returns an immutable sorted map containing the given entries, sorted by the 142 * Returns an immutable sorted map containing the given entries, sorted by the 156 * Returns an immutable sorted map containing the given entries, sorted by the 170 * Returns an immutable sorted map containing the given entries, sorted by the 184 * Returns an immutable map containing the same entries as {@code map}, sorted 210 * Returns an immutable map containing the same entries as {@code map}, with [all …]
|
| D | ImmutableListMultimap.java | 33 * An immutable {@link ListMultimap} with reliable user-specified key and value 46 * are guaranteed to be immutable. 50 * immutable collections</a>. 68 * Returns an immutable multimap containing a single entry. 78 * Returns an immutable multimap containing the given entries, in order. 89 * Returns an immutable multimap containing the given entries, in order. 102 * Returns an immutable multimap containing the given entries, in order. 116 * Returns an immutable multimap containing the given entries, in order. 141 * A builder for creating immutable {@code ListMultimap} instances, especially 221 * Returns a newly-created immutable list multimap. [all …]
|
| /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/ |
| D | Freezable.java | 13 * a class be immutable. Once frozen, an object can never be unfrozen, so it is 18 * objects, that those internal objects must either be immutable, or must also 60 * immutable. You know where this is leading, of course; this class is unsafe in 83 * <li>Immutable wrappers. For example, you can put a collection in an 84 * immutable wrapper.</li> 85 * <li>Always-Immutable objects. Java uses this approach, with a few 89 * immutable.</li> 92 * full String API available). Once you want an immutable form, you create one 108 * <li>Immutable wrappers are safer than const in that the constness can't be 112 * <li>Always-Immutable Objects are safe, but usage can require excessive [all …]
|
| /external/icu/android_icu4j/src/main/java/android/icu/util/ |
| D | Freezable.java | 14 * a class be immutable. Once frozen, an object can never be unfrozen, so it is 19 * objects, that those internal objects must either be immutable, or must also 61 * immutable. You know where this is leading, of course; this class is unsafe in 84 * <li>Immutable wrappers. For example, you can put a collection in an 85 * immutable wrapper.</li> 86 * <li>Always-Immutable objects. Java uses this approach, with a few 90 * immutable.</li> 93 * full String API available). Once you want an immutable form, you create one 109 * <li>Immutable wrappers are safer than const in that the constness can't be 113 * <li>Always-Immutable Objects are safe, but usage can require excessive [all …]
|
| /external/opencensus-java/api/src/main/java/io/opencensus/trace/export/ |
| D | SpanData.java | 38 import javax.annotation.concurrent.Immutable; 45 * Immutable representation of all data collected by the {@link Span} class. 49 @Immutable 54 * Returns a new immutable {@code SpanData}. 90 * Returns a new immutable {@code SpanData}. 110 * @return a new immutable {@code SpanData}. 311 @Immutable 315 * Returns a new immutable {@code TimedEvent<T>}. 320 * @return a new immutable {@code TimedEvent<T>} 353 @Immutable [all …]
|
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| D | Freezable.java | 13 * a class be immutable. Once frozen, an object can never be unfrozen, so it is 18 * objects, that those internal objects must either be immutable, or must also 60 * immutable. You know where this is leading, of course; this class is unsafe in 83 * <li>Immutable wrappers. For example, you can put a collection in an 84 * immutable wrapper.</li> 85 * <li>Always-Immutable objects. Java uses this approach, with a few 89 * immutable.</li> 92 * full String API available). Once you want an immutable form, you create one 108 * <li>Immutable wrappers are safer than const in that the constness can't be 112 * <li>Always-Immutable Objects are safe, but usage can require excessive [all …]
|
| /external/jsr305/javadoc/javax/annotation/concurrent/ |
| D | Immutable.html | 7 Immutable 10 <META NAME="keywords" CONTENT="javax.annotation.concurrent.Immutable class"> 17 parent.document.title="Immutable"; 57 …<A HREF="../../../index.html?javax/annotation/concurrent/Immutable.html" target="_top"><B>FRAMES</… 58 <A HREF="Immutable.html" target="_top"><B>NO FRAMES</B></A> 89 Annotation Type Immutable</H2> 95 </FONT>public @interface <B>Immutable</B></DL> 99 Immutable 101 The class to which this annotation is applied is immutable. This means that 104 to other immutable objects, and that methods do not publish references to any [all …]
|
| /external/ltp/testcases/kernel/syscalls/setxattr/ |
| D | setxattr03.c | 26 * setxattr(2) to immutable and append-only files should get EPERM 29 * 1. Set attribute to a immutable file, setxattr(2) should return -1 80 { /* case 00, set attr to immutable file */ 81 .desc = "Set attr to immutable file", 138 static int fsetflag(int fd, int on, int immutable) in fsetflag() argument 146 if (immutable) in fsetflag() 179 /* Create test files and set file immutable or append-only */ in setup() 182 tst_brkm(TBROK | TERRNO, cleanup, "Set %s immutable failed", in setup() 196 tst_resm(TWARN | TERRNO, "Unset %s immutable failed", in cleanup()
|
| /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
| D | ImmutableListMultimap.java | 28 * An immutable {@link ListMultimap} with reliable user-specified key and value 41 * are guaranteed to be immutable. 45 * immutable collections</a>. 63 * Returns an immutable multimap containing a single entry. 73 * Returns an immutable multimap containing the given entries, in order. 84 * Returns an immutable multimap containing the given entries, in order. 97 * Returns an immutable multimap containing the given entries, in order. 111 * Returns an immutable multimap containing the given entries, in order. 136 * A builder for creating immutable {@code ListMultimap} instances, especially 216 * Returns a newly-created immutable list multimap. [all …]
|
| D | ImmutableMultimap.java | 39 * An immutable {@link Multimap}. Does not permit null keys or values. 51 * are guaranteed to be immutable. 58 * immutable collections</a>. 73 * Returns an immutable multimap containing a single entry. 80 * Returns an immutable multimap containing the given entries, in order. 87 * Returns an immutable multimap containing the given entries, in order. 95 * Returns an immutable multimap containing the given entries, in order. 103 * Returns an immutable multimap containing the given entries, in order. 136 * A builder for creating immutable multimap instances, especially 250 * Returns a newly-created immutable multimap. [all …]
|
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
| D | Attributes.h | 202 /// function, or return value. It is an immutable value type that is cheap to 232 /// immutable. 236 /// are immutable. 241 /// sets are immutable. 245 /// attribute sets are immutable. 249 /// attribute sets are immutable. 253 /// attribute sets are immutable. 377 /// Returns a new list because attribute lists are immutable. 382 /// Returns a new list because attribute lists are immutable. 387 /// Returns a new list because attribute lists are immutable. [all …]
|
| /external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
| D | UnmodifiableCollectionTests.java | 98 * Verifies that a collection is immutable. 100 * <p>A collection is considered immutable if: 109 * @param collection the presumed-immutable collection 168 * Verifies that a set is immutable. 170 * <p>A set is considered immutable if: 179 * @param set the presumed-immutable set 190 * Verifies that a multiset is immutable. 192 * <p>A multiset is considered immutable if: 201 * @param multiset the presumed-immutable multiset 251 * Verifies that a multimap is immutable. [all …]
|