HomeSort by relevance Sort by last modified time
    Searched full:self (Results 326 - 350 of 1842) sorted by null

<<11121314151617181920>>

  /external/srec/srec/Semproc/include/
SR_SymbolTable.h 94 * @param self pointer to the newly created object
96 SREC_SEMPROC_API ESR_ReturnCode ST_Init(SymbolTable** self);
100 * @param self pointer to the symbol table
102 SREC_SEMPROC_API ESR_ReturnCode ST_Free(SymbolTable* self);
106 * @param self pointer to the symbol table
109 ESR_ReturnCode ST_Copy(SymbolTable* self, HashMap* dst);
113 * @param self pointer to the symbol table
117 SREC_SEMPROC_API ESR_ReturnCode ST_putKeyValue(SymbolTable* self, const LCHAR* key, const LCHAR* value);
121 * @param self pointer to the symbol table
125 SREC_SEMPROC_API ESR_ReturnCode ST_getKeyValue(SymbolTable* self, const LCHAR* key, LCHAR** value)
    [all...]
  /development/scripts/app_engine_server/
memcache_zipserve.py 74 def get(self, name):
75 self.zipfilenames = zip_files
76 self.TrueGet(name)
100 def TrueGet(self, reqUri):
124 langName = self.request.cookies['android_developer_pref_lang']
133 name = self.PreprocessUrl(reqUri, langName)
142 isValidIntl = sections[1] in self.validLangs
159 if self.isCleanUrl(name, langName, isValidIntl, isStripped):
163 if not self.CreateResponse(name, langName, isValidIntl, resetLangCookie):
168 self.CreateResponse(contentUri, langName, False, resetLangCookie
    [all...]
  /dalvik/vm/alloc/
Alloc.c 75 Thread* self = dvmThreadSelf(); local
105 dvmReleaseTrackedAlloc(obj, self);
111 dvmCallMethod(self, init, obj, &unused, msgStr);
112 if (dvmCheckException(self)) {
113 dvmReleaseTrackedAlloc((Object*) msgStr, self);
114 dvmReleaseTrackedAlloc(obj, self);
118 dvmReleaseTrackedAlloc((Object*) msgStr, self); // okay if msgStr NULL
247 void dvmAddTrackedAlloc(Object* obj, Thread* self)
249 if (self == NULL)
250 self = dvmThreadSelf()
    [all...]
  /dalvik/dx/
README.txt 3 things; use "dx --help" to see a modicum of self-documentation.
  /dalvik/vm/mterp/c/
OP_THROW.c 13 dvmSetException(self, obj);
  /dalvik/vm/mterp/x86/
OP_MOVE_EXCEPTION.S 5 movl offGlue_self(%ecx),%ecx # ecx<- glue->self
  /external/e2fsprogs/contrib/python-uuid/
uuid.c 5 static PyObject * _uuid_generate(PyObject *self, PyObject *args)
  /external/webkit/LayoutTests/http/tests/appcache/
update-cache-expected.txt 1 Test a simple offline application self-update process. Should print a series of messages followed with DONE:
  /external/webkit/WebKitTools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupportTiger.pm 27 my ($self,$field) = @_;
29 $self->$member_func();
33 my ($self,$field,$newval) = @_;
35 $self->$member_func($newval);
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
checker.py 284 def __init__(self,
308 self.extra_flag_values = extra_flag_values
309 self.filter_configuration = filter_configuration
310 self.git_commit = git_commit
311 self.max_reports_per_category = max_reports_per_category
312 self.output_format = output_format
313 self.verbosity = verbosity
316 def __eq__(self, other):
318 if self.extra_flag_values != other.extra_flag_values:
320 if self.filter_configuration != other.filter_configuration
    [all...]
  /dalvik/vm/native/
java_lang_Object.c 62 * DalvikNativeFunc, because we really want to avoid the "self" lookup.
65 const Method* method, Thread* self)
69 dvmObjectNotify(self, thisPtr);
77 const Method* method, Thread* self)
81 dvmObjectNotifyAll(self, thisPtr);
89 const Method* method, Thread* self)
93 dvmObjectWait(self, thisPtr, GET_ARG_LONG(args,1), (s4)args[3], true);
  /external/webkit/WebCore/platform/graphics/mac/
WebTiledLayer.mm 62 if ((self = [super initWithLayer:layer]))
65 return self;
78 dirtyRect = CGRectApplyAffineTransform(dirtyRect, [self contentsTransform]);
84 CGRect bounds = [self bounds];
87 indicatorRect = CGRectApplyAffineTransform(indicatorRect, [self contentsTransform]);
99 m_layerOwner->didDisplay(self);
104 [WebLayer drawContents:m_layerOwner ofLayer:self intoContext:ctx];
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
metastep.py 35 def __init__(self, tool, options):
36 AbstractStep.__init__(self, tool, options)
37 self._step_instances = []
38 for step_class in self.substeps:
39 self._step_instances.append(step_class(tool, options))
52 def run(self, state):
53 for step in self._step_instances:
applypatchwithlocalcommit.py 39 def run(self, state):
40 ApplyPatch.run(self, state)
41 if self._options.local_commit:
42 commit_message = self._tool.scm().commit_message_for_this_commit()
43 self._tool.scm().commit_locally_with_message(commit_message.message() or state["patch"].name())
  /external/webkit/WebKitTools/pywebsocket/test/
