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

1 23 4 5 6 7 8 91011>>

  /external/llvm/lib/DebugInfo/
DWARFDebugAranges.h 54 bool operator<(const Range &other) const {
55 return LowPC < other.LowPC;
71 bool operator<(const RangeEndpoint &Other) const {
72 return Address < Other.Address;
  /external/eigen/Eigen/src/Core/
PermutationMatrix.h 78 /** Copies the other permutation into *this */
80 Derived& operator=(const PermutationBase<OtherDerived>& other)
82 indices() = other.indices();
100 Derived& operator=(const PermutationBase& other)
102 indices() = other.indices();
118 void evalTo(MatrixBase<DenseDerived>& other) const
120 other.setZero();
122 other.coeffRef(indices().coeff(i),i) = typename DenseDerived::Scalar(1);
216 void assignTranspose(const PermutationBase<OtherDerived>& other)
218 for (int i=0; i<rows();++i) indices().coeffRef(other.indices().coeff(i)) = i
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 18 // * BOMs anywhere other than the first Unicode scalar value in the file.
203 // Return Value without any escaping or folding or other fun YAML stuff. This
298 bool operator!=(const basic_collection_iterator &Other) const {
299 if (Base != Other.Base)
301 return (Base && Other.Base) &&
302 Base->CurrentEntry != Other.Base->CurrentEntry;
524 bool operator==(const document_iterator &Other) {
525 if (isAtEnd() || Other.isAtEnd())
526 return isAtEnd() && Other.isAtEnd();
528 return Doc == Other.Doc
    [all...]
SourceMgr.h 11 // provides a simple substrate for diagnostics, #include handling, and other low
215 bool operator<(const SMFixIt &Other) const {
216 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
217 return Range.Start.getPointer() < Other.Range.Start.getPointer();
218 if (Range.End.getPointer() != Other.Range.End.getPointer())
219 return Range.End.getPointer() < Other.Range.End.getPointer();
220 return Text < Other.Text;
  /external/llvm/utils/TableGen/
DAGISelMatcher.cpp 34 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
35 /// we unlink the next pointer and return it. Otherwise we unlink Other from
37 Matcher *Matcher::unlinkNode(Matcher *Other) {
38 if (this == Other)
41 // Scan until we find the predecessor of Other.
43 for (; Cur && Cur->getNext() != Other; Cur = Cur->getNext())
48 Cur->setNext(Other->takeNext());
52 /// canMoveBefore - Return true if this matcher is the same as Other, or if
53 /// we can move this matcher past all of the nodes in-between Other and this
54 /// node. Other must be equal to or before this
    [all...]
  /external/llvm/include/llvm/Object/
ObjectFile.h 45 bool operator==(const RelocationRef &Other) const;
89 bool operator==(const SectionRef &Other) const;
90 bool operator!=(const SectionRef &Other) const;
91 bool operator<(const SectionRef &Other) const;
190 bool operator==(const LibraryRef &Other) const;
191 bool operator<(const LibraryRef &Other) const;
208 ObjectFile(const ObjectFile &other) LLVM_DELETED_FUNCTION;
398 inline bool SectionRef::operator==(const SectionRef &Other) const {
399 return SectionPimpl == Other.SectionPimpl;
402 inline bool SectionRef::operator!=(const SectionRef &Other) const
    [all...]
ELF.h 83 bool operator ==(const ELFEntityIterator &Other) {
84 return Current == Other.Current;
87 bool operator !=(const ELFEntityIterator &Other) {
88 return !(*this == Other);
103 ELFEntityIterator &operator =(const ELFEntityIterator &Other) {
104 EntitySize = Other.EntitySize;
105 Current = Other.Current;
109 difference_type operator -(const ELFEntityIterator &Other) const {
110 assert(EntitySize == Other.EntitySize &&
112 return (Current - Other.Current) / EntitySize
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 96 NestedNameSpecifier(const NestedNameSpecifier &Other)
97 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
98 Specifier(Other.Specifier) {
351 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other);
354 operator=(const NestedNameSpecifierLocBuilder &Other);
436 void Adopt(NestedNameSpecifierLoc Other);
DeclFriend.h 201 bool operator==(const friend_iterator &Other) const {
202 return Ptr == Other.Ptr;
205 bool operator!=(const friend_iterator &Other) const {
206 return Ptr != Other.Ptr;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestView.js 12 * in the documentation and/or other materials provided with the
65 if (request.type === WebInspector.resourceTypes.Other || request.hasErrorStatusCode())
  /external/clang/test/Misc/
ast-dump-decl.cpp 141 TestMemberRanges(const TestMemberRanges &Other) = default;
142 TestMemberRanges(TestMemberRanges &&Other) = default;
144 TestMemberRanges &operator=(const TestMemberRanges &Other) = default;
145 TestMemberRanges &operator=(TestMemberRanges &&Other) = default;
  /external/clang/include/clang/Sema/
Lookup.h 150 // forcing other cases towards the constructor taking a DNInfo.
173 LookupResult(TemporaryToken _, const LookupResult &Other)
177 SemaRef(Other.SemaRef),
178 NameInfo(Other.NameInfo),
179 LookupKind(Other.LookupKind),
180 IDNS(Other.IDNS),
181 Redecl(Other.Redecl),
182 HideTags(Other.HideTags),
184 AllowHidden(Other.AllowHidden),
382 void addAllDecls(const LookupResult &Other) {
    [all...]
Overload.h 447 ImplicitConversionSequence(const ImplicitConversionSequence &Other)
448 : ConversionKind(Other.ConversionKind),
449 StdInitializerListElement(Other.StdInitializerListElement)
453 case StandardConversion: Standard = Other.Standard; break;
454 case UserDefinedConversion: UserDefined = Other.UserDefined; break;
455 case AmbiguousConversion: Ambiguous.copyFrom(Other.Ambiguous); break;
457 case BadConversion: Bad = Other.Bad; break;
462 operator=(const ImplicitConversionSequence &Other) {
464 new (this) ImplicitConversionSequence(Other);
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 14 template<typename Other,
15 int OtherRows=Other::RowsAtCompileTime,
16 int OtherCols=Other::ColsAtCompileTime>
28 * orientations and rotations of objects in three dimensions. Compared to other representations
112 inline Quaternion(const Quaternion& other) { m_coeffs = other.m_coeffs; }
123 explicit inline Quaternion(const MatrixBase<Derived>& other) { *this = other; }
125 Quaternion& operator=(const Quaternion& other);
156 /** \returns the dot product of \c *this and \a other
    [all...]
Transform.h 18 template< typename Other,
21 int OtherRows=Other::RowsAtCompileTime,
22 int OtherCols=Other::ColsAtCompileTime>
81 inline Transform(const Transform& other)
83 m_matrix = other.m_matrix;
91 inline Transform& operator=(const Transform& other)
92 { m_matrix = other.m_matrix; return *this; }
97 static inline void run(Transform *transform, const MatrixBase<OtherDerived>& other)
99 transform->matrix() = other;
105 static inline void run(Transform *transform, const MatrixBase<OtherDerived>& other)
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 38 template< typename Other,
43 int OtherRows=Other::RowsAtCompileTime,
44 int OtherCols=Other::ColsAtCompileTime>
54 template< typename Other,
59 int OtherRows=Other::RowsAtCompileTime,
60 int OtherCols=Other::ColsAtCompileTime>
103 * with any other transformations (Transform,Translation,RotationBase,Matrix)
150 * The concatenation of a Transform object with any kind of other transformation
237 inline Transform(const Transform& other)
240 m_matrix = other.m_matrix
    [all...]
  /external/clang/include/clang/Basic/
Visibility.h 88 void mergeLinkage(LinkageInfo other) {
89 mergeLinkage(other.getLinkage());
102 void mergeExternalVisibility(LinkageInfo Other) {
103 mergeExternalVisibility(Other.getLinkage());
123 void mergeVisibility(LinkageInfo other) {
124 mergeVisibility(other.getVisibility(), other.isVisibilityExplicit());
128 void merge(LinkageInfo other) {
129 mergeLinkage(other);
130 mergeVisibility(other);
    [all...]
  /external/clang/lib/Driver/
Multilib.cpp 115 bool Multilib::operator==(const Multilib &Other) const {
122 for (const auto &Flag : Other.Flags)
126 if (osSuffix() != Other.osSuffix())
129 if (gccSuffix() != Other.gccSuffix())
132 if (includeSuffix() != Other.includeSuffix())
261 void MultilibSet::combineWith(const MultilibSet &Other) {
262 Multilibs.insert(Multilibs.end(), Other.begin(), Other.end());
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp 135 /// other things get coalesced, then it returns true by reference in
157 /// other than BValNo val# that can reach uses of AValno val# of IntA.
163 /// its other operand is coalesced to the copy dest register, see if we
516 /// other than BValNo val# that can reach uses of AValno val# of IntA.
548 /// commutable instruction and its other operand is coalesced to the copy dest
617 // Make sure there are no other definitions of IntB that would reach the
    [all...]
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 154 UnusedInputDiagConsumer() : Other(nullptr) {}
158 UnusedInputDiagConsumer(DiagnosticConsumer *Other) : Other(Other) {}
166 if (Other)
167 Other->HandleDiagnostic(DiagLevel, Info);
170 DiagnosticConsumer *Other;
235 // driver to construct. If the user specified some other argument that
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 71 /// PHI-defs begin at a block boundary, all other defs begin at register or
175 bool operator<(const Segment &Other) const {
176 return std::tie(start, end) < std::tie(Other.start, Other.end);
178 bool operator==(const Segment &Other) const {
179 return start == Other.start && end == Other.end;
377 bool overlaps(const LiveRange &other) const {
378 if (other.empty())
380 return overlapsFrom(other, other.begin())
    [all...]
ScheduleDAG.h 52 Order ///< Any other ordering dependency.
125 bool overlaps(const SDep &Other) const {
126 if (Dep != Other.Dep) return false;
131 return Contents.Reg == Other.Contents.Reg;
133 return Contents.OrdKind == Other.Contents.OrdKind;
138 bool operator==(const SDep &Other) const {
139 return overlaps(Other) && Latency == Other.Latency;
142 bool operator!=(const SDep &Other) const {
143 return !operator==(Other);
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 48 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src,
51 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src,
102 // used if ByteVal is all zeros or all ones; in other casees,
119 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chain1, Chain2);
133 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chain1, Chain2);
160 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
212 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other, MVT::Glue);
241 SDVTList VTs = DAG.getVTList(Dest.getValueType(), MVT::Other);
252 SDVTList VTs = DAG.getVTList(Src1.getValueType(), MVT::Other, MVT::Glue);
269 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other, MVT::Glue)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 99 /// When other definitions are possible, returns the region whose runtime type
388 AnyFunctionCall(const AnyFunctionCall &Other) : CallEvent(Other) {}
435 SimpleFunctionCall(const SimpleFunctionCall &Other)
436 : AnyFunctionCall(Other) {}
472 BlockCall(const BlockCall &Other) : CallEvent(Other) {}
534 CXXInstanceCall(const CXXInstanceCall &Other) : AnyFunctionCall(Other) {}
567 CXXMemberCall(const CXXMemberCall &Other) : CXXInstanceCall(Other) {
    [all...]
  /external/clang/test/SemaCXX/
conversion-function.cpp 214 struct Other {
215 Other(const Other &);
216 Other();
220 Any any = Other(); // expected-error{{cannot pass object of non-POD type 'Other' through variadic constructor; call will abort at runtime}}

Completed in 550 milliseconds

1 23 4 5 6 7 8 91011>>