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

1 23 4 5 6 7 8 91011>>

  /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...]
AsmWriterInst.cpp 221 unsigned AsmWriterInst::MatchesAllButOneOp(const AsmWriterInst &Other)const{
222 if (Operands.size() != Other.Operands.size()) return ~1;
226 if (Operands[i] != Other.Operands[i]) {
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 95 NestedNameSpecifier(const NestedNameSpecifier &Other)
96 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
97 Specifier(Other.Specifier) {
349 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other);
352 operator=(const NestedNameSpecifierLocBuilder &Other);
434 void Adopt(NestedNameSpecifierLoc Other);
DeclFriend.h 200 bool operator==(const friend_iterator &Other) const {
201 return Ptr == Other.Ptr;
204 bool operator!=(const friend_iterator &Other) const {
205 return Ptr != Other.Ptr;
CanonicalType.h 35 /// to the canonical representation of a type, where all typedefs and other
64 CanQual(const CanQual<U>& Other,
153 /// the @p Other canonical type.
154 bool isMoreQualifiedThan(CanQual<T> Other) const {
155 return Stored.isMoreQualifiedThan(Other.Stored);
159 /// the @p Other canonical type.
160 bool isAtLeastAsQualifiedAs(CanQual<T> Other) const {
161 return Stored.isAtLeastAsQualifiedAs(Other.Stored);
179 static CanQual<T> CreateUnsafe(QualType Other);
692 CanQual<T> CanQual<T>::CreateUnsafe(QualType Other) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RequestView.js 12 * in the documentation and/or other materials provided with the
61 if (request.type === WebInspector.resourceTypes.Other || request.hasErrorStatusCode())
ResourceType.js 13 * documentation and/or other materials provided with the distribution.
123 Other: new WebInspector.ResourceType("other", "Other", "Other", "rgb(186,186,186)", false)
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 41 return DAG.getNode(SystemZISD::MVC, DL, MVT::Other,
80 // used if ByteVal is all zeros or all ones; in other casees,
97 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chain1, Chain2);
111 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chain1, Chain2);
122 return DAG.getNode(SystemZISD::MVC, DL, MVT::Other, Chain, Dst2, Dst,
  /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/chromium_org/chrome/browser/extensions/api/activity_log_private/
activity_log_private_api_unittest.cc 64 scoped_ptr<ExtensionActivity::Other> other(result->other.Pass());
65 ASSERT_EQ(ExtensionActivity::Other::DOM_VERB_INSERTED, other->dom_verb);
66 ASSERT_TRUE(other->prerender.get());
  /external/chromium_org/chrome/test/pyautolib/
bookmark_model.py 31 def Other(self):
32 """Return the 'other' node (e.g. parent of "Other Bookmarks")"""
33 return self.bookdict['roots']['other']
  /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/llvm/include/llvm/Support/
SourceMgr.h 11 // provides a simple substrate for diagnostics, #include handling, and other low
194 bool operator<(const SMFixIt &Other) const {
195 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
196 return Range.Start.getPointer() < Other.Range.Start.getPointer();
197 if (Range.End.getPointer() != Other.Range.End.getPointer())
198 return Range.End.getPointer() < Other.Range.End.getPointer();
199 return Text < Other.Text;
  /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
517 /// other than BValNo val# that can reach uses of AValno val# of IntA.
549 /// commutable instruction and its other operand is coalesced to the copy dest
620 // Make sure there are no other definitions of IntB that would reach the
    [all...]
MachineInstr.cpp 170 bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
171 if (getType() != Other.getType() ||
172 getTargetFlags() != Other.getTargetFlags())
177 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
178 getSubReg() == Other.getSubReg();
180 return getImm() == Other.getImm();
182 return getCImm() == Other.getCImm();
184 return getFPImm() == Other.getFPImm();
186 return getMBB() == Other.getMBB()
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 451 ImplicitConversionSequence(const ImplicitConversionSequence &Other)
452 : ConversionKind(Other.ConversionKind),
453 ListInitializationSequence(Other.ListInitializationSequence),
454 StdInitializerListElement(Other.StdInitializerListElement)
458 case StandardConversion: Standard = Other.Standard; break;
459 case UserDefinedConversion: UserDefined = Other.UserDefined; break;
460 case AmbiguousConversion: Ambiguous.copyFrom(Other.Ambiguous); break;
462 case BadConversion: Bad = Other.Bad; break;
467 operator=(const ImplicitConversionSequence &Other) {
469 new (this) ImplicitConversionSequence(Other);
    [all...]
  /external/llvm/include/llvm/CodeGen/
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/clang/test/SemaCXX/
conversion-function.cpp 211 struct Other {
212 Other(const Other &);
213 Other();
217 Any any = Other(); // expected-error{{cannot pass object of non-POD type 'Other' through variadic constructor; call will abort at runtime}}
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 60 /// The method returns false if the other dominator tree matches this
63 inline bool compare(DominatorTree &Other) const {
65 DomTreeNode *OtherR = Other.getRootNode();
70 if (DT->compare(Other.getBase()))
101 /// \brief This method tests if one CFGBlock dominates the other.
109 /// \brief This method tests if one CFGBlock properly dominates the other.
  /external/llvm/include/llvm/Analysis/
DominanceFrontier.h 115 /// compare - Return true if the other dominance frontier base matches
117 bool compare(DominanceFrontierBase &Other) const {
119 for (DomSetMapType::const_iterator I = Other.begin(),
120 E = Other.end(); I != E; ++I)
  /external/llvm/include/llvm/TableGen/
Record.h 59 // Other classes.
527 /// resolveReferences - This method is used by classes that refer to other
559 TypedInit(const TypedInit &Other) LLVM_DELETED_FUNCTION;
560 TypedInit &operator=(const TypedInit &Other) LLVM_DELETED_FUNCTION;
596 UnsetInit &operator=(const UnsetInit &Other) LLVM_DELETED_FUNCTION;
624 BitInit(const BitInit &Other) LLVM_DELETED_FUNCTION;
625 BitInit &operator=(BitInit &Other) LLVM_DELETED_FUNCTION;
657 BitsInit(const BitsInit &Other) LLVM_DELETED_FUNCTION;
658 BitsInit &operator=(const BitsInit &Other) LLVM_DELETED_FUNCTION;
705 IntInit(const IntInit &Other) LLVM_DELETED_FUNCTION
    [all...]
  /external/llvm/include/llvm/Object/
MachO.h 40 bool operator==(const DiceRef &Other) const;
41 bool operator<(const DiceRef &Other) const;
218 inline bool DiceRef::operator==(const DiceRef &Other) const {
219 return DicePimpl == Other.DicePimpl;
222 inline bool DiceRef::operator<(const DiceRef &Other) const {
223 return DicePimpl < Other.DicePimpl;
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineUtil.h 29 EIGEN_STRONG_INLINE Derived& operator Op(const Eigen::SkylineMatrixBase<OtherDerived>& other) \
31 return Base::operator Op(other.derived()); \
33 EIGEN_STRONG_INLINE Derived& operator Op(const Derived& other) \
35 return Base::operator Op(other); \
39 template<typename Other> \
40 EIGEN_STRONG_INLINE Derived& operator Op(const Other& scalar) \

Completed in 631 milliseconds

1 23 4 5 6 7 8 91011>>