HomeSort by relevance Sort by last modified time
    Searched defs:InitList (Results 1 - 14 of 14) sorted by null

  /external/clang/test/SemaCXX/
delete.cpp 91 struct InitList {
93 InitList(unsigned c) : p(new derived[c]), p4(nullptr) {} // expected-note {{allocated with 'new[]' here}}
94 InitList(unsigned c, unsigned) : p{new derived[c]}, p4{nullptr} {} // expected-note {{allocated with 'new[]' here}}
95 ~InitList() {
cxx98-compat.cpp 60 int InitList(int i = {}) { // expected-warning {{generalized initializer lists are incompatible with C++98}} \
  /external/llvm/include/llvm/ExecutionEngine/Orc/
ExecutionUtils.h 75 const ConstantArray *InitList;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 68 constexpr S InitList(int a) { return { a, ng }; }; // expected-error {{never produces}} expected-note {{read}}
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 481 const ConstantArray *InitList = cast<ConstantArray>(GV->getInitializer());
483 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
485 dyn_cast<GlobalVariable>(InitList->getOperand(i)->stripPointerCasts()))
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 256 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
257 if (!InitList) return;
259 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
260 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_ann.cc 138 static void InitList(ExpectRace *list) {
145 InitList(&dyn_ann_ctx->expect);
146 InitList(&dyn_ann_ctx->benign);
  /external/llvm/lib/TableGen/
TGParser.cpp 917 SmallVector<Init*, 2> InitList;
919 InitList.push_back(ParseValue(CurRec));
920 if (!InitList.back()) return nullptr;
925 InitList.push_back(ParseValue(CurRec));
926 if (!InitList.back()) return nullptr;
937 if (VarInit *Arg0 = dyn_cast<VarInit>(InitList[0]))
939 else if (ListInit *Arg0 = dyn_cast<ListInit>(InitList[0]))
942 InitList[0]->dump();
951 while (InitList.size() > 2) {
952 Init *RHS = InitList.pop_back_val()
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
SemaInit.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]

Completed in 718 milliseconds