HomeSort by relevance Sort by last modified time
    Searched full:immutable (Results 1 - 25 of 566) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
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 {
  /external/webkit/Source/WebCore/svg/
SVGMatrix.idl 38 [Immutable, StrictTypeChecking, RequiresAllArguments=Raise] SVGMatrix translate(in float x, in float y);
39 [Immutable, StrictTypeChecking, RequiresAllArguments=Raise] SVGMatrix scale(in float scaleFactor);
40 [Immutable, StrictTypeChecking, RequiresAllArguments=Raise] SVGMatrix scaleNonUniform(in float scaleFactorX, in float scaleFactorY);
41 [Immutable, StrictTypeChecking, RequiresAllArguments=Raise] SVGMatrix rotate(in float angle);
44 [Immutable] SVGMatrix flipX();
45 [Immutable] SVGMatrix flipY();
46 [Immutable, StrictTypeChecking, RequiresAllArguments=Raise] SVGMatrix skewX(in float angle);
47 [Immutable, StrictTypeChecking, RequiresAllArguments=Raise] SVGMatrix skewY(in float angle);
SVGZoomEvent.idl 31 readonly attribute [Immutable] SVGPoint previousTranslate;
33 readonly attribute [Immutable] SVGPoint newTranslate;
  /dalvik/dexgen/src/com/android/dexgen/util/
MutabilityControl.java 46 * Makes this instance immutable.
53 * Checks to see whether or not this instance is immutable. This is the
56 * @return {@code true} iff this instance is immutable
73 * immutable.
77 throw new MutabilityException("immutable instance");
  /dalvik/dx/src/com/android/dx/util/
MutabilityControl.java 46 * Makes this instance immutable.
53 * Checks to see whether or not this instance is immutable. This is the
56 * @return {@code true} iff this instance is immutable
73 * immutable.
77 throw new MutabilityException("immutable instance");
  /external/dexmaker/src/dx/java/com/android/dx/util/
MutabilityControl.java 46 * Makes this instance immutable.
53 * Checks to see whether or not this instance is immutable. This is the
56 * @return {@code true} iff this instance is immutable
73 * immutable.
77 throw new MutabilityException("immutable instance");
  /external/webkit/Source/WebCore/css/
WebKitCSSMatrix.idl 64 [Immutable] WebKitCSSMatrix multiply(in WebKitCSSMatrix secondMatrix);
67 [Immutable] WebKitCSSMatrix inverse() raises (DOMException);
71 [Immutable] WebKitCSSMatrix translate(in double x, in double y, in double z);
76 [Immutable] WebKitCSSMatrix scale(in double scaleX, in double scaleY, in double scaleZ);
81 [Immutable] WebKitCSSMatrix rotate(in double rotX, in double rotY, in double rotZ);
86 [Immutable] WebKitCSSMatrix rotateAxisAngle(in double x, in double y, in double z, in double angle);
90 [Immutable] WebKitCSSMatrix skewX(in double angle);
94 [Immutable] WebKitCSSMatrix skewY(in double angle);
  /external/e2fsprogs/tests/f_filetype/
expect.1 2 Special (device/socket/fifo/symlink) file (inode 14) has immutable
5 Special (device/socket/fifo/symlink) file (inode 15) has immutable
8 Special (device/socket/fifo/symlink) file (inode 16) has immutable
11 Special (device/socket/fifo/symlink) file (inode 17) has immutable
  /external/jsr305/javadoc/javax/annotation/concurrent/
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</B></A> &nbsp;
58 &nbsp;<A HREF="Immutable.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
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 an
    [all...]
package-frame.html 28 <A HREF="Immutable.html" title="annotation in javax.annotation.concurrent" target="classFrame">Immutable</A>
  /external/guava/guava/src/com/google/common/collect/
ImmutableBiMap.java 26 * An immutable {@link BiMap} with reliable user-specified iteration order. Does
37 * guaranteed to be immutable.
59 * Returns an immutable bimap containing a single entry.
66 * Returns an immutable map containing the given entries, in order.
75 * Returns an immutable map containing the given entries, in order.
86 * Returns an immutable map containing the given entries, in order.
97 * Returns an immutable map containing the given entries, in order.
118 * A builder for creating immutable bimap instances, especially {@code public
128 * For <i>small</i> immutable bimaps, the {@code ImmutableBiMap.of()} methods
167 * Returns a newly-created immutable bimap
    [all...]
ImmutableListMultimap.java 34 * An immutable {@link ListMultimap} with reliable user-specified key and value
47 * are guaranteed to be immutable.
65 * Returns an immutable multimap containing a single entry.
75 * Returns an immutable multimap containing the given entries, in order.
86 * Returns an immutable multimap containing the given entries, in order.
99 * Returns an immutable multimap containing the given entries, in order.
113 * Returns an immutable multimap containing the given entries, in order.
138 * A builder for creating immutable {@code ListMultimap} instances, especially
218 * Returns a newly-created immutable list multimap.
226 * Returns an immutable multimap containing the same mappings as {@cod
    [all...]
ImmutableMultimap.java 39 * An immutable {@link Multimap}. Does not permit null keys or values.
51 * are guaranteed to be immutable.
70 * Returns an immutable multimap containing a single entry.
77 * Returns an immutable multimap containing the given entries, in order.
84 * Returns an immutable multimap containing the given entries, in order.
92 * Returns an immutable multimap containing the given entries, in order.
100 * Returns an immutable multimap containing the given entries, in order.
150 * A builder for creating immutable multimap instances, especially
262 * Returns a newly-created immutable multimap.
276 * Returns an immutable multimap containing the same mappings as {@cod
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationsList.java 26 /** {@code non-null;} immutable empty instance */
30 * Constructs an immutable instance which is the combination of
82 * immutable.
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationsList.java 26 /** {@code non-null;} immutable empty instance */
30 * Constructs an immutable instance which is the combination of
82 * immutable.
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationsList.java 26 /** {@code non-null;} immutable empty instance */
30 * Constructs an immutable instance which is the combination of
82 * immutable.
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimap.java 29 * An immutable {@link ListMultimap} with reliable user-specified key and value
42 * are guaranteed to be immutable.
60 * Returns an immutable multimap containing a single entry.
70 * Returns an immutable multimap containing the given entries, in order.
81 * Returns an immutable multimap containing the given entries, in order.
94 * Returns an immutable multimap containing the given entries, in order.
108 * Returns an immutable multimap containing the given entries, in order.
133 * A builder for creating immutable {@code ListMultimap} instances, especially
213 * Returns a newly-created immutable list multimap.
221 * Returns an immutable multimap containing the same mappings as {@cod
    [all...]
ImmutableMultimap.java 38 * An immutable {@link Multimap}. Does not permit null keys or values.
50 * are guaranteed to be immutable.
69 * Returns an immutable multimap containing a single entry.
76 * Returns an immutable multimap containing the given entries, in order.
83 * Returns an immutable multimap containing the given entries, in order.
91 * Returns an immutable multimap containing the given entries, in order.
99 * Returns an immutable multimap containing the given entries, in order.
149 * A builder for creating immutable multimap instances, especially
261 * Returns a newly-created immutable multimap.
275 * Returns an immutable multimap containing the same mappings as {@cod
    [all...]
RegularImmutableSortedSet.java 28 /** true if this set is a subset of another immutable sorted set. */
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
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...]
  /external/icu4c/test/perf/unisetperf/draft/
unicont.h 15 * and other classes, such as "compiled", fast, read-only (immutable)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
PendingAttribute.java 23 * All instances of this class are always immutable.
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
PKIXAttrCertChecker.java 13 * Returns an immutable <code>Set</code> of X.509 attribute certificate
24 * @return an immutable <code>Set</code> of X.509 extension OIDs (in
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeList.java 25 * An immutable of types.
40 * Returns an immutable list.
  /external/e2fsprogs/tests/f_badsymlinks/
expect.1 2 Special (device/socket/fifo/symlink) file (inode 18) has immutable
10 Special (device/socket/fifo/symlink) file (inode 20) has immutable

Completed in 2628 milliseconds

1 2 3 4 5 6 7 8 91011>>