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

12345

/external/llvm/unittests/ADT/
H A DSparseBitVectorTest.cpp37 SparseBitVector<> Vec, Other; local
40 Other.set(1);
41 EXPECT_FALSE(Vec &= Other);
46 Other.clear();
47 Other.set(6);
48 EXPECT_TRUE(Vec &= Other);
53 Other.clear();
54 Other.set(225);
55 EXPECT_TRUE(Vec &= Other);
60 Other
67 SparseBitVector<> Vec, Other; local
[all...]
/external/llvm/lib/IR/
H A DFunctionInfo.cpp21 void FunctionInfoIndex::mergeFrom(std::unique_ptr<FunctionInfoIndex> Other, argument
25 for (auto &OtherFuncInfoLists : *Other) {
/external/clang/lib/AST/
H A DCXXInheritance.cpp65 /// contents of Other.
66 void CXXBasePaths::swap(CXXBasePaths &Other) { argument
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);
436 void OverridingMethods::add(const OverridingMethods &Other) {
[all...]
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/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"* dereferenceable({{[0-9]+}}) %O) unnamed_addr
25 Derived::Derived(const Other &O)
/external/llvm/tools/llvm-cov/
H A DRenderingSupport.h30 ColoredRawOstream(ColoredRawOstream &&Other) argument
31 : OS(Other.OS), IsColorUsed(Other.IsColorUsed) {
34 Other.IsColorUsed = false;
/external/llvm/tools/llvm-pdbdump/
H A DClassDefinitionDumper.h44 SymbolGroup(SymbolGroup &&Other) { argument
45 Functions = std::move(Other.Functions);
46 Data = std::move(Other.Data);
47 Unknown = std::move(Other.Unknown);
/external/v8/test/mjsunit/es6/
H A Darray-from.js137 function Other() {} function
145 testArrayFrom(Other, Other);
/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/lib/Target/PowerPC/MCTargetDesc/
H A DPPCELFObjectWriter.cpp414 unsigned Other = cast<MCSymbolELF>(Sym).getOther() << 2; local
415 return (Other & ELF::STO_PPC64_LOCAL_MASK) != 0;
H A DPPCAsmBackend.cpp149 unsigned Other = S->getOther() << 2; variable
150 if ((Other & ELF::STO_PPC64_LOCAL_MASK) != 0)
/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp21 Object *Other; member in struct:__anon13215::Object
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcTargetSupport.h57 IndirectStubsInfo(IndirectStubsInfo &&Other) argument
58 : NumStubs(Other.NumStubs), StubsMem(std::move(Other.StubsMem)) {
59 Other.NumStubs = 0;
61 IndirectStubsInfo& operator=(IndirectStubsInfo &&Other) { argument
62 NumStubs = Other.NumStubs;
63 Other.NumStubs = 0;
64 StubsMem = std::move(Other.StubsMem);
/external/llvm/include/llvm/Support/
H A DMemory.h164 OwningMemoryBlock(OwningMemoryBlock &&Other) { argument
165 M = Other.M;
166 Other.M = MemoryBlock();
168 OwningMemoryBlock& operator=(OwningMemoryBlock &&Other) { argument
169 M = Other.M;
170 Other.M = MemoryBlock();
/external/llvm/lib/MC/
H A DMCSymbolELF.cpp162 void MCSymbolELF::setOther(unsigned Other) { argument
163 assert((Other & 0x1f) == 0);
164 Other >>= 5;
165 assert(Other <= 0x7);
167 setFlags(OtherFlags | (Other << ELF_STO_Shift));
171 unsigned Other = (getFlags() & (0x7 << ELF_STO_Shift)) >> ELF_STO_Shift; local
172 return Other << 5;
H A DMCWin64EH.cpp127 const MCSymbol *Other) {
130 const MCSymbolRefExpr *OtherRef = MCSymbolRefExpr::create(Other, Context);
125 EmitSymbolRefWithOfs(MCStreamer &streamer, const MCSymbol *Base, const MCSymbol *Other) argument
/external/clang/include/clang/Basic/
H A DVisibility.h102 void mergeExternalVisibility(LinkageInfo Other) { argument
103 mergeExternalVisibility(Other.getLinkage());
/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/Analysis/
H A DStratifiedSets.h104 StratifiedSets(StratifiedSets<T> &&Other) { *this = std::move(Other); } argument
106 StratifiedSets &operator=(StratifiedSets<T> &&Other) { argument
107 Values = std::move(Other.Values);
108 Links = std::move(Other.Links);
285 void remapTo(StratifiedIndex Other) {
287 Remap = Other;
296 void updateRemap(StratifiedIndex Other) {
298 Remap = Other;
/external/llvm/lib/Object/
H A DELFYAML.cpp617 : Visibility(ELFYAML::ELF_STV(0)), Other(ELFYAML::ELF_STO(0)) {}
619 : Visibility(Original & 0x3), Other(Original & ~0x3) {}
621 uint8_t denormalize(IO &) { return Visibility | Other; }
624 ELFYAML::ELF_STO Other; member in struct:llvm::yaml::__anon12379::NormalizedOther
635 MappingNormalization<NormalizedOther, uint8_t> Keys(IO, Symbol.Other);
637 IO.mapOptional("Other", Keys->Other, ELFYAML::ELF_STO(0));
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp36 Entry(Entry &&Other) argument
37 : Strings(std::move(Other.Strings)), RegEx(std::move(Other.RegEx)) {}
/external/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp91 bool RRInfo::Merge(const RRInfo &Other) { argument
93 if (ReleaseMetadata != Other.ReleaseMetadata)
97 KnownSafe &= Other.KnownSafe;
98 IsTailCallRelease &= Other.IsTailCallRelease;
99 CFGHazardAfflicted |= Other.CFGHazardAfflicted;
102 Calls.insert(Other.Calls.begin(), Other.Calls.end());
106 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size();
107 for (Instruction *Inst : Other.ReverseInsertPts)
138 void PtrState::Merge(const PtrState &Other, boo argument
[all...]
/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/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.h100 NestedNameSpecifier(const NestedNameSpecifier &Other) argument
101 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
102 Specifier(Other.Specifier) {
364 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other);
367 operator=(const NestedNameSpecifierLocBuilder &Other);
464 void Adopt(NestedNameSpecifierLoc Other);

Completed in 2899 milliseconds

12345