HomeSort by relevance Sort by last modified time
    Searched refs:immutable (Results 126 - 150 of 163) sorted by null

1 2 3 4 56 7

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DebugInfo.java 45 import org.jf.dexlib2.immutable.debug.*;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableClassDef.java 32 package org.jf.dexlib2.immutable;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstructionFactory.java 32 package org.jf.dexlib2.immutable.instruction;
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
JumboStringConversionTest.java 52 import org.jf.dexlib2.immutable.instruction.ImmutableInstruction10x;
  /packages/apps/Settings/src/com/android/settings/users/
AppRestrictionsFragment.java 158 private boolean immutable; field in class:AppRestrictionsFragment.AppRestrictionsPreference
175 void setImmutable(boolean immutable) {
176 this.immutable = immutable;
180 return immutable;
566 // but will still be marked as false and immutable.
692 // able to toggle this app ON (it's ON by default and immutable).
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
object.js 610 * Creates an immutable view of the underlying object, if the browser
611 * supports immutable objects.
617 * @return {!Object.<K,V>} An immutable view of that object, or the
633 * @return {boolean} Whether this is an immutable view of the object.
  /external/chromium_org/gpu/command_buffer/service/
texture_manager.h 145 void SetImmutable(bool immutable) {
146 immutable_ = immutable;
377 // Whether the texture is immutable and no further changes to the format
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/util/
TryListBuilderTest.java 38 import org.jf.dexlib2.immutable.ImmutableExceptionHandler;
39 import org.jf.dexlib2.immutable.ImmutableTryBlock;
  /frameworks/base/core/java/android/util/
ArrayMap.java 63 * @hide Special immutable empty ArrayMap.
79 * Special hash array value that indicates the container is immutable.
166 throw new UnsupportedOperationException("ArrayMap is immutable");
257 private ArrayMap(boolean immutable) {
258 // If this is immutable, use the sentinal EMPTY_IMMUTABLE_INTS
261 mHashes = immutable ? EMPTY_IMMUTABLE_INTS : EmptyArray.INT;
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CommonSuperclassTest.java 36 import org.jf.dexlib2.immutable.ImmutableDexFile;
  /external/deqp/modules/gles3/functional/
es3fNegativeTextureApiTests.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fNegativeTextureApiTests.cpp 2890 deInt32 immutable = 0x1234; local
2982 deInt32 immutable = 0x1234; local
    [all...]
  /external/skia/tests/
PictureTest.cpp 43 static void make_bm(SkBitmap* bm, int w, int h, SkColor color, bool immutable) {
46 if (immutable) {
51 static void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) {
69 if (immutable) {
835 // TODO: this case will need to be removed once the paint's are immutable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 136 Python strings are immutable objects. This has the advantage, that
204 def immutable(self): member in class:MutableString
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 136 Python strings are immutable objects. This has the advantage, that
204 def immutable(self): member in class:MutableString
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
datetime.pxd 129 # This is because of immutable nature of these objects by design.
bytes.pxd 125 # ``immutable''. Only use this to build up a brand new string
string.pxd 125 # ``immutable''. Only use this to build up a brand new string
  /prebuilts/misc/common/swig/include/2.0.11/
swig.swg 45 #define %readonly %warn "114:%readonly is deprecated. Use %immutable; " %feature("immutable");
46 #define %readwrite %warn "115:%readwrite is deprecated. Use %mutable; " %feature("immutable","");
48 #define %immutable %feature("immutable")
49 #define %noimmutable %feature("immutable","0")
50 #define %clearimmutable %feature("immutable","")
281 %define %$isimmutable "match$feature:immutable"="1" %enddef
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 46 import org.jf.dexlib2.immutable.instruction.*;
47 import org.jf.dexlib2.immutable.reference.ImmutableFieldReference;
48 import org.jf.dexlib2.immutable.reference.ImmutableMethodReference;
    [all...]
ClassProto.java 47 import org.jf.dexlib2.immutable.ImmutableMethod;
  /external/chromium_org/third_party/skia/tests/
PictureTest.cpp 41 static void make_bm(SkBitmap* bm, int w, int h, SkColor color, bool immutable) {
44 if (immutable) {
49 static void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) {
67 if (immutable) {
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 46 import org.jf.dexlib2.immutable.value.ImmutableEncodedValueFactory;
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java 27 import org.jf.dexlib2.immutable.ImmutableAnnotation;
28 import org.jf.dexlib2.immutable.ImmutableAnnotationElement;
29 import org.jf.dexlib2.immutable.reference.ImmutableFieldReference;
30 import org.jf.dexlib2.immutable.reference.ImmutableMethodReference;
31 import org.jf.dexlib2.immutable.reference.ImmutableReference;
32 import org.jf.dexlib2.immutable.reference.ImmutableTypeReference;
33 import org.jf.dexlib2.immutable.value.*;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jsevalcontext.js 150 * immutable global objects, such as functions, at load time, and not

Completed in 1791 milliseconds

1 2 3 4 56 7