HomeSort by relevance Sort by last modified time
    Searched defs:Proto (Results 1 - 25 of 43) sorted by null

1 2

  /external/v8/test/mjsunit/regress/
regress-crbug-571517.js 6 function Proto() { this.proto = "proto"; }
14 var proto = rec.__proto__.__proto__; variable
21 var p2 = new Proto();
23 proto.__proto__ = p2;
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 62 const FunctionProtoType *Proto =
67 Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
Mangle.cpp 165 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
169 if (!Proto) {
173 assert(!Proto->isVariadic());
178 for (const auto &AT : Proto->param_types())
DeclPrinter.cpp 467 std::string Proto = D->getNameInfo().getAsString();
471 Proto = '(' + Proto + ')';
480 Proto += "(";
482 llvm::raw_string_ostream POut(Proto);
496 Proto += ", ";
497 Proto += D->getParamDecl(i)->getNameAsString();
501 Proto += ")";
505 Proto += " const";
507 Proto += " volatile"
    [all...]
Expr.cpp 540 std::string Proto;
541 llvm::raw_string_ostream POut(Proto);
651 Proto = "auto " + Proto;
656 .getAsStringInternal(Proto, Policy);
658 AFT->getReturnType().getAsStringInternal(Proto, Policy);
660 Out << Proto;
    [all...]
ItaniumMangle.cpp     [all...]
MicrosoftMangle.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 154 std::unique_ptr<PrototypeAST> Proto;
158 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
160 : Proto(std::move(Proto)), Body(std::move(Body)) {}
350 auto Proto = ParsePrototype();
351 if (!Proto)
355 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E));
362 // Make an anonymous proto.
363 auto Proto = helper::make_unique<PrototypeAST>("__anon_expr",
365 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 164 const FunctionProtoType *Proto =
166 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) {
168 Proto = nullptr;
170 return Proto;
    [all...]
SemaLambda.cpp     [all...]
SemaObjCProperty.cpp 111 ObjCProtocolDecl *Proto,
114 if (!Known.insert(Proto).second)
118 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
121 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
127 for (auto *P : Proto->protocols())
270 ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(ClassDecl);
271 for (auto *P : Proto->protocols())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 155 std::unique_ptr<PrototypeAST> Proto;
159 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
161 : Proto(std::move(Proto)), Body(std::move(Body)) {}
353 auto Proto = ParsePrototype();
354 if (!Proto)
358 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
365 // Make an anonymous proto.
366 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
368 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 161 std::unique_ptr<PrototypeAST> Proto;
165 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
167 : Proto(std::move(Proto)), Body(std::move(Body)) {}
359 auto Proto = ParsePrototype();
360 if (!Proto)
364 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
371 // Make an anonymous proto.
372 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
374 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 203 std::unique_ptr<PrototypeAST> Proto;
207 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
209 : Proto(std::move(Proto)), Body(std::move(Body)) {}
483 auto Proto = ParsePrototype();
484 if (!Proto)
488 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
495 // Make an anonymous proto.
496 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
498 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 236 std::unique_ptr<PrototypeAST> Proto;
240 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
574 auto Proto = ParsePrototype();
575 if (!Proto)
579 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
586 // Make an anonymous proto.
587 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
589 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 255 std::unique_ptr<PrototypeAST> Proto;
259 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
261 : Proto(std::move(Proto)), Body(std::move(Body)) {}
644 auto Proto = ParsePrototype();
645 if (!Proto)
649 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
656 // Make an anonymous proto.
657 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr",
659 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 241 PrototypeAST *Proto;
244 FunctionAST(PrototypeAST *proto, ExprAST *body)
245 : Proto(proto), Body(body) {}
596 PrototypeAST *Proto = ParsePrototype();
597 if (Proto == 0) return 0;
600 return new FunctionAST(Proto, E);
607 // Make an anonymous proto.
608 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
609 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 248 PrototypeAST *Proto;
251 FunctionAST(PrototypeAST *proto, ExprAST *body)
252 : Proto(proto), Body(body) {}
603 PrototypeAST *Proto = ParsePrototype();
604 if (Proto == 0) return 0;
607 return new FunctionAST(Proto, E);
614 // Make an anonymous proto.
615 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
616 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 226 PrototypeAST *Proto;
229 FunctionAST(PrototypeAST *proto, ExprAST *body)
230 : Proto(proto), Body(body) {}
581 PrototypeAST *Proto = ParsePrototype();
582 if (Proto == 0) return 0;
585 return new FunctionAST(Proto, E);
592 // Make an anonymous proto.
593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
594 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 227 PrototypeAST *Proto;
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
231 : Proto(proto), Body(body) {}
582 PrototypeAST *Proto = ParsePrototype();
583 if (Proto == 0) return 0;
586 return new FunctionAST(Proto, E);
593 // Make an anonymous proto.
594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
595 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 437 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
438 if (!Proto)
441 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
443 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
452 unsigned NumExceptions = Proto->getNumExceptions();
456 QualType Ty = Proto->getExceptionType(I);
516 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
517 if (!Proto)
520 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
522 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 386 std::unique_ptr<PrototypeAST> Proto;
390 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
392 : Proto(std::move(Proto)), Body(std::move(Body)) {}
788 auto Proto = ParsePrototype();
789 if (!Proto)
793 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
801 // Make an anonymous proto.
802 auto Proto = llvm::make_unique<PrototypeAST>(FnLoc, "__anon_expr",
804 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 267 PrototypeAST *Proto;
270 FunctionAST(PrototypeAST *proto, ExprAST *body)
271 : Proto(proto), Body(body) {}
622 PrototypeAST *Proto = ParsePrototype();
623 if (Proto == 0) return 0;
626 return new FunctionAST(Proto, E);
633 // Make an anonymous proto.
634 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
635 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 225 PrototypeAST *Proto;
228 FunctionAST(PrototypeAST *proto, ExprAST *body)
229 : Proto(proto), Body(body) {}
580 PrototypeAST *Proto = ParsePrototype();
581 if (Proto == 0) return 0;
584 return new FunctionAST(Proto, E);
591 // Make an anonymous proto.
592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
593 return new FunctionAST(Proto, E)
    [all...]

Completed in 582 milliseconds

1 2