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

<<21222324252627282930>>

  /external/bluetooth/bluez/audio/
gstavdtpsink.h 93 void gst_avdtp_sink_set_crc(GstAvdtpSink *self, gboolean crc);
95 void gst_avdtp_sink_set_channel_mode(GstAvdtpSink *self,
  /external/bluetooth/glib/tests/gobject/
singleton.c 56 my_singleton_init (MySingleton *self)
59 the_one_and_only = self;
  /external/webkit/WebCore/platform/mac/
WebCoreKeyGenerator.m 45 sharedGenerator = [self retain];
46 return self;
  /external/webkit/WebKit/mac/Misc/
WebNSWindowExtras.m 42 NSSize size = [self frame].size;
49 [self setFrameOrigin:origin];
WebNSDataExtras.m 42 CFStringRef name = (CFStringRef)self;
102 result = [self retain];
114 int length = [self length];
115 const UInt8 *bytes = [self bytes];
170 NSString *MIMEType = [self _webkit_guessedMIMETypeForXML];
174 int length = [self length];
175 const char *bytes = [self bytes];
275 const char *bytes = [self bytes];
276 return strncasecmp(bytes, string, [self length]) == 0;
313 const UInt8 *bytes = [self bytes]
    [all...]
  /external/webkit/WebKitTools/QueueStatusServer/handlers/
dashboard.py 35 def get(self):
41 self.response.out.write(template.render("templates/dashboard.html", template_values))
gc.py 35 def get(self):
44 self.response.out.write("Done!")
statusbubble.py 36 def get(self, attachment_id):
42 self.response.out.write(template.render("templates/statusbubble.html", template_values))
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
commandtest.py 36 def assert_execute_outputs(self, command, args, expected_stdout="", expected_stderr="", options=Mock(), tool=MockBugzillaTool()):
38 OutputCapture().assert_outputs(self, command.execute, [options, args, tool], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
  /external/webkit/WebKitTools/Scripts/webkitpy/
executive_unittest.py 35 def test_run_command_with_bad_command(self):
38 self.failUnlessRaises(OSError, run_bad_command)
grammar_unittest.py 34 def test_join_with_separators(self):
35 self.assertEqual(join_with_separators(["one", "two", "three"]), "one, two, and three")
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
cleanworkingdirectorywithlocalcommits.py 32 def __init__(self, tool, options):
34 CleanWorkingDirectory.__init__(self, tool, options, allow_local_commits=True)
closebugforlanddiff_unittest.py 37 def test_empty_state(self):
41 capture.assert_outputs(self, step.run, [{"commit_text" : "Mock commit text"}], expected_stderr=expected_stderr)
  /frameworks/base/tools/layoutlib/create/tests/mock_android/dummy/
InnerTest.java 82 public void someMethod(InnerTest self) {
83 mSomeField = self.mSomeField;
  /dalvik/vm/alloc/
Alloc.h 83 * The "self" argument is allowed as an optimization; it may be NULL.
85 void dvmAddTrackedAlloc(Object* obj, Thread* self);
92 * The "self" argument is allowed as an optimization; it may be NULL.
94 void dvmReleaseTrackedAlloc(Object* obj, Thread* self);
100 INLINE void dvmReleaseTrackedAllocIFN(Object* obj, Thread* self, int allocFlags)
103 dvmReleaseTrackedAlloc(obj, self);
  /external/opencore/engines/2way/src/
pv_2way_preview_datapath.cpp 25 CPV2WayPreviewDatapath *self = OSCL_NEW(CPV2WayPreviewDatapath, (aLogger, aFormat, a2Way)); local
26 OsclError::LeaveIfNull(self);
28 if (self)
30 OSCL_TRAPSTACK_PUSH(self);
31 self->ConstructL();
35 return self;
pv_2way_rec_datapath.cpp 28 CPV2WayRecDatapath *self = OSCL_NEW(CPV2WayRecDatapath, (aLogger, aFormat, aDatapath, a2Way)); local
29 OsclError::LeaveIfNull(self);
31 if (self)
33 OSCL_TRAPSTACK_PUSH(self);
34 self->ConstructL();
38 return self;
  /external/srec/portable/include/
PFileSystemImpl.h 57 PORTABLE_API ESR_ReturnCode PFileSystemDestroyImpl(PFileSystem* self);
78 * @return ESR_INVALID_ARGUMENT if self or virtualPath or realPath is null or realPath is not a valid path;
81 PORTABLE_API ESR_ReturnCode PFileSystemAddPathImpl(PFileSystem* self, const LCHAR* basePath);
86 * @param self PFileSystem handle
88 * @return ESR_INVALID_ARGUMENT if self or virtualPath is null or virtualPath is not mounted
90 PORTABLE_API ESR_ReturnCode PFileSystemRemovePathImpl(PFileSystem* self, const LCHAR* basePath);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EventSendingController.mm 174 self = [super init];
175 if (self)
177 return self;
194 [invocation setTarget:self];
279 if (([self currentEventTime] - lastClick >= 1) ||
310 [self updateClickCountForButton:buttonNumber];
316 timestamp:[self currentEventTime]
333 [self mouseDown:buttonNumber withModifiers:nil];
338 [[mainFrame webView] makeTextLarger:self];
343 [[mainFrame webView] makeTextSmaller:self];
    [all...]
  /dalvik/vm/
Ddm.c 41 Thread* self = dvmThreadSelf(); local
95 dvmClearException(self);
116 dvmCallMethod(self, dispatch, NULL, &callRes, type, dataArray, offset,
118 if (dvmCheckException(self)) {
121 dvmClearException(self);
206 Thread* self = dvmThreadSelf(); local
208 if (self->status != THREAD_RUNNING) {
209 LOGE("ERROR: DDM broadcast with thread status=%d\n", self->status);
214 dvmCallMethod(self, bcast, NULL, &unused, event);
215 if (dvmCheckException(self)) {
540 Thread* self = dvmThreadSelf(); local
    [all...]
Thread.h 249 /* Buffer for register state during self verification */
288 void dvmLockThreadList(Thread* self);
330 * If "self" is NULL, this will use dvmThreadSelf().
332 bool dvmCheckSuspendPending(Thread* self);
338 INLINE bool dvmCheckSuspendQuick(Thread* self) {
339 return (self->suspendCount != 0);
344 * The "self" argument, which may be NULL, is accepted as an optimization.
354 ThreadStatus dvmChangeStatus(Thread* self, ThreadStatus newStatus);
480 INLINE JNIEnv* dvmGetThreadJNIEnv(Thread* self) { return self->jniEnv;
    [all...]
  /external/webkit/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm 175 WebCoreObjCFinalizeOnMainThread(self);
184 return self;
189 [[WebCoreViewFactory sharedFactory] unregisterUniqueIdForUIElement:self];
198 [self unregisterUniqueIdForUIElement];
598 actions = [[self attachmentView] accessibilityActionNames];
650 return [[self attachmentView] accessibilityAttributeNames];
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
cpp.py 191 # self._section will move monotonically through this set. If it ever
211 def __init__(self):
212 dict.__init__(self)
213 self._section = self._INITIAL_SECTION
214 self._visited_primary_section = False
215 self.header_types = dict();
217 def visited_primary_section(self):
218 return self._visited_primary_section
220 def check_next_include_order(self, header_type, file_is_header)
    [all...]
  /external/webkit/WebKit/mac/Panels/
WebAuthenticationPanel.m 47 self = [self init];
48 if (self != nil) {
52 return self;
76 [[self retain] autorelease];
105 if ([NSBundle loadNibNamed:WebAuthenticationPanelNibName owner:self]) {
120 [self loadNib];
220 [self setUpForChallenge:chall];
236 [self setUpForChallenge:chall];
241 [[NSApplication sharedApplication] beginSheet:panel modalForWindow:window modalDelegate:self didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:) contextInfo:NULL]
    [all...]
  /external/srec/srec/AcousticModels/src/
AcousticModelsImpl.c 252 ESR_ReturnCode SR_AcousticModelsLoad(const LCHAR* filename, SR_AcousticModels** self)
412 *self = (SR_AcousticModels*) impl;
422 ESR_ReturnCode SR_AcousticModels_Destroy(SR_AcousticModels* self)
424 SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;
471 ESR_ReturnCode SR_AcousticModels_Save(SR_AcousticModels* self, const LCHAR* filename)
473 /*SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;*/
479 ESR_ReturnCode SR_AcousticModels_SetParameter(SR_AcousticModels* self, const LCHAR* key, LCHAR* value)
481 SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;
515 ESR_ReturnCode SR_AcousticModels_GetParameter(SR_AcousticModels* self, const LCHAR* key, LCHAR* value, size_t* len)
517 SR_AcousticModelsImpl* impl = (SR_AcousticModelsImpl*) self;
    [all...]

Completed in 240 milliseconds

<<21222324252627282930>>