HomeSort by relevance Sort by last modified time
    Searched refs:def (Results 626 - 650 of 7993) sorted by null

<<21222324252627282930>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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/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):
  /prebuilts/python/linux-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/linux-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/linux-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():
test_htmlparser.py 11 def __init__(self):
16 def get_events(self):
33 def handle_starttag(self, tag, attrs):
36 def handle_startendtag(self, tag, attrs):
39 def handle_endtag(self, tag):
44 def handle_comment(self, data):
47 def handle_charref(self, data):
50 def handle_data(self, data):
53 def handle_decl(self, data):
56 def handle_entityref(self, data)
    [all...]
  /external/chromium_org/build/android/pylib/
valgrind_tools.py 35 def SetChromeTimeoutScale(device, scale):
48 def __init__(self):
52 def GetTestWrapper(self):
56 def GetUtilWrapper(self):
65 def CopyFiles(self):
69 def SetupEnvironment(self):
76 def CleanUpEnvironment(self):
80 def GetTimeoutScale(self):
84 def NeedsDebugInfo(self):
102 def __init__(self, device)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 45 def visit(self, visitor):
48 def __str__(self):
58 def __init__(self, value):
61 def visit(self, visitor):
67 def __init__(self, name):
70 def visit(self, visitor):
76 def __init__(self, elements):
79 def visit(self, visitor):
85 def __init__(self, name, members):
89 def visit(self, visitor)
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
git_recipes.py 36 def Strip(f):
37 def new_f(*args, **kwargs):
42 def MakeArgs(l):
47 def Quoted(s):
52 def GitIsWorkdirClean(self):
56 def GitBranch(self):
59 def GitCreateBranch(self, name, branch=""):
63 def GitDeleteBranch(self, name):
67 def GitReset(self, name):
71 def GitRemotes(self)
    [all...]
  /external/lldb/test/types/
TestIntegerTypes.py 15 def setUp(self):
24 def test_char_type_with_dsym(self):
30 def test_char_type_from_block_with_dsym(self):
35 def test_char_type_with_dwarf(self):
41 def test_unsigned_char_type_with_dsym(self):
47 def test_unsigned_char_type_from_block_with_dsym(self):
52 def test_unsigned_char_type_with_dwarf(self):
58 def test_short_type_with_dsym(self):
64 def test_short_type_from_block_with_dsym(self):
69 def test_short_type_with_dwarf(self)
    [all...]
TestIntegerTypesExpr.py 15 def setUp(self):
24 def test_char_type_with_dsym(self):
30 def test_char_type_from_block_with_dsym(self):
35 def test_char_type_with_dwarf(self):
41 def test_unsigned_char_type_with_dsym(self):
47 def test_unsigned_char_type_from_block_with_dsym(self):
52 def test_unsigned_char_type_with_dwarf(self):
58 def test_short_type_with_dsym(self):
64 def test_short_type_from_block_with_dsym(self):
69 def test_short_type_with_dwarf(self)
    [all...]
  /external/markdown/
regression-tests.py 18 def setUp(self):
22 def testBlankInput(self):
26 def testWhitespaceOnly(self):
30 def testSimpleInput(self):
37 def setUp(self):
41 def testParseChunk(self):
48 def testParseDocument(self):
61 def setUp(self):
64 def testBlankState(self):
68 def testSetSate(self)
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
model.py 45 def visit(self, visitor):
48 def __str__(self):
58 def __init__(self, value):
61 def visit(self, visitor):
67 def __init__(self, name):
70 def visit(self, visitor):
76 def __init__(self, elements):
79 def visit(self, visitor):
85 def __init__(self, name, members):
89 def visit(self, visitor)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_htmlparser.py 11 def __init__(self):
16 def get_events(self):
33 def handle_starttag(self, tag, attrs):
36 def handle_startendtag(self, tag, attrs):
39 def handle_endtag(self, tag):
44 def handle_comment(self, data):
47 def handle_charref(self, data):
50 def handle_data(self, data):
53 def handle_decl(self, data):
56 def handle_entityref(self, data)
    [all...]
  /developers/build/
