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

1 2 3 4 5 6 7 8 9

  /external/clang/test/Modules/Inputs/
category_other.h 3 @interface Foo(Other)
4 -(void)other;
  /external/clang/include/clang/AST/
CharUnits.h 69 CharUnits& operator+= (const CharUnits &Other) {
70 Quantity += Other.Quantity;
80 CharUnits& operator-= (const CharUnits &Other) {
81 Quantity -= Other.Quantity;
93 bool operator== (const CharUnits &Other) const {
94 return Quantity == Other.Quantity;
96 bool operator!= (const CharUnits &Other) const {
97 return Quantity != Other.Quantity;
101 bool operator< (const CharUnits &Other) const {
102 return Quantity < Other.Quantity;
    [all...]
  /external/llvm/include/llvm/Support/
ErrorOr.h 212 ErrorOr(const ErrorOr &Other) : IsValid(false) {
213 copyConstruct(Other);
217 ErrorOr(const ErrorOr<OtherT> &Other) : IsValid(false) {
218 copyConstruct(Other);
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) {
234 moveConstruct(std::move(Other));
    [all...]
ConstantRange.h 22 // The other integral ranges use min/max values for special range values. For
61 /// contained within Other.
67 const ConstantRange &Other);
104 /// contains - Return true if the other range is a subset of this one.
206 /// from an addition of a value in this range and a value in \p Other.
207 ConstantRange add(const ConstantRange &Other) const;
210 /// from a subtraction of a value in this range and a value in \p Other.
211 ConstantRange sub(const ConstantRange &Other) const;
214 /// from a multiplication of a value in this range and a value in \p Other.
216 ConstantRange multiply(const ConstantRange &Other) const
    [all...]
  /external/clang/tools/diagtool/
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/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);
98 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
  /external/llvm/include/llvm/MC/
MCSchedule.h 11 // for scheduling and other instruction cost heuristics.
39 bool operator==(const MCProcResourceDesc &Other) const {
40 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
41 && IsBuffered == Other.IsBuffered;
51 bool operator==(const MCWriteProcResEntry &Other) const {
52 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
65 bool operator==(const MCWriteLatencyEntry &Other) const {
66 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;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 88 bool operator==(const APSIntType &Other) const {
89 return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
96 bool operator<(const APSIntType &Other) const {
97 if (BitWidth < Other.BitWidth)
99 if (BitWidth > Other.BitWidth)
101 if (!IsUnsigned && Other.IsUnsigned)
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 195 PartialDiagnostic(const PartialDiagnostic &Other)
196 : DiagID(Other.DiagID), DiagStorage(0), Allocator(Other.Allocator)
198 if (Other.DiagStorage) {
200 *DiagStorage = *Other.DiagStorage;
205 PartialDiagnostic(PartialDiagnostic &&Other)
206 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage),
207 Allocator(Other.Allocator) {
208 Other.DiagStorage = 0
    [all...]
  /external/harfbuzz/src/
harfbuzz-indic.cpp 63 Other
86 Nukta, Other, Matra, Matra,
93 Other, StressMark, StressMark, StressMark,
99 Other, Other, Other, Other,
100 Other, Other, Other, Other
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-indic.cpp 63 Other
86 Nukta, Other, Matra, Matra,
93 Other, StressMark, StressMark, StressMark,
99 Other, Other, Other, Other,
100 Other, Other, Other, Other
    [all...]
  /dalvik/tests/046-reflect/src/otherpackage/
Other.java 19 public class Other {
  /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/Support/
ConstantRange.cpp 15 // ranges (other integral ranges use min/max values for special range values):
221 /// Two equal sets contain each other. The empty set contained by all other
224 bool ConstantRange::contains(const ConstantRange &Other) const {
225 if (isFullSet() || Other.isEmptySet()) return true;
226 if (isEmptySet() || Other.isFullSet()) return false;
229 if (Other.isWrappedSet())
232 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
235 if (!Other.isWrappedSet()
    [all...]
  /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"* %this, %"struct.no_elide_base::Other"* %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/lib/Lex/
MacroInfo.cpp 67 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP) const {
69 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
70 getNumArgs() != Other.getNumArgs() ||
71 isFunctionLike() != Other.isFunctionLike() ||
72 isC99Varargs() != Other.isC99Varargs() ||
73 isGNUVarargs() != Other.isGNUVarargs())
77 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end();
84 const Token &B = Other.ReplacementTokens[i];
  /external/llvm/include/llvm/ADT/
OwningPtr.h 36 OwningPtr(OwningPtr &&Other) : Ptr(Other.take()) {}
38 OwningPtr &operator=(OwningPtr &&Other) {
39 reset(Other.take());
99 OwningArrayPtr(OwningArrayPtr &&Other) : Ptr(Other.take()) {}
101 OwningArrayPtr &operator=(OwningArrayPtr &&Other) {
102 reset(Other.take());
  /external/clang/test/Index/
complete-member-access.m 37 @interface Other
41 int test_two_levels(Other *other) {
42 return other.sub.myProp;
  /external/valgrind/main/drd/tests/
sem_as_mutex3.stderr.exp 6 Other segment start (thread 2)
8 Other segment end (thread 2)
sem_open3.stderr.exp 6 Other segment start (thread 2)
8 Other segment end (thread 2)
fp_race.stderr.exp 6 Other segment start (thread 2)
8 Other segment end (thread 2)
15 Other segment start (thread 2)
17 Other segment end (thread 2)
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)

Completed in 631 milliseconds

1 2 3 4 5 6 7 8 9