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

1 2 3 4 56 7

  /packages/apps/Settings/src/com/android/settings/users/
AppRestrictionsFragment.java 160 private boolean immutable; field in class:AppRestrictionsFragment.AppRestrictionsPreference
177 void setImmutable(boolean immutable) {
178 this.immutable = immutable;
182 return immutable;
568 // but will still be marked as false and immutable.
687 // 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;
  /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/chromium_org/third_party/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...]
  /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
  /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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 46 import org.jf.dexlib2.immutable.value.ImmutableEncodedValueFactory;
  /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) {
  /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
  /external/chromium_org/third_party/jstemplate/
jsevalcontext.js 150 * immutable global objects, such as functions, at load time, and not
  /external/chromium_org/v8/src/
hydrogen-instructions.h 5931 inline bool immutable() const { function in class:V8_FINAL
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 5 'atom-literals': "\nLiterals\n********\n\nPython supports string literals and various numeric literals:\n\n literal ::= stringliteral | integer | longinteger\n | floatnumber | imagnumber\n\nEvaluation of a literal yields an object of the given type (string,\ninteger, long integer, floating point number, complex number) with the\ngiven value. The value may be approximated in the case of floating\npoint and imaginary (complex) literals. See section *Literals* for\ndetails.\n\nAll literals correspond to immutable data types, and hence the\nobject's identity is less important than its value. Multiple\nevaluations of literals with the same value (either the same\noccurrence in the program text or a different occurrence) may obtain\nthe same object or a different object with the same value.\n",
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 5 'atom-literals': "\nLiterals\n********\n\nPython supports string literals and various numeric literals:\n\n literal ::= stringliteral | integer | longinteger\n | floatnumber | imagnumber\n\nEvaluation of a literal yields an object of the given type (string,\ninteger, long integer, floating point number, complex number) with the\ngiven value. The value may be approximated in the case of floating\npoint and imaginary (complex) literals. See section *Literals* for\ndetails.\n\nAll literals correspond to immutable data types, and hence the\nobject's identity is less important than its value. Multiple\nevaluations of literals with the same value (either the same\noccurrence in the program text or a different occurrence) may obtain\nthe same object or a different object with the same value.\n",
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
earley-boyer.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-earley-boyer.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-earley-boyer.js     [all...]

Completed in 1112 milliseconds

1 2 3 4 56 7