HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 151 - 175 of 437) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java 24 private InstallerActivity self; field in class:InstallerActivity
33 self = this;
133 self.sendBroadcast(installCompleteIntent);
138 if (self.isFinishing()) {
143 self.sendBroadcast(installCompleteIntent);
  /external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java 24 private InstallerActivity self; field in class:InstallerActivity
33 self = this;
133 self.sendBroadcast(installCompleteIntent);
138 if (self.isFinishing()) {
143 self.sendBroadcast(installCompleteIntent);
  /external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java 24 private InstallerActivity self; field in class:InstallerActivity
33 self = this;
133 self.sendBroadcast(installCompleteIntent);
138 if (self.isFinishing()) {
143 self.sendBroadcast(installCompleteIntent);
  /external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java 25 private InstallerActivity self; field in class:InstallerActivity
34 self = this;
134 self.sendBroadcast(installCompleteIntent);
138 if (self.isFinishing()) {
143 self.sendBroadcast(installCompleteIntent);
  /external/v8/src/
effects.h 134 template<class Self>
136 void Call(Var var, Effect effect) { self.Seq(var, effect); }
137 Self self; member in struct:v8::internal::EffectsMixin::SeqMerger
140 template<class Self>
142 void Call(Var var, Effect effect) { self.Alt(var, effect); }
143 Self self; member in struct:v8::internal::EffectsMixin::AltMerger
146 template<class Self>
152 self.Insert(var, &locator)
156 Self self; member in struct:v8::internal::EffectsMixin::AltWeakener
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 193 assertEquals(selfTicks, node.selfWeight, 'self of ' + stack);
234 Driver.prototype.increment = function(func, self, total) {
236 this.counters[func] = { self: 0, total: 0 };
238 this.counters[func].self += self;
288 assertEquals(testDriver.root.self, flatProfileRoot.selfWeight);
297 assertEquals(reference.self, rec.selfWeight, 'self of ' + rec.label);
343 assertEquals(reference[0], rec.selfWeight, 'self of ' + rec.label);
  /external/webrtc/webrtc/modules/audio_processing/aec/
echo_cancellation.c 106 static int ProcessNormal(Aec* self,
113 static void ProcessExtended(Aec* self,
402 Aec* self = (Aec*)handle; local
403 if (self->initFlag != initCheck) {
410 self->skewMode = config.skewMode;
427 self->aec, config.nlpMode, config.metricsMode, config.delay_logging);
432 Aec* self = (Aec*)handle; local
436 if (self->initFlag != initCheck) {
440 *status = WebRtcAec_echo_state(self->aec);
449 Aec* self = (Aec*)handle local
544 Aec* self = handle; local
    [all...]
  /frameworks/native/libs/binder/
BpBinder.cpp 99 IPCThreadState::self()->incWeakHandle(handle);
165 status_t status = IPCThreadState::self()->transact(
196 IPCThreadState* self = IPCThreadState::self(); local
197 self->requestDeathNotification(mHandle, this);
198 self->flushCommands();
230 IPCThreadState* self = IPCThreadState::self(); local
231 self->clearDeathNotification(mHandle, this);
232 self->flushCommands()
255 IPCThreadState* self = IPCThreadState::self(); local
    [all...]
  /hardware/intel/common/libmix/mix_video/src/
mixvideoconfigparamsdec.c 33 static void mix_videoconfigparamsdec_init(MixVideoConfigParamsDec * self) {
37 self->frame_order_mode = MIX_FRAMEORDER_MODE_DISPLAYORDER;
38 memset(&self->header, 0, sizeof(self->header));
40 self->mime_type = NULL;
42 self->frame_rate_num = 0;
43 self->frame_rate_denom = 0;
45 self->picture_width = 0;
46 self->picture_height = 0;
48 self->raw_format = 0
85 MixVideoConfigParamsDec *self = MIX_VIDEOCONFIGPARAMSDEC(obj); local
    [all...]
mixvideoconfigparamsenc.c 35 static void mix_videoconfigparamsenc_init(MixVideoConfigParamsEnc * self) {
37 self->bitrate = 0;
38 self->frame_rate_num = 30;
39 self->frame_rate_denom = 1;
40 self->initial_qp = 15;
41 self->min_qp = 0;
43 self->picture_width = 0;
44 self->picture_height = 0;
46 self->mime_type = NULL;
47 self->encode_format = 0
95 MixVideoConfigParamsEnc *self = MIX_VIDEOCONFIGPARAMSENC(obj); local
    [all...]
mixvideoformatenc_preview.c 38 static void mix_videoformatenc_preview_init(MixVideoFormatEnc_Preview * self) {
39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self);
44 self->encoded_frames = 0;
45 self->pic_skipped = FALSE;
46 self->is_intra = TRUE;
47 self->cur_fame = NULL;
48 self->ref_fame = NULL;
49 self->rec_fame = NULL;
51 self->ci_shared_surfaces = NULL;
52 self->surfaces= NULL
188 MixVideoFormatEnc_Preview *self = MIX_VIDEOFORMATENC_PREVIEW(mix); local
661 MixVideoFormatEnc_Preview *self = MIX_VIDEOFORMATENC_PREVIEW (mix); local
717 MixVideoFormatEnc_Preview *self = MIX_VIDEOFORMATENC_PREVIEW(mix); local
790 MixVideoFormatEnc_Preview *self = MIX_VIDEOFORMATENC_PREVIEW(mix); local
    [all...]
mixvideoframe.c 38 #define VIDEOFRAME_PRIVATE(self) ((MixVideoFramePrivate *)((self)->reserved1))
39 static void mix_videoframe_init(MixVideoFrame * self) {
41 self->frame_id = VA_INVALID_SURFACE;
42 self->timestamp = 0;
43 self->discontinuity = FALSE;
44 self->frame_structure = VA_FRAME_PICTURE;
46 MixVideoFramePrivate *priv = MIX_VIDEOFRAME_GET_PRIVATE(self);
47 self->reserved1 = priv;
48 self->reserved2 = NULL
88 MixVideoFrame *self = MIX_VIDEOFRAME (obj); local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/
CharBuffer.java 1068 CharBuffer self = this; local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ReceiveSmsMessageAction.java 127 final ParticipantData self = ParticipantData.getSelfParticipant(subId); local
140 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
MessageDetailsDialog.java 54 final ConversationParticipantsData participants, final ParticipantData self) {
59 return getMessageDetails(context, data, participants, self);
68 String messageDetails = getMessageDetails(context, data, participants, self);
75 final ConversationParticipantsData participants, final ParticipantData self) {
78 messageDetails = getSmsMessageDetails(data, participants, self);
81 messageDetails = getMmsMessageDetails(context, data, participants, self);
103 final ConversationParticipantsData participants, final ParticipantData self) {
141 appendSimInfo(res, self, details);
156 final ConversationParticipantsData participants, final ParticipantData self) {
207 appendSimInfo(res, self, details)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java 163 final DictionaryService self = this; local
182 dispatchBroadcast(self, intent);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 117 String self = mCanvas.getLayoutResourceName(); local
151 if (!self.equals(title)) {
IncludeFinder.java 1066 Reference self = Reference.create(layout); local
    [all...]
  /system/core/libutils/
Threads.cpp 142 // prctl(PR_SET_NAME) only works for self; prctl(PR_SET_THREAD_NAME) was
720 Thread* const self = static_cast<Thread*>(user); local
722 sp<Thread> strong(self->mHoldSelf);
724 self->mHoldSelf.clear();
728 self->mTid = gettid();
737 self->mStatus = self->readyToRun();
738 result = (self->mStatus == NO_ERROR);
740 if (result && !self->exitPending()) {
751 result = self->threadLoop()
    [all...]
  /system/webservd/webservd/
request.cc 48 auto self = reinterpret_cast<Request*>(cls); local
49 return self->ProcessPostData(key, filename, content_type, transfer_encoding,
57 auto self = reinterpret_cast<Request*>(cls); local
62 self->headers_.emplace_back(brillo::http::GetCanonicalHeaderName(key),
67 self->post_data_.emplace_back(key, data);
69 self->get_data_.emplace_back(key, data);
320 Request* self = static_cast<Request*>(cls); local
323 if (!self->response_data_stream_->ReadNonBlocking(buf, max, &read, &eos,
328 if (read > 0 || self->waiting_for_data_)
337 MHD_suspend_connection(self->connection_)
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
symtab.h 78 unsigned long self_calls; /* How many calls to self. */
86 double self; /* How much self time propagates. */
85 double self; \/* How much self time propagates. *\/ member in struct:sym::__anon74242::__anon74243
  /art/runtime/
art_method-inl.h 91 Thread* self = Thread::Current(); local
92 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
93 ScopedObjectAccess soa(self);
100 Locks::mutator_lock_->AssertSharedHeld(self);
art_method.cc 57 mirror::String* ArtMethod::GetNameAsString(Thread* self) {
59 StackHandleScope<1> hs(self);
190 Thread* self = Thread::Current(); local
191 StackHandleScope<1> hs(self);
192 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
193 self->ClearException();
213 self->ClearException();
216 delete self->GetLongJumpContext();
231 self->SetException(exception.Get());
236 void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result
    [all...]
  /art/runtime/gc/collector/
mark_compact.cc 59 Thread* self = Thread::Current(); local
61 CHECK(!Locks::mutator_lock_->IsExclusiveHeld(self));
126 void MarkCompact::ProcessReferences(Thread* self) {
127 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
170 Thread* self = Thread::Current(); local
177 CHECK(Locks::mutator_lock_->IsExclusiveHeld(self));
191 heap_->RevokeAllThreadLocalAllocationStacks(self);
196 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
203 ProcessReferences(self);
205 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_)
    [all...]
  /art/runtime/gc/space/
space.h 215 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
219 virtual mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
223 return Alloc(self, num_bytes, bytes_allocated, usable_size, bytes_tl_bulk_allocated);
230 virtual size_t Free(Thread* self, mirror::Object* ptr) = 0;
233 virtual size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) = 0;
254 Thread* const self; member in struct:art::gc::space::AllocSpace::SweepCallbackContext

Completed in 1026 milliseconds

1 2 3 4 5 67 8 91011>>