build.gradle 34 def repoInfo = "repo info platform/developers/build".execute().text
35 def buildPath = (repoInfo =~ /Mount path: (.*)/)[0][1]
103 def outputPath = outPath("ant");
104 def inputPath = "${project.projectDir}/${samplegen.targetSampleModule()}"
109 def srcPath = "${inputPath}/src/${input}/${filetype[0]}"
121 def outputPath = outPath("gradle")
122 def inputPath = "${project.projectDir}"
147 def srcPath = "${inputPath}/${samplegen.targetSampleModule()}/src/${input}/${filetype}"
164 def removeExcludeBlocksFilter = { line ->
180 def outputPathRoot = outPath("browseable"
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
converter_html_parser.py 9 def __init__(self, io):
14 def handle_starttag(self, tag, attrs):
27 def handle_startendtag(self, tag, attrs):
30 def handle_endtag(self, tag):
39 def handle_data(self, data):
42 def handle_comment(self, data):
45 def handle_entityref(self, name):
48 def handle_charref(self, name):
51 def handle_decl(self, data):
54 def HandleDocFamily(html)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_mock.py 31 def __init__(self, port_obj=None, name=None, cmd=None, env=None, universal_newlines=False, treat_no_data_as_crash=False, logging=False, lines=None, crashed=False):
43 def write(self, bytes):
46 def has_crashed(self):
49 def read_stdout_line(self, deadline):
52 def read_stdout(self, deadline, size):
64 def pop_all_buffered_stderr(self):
67 def read_either_stdout_or_stderr_line(self, deadline):
71 def start(self):
74 def stop(self, timeout_sec=0.0):
78 def kill(self)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations_unittest.py 40 def __init__(self):
44 def turn_off_line_filtering(self):
47 def __call__(self, lineno, category, confidence, message):
51 def get_errors(self):
54 def reset_errors(self):
62 def setUp(self):
66 def assert_lines_lint(self, lines, should_pass, expected_output=None):
94 def test_valid_expectations(self):
97 def test_invalid_expectations(self):
100 def test_tab(self)
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSSettings_test.py 16 def setUp(self):
19 def _ExpectedWarnings(self, expected):
26 def testValidateMSVSSettings_tool_names(self):
42 def testValidateMSVSSettings_settings(self):
283 def testValidateMSBuildSettings_settings(self):
561 def testConvertToMSBuildSettings_empty(self):
571 def testConvertToMSBuildSettings_minimal(self):
603 def testConvertToMSBuildSettings_warnings(self):
655 def testConvertToMSBuildSettings_full_synthetic(self):
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_timeline.py 27 def __init__(self, tab):
30 def __enter__(self):
33 def __exit__(self, *args):
36 def __init__(self, inspector_backend):
42 def is_timeline_recording_running(self):
45 def Start(self):
60 def Stop(self):
72 def _SendSyncRequest(self, request, timeout=60):
93 def _OnNotification(self, msg):
99 def _OnClose(self)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/unittest/
simple_mock_unittest.py 11 def testBasic(self):
17 def testReturn(self):
24 def testArgs(self):
30 def testArgs2(self):
36 def testArgsMismatch(self):
44 def testArgsDontCare(self):
50 def testOnCall(self):
54 def Handler(arg0):
63 def testSubObject(self):
73 def testSubObjectMismatch(self)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
SystemProperties_Delegate.java 42 /*package*/ static String native_get(String key, String def) {
49 return def;
52 /*package*/ static int native_get_int(String key, int def) {
59 return def;
63 /*package*/ static long native_get_long(String key, long def) {
70 return def;
78 /*package*/ static boolean native_get_boolean(String key, boolean def) {
92 return def;
96 /*package*/ static void native_set(String key, String def) {
98 properties.put(key, def);
    [all...]

Completed in 645 milliseconds

<<21222324252627282930>>