HomeSort by relevance Sort by last modified time
    Searched refs:marshal (Results 51 - 75 of 85) sorted by null

1 23 4

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 42 import marshal namespace
46 co = marshal.loads(ms)
52 ms = marshal.dumps(co)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 42 import marshal namespace
46 co = marshal.loads(ms)
52 ms = marshal.dumps(co)
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
LayoutXmlProcessor.java 142 marshaller.marshal(layout, writer);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
SOAPParser.java 146 mo.marshal(out);
MOManager.java 205 tree.marshal(out);
301 tree.marshal(out);
317 tree.marshal(out);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ihooks.py 314 import marshal namespace
316 code = marshal.load(file)
pkgutil.py 21 import marshal namespace
28 return marshal.load(stream)
profile.py 30 import marshal namespace
415 marshal.dump(self.stats, f)
pstats.py 26 import marshal namespace
36 that was emitted (via marshal) from the Profile class.
110 self.stats = marshal.load(f)
167 marshal.dump(self.stats, f)
modulefinder.py 7 import marshal namespace
296 co = marshal.load(fp)
pickle.py 32 import marshal namespace
53 # Why use struct.pack() for pickling but marshal.loads() for
54 # unpickling? struct.pack() is 40% faster than marshal.dumps(), but
55 # marshal.loads() is twice as fast as struct.unpack()!
56 mloads = marshal.loads
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 3 import marshal namespace
29 data = marshal.dumps(co)
test_import.py 3 import marshal namespace
475 code = marshal.load(f)
487 marshal.dump(code, f)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ihooks.py 314 import marshal namespace
316 code = marshal.load(file)
pkgutil.py 21 import marshal namespace
28 return marshal.load(stream)
profile.py 30 import marshal namespace
415 marshal.dump(self.stats, f)
pstats.py 26 import marshal namespace
36 that was emitted (via marshal) from the Profile class.
110 self.stats = marshal.load(f)
167 marshal.dump(self.stats, f)
modulefinder.py 7 import marshal namespace
296 co = marshal.load(fp)
pickle.py 32 import marshal namespace
53 # Why use struct.pack() for pickling but marshal.loads() for
54 # unpickling? struct.pack() is 40% faster than marshal.dumps(), but
55 # marshal.loads() is twice as fast as struct.unpack()!
56 mloads = marshal.loads
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 3 import marshal namespace
29 data = marshal.dumps(co)
test_import.py 3 import marshal namespace
475 code = marshal.load(f)
487 marshal.dump(code, f)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 36 import imp, marshal namespace
255 return path, MAGIC + '\0\0\0\0' + marshal.dumps(code)
755 marshal.dump(code, f)
    [all...]
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 3 import marshal namespace
121 marshal.dump(self.code, f)
126 # compile.c uses marshal to write a long directly, with
129 # same effect is to call marshal and then skip the code.
    [all...]

Completed in 804 milliseconds

1 23 4