/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sunaudio.py | 8 MAGIC = '.snd' 21 if fp.read(4) != MAGIC: 22 raise error, 'gethdr: bad magic word'
|
py_compile.py | 13 MAGIC = imp.get_magic() 129 fc.write(MAGIC)
|
sre_constants.py | 16 MAGIC = 20031017 240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
sunaudio.py | 8 MAGIC = '.snd' 21 if fp.read(4) != MAGIC: 22 raise error, 'gethdr: bad magic word'
|
py_compile.py | 13 MAGIC = imp.get_magic() 129 fc.write(MAGIC)
|
sre_constants.py | 16 MAGIC = 20031017 240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
HeaderItem.java | 28 * {@code non-null;} the file format magic number, represented as the 31 private static final String MAGIC = "dex\n035\0"; 75 out.annotate(8, "magic: " + new CstUtf8(MAGIC).toQuoted()); 87 // Write the magic number. 89 out.writeByte(MAGIC.charAt(i));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cpio.h | 47 #define MAGIC "070707"
|
tic.h | 78 #define MAGIC 0432 /* first two bytes of a compiled entry */ 87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
cpio.h | 47 #define MAGIC "070707"
|
tic.h | 78 #define MAGIC 0432 /* first two bytes of a compiled entry */ 87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
cpio.h | 47 #define MAGIC "070707"
|
tic.h | 78 #define MAGIC 0432 /* first two bytes of a compiled entry */ 87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
|
/frameworks/compile/mclinker/lib/LD/ |
Archive.cpp | 22 const char Archive::MAGIC[] = "!<arch>\n"; 24 const size_t Archive::MAGIC_LEN = sizeof(Archive::MAGIC) - 1;
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
BinaryHprof.java | 35 * Prefix of valid magic values from the start of a binary hprof file. 37 static String MAGIC = "JAVA PROFILE "; 40 * Returns the file's magic value as a String if found, otherwise null. 49 if (string.startsWith(MAGIC)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
buildtools.py | 27 # .pyc file (and 'PYC ' resource magic number) 28 MAGIC = imp.get_magic() 248 data = (MAGIC + '\0\0\0\0') + data 429 fc.write('\0\0\0\0') # MAGIC placeholder, written later 434 fc.write(MAGIC)
|
bundlebuilder.py | 237 MAGIC = imp.get_magic() 255 return path, MAGIC + '\0\0\0\0' + marshal.dumps(code) 753 f.write(MAGIC) [all...] |
/external/valgrind/main/coregrind/m_ume/ |
macho.c | 57 #define MAGIC MH_MAGIC 63 #define MAGIC MH_MAGIC_64 516 if (mh.magic != MAGIC) { 517 print("bad executable (no Mach-O magic)\n"); 773 vki_uint32_t magic; local 776 if (size < sizeof(magic)) { 777 print("bad executable (no Mach-O magic)\n"); 780 res = VG_(pread)(fd, &magic, sizeof(magic), offset) 806 vki_uint32_t *magic = (vki_uint32_t *)hdr; local [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
Archive.h | 39 static const char MAGIC[]; ///< magic string 40 static const char THIN_MAGIC[]; ///< magic of thin archive 41 static const size_t MAGIC_LEN; ///< length of magic string 45 static const char MEMBER_MAGIC[]; ///< fmag field magic #
|
/external/emma/core/java12/com/vladium/emma/data/ |
DataFactory.java | 548 final int magic = raf.readInt (); local 549 if (magic != MAGIC) 692 out.writeInt (MAGIC); 805 private static final int MAGIC = 0x454D4D41; // "EMMA"
|
/external/valgrind/main/coregrind/m_debuginfo/ |
readmacho.c | 66 # define MAGIC MH_MAGIC 73 # define MAGIC MH_MAGIC_64 127 if (VG_(ntohl)(fh_be->magic) == FAT_MAGIC) 132 if (mh->magic == MAGIC) 213 fh.magic = VG_(ntohl)(fh_be->magic); 215 if (fh.magic == FAT_MAGIC) { 285 if (mh->magic != MAGIC) { [all...] |
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/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...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
DiskLruCache.java | 92 static final String MAGIC = "libcore.io.DiskLruCache"; 246 String magic = reader.readLine(); local 251 if (!MAGIC.equals(magic) 256 throw new IOException("unexpected journal header: [" + magic + ", " + version + ", " 349 writer.write(MAGIC);
|
/external/proguard/src/proguard/classfile/ |
ClassConstants.java | 32 public static final int MAGIC = 0xCAFEBABE;
|
/frameworks/native/opengl/libagl/ |
egl.cpp | 143 MAGIC = 0x31415265 146 uint32_t magic; member in struct:android::egl_surface_t 177 : magic(MAGIC), dpy(dpy), config(config), ctx(0), zombie(false) 185 magic = 0; 189 ALOGE_IF(magic != MAGIC, "invalid EGLSurface (%p)", this); 190 return magic == MAGIC; [all...] |