Searched refs:Proto (Results 1 - 25 of 61) sorted by relevance

123

/external/clang/lib/AST/
H A DDeclPrinter.cpp425 std::string Proto = D->getNameInfo().getAsString(); local
429 Proto = '(' + Proto + ')';
438 Proto += "(";
440 llvm::raw_string_ostream POut(Proto);
454 Proto += ", ";
455 Proto += D->getParamDecl(i)->getNameAsString();
459 Proto += ")";
463 Proto += " const";
465 Proto
514 Out << Proto; local
570 Out << "auto " << Proto << " -> "; local
576 Out << Proto; local
[all...]
H A DItaniumCXXABI.cpp62 const FunctionProtoType *Proto = variable
67 Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
H A DMangle.cpp165 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT); local
169 if (!Proto) {
173 assert(!Proto->isVariadic());
178 for (const auto &AT : Proto->param_types())
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp142 PrototypeAST *Proto; member in class:__anon10100::FunctionAST
146 : Proto(proto), Body(body) {}
322 PrototypeAST *Proto = ParsePrototype(); local
323 if (Proto == 0) return 0;
326 return new FunctionAST(Proto, E);
334 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
335 return new FunctionAST(Proto, E);
448 Function *TheFunction = Proto->Codegen();
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h276 Function *Proto = StubsModule->getFunction(Name); local
277 assert(Proto && "Failed to clone function decl into stubs module.");
279 CompileCallbackMgr.getCompileCallback(Proto->getContext());
281 createImplPointer(*Proto->getType(), *Proto->getParent(),
283 createIRTypedAddress(*Proto->getFunctionType(),
285 makeStub(*Proto, *FunctionBodyPointer);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp231 PrototypeAST *Proto; member in class:__anon10103::FunctionAST
235 FunctionAST(PrototypeAST *proto, ExprAST *body) : Proto(proto), Body(body) {}
566 PrototypeAST *Proto = ParsePrototype(); local
567 if (Proto == 0)
571 return new FunctionAST(Proto, E);
579 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
580 return new FunctionAST(Proto, E);
875 Function *TheFunction = Proto->Codegen();
880 if (Proto->isBinaryOp())
881 BinopPrecedence[Proto
[all...]
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp301 PrototypeAST *Proto = ParsePrototype(); local
302 if (Proto == 0) return 0;
305 return new FunctionAST(Proto, E);
313 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
314 return new FunctionAST(Proto, E);
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp241 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
243 : Proto(std::move(Proto)), Body(std::move(Body)) {}
247 std::unique_ptr<PrototypeAST> Proto; member in struct:FunctionAST
621 auto Proto = ParsePrototype(); local
622 if (!Proto)
626 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
634 auto Proto = local
636 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
1100 Function *TheFunction = Proto
[all...]
/external/libvncserver/x11vnc/misc/
H A Dconnect_switch382 Proto => "tcp"
393 Proto => "tcp"
564 Proto => "tcp"
571 Proto => "tcp"
593 Proto => "tcp"
599 Proto => "tcp"
H A Dultravnc_repeater.pl226 Proto => "tcp"
240 Proto => "tcp"
253 Proto => "tcp"
267 Proto => "tcp"
434 Proto => "tcp"
441 Proto => "tcp"
H A Ddesktop.cgi998 Proto => "tcp"
1005 Proto => "tcp"
1190 Proto => "tcp"
1197 Proto => "tcp"
1308 Proto => "tcp"
1315 Proto => "tcp"
1464 Proto => "tcp"
1470 Proto => "tcp"
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp386 PrototypeAST *Proto; member in class:__anon10106::FunctionAST
390 FunctionAST(PrototypeAST *proto, ExprAST *body) : Proto(proto), Body(body) {}
786 PrototypeAST *Proto = ParsePrototype(); local
787 if (Proto == 0)
791 return new FunctionAST(Proto, E);
800 PrototypeAST *Proto = local
802 return new FunctionAST(Proto, E);
1272 Function *TheFunction = Proto->Codegen();
1277 KSDbgInfo.LexicalBlocks.push_back(&KSDbgInfo.FnScopeMap[Proto]);
1285 if (Proto
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp240 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
246 std::unique_ptr<PrototypeAST> Proto; member in struct:FunctionAST
620 auto Proto = ParsePrototype(); local
621 if (!Proto)
625 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
633 auto Proto = local
635 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
1099 Function *TheFunction = Proto
[all...]
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp267 std::string Name, Proto; member in class:__anon2837::Intrinsic
311 Intrinsic(Record *R, StringRef Name, StringRef Proto, TypeSpec OutTS, argument
314 : R(R), Name(Name.str()), Proto(Proto.str()), OutTS(OutTS), InTS(InTS),
321 if (Proto.find('i') != std::string::npos)
326 if (Proto.find('p') != std::string::npos ||
327 Proto.find('c') != std::string::npos)
333 Proto.find('s') != std::string::npos)
339 Types.push_back(Type(OutTS, Proto[0]));
340 for (unsigned I = 1; I < Proto
1896 std::string Proto = R->getValueAsString("Prototype"); local
2020 std::string Proto = Def->getProto(); local
[all...]
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp251 PrototypeAST *Proto; member in class:__anon10104::FunctionAST
255 FunctionAST(PrototypeAST *proto, ExprAST *body) : Proto(proto), Body(body) {}
637 PrototypeAST *Proto = ParsePrototype(); local
638 if (Proto == 0)
642 return new FunctionAST(Proto, E);
650 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
651 return new FunctionAST(Proto, E);
1045 Function *TheFunction = Proto->Codegen();
1050 if (Proto->isBinaryOp())
1051 BinopPrecedence[Proto
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp241 PrototypeAST *Proto; member in class:FunctionAST
245 : Proto(proto), Body(body) {}
596 PrototypeAST *Proto = ParsePrototype(); local
597 if (Proto == 0) return 0;
600 return new FunctionAST(Proto, E);
608 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
609 return new FunctionAST(Proto, E);
988 Function *TheFunction = Proto->Codegen();
993 if (Proto->isBinaryOp())
994 BinopPrecedence[Proto
[all...]
H A Dtoy.cpp248 PrototypeAST *Proto; member in class:FunctionAST
252 : Proto(proto), Body(body) {}
603 PrototypeAST *Proto = ParsePrototype(); local
604 if (Proto == 0) return 0;
607 return new FunctionAST(Proto, E);
615 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
616 return new FunctionAST(Proto, E);
1359 Function *TheFunction = Proto->Codegen();
1364 if (Proto->isBinaryOp())
1365 BinopPrecedence[Proto
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp225 PrototypeAST *Proto; member in class:FunctionAST
229 : Proto(proto), Body(body) {}
580 PrototypeAST *Proto = ParsePrototype(); local
581 if (Proto == 0) return 0;
584 return new FunctionAST(Proto, E);
592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
593 return new FunctionAST(Proto, E);
1217 Function *TheFunction = Proto->Codegen();
1222 if (Proto->isBinaryOp())
1223 BinopPrecedence[Proto
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp226 PrototypeAST *Proto; member in class:FunctionAST
230 : Proto(proto), Body(body) {}
581 PrototypeAST *Proto = ParsePrototype(); local
582 if (Proto == 0) return 0;
585 return new FunctionAST(Proto, E);
593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
594 return new FunctionAST(Proto, E);
970 Function *TheFunction = Proto->Codegen();
975 if (Proto->isBinaryOp())
976 BinopPrecedence[Proto
[all...]
H A Dtoy.cpp227 PrototypeAST *Proto; member in class:FunctionAST
231 : Proto(proto), Body(body) {}
582 PrototypeAST *Proto = ParsePrototype(); local
583 if (Proto == 0) return 0;
586 return new FunctionAST(Proto, E);
594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
595 return new FunctionAST(Proto, E);
1257 Function *TheFunction = Proto->Codegen();
1262 if (Proto->isBinaryOp())
1263 BinopPrecedence[Proto
[all...]
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp240 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
246 std::unique_ptr<PrototypeAST> Proto; member in struct:FunctionAST
620 auto Proto = ParsePrototype(); local
621 if (!Proto)
625 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
633 auto Proto = local
635 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
1099 Function *TheFunction = Proto
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp240 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
242 : Proto(std::move(Proto)), Body(std::move(Body)) {}
246 std::unique_ptr<PrototypeAST> Proto; member in struct:FunctionAST
620 auto Proto = ParsePrototype(); local
621 if (!Proto)
625 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(Body));
633 auto Proto = local
635 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
1099 Function *TheFunction = Proto
[all...]
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp160 PrototypeAST *Proto; member in class:__anon10101::FunctionAST
164 FunctionAST(PrototypeAST *proto, ExprAST *body) : Proto(proto), Body(body) {}
358 PrototypeAST *Proto = ParsePrototype(); local
359 if (Proto == 0)
363 return new FunctionAST(Proto, E);
371 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
372 return new FunctionAST(Proto, E);
732 Function *TheFunction = Proto->Codegen();
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp200 PrototypeAST *Proto; member in class:__anon10102::FunctionAST
204 FunctionAST(PrototypeAST *proto, ExprAST *body) : Proto(proto), Body(body) {}
478 PrototypeAST *Proto = ParsePrototype(); local
479 if (Proto == 0)
483 return new FunctionAST(Proto, E);
491 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
492 return new FunctionAST(Proto, E);
767 Function *TheFunction = Proto->Codegen();
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp267 PrototypeAST *Proto; member in class:FunctionAST
271 : Proto(proto), Body(body) {}
622 PrototypeAST *Proto = ParsePrototype(); local
623 if (Proto == 0) return 0;
626 return new FunctionAST(Proto, E);
634 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
635 return new FunctionAST(Proto, E);
1437 Function *TheFunction = Proto->Codegen();
1442 if (Proto->isBinaryOp())
1443 BinopPrecedence[Proto
[all...]

Completed in 434 milliseconds

123