/external/chromium_org/tools/ |
PRESUBMIT.py | 13 def _ExamineBisectConfigFile(input_api, output_api): 29 def _CheckNoChangesToBisectConfigFile(input_api, output_api): 39 def CommonChecks(input_api, output_api): 44 def CheckChangeOnUpload(input_api, output_api): 47 def CheckChangeOnCommit(input_api, output_api):
|
/external/chromium_org/tools/gn/secondary/build/config/win/ |
get_msvc_config.py | 14 def FormatStringForGN(x): 17 def PrintListOfStrings(x): 27 def GetIncludes(): 35 def _FormatAsEnvironmentBlock(envvar_dict): 46 def WriteEnvFile(file_path, values):
|
/external/chromium_org/tools/grit/grit/extern/ |
FP.py | 22 def _UnsignedFingerPrintImpl(str, encoding='utf-8'): 31 def UnsignedFingerPrint(str, encoding='utf-8'): 41 def FingerPrint(str, encoding='utf-8'): 49 def UseUnsignedFingerPrintFromModule(module_name): 61 def SetUnsignedFingerPrint(function_object):
|
/external/chromium_org/tools/grit/grit/gather/ |
txt.py | 18 def Parse(self): 22 def GetText(self): 26 def GetTextualIds(self): 29 def GetCliques(self): 33 def Translate(self, lang, pseudo_if_not_available=True,
|
/external/chromium_org/tools/json_schema_compiler/highlighters/ |
pygments_highlighter.py | 17 def __init__(self): 23 def GetCSS(self, style): 28 def GetCodeElement(self, code, style): 33 def DisplayName(self): 36 def GetStyles(self):
|
/external/chromium_org/tools/telemetry/telemetry/core/chrome/ |
inspector_runtime.py | 7 def __init__(self, inspector_backend): 14 def _OnNotification(self, msg): 17 def _OnClose(self): 20 def Execute(self, expr, timeout=60): 27 def Evaluate(self, expr, timeout=60):
|
misc_web_contents_backend.py | 12 def __init__(self, browser_backend): 15 def GetOobe(self): 24 def _CreateInspectorBackend(self, debugger_url): 29 def _ListWebContents(self, timeout=None): 33 def _FindWebContentsInfo(self):
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
posix_platform_backend_unittest.py | 11 def _GetChildPids(self, mock_ps_output, pid): 16 def _GetPsOutput(self, columns, pid=None): 21 def testGetChildPidsWithGrandChildren(self): 26 def testGetChildPidsWithNoSuchPid(self): 31 def testGetChildPidsWithZombieChildren(self):
|
proc_util.py | 11 def _ConvertKbToByte(value): 14 def _GetProcFileDict(contents): 21 def GetSystemCommitCharge(meminfo_contents): 28 def GetMemoryStats(status_contents, stats): 37 def GetIOStats(io_contents):
|
/external/chromium_org/v8/tools/testrunner/objects/ |
output.py | 35 def __init__(self, exit_code, timed_out, stdout, stderr): 41 def HasCrashed(self): 51 def HasTimedOut(self): 54 def Pack(self): 58 def Unpack(packed):
|
/external/mesa3d/src/gallium/auxiliary/indices/ |
u_unfilled_gen.py | 52 def prolog(): 95 def vert( intype, outtype, v0 ): 101 def line( intype, outtype, ptr, v0, v1 ): 109 def do_tri( intype, outtype, ptr, v0, v1, v2 ): 114 def do_quad( intype, outtype, ptr, v0, v1, v2, v3 ): 120 def name(intype, outtype, prim): 126 def preamble(intype, outtype, prim): 139 def postamble(): 143 def tris(intype, outtype): 151 def tristrip(intype, outtype) [all...] |
/external/v8/tools/ |
utils.py | 34 def ReadLinesFrom(name): 46 def GuessOS(): 73 def GuessArchitecture(): 90 def GuessWordsize(): 97 def IsWindows():
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_abcoll.py | 24 def _hasattr(C, attr): 36 def __hash__(self): 40 def __subclasshook__(cls, C): 59 def __iter__(self): 64 def __subclasshook__(cls, C): 76 def next(self): 80 def __iter__(self): 84 def __subclasshook__(cls, C): 95 def __len__(self): 99 def __subclasshook__(cls, C) [all...] |
commands.py | 37 def getstatus(file): 48 def getoutput(cmd): 56 def getstatusoutput(cmd): 69 def mk2arg(head, x): 81 def mkarg(x):
|
mutex.py | 21 def __init__(self): 26 def test(self): 30 def testandset(self): 39 def lock(self, function, argument): 48 def unlock(self):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/ |
ascii.py | 48 def _ctoi(c): 54 def isalnum(c): return isalpha(c) or isdigit(c) 55 def isalpha(c): return isupper(c) or islower(c) 56 def isascii(c): return _ctoi(c) <= 127 # ? 57 def isblank(c): return _ctoi(c) in (8,32) 58 def iscntrl(c): return _ctoi(c) <= 31 59 def isdigit(c): return _ctoi(c) >= 48 and _ctoi(c) <= 57 60 def isgraph(c): return _ctoi(c) >= 33 and _ctoi(c) <= 126 61 def islower(c): return _ctoi(c) >= 97 and _ctoi(c) <= 122 62 def isprint(c): return _ctoi(c) >= 32 and _ctoi(c) <= 12 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
install_headers.py | 24 def initialize_options(self): 29 def finalize_options(self): 35 def run(self): 45 def get_inputs(self): 48 def get_outputs(self):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
undefined.py | 18 def encode(self,input,errors='strict'): 21 def decode(self,input,errors='strict'): 25 def encode(self, input, final=False): 29 def decode(self, input, final=False): 40 def getregentry():
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
hooks.py | 28 def setUp(self): 31 def tearDown(self): 34 def CheckCreateCollationNotCallable(self): 42 def CheckCreateCollationNotAscii(self): 50 def CheckCollationIsUsed(self): 53 def mycoll(x, y): 79 def CheckCollationReturnsLargeInteger(self): 80 def mycoll(x, y): 98 def CheckCollationRegisterTwice(self): 112 def CheckDeregisterCollation(self) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pep263.py | 8 def test_pep263(self): 18 def test_compilestring(self): 26 def test_issue3297(self): 33 def test_issue7820(self): 44 def test_main():
|
test_startfile.py | 20 def test_nonexisting(self): 23 def test_nonexisting_u(self): 26 def test_empty(self): 35 def test_empty_u(self): 41 def test_main():
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_abcoll.py | 24 def _hasattr(C, attr): 36 def __hash__(self): 40 def __subclasshook__(cls, C): 59 def __iter__(self): 64 def __subclasshook__(cls, C): 76 def next(self): 80 def __iter__(self): 84 def __subclasshook__(cls, C): 95 def __len__(self): 99 def __subclasshook__(cls, C) [all...] |
commands.py | 37 def getstatus(file): 48 def getoutput(cmd): 56 def getstatusoutput(cmd): 69 def mk2arg(head, x): 81 def mkarg(x):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/ |
ascii.py | 48 def _ctoi(c): 54 def isalnum(c): return isalpha(c) or isdigit(c) 55 def isalpha(c): return isupper(c) or islower(c) 56 def isascii(c): return _ctoi(c) <= 127 # ? 57 def isblank(c): return _ctoi(c) in (8,32) 58 def iscntrl(c): return _ctoi(c) <= 31 59 def isdigit(c): return _ctoi(c) >= 48 and _ctoi(c) <= 57 60 def isgraph(c): return _ctoi(c) >= 33 and _ctoi(c) <= 126 61 def islower(c): return _ctoi(c) >= 97 and _ctoi(c) <= 122 62 def isprint(c): return _ctoi(c) >= 32 and _ctoi(c) <= 12 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
install_headers.py | 24 def initialize_options(self): 29 def finalize_options(self): 35 def run(self): 45 def get_inputs(self): 48 def get_outputs(self):
|