HomeSort by relevance Sort by last modified time
    Searched refs:isMutable (Results 1 - 25 of 73) sorted by null

1 2 3

  /dalvik/dexgen/src/com/android/dexgen/rop/
FieldList.java 32 public boolean isMutable();
AttributeList.java 31 public boolean isMutable();
  /dalvik/dx/src/com/android/dx/cf/iface/
FieldList.java 32 public boolean isMutable();
MethodList.java 31 public boolean isMutable();
AttributeList.java 31 public boolean isMutable();
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeList.java 32 public boolean isMutable();
  /dalvik/dx/src/com/android/dx/rop/type/
TypeList.java 32 public boolean isMutable();
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
TypeList.java 32 public boolean isMutable();
  /external/webkit/Source/WebKit2/Shared/
MutableArray.h 48 virtual bool isMutable() { return true; }
MutableDictionary.h 48 virtual bool isMutable() { return true; }
  /dalvik/dexgen/src/com/android/dexgen/util/
MutabilityControl.java 54 * same as calling {@code !isMutable()}.
67 public final boolean isMutable() {
  /dalvik/dx/src/com/android/dx/util/
MutabilityControl.java 54 * same as calling {@code !isMutable()}.
67 public final boolean isMutable() {
  /external/dexmaker/src/dx/java/com/android/dx/util/
MutabilityControl.java 54 * same as calling {@code !isMutable()}.
67 public final boolean isMutable() {
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 42 if (exceptions.isMutable()) {
43 throw new MutabilityException("exceptions.isMutable()");
AttInnerClasses.java 40 if (innerClasses.isMutable()) {
41 throw new MutabilityException("innerClasses.isMutable()");
AttLineNumberTable.java 41 if (lineNumbers.isMutable()) {
42 throw new MutabilityException("lineNumbers.isMutable()");
BaseLocalVariables.java 41 if (localVariables.isMutable()) {
42 throw new MutabilityException("localVariables.isMutable()");
BaseAnnotations.java 46 if (annotations.isMutable()) {
47 throw new MutabilityException("annotations.isMutable()");
BaseParameterAnnotations.java 46 if (parameterAnnotations.isMutable()) {
48 "parameterAnnotations.isMutable()");
AttCode.java 72 if (catches.isMutable()) {
73 throw new MutabilityException("catches.isMutable()");
81 if (attributes.isMutable()) {
82 throw new MutabilityException("attributes.isMutable()");
  /external/webkit/Source/WebKit2/Shared/API/c/
WKMutableArray.cpp 42 return toImpl(arrayRef)->isMutable();
WKMutableDictionary.cpp 42 return toImpl(dictionaryRef)->isMutable();
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMIterator.java 240 public boolean isMutable();
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 87 * @param isMutable whether the bitmap is mutable
90 * @see Bitmap#isMutable()
93 public static Bitmap createBitmap(File input, boolean isMutable, Density density)
98 return createBitmap(delegate, isMutable, density.getDpiValue());
105 * @param isMutable whether the bitmap is mutable
108 * @see Bitmap#isMutable()
111 public static Bitmap createBitmap(InputStream input, boolean isMutable, Density density)
116 return createBitmap(delegate, isMutable, density.getDpiValue());
123 * @param isMutable whether the bitmap is mutable
126 * @see Bitmap#isMutable()
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 98 /*package*/ Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
100 this(nativeBitmap, buffer, isMutable, ninePatchChunk, null, density);
111 /*package*/ Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
122 mIsMutable = isMutable;
423 * @param isMutable True if the resulting bitmap should be mutable (i.e.
427 public Bitmap copy(Config config, boolean isMutable) {
429 Bitmap b = nativeCopy(mNativeBitmap, config.nativeInt, isMutable);
540 if (!source.isMutable() && x == 0 && y == 0 && width == source.getWidth() &&
779 public final boolean isMutable() {
    [all...]

Completed in 450 milliseconds

1 2 3