HomeSort by relevance Sort by last modified time
    Searched refs:def (Results 76 - 100 of 1496) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/common/thread/
threadedmessagequeue.py 35 def __init__(self):
40 def post(self, message):
44 def stop(self):
48 def take_all(self):
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_input.py 35 def __init__(self, filename, timeout):
manager_worker_broker.py 77 def runtime_options():
88 def get(port, options, client, worker_class):
121 def __init__(self, broker_connection, worker_number, options):
136 def run(self, port):
141 def cancel(self):
149 def __init__(self, broker, options, client, worker_class):
163 def start_worker(self, worker_number):
168 def __init__(self, broker, port, options, client, worker_class):
173 def start_worker(self, worker_number):
178 def run_message_loop(self, delay_secs=None)
    [all...]
  /frameworks/compile/libbcc/tests/
bccarm 10 def compile(args):
15 def runCmd(args):
20 def uname():
23 def unameM():
26 def which(item):
29 def adb(args):
32 def setupArm(file):
46 def compileArm(args):
63 def main():
  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 59 OMX_PARAM_PORTDEFINITIONTYPE def; local
60 InitOMXParams(&def);
62 def.nPortIndex = 0;
63 def.eDir = OMX_DirInput;
64 def.nBufferCountMin = kNumBuffers;
65 def.nBufferCountActual = def.nBufferCountMin;
66 def.nBufferSize = 8192;
67 def.bEnabled = OMX_TRUE;
68 def.bPopulated = OMX_FALSE
    [all...]
  /frameworks/av/media/libstagefright/codecs/raw/
SoftRaw.cpp 54 OMX_PARAM_PORTDEFINITIONTYPE def; local
55 InitOMXParams(&def);
57 def.nPortIndex = 0;
58 def.eDir = OMX_DirInput;
59 def.nBufferCountMin = kNumBuffers;
60 def.nBufferCountActual = def.nBufferCountMin;
61 def.nBufferSize = 32 * 1024;
62 def.bEnabled = OMX_TRUE;
63 def.bPopulated = OMX_FALSE
    [all...]
  /external/v8/tools/
gdb-v8-support.py 63 def has_smi_tag(v):
67 def has_failure_tag(v):
71 def has_heap_object_tag(v):
75 def raw_heap_object(v):
79 def smi_to_int_32(v):
87 def smi_to_int_64(v):
91 def decode_v8_value(v, bitness):
108 def __init__(self, val):
110 def to_string(self):
119 def display_hint(self)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/python24/
versioning_unittest.py 36 def __init__(self, current_version):
54 def _mock_sys(self, current_version):
57 def test_default_minimum_version(self):
62 def compare_version(self, target_version, current_version=None):
69 def compare(self, target_version, current_version=None):
73 def test_returned_current_version(self):
78 def test_returned_target_version(self):
83 def test_target_version_major(self):
89 def test_target_version_minor(self):
95 def test_target_version_micro(self)
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
gmock_class_test.py 37 def StripLeadingWhitespace(self, lines):
41 def assertEqualIgnoreLeadingWhitespace(self, expected_lines, lines):
48 def GenerateMethodSource(self, cpp_source):
57 def testSimpleMethod(self):
68 def testSimpleConstMethod(self):
79 def testStrangeNewlineInParameter(self):
91 def testDoubleSlashCommentsInParameterListAreRemoved(self):
104 def testCStyleCommentsInParameterListAreNotRemoved(self):
118 def testArgsOfTemplateTypes(self):
129 def testReturnTypeWithOneTemplateArg(self)
    [all...]
  /external/chromium/testing/gmock/test/
gmock_output_test.py 59 def ToUnixLineEnding(s):
65 def RemoveReportHeaderAndFooter(output):
76 def RemoveLocations(output):
92 def NormalizeErrorMarker(output):
98 def RemoveMemoryAddresses(output):
104 def RemoveTestNamesOfLeakedMocks(output):
110 def GetLeakyTests(output):
119 def GetNormalizedOutputAndLeakyTests(output):
138 def GetShellCommandOutput(cmd):
144 def GetNormalizedCommandOutputAndLeakyTests(cmd)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
test_files_unittest.py 36 def test_find_no_paths_specified(self):
42 def test_find_one_test(self):
47 def test_find_glob(self):
52 def test_find_with_skipped_directories(self):
57 def test_find_with_skipped_directories_2(self):
62 def test_is_test_file(self):
73 def join(self, *paths):
76 def normpath(self, path):
81 def assert_filesystem_normalizes(self, filesystem):
86 def test_mocked_win(self)
    [all...]
