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

  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 576 std::string ErrStr;
577 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
579 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 821 std::string ErrStr;
822 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
824 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 939 std::string ErrStr;
940 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
942 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1103 std::string ErrStr;
1104 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1106 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp     [all...]
toy.cpp 695 std::string ErrStr;
696 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary);
896 std::string ErrStr;
898 .setErrorStr(&ErrStr)
903 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
1019 char ErrStr[256];
1020 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
1021 if (V == 0) return ErrorV(ErrStr);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1122 std::string ErrStr;
1123 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1125 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
toy.cpp 807 std::string ErrStr;
809 .setErrorStr(&ErrStr)
814 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
917 char ErrStr[256];
918 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
919 if (V == 0) return ErrorV(ErrStr);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 719 std::string ErrStr;
720 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary);
809 std::string ErrStr;
810 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
812 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
1033 std::string ErrStr;
1035 .setErrorStr(&ErrStr)
1040 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 777 std::string ErrStr;
779 .setErrorStr(&ErrStr)
784 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
877 char ErrStr[256];
878 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
879 if (V == 0) return ErrorV(ErrStr);
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 5079 milliseconds