HomeSort by relevance Sort by last modified time
    Searched refs:Other (Results 26 - 50 of 330) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/AST/
ASTTypeTraits.h 56 /// \brief Returns \c true if \c this and \c Other represent the same kind.
57 bool isSame(ASTNodeKind Other) const;
59 /// \brief Returns \c true if \c this is a base kind of (or same as) \c Other.
61 /// and \c Other in the class hierarchy.
62 bool isBaseOf(ASTNodeKind Other, unsigned *Distance = nullptr) const;
68 bool operator<(const ASTNodeKind &Other) const {
69 return KindId < Other.KindId;
178 /// For other types (like \c QualType) the value is stored directly
201 /// return their SourceRange. For all other nodes, return SourceRange().
208 /// FIXME: Implement comparsion for other node types (currentl
    [all...]
DependentDiagnostic.h 149 bool operator==(ddiag_iterator Other) const {
150 return Ptr == Other.Ptr;
153 bool operator!=(ddiag_iterator Other) const {
154 return Ptr != Other.Ptr;
  /external/clang/lib/Lex/
MacroInfo.cpp 72 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
77 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
78 getNumArgs() != Other.getNumArgs() ||
79 isFunctionLike() != Other.isFunctionLike() ||
80 isC99Varargs() != Other.isC99Varargs() ||
81 isGNUVarargs() != Other.isGNUVarargs())
86 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end();
94 const Token &B = Other.ReplacementTokens[i];
116 if (AArgNum != Other.getArgumentNum(B.getIdentifierInfo()))
  /external/clang/include/clang/Basic/
ABI.h 67 bool Equals(const VirtualAdjustment &Other) const {
68 return memcmp(this, &Other, sizeof(Other)) == 0;
135 bool Equals(const VirtualAdjustment &Other) const {
136 return memcmp(this, &Other, sizeof(Other)) == 0;
  /external/clang/test/Analysis/inlining/
path-notes.cpp 67 Dereferencer(const Dereferencer &Other) {
72 Dereferencer(Dereferencer &&Other) {
77 void operator=(const Dereferencer &Other) {
82 void operator=(Dereferencer &&Other) {
102 MovableWrapper(MovableWrapper &&Other) = default;
105 MovableWrapper &operator=(MovableWrapper &&Other) = default;
    [all...]
  /external/clang/test/CodeGenCXX/
derived-to-base-conv.cpp 11 B(const B& Other);
17 C(const C& Other);
  /external/llvm/lib/IR/
ConstantRange.cpp 15 // ranges (other integral ranges use min/max values for special range values):
219 /// Two equal sets contain each other. The empty set contained by all other
222 bool ConstantRange::contains(const ConstantRange &Other) const {
223 if (isFullSet() || Other.isEmptySet()) return true;
224 if (isEmptySet() || Other.isFullSet()) return false;
227 if (Other.isWrappedSet())
230 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
233 if (!Other.isWrappedSet()
    [all...]
  /external/valgrind/main/drd/tests/
hg04_race.stderr.exp 8 Other segment start (thread 2)
10 Other segment end (thread 2)
18 Other segment start (thread 2)
20 Other segment end (thread 2)
hg05_race2.stderr.exp 8 Other segment start (thread 2)
10 Other segment end (thread 2)
18 Other segment start (thread 2)
20 Other segment end (thread 2)
tc21_pthonce.stderr.exp 8 Other segment start (thread 2)
10 Other segment end (thread 2)
18 Other segment start (thread 2)
20 Other segment end (thread 2)
  /external/llvm/include/llvm/MC/
MCELF.h 31 static void setOther(MCSymbolData &SD, unsigned Other);
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 441 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other)
442 : Representation(Other.Representation), Buffer(nullptr),
445 if (!Other.Buffer)
448 if (Other.BufferCapacity == 0) {
450 Buffer = Other.Buffer;
451 BufferSize = Other.BufferSize;
456 BufferSize = Other.BufferSize;
457 BufferCapacity = Other.BufferSize;
459 memcpy(Buffer, Other.Buffer, BufferSize);
464 operator=(const NestedNameSpecifierLocBuilder &Other) {
    [all...]
ASTTypeTraits.cpp 42 bool ASTNodeKind::isBaseOf(ASTNodeKind Other, unsigned *Distance) const {
43 return isBaseOf(KindId, Other.KindId, Distance);
46 bool ASTNodeKind::isSame(ASTNodeKind Other) const {
47 return KindId != NKI_None && KindId == Other.KindId;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 146 inline bool operator==(const RelocationValueRef &Other) const {
147 return SectionID == Other.SectionID && Offset == Other.Offset &&
148 Addend == Other.Addend && SymbolName == Other.SymbolName;
150 inline bool operator<(const RelocationValueRef &Other) const {
151 if (SectionID != Other.SectionID)
152 return SectionID < Other.SectionID;
153 if (Offset != Other.Offset)
154 return Offset < Other.Offset
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.h 243 template<class Other>
245 typedef pool_allocator<Other> other; typedef in struct:pool_allocator::rebind
254 template <class Other>
255 pool_allocator<T>& operator=(const pool_allocator<Other>& p) {
260 template<class Other>
261 pool_allocator(const pool_allocator<Other>& p) : allocator(&p.getAllocator()) { }
  /external/clang/include/clang/Analysis/Analyses/
Consumed.h 146 ConsumedStateMap(const ConsumedStateMap &Other)
147 : Reachable(Other.Reachable), From(Other.From), VarMap(Other.VarMap),
165 void intersect(const ConsumedStateMap *Other);
194 /// \param Other -- The second map to compare against.
195 bool operator!=(const ConsumedStateMap *Other) const;
  /external/llvm/include/llvm/Object/
SymbolicFile.h 58 bool operator==(const content_iterator &other) const {
59 return Current == other.Current;
62 bool operator!=(const content_iterator &other) const {
63 return !(*this == other);
97 bool operator==(const BasicSymbolRef &Other) const;
98 bool operator<(const BasicSymbolRef &Other) const;
164 inline bool BasicSymbolRef::operator==(const BasicSymbolRef &Other) const {
165 return SymbolPimpl == Other.SymbolPimpl;
168 inline bool BasicSymbolRef::operator<(const BasicSymbolRef &Other) const {
169 return SymbolPimpl < Other.SymbolPimpl
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 15 // other clients.
158 bool operator==(const RetEffect &Other) const {
159 return K == Other.K && O == Other.O;
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 31 void BoundNodesTreeBuilder::addMatch(const BoundNodesTreeBuilder &Other) {
32 for (unsigned i = 0, e = Other.Bindings.size(); i != e; ++i) {
33 Bindings.push_back(Other.Bindings[i]);
  /external/llvm/test/MC/ARM/
arm-elf-symver.s 41 @ CHECK-NEXT: Other: 0
50 @ CHECK-NEXT: Other: 0
59 @ CHECK-NEXT: Other: 0
68 @ CHECK-NEXT: Other: 0
77 @ CHECK-NEXT: Other: 0
86 @ CHECK-NEXT: Other: 0
95 @ CHECK-NEXT: Other: 0
104 @ CHECK-NEXT: Other: 0
113 @ CHECK-NEXT: Other: 0
122 @ CHECK-NEXT: Other:
    [all...]
thumb-st_other.s 19 @ CHECK: Other: 0
  /external/llvm/lib/MC/
MCELF.cpp 72 // Other is stored in the last six bits of st_other
74 void MCELF::setOther(MCSymbolData &SD, unsigned Other) {
76 SD.setFlags(OtherFlags | (Other << ELF_STO_Shift));
80 unsigned Other =
82 return Other;
  /external/llvm/test/MC/Mips/
micromips-alias.s 6 # CHECK: Other: 128
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 155 VariantValue::VariantValue(const VariantValue &Other) : Type(VT_Nothing) {
156 *this = Other;
173 VariantValue &VariantValue::operator=(const VariantValue &Other) {
174 if (this == &Other) return *this;
176 switch (Other.Type) {
178 setUnsigned(Other.getUnsigned());
181 setString(Other.getString());
184 setMatcher(Other.getMatcher());
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 75 /// Other - This marker indicates that the query has no known dependency
78 Other
80 /// If DepType is "Other", the upper part of the pair
85 /// the specified block. To find out more, the client should query other
114 PairTy(reinterpret_cast<Instruction*>(NonLocal), Other));
118 PairTy(reinterpret_cast<Instruction*>(NonFuncLocal), Other));
122 PairTy(reinterpret_cast<Instruction*>(Unknown), Other));
137 return Value.getInt() == Other
144 return Value.getInt() == Other
151 return Value.getInt() == Other
    [all...]

Completed in 771 milliseconds

12 3 4 5 6 7 8 91011>>