HomeSort by relevance Sort by last modified time
    Searched refs:Other (Results 1 - 25 of 310) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Format/
ContinuationIndenter.h 125 /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't
260 bool operator<(const ParenState &Other) const {
261 if (Indent != Other.Indent)
262 return Indent < Other.Indent;
263 if (LastSpace != Other.LastSpace)
264 return LastSpace < Other.LastSpace;
265 if (FirstLessLess != Other.FirstLessLess)
266 return FirstLessLess < Other.FirstLessLess;
267 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
269 if (QuestionColumn != Other.QuestionColumn
    [all...]
  /external/clang/test/Modules/Inputs/
category_other.h 3 @interface Foo(Other)
4 -(void)other;
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
destructor_access_finalized_field.h 12 class Other : public RefCounted<Other> {
24 RefPtr<Other> m_ref;
  /external/clang/include/clang/AST/
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...]
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...]
  /external/clang/tools/diagtool/
DiagnosticNames.h 25 bool operator<(const DiagnosticRecord &Other) const {
26 return getName() < Other.getName();
77 bool operator==(group_iterator &Other) const {
78 return CurrentID == Other.CurrentID;
81 bool operator!=(group_iterator &Other) const {
82 return CurrentID != Other.CurrentID;
94 bool operator<(llvm::StringRef Other) const {
95 return getName() < Other;
  /external/llvm/utils/TableGen/
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);
97 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
  /external/llvm/include/llvm/MC/
MCSchedule.h 11 // for scheduling and other instruction cost heuristics.
47 bool operator==(const MCProcResourceDesc &Other) const {
48 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
49 && BufferSize == Other.BufferSize;
59 bool operator==(const MCWriteProcResEntry &Other) const {
60 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
73 bool operator==(const MCWriteLatencyEntry &Other) const {
74 return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID
    [all...]
MachineLocation.h 45 bool operator==(const MachineLocation &Other) const {
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
47 Offset == Other.Offset;
MCELF.h 31 static void setOther(MCSymbolData &SD, unsigned Other);
  /external/llvm/include/llvm/Support/
ErrorOr.h 113 ErrorOr(const ErrorOr &Other) {
114 copyConstruct(Other);
118 ErrorOr(const ErrorOr<OtherT> &Other) {
119 copyConstruct(Other);
122 ErrorOr &operator =(const ErrorOr &Other) {
123 copyAssign(Other);
128 ErrorOr &operator =(const ErrorOr<OtherT> &Other) {
129 copyAssign(Other);
133 ErrorOr(ErrorOr &&Other) {
134 moveConstruct(std::move(Other));
    [all...]
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 187 PartialDiagnostic(const PartialDiagnostic &Other)
188 : DiagID(Other.DiagID), DiagStorage(nullptr), Allocator(Other.Allocator)
190 if (Other.DiagStorage) {
192 *DiagStorage = *Other.DiagStorage;
196 PartialDiagnostic(PartialDiagnostic &&Other)
197 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage),
198 Allocator(Other.Allocator) {
199 Other.DiagStorage = nullptr
    [all...]
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;
  /art/test/046-reflect/src/otherpackage/
Other.java 19 public class Other {
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p14.cpp 41 class Other {
47 void Other::foo(YFloat a, YFloat b) {
52 namespace Other {
57 using namespace Other;
  /external/llvm/include/llvm/IR/
ConstantRange.h 22 // The other integral ranges use min/max values for special range values. For
64 /// contained within Other.
70 const ConstantRange &Other);
107 /// contains - Return true if the other range is a subset of this one.
209 /// from an addition of a value in this range and a value in \p Other.
210 ConstantRange add(const ConstantRange &Other) const;
213 /// from a subtraction of a value in this range and a value in \p Other.
214 ConstantRange sub(const ConstantRange &Other) const;
217 /// from a multiplication of a value in this range and a value in \p Other.
219 ConstantRange multiply(const ConstantRange &Other) const
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 92 bool operator==(const APSIntType &Other) const {
93 return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
100 bool operator<(const APSIntType &Other) const {
102 std::tie(Other.BitWidth, Other.IsUnsigned);
  /external/llvm/include/llvm/Object/
MachOUniversal.h 50 bool operator==(const ObjectForArch &Other) const {
51 return (Parent == Other.Parent) && (Index == Other.Index);
74 bool operator==(const object_iterator &Other) const {
75 return Obj == Other.Obj;
77 bool operator!=(const object_iterator &Other) const {
78 return !(*this == Other);
  /external/clang/include/clang/ASTMatchers/Dynamic/
Registry.h 48 bool operator==(const MatcherCompletion &Other) const {
49 return TypedText == Other.TypedText && MatcherDecl == Other.MatcherDecl;
  /external/clang/test/CodeGenCXX/
copy-constructor-elim-2.cpp 16 struct Other {
21 Derived(const Other &O);
24 // CHECK: define {{.*}} @_ZN13no_elide_base7DerivedC1ERKNS_5OtherE(%"struct.no_elide_base::Derived"* returned %this, %"struct.no_elide_base::Other"* nonnull %O) unnamed_addr
25 Derived::Derived(const Other &O)
derived-to-base-conv.cpp 11 B(const B& Other);
17 C(const C& Other);
  /external/clang/test/Index/
complete-member-access.m 37 @interface Other
41 int test_two_levels(Other *other) {
42 return other.sub.myProp;
  /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/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/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...]

Completed in 816 milliseconds

1 2 3 4 5 6 7 8 91011>>