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

123456

/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/include/llvm/Object/
H A DArchiveWriter.h29 NewArchiveMember(NewArchiveMember &&Other) argument
30 : Buf(std::move(Other.Buf)), ModTime(Other.ModTime), UID(Other.UID),
31 GID(Other.GID), Perms(Other.Perms) {}
32 NewArchiveMember &operator=(NewArchiveMember &&Other) { argument
33 Buf = std::move(Other.Buf);
34 ModTime = Other.ModTime;
35 UID = Other
[all...]
/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);
451 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);
/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/lib/IR/
H A DModuleSummaryIndex.cpp21 void ModuleSummaryIndex::mergeFrom(std::unique_ptr<ModuleSummaryIndex> Other, argument
25 for (auto &OtherGlobalValSummaryLists : *Other) {
38 ModPath = addModulePath(Path, NextModuleId, Other->getModuleHash(Path))
/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.h45 SymbolGroup(SymbolGroup &&Other) { argument
46 Functions = std::move(Other.Functions);
47 Data = std::move(Other.Data);
48 Unknown = std::move(Other.Unknown);
/external/v8/tools/clang/blink_gc_plugin/tests/
H A Ddestructor_access_finalized_field.h12 class Other : public RefCounted<Other> { class in namespace:blink
37 RefPtr<Other> m_ref;
/external/libchrome/base/memory/
H A Dref_counted_unittest.cc108 class Other : public base::RefCounted<Other> { class in namespace:__anon9909
110 friend class base::RefCounted<Other>;
112 ~Other() {}
115 scoped_refptr<Other> Overloaded(scoped_refptr<Other> other) {
495 scoped_refptr<Other> other(new Other);
504 scoped_refptr<Other> other(new Other);
[all...]
/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/Fuzzer/
H A DFuzzerTracePC.cpp28 size_t PcCoverageMap::MergeFrom(const PcCoverageMap &Other) { argument
31 Res += __builtin_popcountl(Map[i] |= Other.Map[i]);
/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:__anon13680::Object
/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/include/llvm/Transforms/Scalar/
H A DJumpThreading.h89 JumpThreadingPass(JumpThreadingPass &&Other) argument
90 : TLI(Other.TLI), LVI(Other.LVI), BFI(std::move(Other.BFI)),
91 BPI(std::move(Other.BPI)), HasProfileData(Other.HasProfileData),
92 LoopHeaders(std::move(Other.LoopHeaders)),
93 RecursionSet(std::move(Other.RecursionSet)),
94 BBDupThreshold(Other.BBDupThreshold) {}
/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;
/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/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp78 Value *Other = S->getOperand(2); local
79 if (!CI->isOne()) std::swap(ReplaceWith, Other);
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DDAGISelMatcher.cpp32 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
33 /// we unlink the next pointer and return it. Otherwise we unlink Other from
35 Matcher *Matcher::unlinkNode(Matcher *Other) { argument
36 if (this == Other)
39 // Scan until we find the predecessor of Other.
41 for (; Cur && Cur->getNext() != Other; Cur = Cur->getNext())
46 Cur->setNext(Other->takeNext());
50 /// canMoveBefore - Return true if this matcher is the same as Other, or if
51 /// we can move this matcher past all of the nodes in-between Other and this
52 /// node. Other mus
[all...]
/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/junit-params/src/test/java/junitparams/
H A DParamsConverterTest.java88 public void passesParametersWithOtherAnnotations(@Other String parameter) {
132 public @interface Other { interface in class:ParamsConverterTest
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DStreamArray.h89 VarStreamArray(const VarStreamArray<ValueType, Extractor> &Other) argument
90 : Stream(Other.Stream), E(Other.E) {}

Completed in 5771 milliseconds

123456