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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Bastion.py 47 def __init__(self, get, name):
60 def __repr__(self):
70 def __getattr__(self, name):
87 def Bastion(object, filter = lambda name: name[:1] != '_',
117 def get1(name, object=object, filter=filter):
125 def get2(name, get1=get1):
134 def _test():
137 def __init__(self):
139 def add(self, n):
141 def _add(self, n)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
bz2_codec.py 15 def bz2_encode(input,errors='strict'):
29 def bz2_decode(input,errors='strict'):
49 def encode(self, input, errors='strict'):
51 def decode(self, input, errors='strict'):
55 def __init__(self, errors='strict'):
60 def encode(self, input, final=False):
67 def reset(self):
71 def __init__(self, errors='strict'):
76 def decode(self, input, final=False):
82 def reset(self)
    [all...]
zlib_codec.py 14 def zlib_encode(input,errors='strict'):
28 def zlib_decode(input,errors='strict'):
48 def encode(self, input, errors='strict'):
50 def decode(self, input, errors='strict'):
54 def __init__(self, errors='strict'):
59 def encode(self, input, final=False):
66 def reset(self):
70 def __init__(self, errors='strict'):
75 def decode(self, input, final=False):
82 def reset(self)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
_exceptions.py 19 def __init__(self, msg, exception=None):
26 def getMessage(self):
30 def getException(self):
34 def __str__(self):
38 def __getitem__(self, ix):
59 def __init__(self, msg, exception, locator):
72 def getColumnNumber(self):
77 def getLineNumber(self):
81 def getPublicId(self):
85 def getSystemId(self)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Bastion.py 47 def __init__(self, get, name):
60 def __repr__(self):
70 def __getattr__(self, name):
87 def Bastion(object, filter = lambda name: name[:1] != '_',
117 def get1(name, object=object, filter=filter):
125 def get2(name, get1=get1):
134 def _test():
137 def __init__(self):
139 def add(self, n):
141 def _add(self, n)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
bz2_codec.py 15 def bz2_encode(input,errors='strict'):
29 def bz2_decode(input,errors='strict'):
49 def encode(self, input, errors='strict'):
51 def decode(self, input, errors='strict'):
55 def __init__(self, errors='strict'):
60 def encode(self, input, final=False):
67 def reset(self):
71 def __init__(self, errors='strict'):
76 def decode(self, input, final=False):
82 def reset(self)
    [all...]
zlib_codec.py 14 def zlib_encode(input,errors='strict'):
28 def zlib_decode(input,errors='strict'):
48 def encode(self, input, errors='strict'):
50 def decode(self, input, errors='strict'):
54 def __init__(self, errors='strict'):
59 def encode(self, input, final=False):
66 def reset(self):
70 def __init__(self, errors='strict'):
75 def decode(self, input, final=False):
82 def reset(self)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
_exceptions.py 19 def __init__(self, msg, exception=None):
26 def getMessage(self):
30 def getException(self):
34 def __str__(self):
38 def __getitem__(self, ix):
59 def __init__(self, msg, exception, locator):
72 def getColumnNumber(self):
77 def getLineNumber(self):
81 def getPublicId(self):
85 def getSystemId(self)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_failures.py 34 def is_reftest_failure(failure_list):
41 def determine_result_type(failure_list):
88 def loads(s):
92 def message(self):
96 def __eq__(self, other):
99 def __ne__(self, other):
102 def __hash__(self):
105 def dumps(self):
109 def driver_needs_restart(self):
115 def __init__(self, is_reftest=False)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
args.c 35 a.def = NULL;
39 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv) {
47 if (def->short_name
48 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
49 && !strcmp(arg.argv[0] + 1, def->short_name)) {
52 arg.val = def->has_val ? arg.argv[1] : NULL;
53 arg.argv_step = def->has_val ? 2 : 1;
54 } else if (def->long_name) {
55 const size_t name_len = strlen(def->long_name);
59 && !strncmp(arg.argv[0] + 2, def->long_name, name_len
107 const struct arg_def *def = *defs; local
    [all...]
  /external/chromium_org/tools/strict_enum_value_checker/
strict_enum_value_checker_test.py 14 def __init__(self):
17 def info(self, message):
20 def debug(self, message):
24 def __init__(self):
31 def AffectedFiles(self, include_deletes=None):
37 def __init__(self, message, items=None, long_text=""):
43 def __init__(self, message, items, long_text=""):
48 def __init__(self, message, items, long_text=""):
53 def __init__(self, message, items, long_text=""):
59 def __init__(self, local_path, old_contents, new_contents)
    [all...]
  /external/libvpx/libvpx/
args.c 35 a.def = NULL;
39 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv) {
47 if (def->short_name
48 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
49 && !strcmp(arg.argv[0] + 1, def->short_name)) {
52 arg.val = def->has_val ? arg.argv[1] : NULL;
53 arg.argv_step = def->has_val ? 2 : 1;
54 } else if (def->long_name) {
55 const size_t name_len = strlen(def->long_name);
59 && !strncmp(arg.argv[0] + 2, def->long_name, name_len
107 const struct arg_def *def = *defs; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
args.c 35 a.def = NULL;
39 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv) {
47 if (def->short_name
48 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
49 && !strcmp(arg.argv[0] + 1, def->short_name)) {
52 arg.val = def->has_val ? arg.argv[1] : NULL;
53 arg.argv_step = def->has_val ? 2 : 1;
54 } else if (def->long_name) {
55 const size_t name_len = strlen(def->long_name);
59 && !strncmp(arg.argv[0] + 2, def->long_name, name_len
107 const struct arg_def *def = *defs; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_property.py 21 def __init__(self):
25 def spam(self):
30 def spam(self, value):
34 def spam(self):
40 def spam(self):
45 def spam(self, value):
49 def spam(self):
54 def _get_spam(self):
60 def spam(self):
66 def spam(self)
    [all...]
test_enumerate.py 8 def __init__(self, seqn):
10 def __getitem__(self, i):
15 def __init__(self, seqn):
18 def __iter__(self):
20 def next(self):
28 def __init__(self, seqn):
31 def __iter__(self):
37 def __init__(self, seqn):
40 def next(self):
48 def __init__(self, seqn)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_property.py 21 def __init__(self):
25 def spam(self):
30 def spam(self, value):
34 def spam(self):
40 def spam(self):
45 def spam(self, value):
49 def spam(self):
54 def _get_spam(self):
60 def spam(self):
66 def spam(self)
    [all...]
test_enumerate.py 8 def __init__(self, seqn):
10 def __getitem__(self, i):
15 def __init__(self, seqn):
18 def __iter__(self):
20 def next(self):
28 def __init__(self, seqn):
31 def __iter__(self):
37 def __init__(self, seqn):
40 def next(self):
48 def __init__(self, seqn)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mock.py 48 def __init__(self):
52 def write(self, data):
57 def written_data(self):
70 def __init__(self, read_data):
82 def readline(self):
92 def read(self, length):
100 def _read_up_to(self, end_index):
114 def __init__(self):
118 def readline(self):
127 def read(self, length)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
__init__.py 8 def GetHostPlatform():
19 def __init__(self, platform_backend):
22 def IsRawDisplayFrameRateSupported(self):
26 def StartRawDisplayFrameRateMeasurement(self):
30 def StopRawDisplayFrameRateMeasurement(self):
35 def __init__(self, name, value, unit):
41 def name(self):
45 def value(self):
49 def unit(self):
52 def GetRawDisplayFrameRateMeasurements(self)
    [all...]
mac_platform_backend.py 20 def __init__(self):
26 def StartRawDisplayFrameRateMeasurement(self):
29 def StopRawDisplayFrameRateMeasurement(self):
32 def GetRawDisplayFrameRateMeasurements(self):
35 def IsThermallyThrottled(self):
38 def HasBeenThermallyThrottled(self):
41 def _GetIdleWakeupCount(self, pid):
52 def GetCpuStats(self, pid):
75 def __init__(self):
96 def GetCpuTimestamp(self)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page.py 12 def __init__(self, url, page_set=None, base_dir=None, name=''):
30 def _SchemeErrorCheck(self):
41 def RunNavigateSteps(self, action_runner):
44 def CanRunOnBrowser(self, browser_info):
55 def page_set(self):
59 def name(self):
63 def url(self):
66 def GetSyntheticDelayCategories(self):
74 def __lt__(self, other):
77 def __cmp__(self, other)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 90 def Manager():
102 def Pipe(duplex=True):
109 def cpu_count():
138 def freeze_support():
147 def get_logger():
154 def log_to_stderr(level=None):
161 def allow_connection_pickling():
171 def Lock():
178 def RLock():
185 def Condition(lock=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
support.py 8 def test_hash(self):
33 def test_eq(self):
39 def test_ne(self):
46 def __init__(self, log):
50 def startTest(self, test):
54 def startTestRun(self):
58 def stopTest(self, test):
62 def stopTestRun(self):
66 def addFailure(self, *args):
70 def addSuccess(self, *args)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 90 def Manager():
102 def Pipe(duplex=True):
109 def cpu_count():
138 def freeze_support():
147 def get_logger():
154 def log_to_stderr(level=None):
161 def allow_connection_pickling():
171 def Lock():
178 def RLock():
185 def Condition(lock=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
support.py 8 def test_hash(self):
33 def test_eq(self):
39 def test_ne(self):
46 def __init__(self, log):
50 def startTest(self, test):
54 def startTestRun(self):
58 def stopTest(self, test):
62 def stopTestRun(self):
66 def addFailure(self, *args):
70 def addSuccess(self, *args)
    [all...]

Completed in 1607 milliseconds

<<11121314151617181920>>