HomeSort by relevance Sort by last modified time
    Searched refs:ErrorP (Results 1 - 17 of 17) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 195 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
327 return ErrorP("Expected function name in prototype");
333 return ErrorP("Expected '(' in prototype");
339 return ErrorP("Expected ')' in prototype");
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 198 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
330 return ErrorP("Expected function name in prototype");
336 return ErrorP("Expected '(' in prototype");
342 return ErrorP("Expected ')' in prototype");
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 204 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
336 return ErrorP("Expected function name in prototype");
342 return ErrorP("Expected '(' in prototype");
348 return ErrorP("Expected ')' in prototype");
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 279 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
517 return ErrorP("Expected function name in prototype");
526 return ErrorP("Expected unary operator");
535 return ErrorP("Expected binary operator");
544 return ErrorP("Invalid precedecnce: must be 1..100");
552 return ErrorP("Expected '(' in prototype");
558 return ErrorP("Expected ')' in prototype");
565 return ErrorP("Invalid number of operands for operator");
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 298 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
587 return ErrorP("Expected function name in prototype");
596 return ErrorP("Expected unary operator");
605 return ErrorP("Expected binary operator");
614 return ErrorP("Invalid precedecnce: must be 1..100");
622 return ErrorP("Expected '(' in prototype");
628 return ErrorP("Expected ')' in prototype");
635 return ErrorP("Invalid number of operands for operator");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 279 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
540 return ErrorP("Expected function name in prototype");
549 return ErrorP("Expected unary operator");
558 return ErrorP("Expected binary operator");
567 return ErrorP("Invalid precedecnce: must be 1..100");
575 return ErrorP("Expected '(' in prototype");
581 return ErrorP("Expected ')' in prototype");
588 return ErrorP("Invalid number of operands for operator");
    [all...]
toy.cpp 286 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
547 return ErrorP("Expected function name in prototype");
556 return ErrorP("Expected unary operator");
565 return ErrorP("Expected binary operator");
574 return ErrorP("Invalid precedecnce: must be 1..100");
582 return ErrorP("Expected '(' in prototype");
588 return ErrorP("Expected ')' in prototype");
595 return ErrorP("Invalid number of operands for operator");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 263 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
524 return ErrorP("Expected function name in prototype");
533 return ErrorP("Expected unary operator");
542 return ErrorP("Expected binary operator");
551 return ErrorP("Invalid precedecnce: must be 1..100");
559 return ErrorP("Expected '(' in prototype");
565 return ErrorP("Expected ')' in prototype");
572 return ErrorP("Invalid number of operands for operator");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 264 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
525 return ErrorP("Expected function name in prototype");
534 return ErrorP("Expected unary operator");
543 return ErrorP("Expected binary operator");
552 return ErrorP("Invalid precedecnce: must be 1..100");
560 return ErrorP("Expected '(' in prototype");
566 return ErrorP("Expected ')' in prototype");
573 return ErrorP("Invalid number of operands for operator");
    [all...]
toy.cpp 265 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
526 return ErrorP("Expected function name in prototype");
535 return ErrorP("Expected unary operator");
544 return ErrorP("Expected binary operator");
553 return ErrorP("Invalid precedecnce: must be 1..100");
561 return ErrorP("Expected '(' in prototype");
567 return ErrorP("Expected ')' in prototype");
574 return ErrorP("Invalid number of operands for operator");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 285 T* ErrorP(const std::string &Str) {
763 return ErrorP<Value>("Unknown variable name '" + Name + "'");
774 return ErrorP<Value>("Unknown unary operator");
795 return ErrorP<Value>("Unknown variable name");
823 return ErrorP<Value>("Unknown binary operator");
831 return ErrorP<Value>("Incorrect # arguments passed");
842 return ErrorP<Value>("Unknown function referenced");
1059 ErrorP<Function>("redefinition of function");
1065 ErrorP<Function>("redefinition of function with different # args");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 284 T* ErrorP(const std::string &Str) {
762 return ErrorP<Value>("Unknown variable name '" + Name + "'");
773 return ErrorP<Value>("Unknown unary operator");
794 return ErrorP<Value>("Unknown variable name");
822 return ErrorP<Value>("Unknown binary operator");
830 return ErrorP<Value>("Incorrect # arguments passed");
841 return ErrorP<Value>("Unknown function referenced");
1058 ErrorP<Function>("redefinition of function");
1064 ErrorP<Function>("redefinition of function with different # args");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 284 T* ErrorP(const std::string &Str) {
762 return ErrorP<Value>("Unknown variable name '" + Name + "'");
773 return ErrorP<Value>("Unknown unary operator");
794 return ErrorP<Value>("Unknown variable name");
822 return ErrorP<Value>("Unknown binary operator");
830 return ErrorP<Value>("Incorrect # arguments passed");
841 return ErrorP<Value>("Unknown function referenced");
1058 ErrorP<Function>("redefinition of function");
1064 ErrorP<Function>("redefinition of function with different # args");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 284 T* ErrorP(const std::string &Str) {
762 return ErrorP<Value>("Unknown variable name '" + Name + "'");
773 return ErrorP<Value>("Unknown unary operator");
794 return ErrorP<Value>("Unknown variable name");
822 return ErrorP<Value>("Unknown binary operator");
830 return ErrorP<Value>("Incorrect # arguments passed");
841 return ErrorP<Value>("Unknown function referenced");
1058 ErrorP<Function>("redefinition of function");
1064 ErrorP<Function>("redefinition of function with different # args");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 246 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
460 return ErrorP("Expected function name in prototype");
466 return ErrorP("Expected '(' in prototype");
472 return ErrorP("Expected ')' in prototype");
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 435 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
731 return ErrorP("Expected function name in prototype");
740 return ErrorP("Expected unary operator");
749 return ErrorP("Expected binary operator");
758 return ErrorP("Invalid precedecnce: must be 1..100");
766 return ErrorP("Expected '(' in prototype");
772 return ErrorP("Expected ')' in prototype");
779 return ErrorP("Invalid number of operands for operator");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 305 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
566 return ErrorP("Expected function name in prototype");
575 return ErrorP("Expected unary operator");
584 return ErrorP("Expected binary operator");
593 return ErrorP("Invalid precedecnce: must be 1..100");
601 return ErrorP("Expected '(' in prototype");
607 return ErrorP("Expected ')' in prototype");
614 return ErrorP("Invalid number of operands for operator");
    [all...]

Completed in 376 milliseconds