HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 101 - 125 of 304) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/skia/src/ports/
SkOSFile_win.cpp 168 SkOSFileIterData& self = *static_cast<SkOSFileIterData*>(fSelf.get()); local
169 sk_free(self.fPath16);
170 if (self.fHandle) {
171 ::FindClose(self.fHandle);
173 self.~SkOSFileIterData();
177 SkOSFileIterData& self = *static_cast<SkOSFileIterData*>(fSelf.get()); local
178 if (self.fHandle) {
179 ::FindClose(self.fHandle);
180 self.fHandle = 0;
186 sk_free(self.fPath16)
229 SkOSFileIterData& self = *static_cast<SkOSFileIterData*>(fSelf.get()); local
    [all...]
  /external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
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/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
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/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
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/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 136 template<class Self>
138 void Call(Var var, Effect effect) { self.Seq(var, effect); }
139 Self self; member in struct:v8::internal::EffectsMixin::SeqMerger
142 template<class Self>
144 void Call(Var var, Effect effect) { self.Alt(var, effect); }
145 Self self; member in struct:v8::internal::EffectsMixin::AltMerger
148 template<class Self>
154 self.Insert(var, &locator)
158 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);
  /frameworks/native/libs/binder/
BpBinder.cpp 98 IPCThreadState::self()->incWeakHandle(handle);
164 status_t status = IPCThreadState::self()->transact(
195 IPCThreadState* self = IPCThreadState::self(); local
196 self->requestDeathNotification(mHandle, this);
197 self->flushCommands();
229 IPCThreadState* self = IPCThreadState::self(); local
230 self->clearDeathNotification(mHandle, this);
231 self->flushCommands()
254 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...]
  /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 141 // prctl(PR_SET_NAME) only works for self; prctl(PR_SET_THREAD_NAME) was
724 Thread* const self = static_cast<Thread*>(user); local
726 sp<Thread> strong(self->mHoldSelf);
728 self->mHoldSelf.clear();
732 self->mTid = gettid();
741 self->mStatus = self->readyToRun();
742 result = (self->mStatus == NO_ERROR);
744 if (result && !self->exitPending()) {
755 result = self->threadLoop()
    [all...]
  /art/runtime/
art_method.cc 57 mirror::String* ArtMethod::GetNameAsString(Thread* self) {
59 StackHandleScope<1> hs(self);
255 Thread* self = Thread::Current(); local
256 StackHandleScope<1> hs(self);
257 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException()));
258 self->ClearException();
275 self->ClearException();
278 delete self->GetLongJumpContext();
293 self->SetException(exception.Get());
368 void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result
    [all...]
  /art/runtime/gc/collector/
mark_compact.cc 74 Thread* self = Thread::Current(); local
76 CHECK(!Locks::mutator_lock_->IsExclusiveHeld(self));
141 void MarkCompact::ProcessReferences(Thread* self) {
142 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
186 Thread* self = Thread::Current(); local
193 CHECK(Locks::mutator_lock_->IsExclusiveHeld(self));
207 heap_->RevokeAllThreadLocalAllocationStacks(self);
210 heap_->SwapStacks(self);
212 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
219 ProcessReferences(self);
    [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
space_test.h 52 mirror::Class* GetByteArrayClass(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
53 StackHandleScope<1> hs(self);
57 Runtime::Current()->GetClassLinker()->FindClass(self, "[B", null_loader);
59 byte_array_class_ = self->GetJniEnv()->NewLocalRef(byte_array_class);
62 return reinterpret_cast<mirror::Class*>(self->DecodeJObject(byte_array_class_));
65 mirror::Object* Alloc(space::MallocSpace* alloc_space, Thread* self, size_t bytes,
69 StackHandleScope<1> hs(self);
70 Handle<mirror::Class> byte_array_class(hs.NewHandle(GetByteArrayClass(self)));
71 mirror::Object* obj = alloc_space->Alloc(self, bytes, bytes_allocated, usable_size,
79 mirror::Object* AllocWithGrowth(space::MallocSpace* alloc_space, Thread* self, size_t bytes
187 Thread* self = Thread::Current(); local
297 Thread* self = Thread::Current(); local
367 Thread* self = Thread::Current(); local
434 Thread* self = Thread::Current(); local
    [all...]

Completed in 1190 milliseconds

1 2 3 45 6 7 8 91011>>