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

1 2 34 5 6 7 8 91011>>

  /external/clang/include/clang/AST/
CanonicalType.h 34 /// to the canonical representation of a type, where all typedefs and other
63 CanQual(const CanQual<U> &Other,
152 /// the @p Other canonical type.
153 bool isMoreQualifiedThan(CanQual<T> Other) const {
154 return Stored.isMoreQualifiedThan(Other.Stored);
158 /// the @p Other canonical type.
159 bool isAtLeastAsQualifiedAs(CanQual<T> Other) const {
160 return Stored.isAtLeastAsQualifiedAs(Other.Stored);
178 static CanQual<T> CreateUnsafe(QualType Other);
691 CanQual<T> CanQual<T>::CreateUnsafe(QualType Other) {
    [all...]
CXXInheritance.h 104 /// other hand, consider the following class hierarchy:
229 void swap(CXXBasePaths &Other);
299 // Add all of the overriding methods from "other" into overrides for
302 void add(const OverridingMethods &Other);
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 66 /// The method returns false if the other dominator tree matches this
69 inline bool compare(DominatorTree &Other) const {
71 DomTreeNode *OtherR = Other.getRootNode();
76 if (DT->compare(Other.getBase()))
107 /// \brief This method tests if one CFGBlock dominates the other.
115 /// \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/IR/
Dominators.h 72 /// \brief Returns *false* if the other dominator tree matches this dominator
74 inline bool compare(const DominatorTree &Other) const {
76 const DomTreeNode *OtherR = Other.getRootNode();
81 if (Base::compare(Other))
  /external/llvm/lib/Support/
SpecialCaseList.cpp 38 Entry(Entry &&Other)
39 : Strings(std::move(Other.Strings)), RegEx(std::move(Other.RegEx)) {}
  /external/llvm/utils/TableGen/
AsmWriterInst.cpp 190 unsigned AsmWriterInst::MatchesAllButOneOp(const AsmWriterInst &Other)const{
191 if (Operands.size() != Other.Operands.size()) return ~1;
195 if (Operands[i] != Other.Operands[i]) {
  /external/chromium_org/chrome/browser/extensions/api/activity_log_private/
activity_log_private_api_unittest.cc 66 scoped_ptr<ExtensionActivity::Other> other(result->other.Pass());
67 ASSERT_EQ(ExtensionActivity::Other::DOM_VERB_INSERTED, other->dom_verb);
68 ASSERT_TRUE(other->prerender.get());
  /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) \
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 169 bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
170 if (getType() != Other.getType() ||
171 getTargetFlags() != Other.getTargetFlags())
176 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
177 getSubReg() == Other.getSubReg();
179 return getImm() == Other.getImm();
181 return getCImm() == Other.getCImm();
183 return getFPImm() == Other.getFPImm();
185 return getMBB() == Other.getMBB()
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_actions.cc 86 // refcount is one. However, there are likely to be other stray references in
99 if (other())
100 clone->set_other(make_scoped_ptr(other()->DeepCopy()));
178 void Action::set_other(scoped_ptr<base::DictionaryValue> other) {
179 other_.reset(other.release());
263 if (other()) {
264 scoped_ptr<ExtensionActivity::Other> other_field(
265 new ExtensionActivity::Other);
267 if (other()->GetBooleanWithoutPathExpansion(constants::kActionPrerender,
272 if (other()->GetDictionaryWithoutPathExpansion(constants::kActionWebRequest
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 65 /// contents of Other.
66 void CXXBasePaths::swap(CXXBasePaths &Other) {
67 std::swap(Origin, Other.Origin);
68 Paths.swap(Other.Paths);
69 ClassSubobjects.swap(Other.ClassSubobjects);
70 std::swap(FindAmbiguities, Other.FindAmbiguities);
71 std::swap(RecordPaths, Other.RecordPaths);
72 std::swap(DetectVirtual, Other.DetectVirtual);
73 std::swap(DetectedVirtual, Other.DetectedVirtual);
336 // base is a subobject of any other path; if so, then th
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 348 const DataLayout *Other = M->getDataLayout();
349 if (Other)
350 *this = *Other;
355 bool DataLayout::operator==(const DataLayout &Other) const {
356 bool Ret = LittleEndian == Other.LittleEndian &&
357 StackNaturalAlign == Other.StackNaturalAlign &&
358 ManglingMode == Other.ManglingMode &&
359 LegalIntWidths == Other.LegalIntWidths &&
360 Alignments == Other.Alignments && Pointers == Other.Pointers
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 242 // TODO: Recognize that a bunch of other objc runtime calls have
247 // usually can't sink them past other calls, which would be the main
384 bool Merge(const RRInfo &Other);
398 bool RRInfo::Merge(const RRInfo &Other) {
400 if (ReleaseMetadata != Other.ReleaseMetadata)
404 KnownSafe &= Other.KnownSafe;
405 IsTailCallRelease &= Other.IsTailCallRelease;
406 CFGHazardAfflicted |= Other.CFGHazardAfflicted;
409 Calls.insert(Other.Calls.begin(), Other.Calls.end())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
ResourceType.js 13 * documentation and/or other materials provided with the distribution.
125 Other: new WebInspector.ResourceType("other", "Other", "Other", "rgb(186,186,186)", false)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
ResourceView.js 13 * documentation and/or other materials provided with the distribution.
63 if (resource.type === WebInspector.resourceTypes.Other)
  /external/llvm/include/llvm/ADT/
SCCIterator.h 58 bool operator==(const StackElement &Other) const {
59 return Node == Other.Node &&
60 NextChild == Other.NextChild &&
61 MinVisited == Other.MinVisited;
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 75 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
87 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
118 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
140 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 118 setOperationAction(ISD::TRAP, MVT::Other, Legal);
121 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
142 setOperationAction(ISD::VAEND, MVT::Other, Expand);
143 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
144 setOperationAction(ISD::VAARG, MVT::Other, Custom);
145 setOperationAction(ISD::VASTART, MVT::Other, Custom);
148 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
149 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
153 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom);
162 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom)
    [all...]
  /external/llvm/include/llvm/Object/
MachO.h 38 bool operator==(const DiceRef &Other) const;
39 bool operator<(const DiceRef &Other) const;
254 inline bool DiceRef::operator==(const DiceRef &Other) const {
255 return DicePimpl == Other.DicePimpl;
258 inline bool DiceRef::operator<(const DiceRef &Other) const {
259 return DicePimpl < Other.DicePimpl;
  /external/llvm/include/llvm/TableGen/
Record.h 59 // Other classes.
532 /// resolveReferences - This method is used by classes that refer to other
564 TypedInit(const TypedInit &Other) LLVM_DELETED_FUNCTION;
565 TypedInit &operator=(const TypedInit &Other) LLVM_DELETED_FUNCTION;
600 UnsetInit &operator=(const UnsetInit &Other) LLVM_DELETED_FUNCTION;
627 BitInit(const BitInit &Other) LLVM_DELETED_FUNCTION;
628 BitInit &operator=(BitInit &Other) LLVM_DELETED_FUNCTION;
660 BitsInit(const BitsInit &Other) LLVM_DELETED_FUNCTION;
661 BitsInit &operator=(const BitsInit &Other) LLVM_DELETED_FUNCTION;
707 IntInit(const IntInit &Other) LLVM_DELETED_FUNCTION
    [all...]
  /device/generic/goldfish/opengl/system/egl/
Android.mk 26 # Other builds are device-specific and will provide their own
  /external/chromium_org/chrome/browser/resources/security_warnings/
safe_browsing.js 15 // Other constants defined in safe_browsing_blocking_page.cc.
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 203 VariantValue(const VariantValue &Other);
205 VariantValue &operator=(const VariantValue &Other);
  /external/llvm/include/llvm/Support/
FileSystem.h 125 bool operator==(const UniqueID &Other) const {
126 return Device == Other.Device && File == Other.File;
128 bool operator!=(const UniqueID &Other) const { return !(*this == Other); }
129 bool operator<(const UniqueID &Other) const {
130 return std::tie(Device, File) < std::tie(Other.Device, Other.File);
803 // Other members as required by
908 // Other members as required b
    [all...]

Completed in 1043 milliseconds

1 2 34 5 6 7 8 91011>>