Searched defs:Other (Results 1 - 25 of 77) sorted by relevance

1234

/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Ddestructor_access_finalized_field.h12 class Other : public RefCounted<Other> { class in namespace:blink
24 RefPtr<Other> m_ref;
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DProcessCategory.cs20 Other enumerator in enum:ChromeDebug.ProcessCategory
/external/clang/test/CodeGenCXX/
H A Dcopy-constructor-elim-2.cpp16 struct Other { struct in namespace:no_elide_base
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/llvm/lib/MC/
H A DMCELF.cpp72 // Other is stored in the last six bits of st_other
74 void MCELF::setOther(MCSymbolData &SD, unsigned Other) { argument
76 SD.setFlags(OtherFlags | (Other << ELF_STO_Shift));
80 unsigned Other = local
82 return Other;
/external/clang/lib/AST/
H A DASTTypeTraits.cpp42 bool ASTNodeKind::isBaseOf(ASTNodeKind Other, unsigned *Distance) const { argument
43 return isBaseOf(KindId, Other.KindId, Distance);
46 bool ASTNodeKind::isSame(ASTNodeKind Other) const {
47 return KindId != NKI_None && KindId == Other.KindId;
/external/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp31 void BoundNodesTreeBuilder::addMatch(const BoundNodesTreeBuilder &Other) { argument
32 for (unsigned i = 0, e = Other.Bindings.size(); i != e; ++i) {
33 Bindings.push_back(Other.Bindings[i]);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp14.cpp41 class Other { class in namespace:M
47 void Other::foo(YFloat a, YFloat b) {
52 namespace Other { namespace
57 using namespace Other;
/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp21 Object *Other; member in struct:__anon26522::Object
/external/clang/lib/Lex/
H A DMacroInfo.cpp72 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, argument
77 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
78 getNumArgs() != Other.getNumArgs() ||
79 isFunctionLike() != Other.isFunctionLike() ||
80 isC99Varargs() != Other.isC99Varargs() ||
81 isGNUVarargs() != Other.isGNUVarargs())
86 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end();
94 const Token &B = Other.ReplacementTokens[i];
116 if (AArgNum != Other.getArgumentNum(B.getIdentifierInfo()))
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp139 bool LiveRange::overlaps(const LiveRange &Other, const CoalescerPair &CP, argument
142 if (Other.empty())
146 const_iterator I = find(Other.beginIndex());
150 const_iterator J = Other.find(I->start);
151 const_iterator JE = Other.end();
410 void LiveRange::join(LiveRange &Other,
460 // Rewrite Other values before changing the VNInfo ids.
461 // This can leave Other in an invalid state because we're not coalescing
462 // touching segments that now have identical values. That's OK since Other is
464 for (iterator I = Other
[all...]
H A DAggressiveAntiDepBreaker.cpp91 unsigned Other = (Parent == Group1) ? Group2 : Group1; local
92 GroupNodes.at(Other) = Parent;
611 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other);
/external/clang/include/clang/Basic/
H A DVisibility.h102 void mergeExternalVisibility(LinkageInfo Other) { argument
103 mergeExternalVisibility(Other.getLinkage());
H A DPartialDiagnostic.h187 PartialDiagnostic(const PartialDiagnostic &Other) argument
188 : DiagID(Other.DiagID), DiagStorage(nullptr), Allocator(Other.Allocator)
190 if (Other.DiagStorage) {
192 *DiagStorage = *Other.DiagStorage;
196 PartialDiagnostic(PartialDiagnostic &&Other) argument
197 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage),
198 Allocator(Other.Allocator) {
199 Other
202 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) argument
210 PartialDiagnostic(const Diagnostic &Other, StorageAllocator &Allocator) argument
230 operator =(const PartialDiagnostic &Other) argument
244 operator =(PartialDiagnostic &&Other) argument
[all...]
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp38 Entry(Entry &&Other) argument
39 : Strings(std::move(Other.Strings)), RegEx(std::move(Other.RegEx)) {}
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp83 Value *Other = S->getOperand(2); local
84 if (!CI->isOne()) std::swap(ReplaceWith, Other);
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp34 /// 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) { argument
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 mus
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
H A Dbackground.js10 'Other Bookmarks': '2'
261 this._root.appendChild(new Node(this._nodesMap, '2', 'Other Bookmarks'));
/external/clang/include/clang/AST/
H A DCharUnits.h68 CharUnits& operator+= (const CharUnits &Other) { argument
69 Quantity += Other.Quantity;
79 CharUnits& operator-= (const CharUnits &Other) { argument
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
[all...]
H A DNestedNameSpecifier.h96 NestedNameSpecifier(const NestedNameSpecifier &Other) argument
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);
/external/clang/include/clang/Analysis/Analyses/
H A DConsumed.h146 ConsumedStateMap(const ConsumedStateMap &Other) argument
147 : Reachable(Other.Reachable), From(Other.From), VarMap(Other.VarMap),
165 void intersect(const ConsumedStateMap *Other);
194 /// \param Other -- The second map to compare against.
195 bool operator!=(const ConsumedStateMap *Other) const;
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp155 VariantValue::VariantValue(const VariantValue &Other) : Type(VT_Nothing) { argument
156 *this = Other;
173 VariantValue &VariantValue::operator=(const VariantValue &Other) { argument
174 if (this == &Other) return *this;
176 switch (Other.Type) {
178 setUnsigned(Other.getUnsigned());
181 setString(Other.getString());
184 setMatcher(Other.getMatcher());
/external/clang/lib/Driver/
H A DMultilib.cpp115 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) { argument
262 Multilibs.insert(Multilibs.end(), Other.begin(), Other.end());
/external/clang/lib/Tooling/
H A DCompilationDatabase.cpp154 UnusedInputDiagConsumer() : Other(nullptr) {}
158 UnusedInputDiagConsumer(DiagnosticConsumer *Other) : Other(Other) {} argument
166 if (Other)
167 Other->HandleDiagnostic(DiagLevel, Info);
170 DiagnosticConsumer *Other; member in class:clang::tooling::UnusedInputDiagConsumer
/external/llvm/include/llvm/Support/
H A DErrorOr.h113 ErrorOr(const ErrorOr &Other) { argument
114 copyConstruct(Other);
118 ErrorOr(const ErrorOr<OtherT> &Other) { argument
119 copyConstruct(Other);
122 ErrorOr &operator =(const ErrorOr &Other) { argument
123 copyAssign(Other);
128 ErrorOr &operator =(const ErrorOr<OtherT> &Other) { argument
129 copyAssign(Other);
133 ErrorOr(ErrorOr &&Other) { argument
134 moveConstruct(std::move(Other));
138 ErrorOr(ErrorOr<OtherT> &&Other) argument
142 operator =(ErrorOr &&Other) argument
148 operator =(ErrorOr<OtherT> &&Other) argument
180 copyConstruct(const ErrorOr<OtherT> &Other) argument
203 copyAssign(const ErrorOr<OtherT> &Other) argument
212 moveConstruct(ErrorOr<OtherT> &&Other) argument
225 moveAssign(ErrorOr<OtherT> &&Other) argument
[all...]
/external/llvm/lib/IR/
H A DBasicBlock.cpp245 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred); local
248 if (this == Other) max_idx = 3;

Completed in 569 milliseconds

1234