HomeSort by relevance Sort by last modified time
    Searched refs:Other (Results 1 - 25 of 330) 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...]
  /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;
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
pyclbr_input.py 5 class Other(object):
15 foo = Other().foo
16 om = Other.om
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
pyclbr_input.py 5 class Other(object):
15 foo = Other().foo
16 om = Other.om
  /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...]
  /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)
  /external/valgrind/main/drd/tests/
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)
sem_as_mutex.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)
sem_open.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)
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)
  /external/clang/test/Index/
complete-member-access.m 37 @interface Other
41 int test_two_levels(Other *other) {
42 return other.sub.myProp;

Completed in 1095 milliseconds

1 2 3 4 5 6 7 8 91011>>