HomeSort by relevance Sort by last modified time
    Searched full:self (Results 201 - 225 of 3739) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues.py 66 def __init__(self, options=None): # Default values should never be collections (like []) as default values are shared between invocations
71 Command.__init__(self, "Run the %s" % self.name, options=options_list)
72 self._iteration_count = 0
74 def _cc_watchers(self, bug_id):
76 self._tool.bugs.add_cc_to_bug(bug_id, self.watchers)
81 def run_webkit_patch(self, args):
82 webkit_patch_args = [self._tool.path()]
87 webkit_patch_args += ["--status-host=%s" % self._tool.status_server.host
    [all...]
  /external/srec/shared/include/
IntArrayList.h 45 * @param self IntArrayList handle
48 ESR_ReturnCode(*add)(struct IntArrayList_t* self, int element);
53 * @param self IntArrayList handle
56 ESR_ReturnCode(*remove)(struct IntArrayList_t* self, int element);
61 * @param self IntArrayList handle
63 ESR_ReturnCode(*removeAll)(struct IntArrayList_t* self);
68 * @param self IntArrayList handle
72 ESR_ReturnCode(*contains)(struct IntArrayList_t* self, int element, ESR_BOOL* exists);
77 * @param self IntArrayList handle
80 ESR_ReturnCode(*getSize)(struct IntArrayList_t* self, size_t* size)
    [all...]
ESR_SessionType.h 47 * @param self ESR_SessionType handle
53 ESR_ReturnCode(*getProperty)(struct ESR_SessionType_t* self, const LCHAR* name, void** value, VariableTypes type);
57 * @param self ESR_SessionType handle
60 * @return ESR_INVALID_ARGUMENT if self is null or property cannot be found
62 ESR_ReturnCode(*getPropertyType)(struct ESR_SessionType_t* self, const LCHAR* name, VariableTypes* type);
66 * @param self ESR_SessionType handle
71 ESR_ReturnCode(*getInt)(struct ESR_SessionType_t* self, const LCHAR* name, int* value);
79 ESR_ReturnCode(*getUint16_t)(struct ESR_SessionType_t* self, const LCHAR* name, asr_uint16_t* value);
83 * @param self ESR_SessionType handle
89 ESR_ReturnCode(*getSize_t)(struct ESR_SessionType_t* self, const LCHAR* name, size_t* value)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 54 def __init__(self, port_obj, name, cmd, env=None, executive=Executive()):
55 self._port = port_obj
56 self._name = name
57 self._cmd = cmd
58 self._env = env
59 self._reset()
60 self._executive = executive
62 def _reset(self):
63 self._proc = None
64 self._output = '
    [all...]
mock_drt_unittest.py 48 def make_port(self, options=mock_options):
54 def test_default_worker_model(self):
58 def test_port_name_in_constructor(self):
59 self.assertTrue(mock_drt.MockDRTPort(port_name='mock-test'))
61 def test_acquire_http_lock(self):
63 self.make_port().acquire_http_lock()
65 def test_release_http_lock(self):
67 self.make_port().release_http_lock()
69 def test_check_build(self):
70 port = self.make_port(
    [all...]
webkit.py 53 def __init__(self, **kwargs):
54 base.Port.__init__(self, **kwargs)
55 self._cached_apache_path = None
59 if not hasattr(self._options, "pixel_tests") or self._options.pixel_tests == None:
60 self._options.pixel_tests = False
62 def baseline_path(self):
63 return self._webkit_baseline_path(self._name)
65 def baseline_search_path(self)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_unittest_helper.mm 19 for (BookmarkButton* button in self) {
31 return [[self buttons] buttonWithTitleEqualTo:title];
39 return [[self buttons] buttonWithTitleEqualTo:title];
47 NSRect frame = [self frame];
49 center = [[self superview] convertPoint:center toView:nil];
54 NSRect frame = [self frame];
56 top = [[self superview] convertPoint:top toView:nil];
61 NSRect frame = [self frame];
63 bottom = [[self superview] convertPoint:bottom toView:nil];
68 NSRect frame = [self frame]
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebPreferences.mm 208 while ([[self class] _getInstanceForIdentifier:fakeIdentifier]){
212 return [self initWithIdentifier:fakeIdentifier];
217 self = [super init];
218 if (!self)
224 WebPreferences *instance = [[self class] _getInstanceForIdentifier:anIdentifier];
226 [self release];
234 [[self class] _setInstance:self forIdentifier:_private->identifier];
236 [self _postPreferencesChangedNotification];
238 return self;
    [all...]
  /external/protobuf/python/
mox.py 79 def __init__(self, expected_methods):
93 Error.__init__(self)
94 self._expected_methods = expected_methods
96 def __str__(self):
98 for i, m in enumerate(self._expected_methods)])
109 def __init__(self, unexpected_method, expected):
121 Error.__init__(self)
122 self._unexpected_method = unexpected_method
123 self._expected = expected
125 def __str__(self)
    [all...]
  /bionic/libc/kernel/tools/
cpp.py 72 def __init__(self):
73 self.id = None
74 self.value = None
75 self.lineno = 0
76 self.colno = 0
78 def set(self,id,val=None):
79 self.id = id
81 self.value = val
83 self.value = id
86 def copyFrom(self,src)
    [all...]
  /external/webkit/Tools/QueueStatusServer/model/
activeworkitems.py 44 def _item_time_pairs(self):
45 return zip(self.item_ids, self.item_dates)
47 def _set_item_time_pairs(self, pairs):
51 self.item_ids, self.item_dates = map(list, zip(*pairs))
53 self.item_ids = []
54 self.item_dates = []
56 def _append_item_time_pair(self, pair):
57 self.item_ids.append(pair[0]
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
deprecated_logging.py 49 def __init__(self, *files):
50 self.files = files
53 def write(self, bytes):
54 for file in self.files:
59 def __init__(self):
60 self._original_stdout = None
61 self._original_stderr = None
62 self._files_for_output = []
64 def add_log(self, path):
65 log_file = self._open_log_file(path
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
expectedfailures_unittest.py 35 def __init__(self, failing_tests=[], failure_limit=10):
36 self._failing_tests = failing_tests
37 self._failure_limit_count = failure_limit
39 def failure_limit_count(self):
40 return self._failure_limit_count
42 def failing_tests(self):
43 return self._failing_tests
47 def _assert_can_trust(self, results, can_trust):
48 self.assertEquals(ExpectedFailures()._can_trust_results(results), can_trust)
50 def test_can_trust_results(self)
    [all...]
sheriffircbot.py 36 def __init__(self, password, message_queue, wakeup_event):
37 self._password = password
38 self._message_queue = message_queue
39 self._wakeup_event = wakeup_event
43 def irc_message_received(self, nick, message):
44 self._message_queue.post([nick, message])
45 self._wakeup_event.set()
47 def irc_nickname(self):
50 def irc_password(self):
51 return self._passwor
    [all...]
  /development/testrunner/
coverage.py 57 def __init__(self, adb_interface):
58 self._root_path = android_build.GetTop()
59 self._output_root_path = os.path.join(self._root_path,
60 self._COVERAGE_REPORT_PATH)
61 self._emma_jar_path = os.path.join(self._root_path, self._EMMA_JAR)
62 self._adb = adb_interface
63 self._targets_manifest = self._ReadTargets(
    [all...]
  /external/expat/amiga/
expat_vectors.c 172 uint32 _Expat_Obtain(struct ExpatIFace *Self)
174 return ++Self->Data.RefCount;
177 uint32 _Expat_Release(struct ExpatIFace *Self)
179 return --Self->Data.RefCount;
182 XML_Parser _Expat_XML_ParserCreate(struct ExpatIFace * Self, const XML_Char *encoding)
187 XML_Parser _Expat_XML_ParserCreateNS(struct ExpatIFace * Self, const XML_Char *encoding, XML_Char nsSep)
192 XML_Parser _Expat_XML_ParserCreate_MM(struct ExpatIFace * Self, const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *namespaceSeparator)
197 XML_Parser _Expat_XML_ExternalEntityParserCreate(struct ExpatIFace * Self, XML_Parser parser, const XML_Char *context, const XML_Char *encoding)
202 void _Expat_XML_ParserFree(struct ExpatIFace *Self, XML_Parser parser)
207 enum XML_Status _Expat_XML_Parse(struct ExpatIFace * Self, XML_Parser parser, const char * s, int len, int isFinal
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
buildbot.py 55 def __init__(self, name, buildbot):
56 self._name = name
57 self._buildbot = buildbot
58 self._builds_cache = {}
59 self._revision_to_build_number = None
60 self._browser = Browser()
61 self._browser.set_handle_robots(False) # The builder pages are excluded by robots.txt
63 def name(self):
64 return self._name
66 def results_url(self)
    [all...]
  /external/v8/tools/
ll_prof.py 85 def __init__(self, name, start_address, end_address, origin, origin_offset):
86 self.id = Code._id
88 self.name = name
89 self.other_names = None
90 self.start_address = start_address
91 self.end_address = end_address
92 self.origin = origin
93 self.origin_offset = origin_offset
94 self.self_ticks = 0
95 self.self_ticks_map = Non
    [all...]
  /external/bluetooth/bluez/audio/
gstavdtpsink.c 125 static int gst_avdtp_sink_audioservice_send(GstAvdtpSink *self,
127 static int gst_avdtp_sink_audioservice_expect(GstAvdtpSink *self,
142 static void gst_avdtp_sink_transport_release(GstAvdtpSink *self)
147 msg = dbus_message_new_method_call("org.bluez", self->transport,
154 dbus_connection_send(self->data->conn, msg, NULL);
161 GstAvdtpSink *self = GST_AVDTP_SINK(basesink); local
163 GST_INFO_OBJECT(self, "stop");
165 if (self->watch_id != 0) {
166 g_source_remove(self->watch_id);
167 self->watch_id = 0
206 GstAvdtpSink *self = GST_AVDTP_SINK(object); local
1202 GstAvdtpSink *self = GST_AVDTP_SINK(user_data); local
1235 GstAvdtpSink *self = GST_AVDTP_SINK(basesink); local
1432 GstAvdtpSink *self = GST_AVDTP_SINK(basesink); local
1722 GstAvdtpSink *self = GST_AVDTP_SINK(basesink); local
1740 GstAvdtpSink *self = GST_AVDTP_SINK(basesink); local
1752 GstAvdtpSink *self = GST_AVDTP_SINK(basesink); local
    [all...]
  /hardware/ril/mock-ril/src/python/
tcs.py 69 def __init__(self):
70 self.cmd = 0
71 self.token = 0
72 self.status = 0
73 self.length_protobuf = 0
75 def sendHeader(self, s):
85 mh.cmd = self.cmd
86 mh.token = self.token
87 mh.status = self.status
88 mh.length_data = self.length_protobu
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations.py 88 def __init__(self, port, tests, expectations, test_config,
105 self._expected_failures = TestExpectationsFile(port, expectations,
114 def get_expectations_json_for_all_platforms(self):
116 self._expected_failures.get_expectations_json_for_all_platforms())
118 def get_rebaselining_failures(self):
119 return (self._expected_failures.get_test_set(REBASELINE, FAIL) |
120 self._expected_failures.get_test_set(REBASELINE, IMAGE) |
121 self._expected_failures.get_test_set(REBASELINE, TEXT) |
122 self._expected_failures.get_test_set(REBASELINE,
124 self._expected_failures.get_test_set(REBASELINE, AUDIO)
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/GObject/
WebKitDOMTestObj.cpp 60 webkit_dom_test_obj_void_method(WebKitDOMTestObj* self)
62 g_return_if_fail(self);
64 WebCore::TestObj * item = WebKit::core(self);
69 webkit_dom_test_obj_void_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg)
71 g_return_if_fail(self);
73 WebCore::TestObj * item = WebKit::core(self);
86 webkit_dom_test_obj_int_method(WebKitDOMTestObj* self)
88 g_return_val_if_fail(self, 0);
90 WebCore::TestObj * item = WebKit::core(self);
96 webkit_dom_test_obj_int_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg
1160 WebKitDOMTestObj* self = WEBKIT_DOM_TEST_OBJ(object); local
1303 WebKitDOMTestObj* self = WEBKIT_DOM_TEST_OBJ(object); local
    [all...]
  /external/chromium/testing/gtest/test/
gtest_color_test.py 71 def testNoEnvVarNoFlag(self):
75 self.assert_(not UsesColor('dumb', None, None))
76 self.assert_(not UsesColor('emacs', None, None))
77 self.assert_(not UsesColor('xterm-mono', None, None))
78 self.assert_(not UsesColor('unknown', None, None))
79 self.assert_(not UsesColor(None, None, None))
80 self.assert_(UsesColor('linux', None, None))
81 self.assert_(UsesColor('cygwin', None, None))
82 self.assert_(UsesColor('xterm', None, None))
83 self.assert_(UsesColor('xterm-color', None, None)
    [all...]
  /external/protobuf/gtest/test/
gtest_color_test.py 71 def testNoEnvVarNoFlag(self):
75 self.assert_(not UsesColor('dumb', None, None))
76 self.assert_(not UsesColor('emacs', None, None))
77 self.assert_(not UsesColor('xterm-mono', None, None))
78 self.assert_(not UsesColor('unknown', None, None))
79 self.assert_(not UsesColor(None, None, None))
80 self.assert_(UsesColor('linux', None, None))
81 self.assert_(UsesColor('cygwin', None, None))
82 self.assert_(UsesColor('xterm', None, None))
83 self.assert_(UsesColor('xterm-color', None, None)
    [all...]
  /external/srec/srec/Nametag/include/
SR_Nametags.h 48 * @param self Nametags handle
51 ESR_ReturnCode(*load)(struct SR_Nametags_t* self, const LCHAR* filename);
56 * @param self Nametags handle
59 ESR_ReturnCode(*save)(struct SR_Nametags_t* self, const LCHAR* filename);
64 * @param self Nametags handle
67 ESR_ReturnCode(*add)(struct SR_Nametags_t* self, SR_Nametag* nametag);
72 * @param self Nametags handle
75 ESR_ReturnCode(*remove)(struct SR_Nametags_t* self, const LCHAR* id);
80 * @param self Nametags handle
83 ESR_ReturnCode(*getSize)(struct SR_Nametags_t* self, size_t* result)
    [all...]

Completed in 2287 milliseconds

1 2 3 4 5 6 7 891011>>