server_process_unittest.py 35 def __init__(self, server_process):
38 def fileno(self):
41 def write(self, line):
45 def close(self):
50 def __init__(self, server_process):
56 def poll(self):
61 def _start(self):
68 def test_broken_pipe(self):
  /external/libvpx/
args.c 36 a.def = NULL;
40 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv)
49 if (def->short_name
50 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
51 && !strcmp(arg.argv[0] + 1, def->short_name))
55 arg.val = def->has_val ? arg.argv[1] : NULL;
56 arg.argv_step = def->has_val ? 2 : 1;
58 else if (def->long_name)
60 int name_len = strlen(def->long_name);
64 && !strncmp(arg.argv[0] + 2, def->long_name, name_len
118 const struct arg_def *def = *defs; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 67 def __init__(self, elementDescription):
73 def getMessage(self):
80 def __init__(self, elementDescription=None):
114 def getChild(self, i):
118 def getChildCount(self):
122 def getParent(self):
127 def setParent(self, t):
133 def hasAncestor(self, ttype):
138 def getAncestor(self, ttype):
143 def getAncestors(self)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t042ast.py 7 ## def lexerClass(self, base):
9 ## def reportError(self, re):
16 def parserClass(self, base):
18 def recover(self, input, re):
25 def parse(self, text, method, rArgs=[], **kwargs):
39 def testR1(self):
47 def testR2a(self):
55 def testR2b(self):
63 def testR3a(self):
71 def testR3b(self)
    [all...]
t029synpredgate.py 7 def setUp(self):
11 def testValid1(self):
  /development/testrunner/tests/
android_mk_tests.py 28 def testHasGTest(self):
34 def testHasGTest_lib(self):
40 def testHasGTest_false(self):
45 def testHasJavaLibrary(self):
51 def testHasJavaLibrary_missing(self):
60 def testHasJavaLibrary_false(self):
69 def testGetExpandedVariable(self):
76 def testGetExpandedVariable_loop(self):
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
event-hub.rb 18 def initialize( *listeners )
23 def add( *listeners )
27 def add_child( root, child )
33 def backtrack( level )
39 def become_root( new_root, old_root )
45 def begin_backtrack( level )
51 def begin_resync()
57 def commence()
63 def consume_hidden_token( tree )
69 def consume_node( tree
    [all...]
  /external/chromium/third_party/libjingle/source/talk/site_scons/site_tools/
talk_noops.py 11 def generate(env):
19 def exists(env):
  /external/clang/utils/TestUtils/
deep-stack.py 3 def pcall(f, N):
12 def main():
  /external/linux-tools-perf/scripts/python/
check-perf-trace.py 21 def trace_begin():
25 def trace_end():
28 def irq__softirq_entry(event_name, context, common_cpu,
39 def kmem__kmalloc(event_name, context, common_cpu,
54 def trace_unhandled(event_name, context, event_fields_dict):
60 def print_header(event_name, cpu, secs, nsecs, pid, comm):
65 def print_uncommon(context):
70 def print_unhandled():
  /external/markdown/markdown/extensions/
extra.py 44 def extendMarkdown(self, md, md_globals):
48 def makeExtension(configs={}):
  /external/webkit/Tools/QueueStatusServer/model/
queuepropertymixin.py 31 def _queue_getter(self):
36 def _queue_setter(self, queue):
  /external/webkit/Tools/Scripts/webkitpy/common/system/
fileset.py 31 def __init__(self, fileset, filename, filesystem=None):
37 def __str__(self):
40 def close(self):
43 def contents(self):
48 def save_to(self, path, filename=None):
59 def delete(self):
62 def name(self):
65 def splitext(self):
zip_mock.py 30 def __init__(self, filesystem=None):
34 def __str__(self):
37 def insert(self, filename, content):
40 def namelist(self):
43 def open(self, filename):
46 def read(self, filename):
49 def extract(self, filename, path):
54 def delete(self, filename):

Completed in 833 milliseconds

1 2 34 5 6 7 8 91011>>