/external/harfbuzz_ng/src/hb-old/ |
D | harfbuzz-indic.cpp | 63 Other enumerator 86 Nukta, Other, Matra, Matra, 93 Other, StressMark, StressMark, StressMark, 99 Other, Other, Other, Other, 100 Other, Other, Other, Other, 101 Other, Other, Other, Other, 103 Other, Other, Other, Other, 104 Other, Other, Other, Other, 105 Other, Other, Other, Consonant, 127 Nukta, Other, Matra, Matra, [all …]
|
/external/harfbuzz/src/ |
D | harfbuzz-indic.cpp | 63 Other enumerator 86 Nukta, Other, Matra, Matra, 93 Other, StressMark, StressMark, StressMark, 99 Other, Other, Other, Other, 100 Other, Other, Other, Other, 101 Other, Other, Other, Other, 103 Other, Other, Other, Other, 104 Other, Other, Other, Other, 105 Other, Other, Other, Consonant, 127 Nukta, Other, Matra, Matra, [all …]
|
/external/clang/include/clang/AST/ |
D | CharUnits.h | 68 CharUnits& operator+= (const CharUnits &Other) { 69 Quantity += Other.Quantity; 79 CharUnits& operator-= (const CharUnits &Other) { 80 Quantity -= Other.Quantity; 92 bool operator== (const CharUnits &Other) const { 93 return Quantity == Other.Quantity; 95 bool operator!= (const CharUnits &Other) const { 96 return Quantity != Other.Quantity; 100 bool operator< (const CharUnits &Other) const { 101 return Quantity < Other.Quantity; [all …]
|
D | ASTTypeTraits.h | 48 bool isSame(ASTNodeKind Other) const; 51 bool isBaseOf(ASTNodeKind Other) const; 177 bool operator<(const DynTypedNode &Other) const { in KIND_TO_KIND_ID() 178 assert(getMemoizationData() && Other.getMemoizationData()); in KIND_TO_KIND_ID() 179 return getMemoizationData() < Other.getMemoizationData(); in KIND_TO_KIND_ID() 181 bool operator==(const DynTypedNode &Other) const { in KIND_TO_KIND_ID() 183 if (!NodeKind.isSame(Other.NodeKind)) in KIND_TO_KIND_ID() 188 return *get<QualType>() == *Other.get<QualType>(); in KIND_TO_KIND_ID() 190 assert(getMemoizationData() && Other.getMemoizationData()); in KIND_TO_KIND_ID() 191 return getMemoizationData() == Other.getMemoizationData(); in KIND_TO_KIND_ID() [all …]
|
/external/llvm/include/llvm/Support/ |
D | ErrorOr.h | 212 ErrorOr(const ErrorOr &Other) : IsValid(false) { in ErrorOr() argument 213 copyConstruct(Other); in ErrorOr() 217 ErrorOr(const ErrorOr<OtherT> &Other) : IsValid(false) { in ErrorOr() argument 218 copyConstruct(Other); in ErrorOr() 221 ErrorOr &operator =(const ErrorOr &Other) { 222 copyAssign(Other); 227 ErrorOr &operator =(const ErrorOr<OtherT> &Other) { 228 copyAssign(Other); 233 ErrorOr(ErrorOr &&Other) : IsValid(false) { in ErrorOr() argument 234 moveConstruct(std::move(Other)); in ErrorOr() [all …]
|
D | ConstantRange.h | 75 const ConstantRange &Other); 215 ConstantRange add(const ConstantRange &Other) const; 219 ConstantRange sub(const ConstantRange &Other) const; 224 ConstantRange multiply(const ConstantRange &Other) const; 228 ConstantRange smax(const ConstantRange &Other) const; 232 ConstantRange umax(const ConstantRange &Other) const; 237 ConstantRange udiv(const ConstantRange &Other) const; 241 ConstantRange binaryAnd(const ConstantRange &Other) const; 245 ConstantRange binaryOr(const ConstantRange &Other) const; 250 ConstantRange shl(const ConstantRange &Other) const; [all …]
|
/external/clang/include/clang/Basic/ |
D | PartialDiagnostic.h | 195 PartialDiagnostic(const PartialDiagnostic &Other) in PartialDiagnostic() argument 196 : DiagID(Other.DiagID), DiagStorage(0), Allocator(Other.Allocator) in PartialDiagnostic() 198 if (Other.DiagStorage) { in PartialDiagnostic() 200 *DiagStorage = *Other.DiagStorage; in PartialDiagnostic() 205 PartialDiagnostic(PartialDiagnostic &&Other) in PartialDiagnostic() argument 206 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage), in PartialDiagnostic() 207 Allocator(Other.Allocator) { in PartialDiagnostic() 208 Other.DiagStorage = 0; in PartialDiagnostic() 212 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) in PartialDiagnostic() argument 213 : DiagID(Other.DiagID), DiagStorage(DiagStorage), in PartialDiagnostic() [all …]
|
/external/llvm/include/llvm/MC/ |
D | MCSchedule.h | 42 bool operator==(const MCProcResourceDesc &Other) const { 43 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx 44 && BufferSize == Other.BufferSize; 54 bool operator==(const MCWriteProcResEntry &Other) const { 55 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles; 68 bool operator==(const MCWriteLatencyEntry &Other) const { 69 return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID; 86 bool operator==(const MCReadAdvanceEntry &Other) const { 87 return UseIdx == Other.UseIdx && WriteResourceID == Other.WriteResourceID 88 && Cycles == Other.Cycles;
|
/external/llvm/lib/Support/ |
D | ConstantRange.cpp | 225 bool ConstantRange::contains(const ConstantRange &Other) const { in contains() 226 if (isFullSet() || Other.isEmptySet()) return true; in contains() 227 if (isEmptySet() || Other.isFullSet()) return false; in contains() 230 if (Other.isWrappedSet()) in contains() 233 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains() 236 if (!Other.isWrappedSet()) in contains() 237 return Other.getUpper().ule(Upper) || in contains() 238 Lower.ule(Other.getLower()); in contains() 240 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains() 537 ConstantRange::add(const ConstantRange &Other) const { in add() [all …]
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | VariantValue.cpp | 28 MatcherList::MatcherList(const MatcherList& Other) { in MatcherList() argument 29 *this = Other; in MatcherList() 36 MatcherList &MatcherList::operator=(const MatcherList &Other) { in operator =() argument 37 if (this == &Other) return *this; in operator =() 39 for (size_t i = 0, e = Other.List.size(); i != e; ++i) { in operator =() 40 List.push_back(Other.List[i]->clone()); in operator =() 65 VariantValue::VariantValue(const VariantValue &Other) : Type(VT_Nothing) { in VariantValue() argument 66 *this = Other; in VariantValue() 87 VariantValue &VariantValue::operator=(const VariantValue &Other) { in operator =() argument 88 if (this == &Other) return *this; in operator =() [all …]
|
/external/icu4c/test/testdata/ |
D | GraphemeBreakTest.txt | 23 ÷ 0020 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] SPACE (Other) ÷ [0.3] 24 ÷ 0020 × 0308 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [999.0] SPAC… 25 ÷ 0020 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3] 26 ÷ 0020 × 0308 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <CARRI… 27 ÷ 0020 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <LINE FEED (LF)> (LF) ÷ [0.3] 28 ÷ 0020 × 0308 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <LINE … 29 ÷ 0020 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <START OF HEADING> (Control) ÷ [0.3] 30 ÷ 0020 × 0308 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <START… 31 ÷ 0020 × 0300 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING GRAVE ACCENT (Extend) ÷ [0.3] 32 ÷ 0020 × 0308 × 0300 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) × [9.0] COMBIN… [all …]
|
/external/llvm/utils/TableGen/ |
D | AsmWriterInst.h | 71 bool operator!=(const AsmWriterOperand &Other) const { 72 if (OperandType != Other.OperandType || Str != Other.Str) return true; 74 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier; 77 bool operator==(const AsmWriterOperand &Other) const { 78 return !operator!=(Other); 98 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
|
D | DAGISelMatcher.cpp | 37 Matcher *Matcher::unlinkNode(Matcher *Other) { in unlinkNode() argument 38 if (this == Other) in unlinkNode() 43 for (; Cur && Cur->getNext() != Other; Cur = Cur->getNext()) in unlinkNode() 48 Cur->setNext(Other->takeNext()); in unlinkNode() 55 bool Matcher::canMoveBefore(const Matcher *Other) const { in canMoveBefore() 56 for (;; Other = Other->getNext()) { in canMoveBefore() 57 assert(Other && "Other didn't come before 'this'?"); in canMoveBefore() 58 if (this == Other) return true; in canMoveBefore() 61 if (!canMoveBeforeNode(Other)) in canMoveBefore() 68 bool Matcher::canMoveBeforeNode(const Matcher *Other) const { in canMoveBeforeNode() [all …]
|
/external/clang/lib/AST/ |
D | NestedNameSpecifier.cpp | 439 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other) in NestedNameSpecifierLocBuilder() argument 440 : Representation(Other.Representation), Buffer(0), in NestedNameSpecifierLocBuilder() 443 if (!Other.Buffer) in NestedNameSpecifierLocBuilder() 446 if (Other.BufferCapacity == 0) { in NestedNameSpecifierLocBuilder() 448 Buffer = Other.Buffer; in NestedNameSpecifierLocBuilder() 449 BufferSize = Other.BufferSize; in NestedNameSpecifierLocBuilder() 454 BufferSize = Other.BufferSize; in NestedNameSpecifierLocBuilder() 455 BufferCapacity = Other.BufferSize; in NestedNameSpecifierLocBuilder() 457 memcpy(Buffer, Other.Buffer, BufferSize); in NestedNameSpecifierLocBuilder() 462 operator=(const NestedNameSpecifierLocBuilder &Other) { in operator =() argument [all …]
|
/external/clang/tools/diagtool/ |
D | DiagnosticNames.h | 25 bool operator<(const DiagnosticRecord &Other) const { 26 return getName() < Other.getName(); 83 bool operator==(group_iterator &Other) const { 84 return CurrentID == Other.CurrentID; 87 bool operator!=(group_iterator &Other) const { 88 return CurrentID != Other.CurrentID; 108 bool operator<(const GroupRecord &Other) const { 109 return getName() < Other.getName();
|
/external/valgrind/main/drd/tests/ |
D | tc22_exit_w_lock.stderr.exp-32bit | 9 Other segment start (thread 2) 11 Other segment end (thread 2) 21 Other segment start (thread 2) 23 Other segment end (thread 2) 33 Other segment start (thread 2) 35 Other segment end (thread 2) 45 Other segment start (thread 2) 47 Other segment end (thread 2) 57 Other segment start (thread 2) 59 Other segment end (thread 2) [all …]
|
/external/llvm/include/llvm/Object/ |
D | MachOUniversal.h | 48 bool operator==(const ObjectForArch &Other) const { 49 return (Parent == Other.Parent) && (Index == Other.Index); 66 bool operator==(const object_iterator &Other) const { 67 return Obj == Other.Obj; 69 bool operator!=(const object_iterator &Other) const { 70 return !(*this == Other);
|
D | ObjectFile.h | 101 bool operator==(const RelocationRef &Other) const; 145 bool operator==(const SectionRef &Other) const; 146 bool operator<(const SectionRef &Other) const; 209 bool operator==(const SymbolRef &Other) const; 210 bool operator<(const SymbolRef &Other) const; 253 bool operator==(const LibraryRef &Other) const; 254 bool operator<(const LibraryRef &Other) const; 402 inline bool SymbolRef::operator==(const SymbolRef &Other) const { 403 return SymbolPimpl == Other.SymbolPimpl; 406 inline bool SymbolRef::operator<(const SymbolRef &Other) const { [all …]
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | APSIntType.h | 91 bool operator==(const APSIntType &Other) const { 92 return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned; 99 bool operator<(const APSIntType &Other) const { 100 if (BitWidth < Other.BitWidth) 102 if (BitWidth > Other.BitWidth) 104 if (!IsUnsigned && Other.IsUnsigned)
|
/external/llvm/include/llvm/ADT/ |
D | OwningPtr.h | 36 OwningPtr(OwningPtr &&Other) : Ptr(Other.take()) {} in OwningPtr() argument 38 OwningPtr &operator=(OwningPtr &&Other) { 39 reset(Other.take()); 100 OwningArrayPtr(OwningArrayPtr &&Other) : Ptr(Other.take()) {} in OwningArrayPtr() argument 102 OwningArrayPtr &operator=(OwningArrayPtr &&Other) { 103 reset(Other.take());
|
/external/clang/lib/Lex/ |
D | MacroInfo.cpp | 71 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, in isIdenticalTo() argument 76 if (ReplacementTokens.size() != Other.ReplacementTokens.size() || in isIdenticalTo() 77 getNumArgs() != Other.getNumArgs() || in isIdenticalTo() 78 isFunctionLike() != Other.isFunctionLike() || in isIdenticalTo() 79 isC99Varargs() != Other.isC99Varargs() || in isIdenticalTo() 80 isGNUVarargs() != Other.isGNUVarargs()) in isIdenticalTo() 85 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end(); in isIdenticalTo() 93 const Token &B = Other.ReplacementTokens[i]; in isIdenticalTo() 115 if (AArgNum != Other.getArgumentNum(B.getIdentifierInfo())) in isIdenticalTo()
|
/external/chromium_org/third_party/icu/source/test/testdata/ |
D | GraphemeBreakTest.txt | 23 ÷ 0020 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] SPACE (Other) ÷ [0.3] 24 ÷ 0020 × 0308 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [999.0] SPAC… 25 ÷ 0020 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3] 26 ÷ 0020 × 0308 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <CARRI… 27 ÷ 0020 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <LINE FEED (LF)> (LF) ÷ [0.3] 28 ÷ 0020 × 0308 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <LINE … 29 ÷ 0020 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <START OF HEADING> (Control) ÷ [0.3] 30 ÷ 0020 × 0308 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [5.0] <START… 31 ÷ 0020 × 0300 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING GRAVE ACCENT (Extend) ÷ [0.3] 32 ÷ 0020 × 0308 × 0300 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) × [9.0] COMBIN… [all …]
|
/external/clang/test/Analysis/inlining/ |
D | path-notes.cpp | 67 Dereferencer(const Dereferencer &Other) { in Dereferencer() argument 72 Dereferencer(Dereferencer &&Other) { in Dereferencer() argument 77 void operator=(const Dereferencer &Other) { in operator =() argument 82 void operator=(Dereferencer &&Other) { in operator =() argument 102 MovableWrapper(MovableWrapper &&Other) = default; 105 MovableWrapper &operator=(MovableWrapper &&Other) = default;
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/ |
D | p14.cpp | 41 class Other { class 47 void Other::foo(YFloat a, YFloat b) { in foo() 52 namespace Other { namespace 57 using namespace Other;
|
/external/eigen/Eigen/src/Core/ |
D | PermutationMatrix.h | 234 template<typename Other> 235 inline PlainPermutationType operator*(const PermutationBase<Other>& other) const 242 template<typename Other> 243 inline PlainPermutationType operator*(const Transpose<PermutationBase<Other> >& other) const 250 template<typename Other> friend 251 …inline PlainPermutationType operator*(const Transpose<PermutationBase<Other> >& other, const Permu… 319 template<typename Other> 320 explicit inline PermutationMatrix(const MatrixBase<Other>& indices) : m_indices(indices) 324 template<typename Other> 325 explicit PermutationMatrix(const TranspositionsBase<Other>& tr) [all …]
|