HomeSort by: relevance | last modified time | path
    Searched defs:Base (Results 1 - 25 of 267) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/apache2/llvm/dist/clang/lib/Tooling/
GuessTargetAndModeCompilationDatabase.cpp 19 TargetAndModeAdderDatabase(std::unique_ptr<CompilationDatabase> Base)
20 : Base(std::move(Base)) {
21 assert(this->Base != nullptr);
25 return Base->getAllFiles();
29 return addTargetAndMode(Base->getAllCompileCommands());
34 return addTargetAndMode(Base->getCompileCommands(FilePath));
47 std::unique_ptr<CompilationDatabase> Base;
52 inferTargetAndDriverMode(std::unique_ptr<CompilationDatabase> Base) {
53 return std::make_unique<TargetAndModeAdderDatabase>(std::move(Base));
    [all...]
ExpandResponseFilesCompilationDatabase.cpp 27 std::unique_ptr<CompilationDatabase> Base,
30 : Base(std::move(Base)), Tokenizer(Tokenizer), FS(std::move(FS)) {
31 assert(this->Base != nullptr);
37 return Base->getAllFiles();
42 return expand(Base->getCompileCommands(FilePath));
46 return expand(Base->getAllCompileCommands());
73 std::unique_ptr<CompilationDatabase> Base;
81 expandResponseFiles(std::unique_ptr<CompilationDatabase> Base,
87 std::move(Base), Tokenizer, std::move(FS))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUGlobalISelUtils.cpp 44 // Handle G_PTRTOINT (G_PTR_ADD base, const) case
46 MachineInstr *Base;
48 m_GPtrAdd(m_MInstr(Base), m_ICst(Offset)))) {
49 // If Base was int converted to pointer, simply return int and offset.
50 if (Base->getOpcode() == TargetOpcode::G_INTTOPTR)
51 return std::make_pair(Base->getOperand(1).getReg(), Offset);
54 return std::make_pair(Base->getOperand(0).getReg(), Offset);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRTargetObjectFile.h 18 typedef TargetLoweringObjectFileELF Base;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
destrprint.cc 2 class Base
7 Base() : x(0), y(1)
11 virtual ~Base()
17 class Derived : public Base
22 Derived() : Base(), z(23)
mb-ctor.cc 4 class Base
7 Base(int k);
8 ~Base();
14 Base::Base(int k)
19 Base::~Base()
21 printf("~Base\n");
24 class Derived : public virtual Base
34 Derived::Derived(int i) : Base(i
    [all...]
typeid.cc 25 struct Base
27 virtual ~Base() { }
30 struct VB1 : public virtual Base
34 struct VB2 : public virtual Base
44 Base *b = &d;
48 const Base *bv = &d;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
destrprint.cc 2 class Base
7 Base() : x(0), y(1)
11 virtual ~Base()
17 class Derived : public Base
22 Derived() : Base(), z(23)
mb-ctor.cc 4 class Base
7 Base(int k);
8 ~Base();
14 Base::Base(int k)
19 Base::~Base()
21 printf("~Base\n");
24 class Derived : public virtual Base
34 Derived::Derived(int i) : Base(i
    [all...]
typeid.cc 25 struct Base
27 virtual ~Base() { }
30 struct VB1 : public virtual Base
34 struct VB2 : public virtual Base
44 Base *b = &d;
48 const Base *bv = &d;
  /src/sys/external/bsd/acpica/dist/utilities/
utstrtoul64.c 57 * 1) A standard strtoul() function that supports 64-bit integers, base
127 UINT32 Base = 10; /* Default is decimal */
148 * 1) Check for a hex constant. A "0x" prefix indicates base 16.
152 Base = 16;
161 Base = 8;
178 * Perform the base 8, 10, or 16 conversion. A 64-bit numeric overflow
181 switch (Base)
222 * Base is always 16, either with or without the 0x prefix. Decimal and
310 * Base is either 10 (default) or 16 (with 0x prefix). Octal (base 8) string
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
AttrVisitor.h 25 class Base {
61 class AttrVisitor : public attrvisitor::Base<std::add_pointer, ImplClass, RetTy,
70 : public attrvisitor::Base<llvm::make_const_ptr, ImplClass, RetTy,
DeclVisitor.h 31 class Base {
39 #define DECL(DERIVED, BASE) \
49 #define DECL(DERIVED, BASE) \
50 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
67 : public declvisitor::Base<std::add_pointer, ImplClass, RetTy> {};
74 : public declvisitor::Base<llvm::make_const_ptr, ImplClass, RetTy> {};
BaseSubobject.h 27 // BaseSubobject - Uniquely identifies a direct or indirect base class.
28 // Stores both the base class decl and the offset from the most derived class to
29 // the base class. Used for vtable and VTT generation.
31 /// Base - The base class declaration.
32 const CXXRecordDecl *Base;
34 /// BaseOffset - The offset from the most derived class to the base class.
39 BaseSubobject(const CXXRecordDecl *Base, CharUnits BaseOffset)
40 : Base(Base), BaseOffset(BaseOffset) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLoc.cpp 29 Optional<object::SectionedAddress> Base;
34 Optional<object::SectionedAddress> Base,
36 : Base(Base), LookupAddr(std::move(LookupAddr)) {}
55 Base = LookupAddr(E.Value0);
56 if (!Base)
81 if (!Base) {
84 "Base address not defined");
86 DWARFAddressRange Range{Base->Address + E.Value0, Base->Address + E.Value1
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyClassDefinitionDumper.cpp 69 const auto &Base = BC->getBase();
70 if (Base.isIndirectVirtualBaseClass())
75 WithColor(Printer, PDB_ColorItem::Keyword).get() << Base.getAccess();
79 WithColor(Printer, PDB_ColorItem::Type).get() << " " << Base.getName();
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
scoped_restore-selftests.c 26 struct Base {};
27 struct Derived : Base {};
79 Base *base = nullptr; local
82 scoped_restore restore = make_scoped_restore (&base, &derived);
84 SELF_CHECK (base == &derived);
86 SELF_CHECK (base == nullptr);
  /src/external/gpl3/gdb/dist/gdb/unittests/
scoped_restore-selftests.c 26 struct Base {};
27 struct Derived : Base {};
79 Base *base = nullptr; local
82 scoped_restore restore = make_scoped_restore (&base, &derived);
84 SELF_CHECK (base == &derived);
86 SELF_CHECK (base == nullptr);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
mi-var-rtti.cc 16 struct Base {
17 Base() : A(1) {}
18 virtual ~Base() {} // Enforce type to have vtable
22 struct Derived : public Base {
33 Base* ptr = &d;
34 const Base* constPtr = &d;
35 Base* const ptrConst = &d;
36 Base const* const constPtrConst = &d;
40 check_new_derived_without_rtti ptr {Base \*} $testname
41 check_new_derived_without_rtti constPtr {const Base \*} $testnam
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-var-rtti.cc 16 struct Base {
17 Base() : A(1) {}
18 virtual ~Base() {} // Enforce type to have vtable
22 struct Derived : public Base {
33 Base* ptr = &d;
34 const Base* constPtr = &d;
35 Base* const ptrConst = &d;
36 Base const* const constPtrConst = &d;
40 check_new_derived_without_rtti ptr {Base \*} $testname
41 check_new_derived_without_rtti constPtr {const Base \*} $testnam
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 40 typedef InstVisitor<UnrolledInstAnalyzer, bool> Base;
43 Value *Base = nullptr;
56 using Base::visit;
62 /// In order to find the base pointer one needs to perform non-trivial
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGAddressAnalysis.h 19 /// Helper struct to parse and store a memory address as base + index + offset.
34 SDValue Base;
41 BaseIndexOffset(SDValue Base, SDValue Index, bool IsIndexSignExt)
42 : Base(Base), Index(Index), Offset(), IsIndexSignExt(IsIndexSignExt) {}
43 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
45 : Base(Base), Index(Index), Offset(Offset),
48 SDValue getBase() { return Base; }
49 SDValue getBase() const { return Base; }
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
FileEntry.h 29 uint32_t Base = 0;
33 FileEntry(uint32_t D, uint32_t B) : Dir(D), Base(B) {}
38 return Base == RHS.Base && Dir == RHS.Dir;
41 return Base != RHS.Base || Dir != RHS.Dir;
58 DenseMapInfo<uint32_t>::getHashValue(Val.Base));
LookupResult.h 25 StringRef Base; ///< Line entry source file basename.
32 LHS.Base == RHS.Base && LHS.Line == RHS.Line &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
RecyclingAllocator.h 28 /// Base - Implementation details.
30 Recycler<T, Size, Align> Base;
37 ~RecyclingAllocator() { Base.clear(Allocator); }
43 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
45 T *Allocate() { return Base.Allocate(Allocator); }
51 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
55 Base.PrintStats();

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011