test_util.py 43 def test_get_stack_trace(self):
44 self.assertEqual('None\n', util.get_stack_trace())
49 self.failUnless(trace.startswith('Traceback'))
50 self.failUnless(trace.find('ZeroDivisionError') != -1)
52 def test_prepend_message_to_exception(self):
54 self.assertEqual('World', str(exc))
56 self.assertEqual('Hello World', str(exc))
  /sdk/eclipse/scripts/
gen_icon.py 15 def __init__(self, dest_name, size, circle_color, border_color,
17 self.dest_name = dest_name
18 self.size = size
19 self.circle_color = circle_color
20 self.border_color = border_color
21 self.letter_color = letter_color
22 self.letter = letter
  /external/opencore/oscl/oscl/osclio/src/
oscl_dns_gethostbyname.cpp 35 OsclGetHostByNameMethod* self = OSCL_PLACEMENT_NEW(p, OsclGetHostByNameMethod(a)); local
36 OsclError::LeaveIfNull(self);
37 OsclError::PushL(self);
38 self->ConstructL(aDNS, aObserver, aId);
40 return self;
80 OsclGetHostByNameRequest* self = OSCL_PLACEMENT_NEW(p, OsclGetHostByNameRequest()); local
81 OsclError::LeaveIfNull(self);
82 OsclError::PushL(self);
83 self->ConstructL(aDNS, aMethod);
85 return self;
    [all...]
oscl_socket_accept.cpp 28 OsclAcceptMethod* self = OSCL_PLACEMENT_NEW(p, OsclAcceptMethod(c)); local
29 OsclError::LeaveIfNull(self);
30 OsclError::PushL(self);
31 self->ConstructL();
33 return self;
40 OsclAcceptRequest* self = OSCL_PLACEMENT_NEW(p, OsclAcceptRequest(*this)); local
41 OsclError::LeaveIfNull(self);
42 OsclError::PushL(self);
43 self->ConstructL();
45 iSocketRequestAO = self;
    [all...]
oscl_socket_recv.cpp 29 OsclRecvMethod* self = OSCL_PLACEMENT_NEW(p, OsclRecvMethod(c)); local
30 OsclError::LeaveIfNull(self);
31 OsclError::PushL(self);
32 self->ConstructL();
34 return self;
41 OsclRecvRequest* self = OSCL_PLACEMENT_NEW(p, OsclRecvRequest(*this)); local
42 OsclError::LeaveIfNull(self);
43 OsclError::PushL(self);
44 self->ConstructL();
46 iSocketRequestAO = self;
    [all...]
oscl_socket_recv_from.cpp 28 OsclRecvFromMethod* self = OSCL_PLACEMENT_NEW(p, OsclRecvFromMethod(c)); local
29 OsclError::LeaveIfNull(self);
30 OsclError::PushL(self);
31 self->ConstructL();
33 return self;
40 OsclRecvFromRequest* self = OSCL_PLACEMENT_NEW(p, OsclRecvFromRequest(*this)); local
41 OsclError::LeaveIfNull(self);
42 OsclError::PushL(self);
43 self->OsclSocketRequestAO::ConstructL();
45 iSocketRequestAO = self;
    [all...]
oscl_socket_send.cpp 30 OsclSendMethod* self = OSCL_PLACEMENT_NEW(p, OsclSendMethod(c)); local
31 OsclError::LeaveIfNull(self);
32 OsclError::PushL(self);
33 self->ConstructL();
35 return self;
42 OsclSendRequest* self = OSCL_PLACEMENT_NEW(p, OsclSendRequest(*this)); local
43 OsclError::LeaveIfNull(self);
44 OsclError::PushL(self);
45 self->ConstructL();
47 iSocketRequestAO = self;
    [all...]
oscl_socket_send_to.cpp 31 OsclSendToMethod* self = OSCL_PLACEMENT_NEW(p, OsclSendToMethod(c)); local
32 OsclError::LeaveIfNull(self);
33 OsclError::PushL(self);
34 self->ConstructL();
36 return self;
43 OsclSendToRequest* self = OSCL_PLACEMENT_NEW(p, OsclSendToRequest(*this)); local
44 OsclError::LeaveIfNull(self);
45 OsclError::PushL(self);
46 self->ConstructL();
48 iSocketRequestAO = self;
    [all...]
  /external/webkit/WebKitTools/Scripts/
test-webkit-scripts 49 def __init__(self, scripts_directory):
50 self.scripts_directory = scripts_directory
52 def script_path(self, script_file_name):
54 return os.path.join(self.scripts_directory, script_file_name)
56 def run_test_script(self, script_title, script_path, args=None):
65 def main(self):
72 self.run_test_script('Perl scripts', self.script_path('test-webkitperl'))
73 self.run_test_script('Python scripts', self.script_path('test-webkitpy')
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
openbugs_unittest.py 43 def test_find_bugs_in_string(self):
45 for expectation in self.find_bugs_in_string_expectations:
46 self.assertEquals(openbugs._find_bugs_in_string(expectation[0]), expectation[1])
48 def test_args_parsing(self):
50 self.assert_execute_outputs(OpenBugs(), ["12345\n23456"], expected_stderr=expected_stderr)
  /external/webkit/WebKitTools/Scripts/webkitpy/
patchcollection_unittest.py 37 def collection_name(self):
40 def fetch_potential_patch_ids(self):
43 def status_server(self):
46 def is_terminal_status(self, status):
51 def test_next(self):

Completed in 51 milliseconds

<<11121314151617181920>>