HomeSort by relevance Sort by last modified time
    Searched defs:MAGIC (Results 51 - 75 of 124) sorted by null

1 23 4 5

  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 103 static final String MAGIC = "libcore.io.DiskLruCache";
342 String magic = readAsciiLine(in); local
347 if (!MAGIC.equals(magic)
353 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
432 writer.write(MAGIC);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pycodegen.py 123 MAGIC = imp.get_magic()
132 return self.MAGIC + mtime
    [all...]
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.java 89 static final String MAGIC = "libcore.io.DiskLruCache";
244 String magic = reader.readLine(); local
249 if (!MAGIC.equals(magic)
254 throw new IOException("unexpected journal header: [" + magic + ", " + version + ", "
355 writer.write(MAGIC);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 92 static final String MAGIC = "libcore.io.DiskLruCache";
264 String magic = source.readUtf8LineStrict(); local
269 if (!MAGIC.equals(magic)
274 throw new IOException("unexpected journal header: [" + magic + ", " + version + ", "
384 writer.writeUtf8(MAGIC).writeByte('\n');
    [all...]
  /external/python/cpython2/Lib/compiler/
pycodegen.py 123 MAGIC = imp.get_magic()
132 return self.MAGIC + mtime
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pycodegen.py 123 MAGIC = imp.get_magic()
132 return self.MAGIC + mtime
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pycodegen.py 123 MAGIC = imp.get_magic()
132 return self.MAGIC + mtime
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 123 MAGIC = imp.get_magic()
132 return self.MAGIC + mtime
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 123 MAGIC = imp.get_magic()
132 return self.MAGIC + mtime
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 31 /* Magic word to reject .pyc files generated by other Python versions.
35 a .pyc file in text mode the magic number will be wrong; also, the
38 The magic numbers must be spaced apart atleast 2 values, as the
39 -U interpeter flag will cause MAGIC+1 being used. They have been
42 There were a variety of old schemes for setting the magic number.
82 #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24))
84 /* Magic word as global; note that _PyImport_Init() can change the
87 static long pyc_magic = MAGIC;
167 pyc_magic = MAGIC + 1;
527 /* Helper for pythonrun.c -- return magic number */
740 long magic; local
792 long magic; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
import.c 31 /* Magic word to reject .pyc files generated by other Python versions.
35 a .pyc file in text mode the magic number will be wrong; also, the
38 The magic numbers must be spaced apart atleast 2 values, as the
39 -U interpeter flag will cause MAGIC+1 being used. They have been
42 There were a variety of old schemes for setting the magic number.
82 #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24))
84 /* Magic word as global; note that _PyImport_Init() can change the
87 static long pyc_magic = MAGIC;
195 pyc_magic = MAGIC + 1;
559 /* Helper for pythonrun.c -- return magic number */
772 long magic; local
824 long magic; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
import.c 31 /* Magic word to reject .pyc files generated by other Python versions.
35 a .pyc file in text mode the magic number will be wrong; also, the
38 The magic numbers must be spaced apart atleast 2 values, as the
39 -U interpeter flag will cause MAGIC+1 being used. They have been
42 There were a variety of old schemes for setting the magic number.
82 #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24))
84 /* Magic word as global; note that _PyImport_Init() can change the
87 static long pyc_magic = MAGIC;
167 pyc_magic = MAGIC + 1;
527 /* Helper for pythonrun.c -- return magic number */
740 long magic; local
792 long magic; local
    [all...]
  /external/python/cpython2/Python/
import.c 31 /* Magic word to reject .pyc files generated by other Python versions.
35 a .pyc file in text mode the magic number will be wrong; also, the
38 The magic numbers must be spaced apart atleast 2 values, as the
39 -U interpeter flag will cause MAGIC+1 being used. They have been
42 There were a variety of old schemes for setting the magic number.
82 #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24))
84 /* Magic word as global; note that _PyImport_Init() can change the
87 static long pyc_magic = MAGIC;
195 pyc_magic = MAGIC + 1;
559 /* Helper for pythonrun.c -- return magic number *
790 long magic; local
842 long magic; local
    [all...]
  /frameworks/native/opengl/libagl/
egl.cpp 163 MAGIC = 0x31415265
166 uint32_t magic; member in struct:android::egl_surface_t
197 : magic(MAGIC), dpy(dpy), config(config), ctx(0), zombie(false)
205 magic = 0;
209 ALOGE_IF(magic != MAGIC, "invalid EGLSurface (%p)", this);
210 return magic == MAGIC;
    [all...]
  /external/proguard/src/proguard/classfile/
ClassConstants.java 32 public static final int MAGIC = 0xCAFEBABE;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
texi2html.py 71 MAGIC = '\\input texinfo'
259 if line[:len(MAGIC)] <> MAGIC:
260 raise SyntaxError, 'file does not begin with %r' % (MAGIC,)
263 # Parse the contents of a file, not expecting a MAGIC header
    [all...]
  /external/python/cpython2/Tools/scripts/
texi2html.py 71 MAGIC = '\\input texinfo'
259 if line[:len(MAGIC)] <> MAGIC:
260 raise SyntaxError, 'file does not begin with %r' % (MAGIC,)
263 # Parse the contents of a file, not expecting a MAGIC header
    [all...]
  /frameworks/base/core/java/com/android/internal/app/procstats/
ProcessStats.java 159 // In-memory Parcel magic number, used to detect attempts to unmarshall bad data
160 private static final int MAGIC = 0x50535454;
708 out.writeInt(MAGIC);
    [all...]
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/
disklrucache-SNAPSHOT.jar 
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SocketChannelTest.java     [all...]
  /external/mksh/src/
sh.h 505 * Make MAGIC a char that might be printed to make bugs more obvious, but
509 #define MAGIC (7) /* prefix for *?[!{,} during expand */
510 #define ISMAGIC(c) ((unsigned char)(c) == MAGIC)
    [all...]
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/2.4/
objenesis-2.4.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/2.5/
objenesis-2.5.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-websocket/8.1.14.v20131031/
jetty-websocket-8.1.14.v20131031.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
yjp-controller-api-redist.jar 

Completed in 1817 milliseconds

1 23 4 5