/frameworks/rs/rsov/compiler/spirit/ |
D | word_stream.h | 51 InputWordStream &operator>>(int32_t *RHS) { return *this >> (uint32_t *)RHS; } 55 *this >> &word; 57 return *this; 66 return *this >> &RHS->mId; 71 return *this >> &RHS->mField0 >> &RHS->mField1; 75 return *this >> &RHS->mField0 >> &RHS->mField1; 79 return *this >> &RHS->mField0 >> &RHS->mField1; 83 InputWordStream &operator>>(Enum *RHS) { return *this >> (uint32_t *)RHS; } 102 return *this << (uint32_t)RHS; 106 return *this << (uint32_t)codeCount; [all …]
|
/frameworks/rs/cpp/util/ |
D | StrongPointer.h | 124 if (other) other->incStrong(this); in sp() 131 if (m_ptr) m_ptr->incStrong(this); in sp() 137 if (other) ((T*)other)->incStrong(this); in sp() 144 if (m_ptr) m_ptr->incStrong(this); in sp() 150 if (m_ptr) m_ptr->decStrong(this); in ~sp() 156 if (otherPtr) otherPtr->incStrong(this); 157 if (m_ptr) m_ptr->decStrong(this); 159 return *this; 165 if (other) other->incStrong(this); 166 if (m_ptr) m_ptr->decStrong(this); [all …]
|
D | RefBase.h | 173 delete static_cast<const T*>(this); in decStrong() 299 if (other) m_refs = other->createWeak(this); in wp() 306 if (m_ptr) m_refs->incWeak(this); in wp() 314 m_refs = m_ptr->createWeak(this); in wp() 322 if (other) m_refs = other->createWeak(this); in wp() 331 m_refs->incWeak(this); in wp() 340 m_refs = m_ptr->createWeak(this); in wp() 347 if (m_ptr) m_refs->decWeak(this); in ~wp() 354 other ? other->createWeak(this) : 0; 355 if (m_ptr) m_refs->decWeak(this); [all …]
|
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
D | Collection.h | 74 if ((*this).find(key) != (*this).end()) { in add() 78 (*this)[key] = new T(name); in add() 80 return (*this)[key]->setIdentifier(key); in add() 94 CollectionConstIterator it = (*this).find(key); in get() 95 return (it == (*this).end()) ? NULL : it->second; in get() 113 for (it = (*this).begin(); it != (*this).end(); ++it) { in findByName() 128 for (it = (*this).begin(); it != (*this).end(); ++it) { in clear()
|
/frameworks/base/tools/aapt/ |
D | ConfigDescription.h | 28 memset(this, 0, sizeof(*this)); in ConfigDescription() 33 *static_cast<android::ResTable_config*>(this) = o; in ConfigDescription() 38 *static_cast<android::ResTable_config*>(this) = o; in ConfigDescription() 42 *static_cast<android::ResTable_config*>(this) = o; 44 return *this; 48 *static_cast<android::ResTable_config*>(this) = o; 49 return *this;
|
/frameworks/base/tools/aapt2/ |
D | ConfigDescription.h | 109 memset(this, 0, sizeof(*this)); in ConfigDescription() 114 *static_cast<android::ResTable_config*>(this) = o; in ConfigDescription() 119 *static_cast<android::ResTable_config*>(this) = o; in ConfigDescription() 123 *this = o; in ConfigDescription() 128 *static_cast<android::ResTable_config*>(this) = o; 130 return *this; 135 *static_cast<android::ResTable_config*>(this) = o; 136 return *this; 140 *this = o; 141 return *this;
|
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
D | payload.h | 90 this->Extend(size); in GetNextWriteBufferSection() 91 return &*this->Cursor(); in GetNextWriteBufferSection() 98 return {&*this->ConstCursor(), &*this->ConstEnd()}; in GetNextReadBufferSection() 102 std::advance(this->ConstCursor(), in ConsumeReadBufferSectionData() 103 PointerDistance(new_start, &*this->ConstCursor())); in ConsumeReadBufferSectionData() 127 this->Extend(size); in GetNextWriteBufferSection() 128 return &*this->Cursor(); in GetNextWriteBufferSection() 137 return {&*this->ConstCursor(), &*this->ConstEnd()}; in GetNextReadBufferSection() 141 std::advance(this->ConstCursor(), in ConsumeReadBufferSectionData() 142 PointerDistance(new_start, &*this->ConstCursor())); in ConsumeReadBufferSectionData()
|
D | array_wrapper.h | 40 ArrayWrapper(const ArrayWrapper& other) { *this = other; } in ArrayWrapper() 42 ArrayWrapper(ArrayWrapper&& other) { *this = std::move(other); } in ArrayWrapper() 45 if (&other == this) { 46 return *this; 53 return *this; 57 if (&other == this) { 58 return *this; 68 return *this;
|
D | string_wrapper.h | 45 StringWrapper(const StringWrapper& other) { *this = other; } in StringWrapper() 47 StringWrapper(StringWrapper&& other) { *this = std::move(other); } in StringWrapper() 50 if (&other == this) { 51 return *this; 58 return *this; 62 if (&other == this) { 63 return *this; 73 return *this;
|
/frameworks/av/media/libaaudio/src/core/ |
D | AudioStreamBuilder.h | 44 return this; in setSharingModeMatchRequired() 53 return this; in setPerformanceMode() 62 return this; in setDataCallbackProc() 71 return this; in setDataCallbackUserData() 80 return this; in setErrorCallbackProc() 85 return this; in setErrorCallbackUserData() 98 return this; in setFramesPerDataCallback()
|
/frameworks/av/include/media/ |
D | Interpolator.h | 61 return *this->begin(); in first() 65 return *this->rbegin(); in last() 70 auto high = this->lower_bound(x); in findY() 72 if (high == this->end()) { in findY() 73 return this->rbegin()->second; in findY() 76 if (high == this->begin()) { in findY() 107 auto low2 = this->end(); in findY() 108 if (low != this->begin()) { in findY() 134 sec0 = low2 != this->end() in findY() 137 sec1 = high2 != this->end() in findY() [all …]
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
D | TreeBase.h | 68 return this->m_pNode == y.m_pNode; 72 return this->m_pNode != y.m_pNode; 78 this->m_pNode = this->m_pNode->left; 83 this->m_pNode = this->m_pNode->right; 89 this->m_pNode->left = pOther; 95 this->m_pNode->right = pOther;
|
D | Flags.h | 38 return *this; 43 return *this; 52 return *this; 57 return *this; 66 return *this; 71 return *this;
|
D | BinTree.h | 157 return *this; 161 Self tmp = *this; 219 this->move<TreeIteratorBase::Rightward>(); 220 return *this; 224 Self tmp = *this; 225 this->move<TreeIteratorBase::Rightward>(); 230 this->move<TreeIteratorBase::Leftward>(); 231 return *this; 235 Self tmp = *this; 236 this->move<TreeIteratorBase::Leftward>(); [all …]
|
/frameworks/base/libs/hwui/ |
D | GradientCache.h | 52 if (this != &entry) { 56 return *this; 64 return compare(*this, other) == 0; 68 return compare(*this, other) != 0; 77 this->count = count; in copy() 78 this->colors.reset(new uint32_t[count]); in copy() 79 this->positions.reset(new float[count]); in copy() 81 memcpy(this->colors.get(), colors, count * sizeof(uint32_t)); in copy() 82 memcpy(this->positions.get(), positions, count * sizeof(float)); in copy()
|
/frameworks/ml/nn/runtime/include/ |
D | NeuralNetworksWrapper.h | 89 Memory(Memory&& other) { *this = std::move(other); } in Memory() 91 if (this != &other) { 97 return *this; 125 Model(Model&& other) { *this = std::move(other); } in Model() 127 if (this != &other) { 135 return *this; 204 Event(Event&& other) { *this = std::move(other); } in Event() 206 if (this != &other) { 210 return *this; 239 Compilation(Compilation&& other) { *this = std::move(other); } in Compilation() [all …]
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | GCFactory.h | 45 return ((this->m_pChunk == y.m_pChunk) && (this->m_Pos == y.m_Pos)); 49 return ((this->m_pChunk != y.m_pChunk) || (this->m_Pos != y.m_Pos)); 85 assert(this->m_pChunk != NULL && 87 return this->m_pChunk->data[Base::m_Pos]; 91 this->Base::advance(); 92 return *this; 96 Self tmp = *this; 97 this->Base::advance();
|
/frameworks/native/cmds/lshal/ |
D | NullableOStream.h | 32 return *this; 36 return *this; 41 return *this; 48 return *this; 55 return *this;
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | GSMTestHandler.java.broken | 5 * you may not use this file except in compliance with the License. 56 mHandler = new Handler(getLooper(), this); 57 synchronized (this) { 63 synchronized (this) { 65 this.notifyAll(); 68 this.wait(); 99 synchronized (this) { 101 this.wait(FAIL_TIMEOUT_MILLIS); 112 this.notifyAll();
|
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/ |
D | AData.h | 660 if (!this->clear()) { 670 return this->flags() != Flagger::flagFor((void*)0); 678 if (this->used()) { 679 if (_AData_deleter<Flagger, data_t, Ts...>::del(this->flags(), this->get())) { 680 this->setFlags(Flagger::flagFor((void*)0)); 711 if (this->flags() == Flagger::flagFor((T*)0) || 712 Flagger::canDeleteAs(this->flags(), Flagger::flagFor((T*)0))) { 713 _AData_copier<T>::assign(data, this->get().template get<B>()); 738 if (this->flags() == Flagger::flagFor((T*)0) || 739 Flagger::canDeleteAs(this->flags(), Flagger::flagFor((T*)0))) { [all …]
|
/frameworks/rs/script_api/ |
D | Utilities.h | 78 *this << " {\n"; in startBlock() 92 *this << mIndent; in indent() 93 return *this; in indent() 97 *this << mIndent << std::string(2 * TAB_SIZE, ' '); in indentPlus() 98 return *this; in indentPlus()
|
/frameworks/compile/mclinker/include/mcld/Config/ |
D | Targets.def.in | 11 |* this build of MCLD. Clients of this file should define the *| 13 |* parameter (the name of the target); including this file will then *| 17 |* time, at which point this header is generated. Do not modify this *|
|
D | Linkers.def.in | 10 // This file enumerates all of the linkers supported by this build of MCLinker. 11 // Clients of this file should define the MCLD_LINKER macro to be a function-like 13 // generated); including this file will then enumerate all of the targets with 17 // time, at which point this header is generated. Do not modify this
|
D | Targets.def.cmake | 11 |* this build of MCLD. Clients of this file should define the *| 13 |* parameter (the name of the target); including this file will then *| 17 |* time, at which point this header is generated. Do not modify this *|
|
D | Linkers.def.cmake | 10 // This file enumerates all of the linkers supported by this build of MCLinker. 11 // Clients of this file should define the MCLD_LINKER macro to be a function-like 13 // generated); including this file will then enumerate all of the targets with 17 // time, at which point this header is generated. Do not modify this
|