/external/chromium/build/ |
gyp_chromium | 22 # On Windows, Psyco shortens warm runs of build/gyp_chromium by about 24 # seconds. Conversely, memory usage of build/gyp_chromium with Psyco 27 # Psyco uses native libraries, so we need to load a different 29 # been tested whether using Psyco on our Mac and Linux builds is worth 35 import psyco namespace 37 psyco = None variable 39 psyco = None variable 101 # Use the Psyco JIT if available. 102 if psyco: 103 psyco.profile( [all...] |
/external/chromium_org/build/ |
gyp_chromium | 36 # On Windows, Psyco shortens warm runs of build/gyp_chromium by about 38 # seconds. Conversely, memory usage of build/gyp_chromium with Psyco 41 # Psyco uses native libraries, so we need to load a different 43 # been tested whether using Psyco on our Mac and Linux builds is worth 49 import psyco namespace 51 psyco = None variable 53 psyco = None variable 87 # Use the Psyco JIT if available. 88 if psyco: 89 psyco.profile( [all...] |
/external/chromium_org/tools/grit/grit/ |
grit_runner.py | 163 self.psyco = False 167 (opts, args) = getopt.getopt(args, 'g:qdvxc:i:p:h:', ('psyco',)) 182 elif key == '--psyco': self.psyco = True 252 if options.psyco: 253 # Psyco is a specializing JIT for Python. Early tests indicate that it 255 # compilations. See http://psyco.sourceforge.net/ 256 import psyco namespace 257 psyco.profile()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
cparse.py | 780 import psyco namespace 781 from psyco.classes import * 787 psyco = _psyco() variable in class:TransUnit 788 psyco.bind( Lexer.get_token ) 789 psyco.bind( Node )
|