HomeSort by: relevance | last modified time | path
    Searched defs:Main (Results 1 - 18 of 18) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp/
hello.cs 12 public static void Main (String[] args) {
  /src/external/gpl2/gettext/dist/gettext-tools/src/
msgfmt.cs 109 public static int Main (String[] args) {
msgunfmt.cs 222 public static int Main (String[] args) {
  /src/external/gpl3/gcc/dist/libgcc/config/mmix/
crti.S 25 % between where the simulator calls and main, and shutting things down on
48 .global Main
58 % "Main" is the magic symbol the simulator jumps to. We want to go
59 % on to "main".
61 Main SETL $255,32
119 PUSHJ $0,main
  /src/external/gpl3/gcc.old/dist/libgcc/config/mmix/
crti.S 25 % between where the simulator calls and main, and shutting things down on
48 .global Main
58 % "Main" is the magic symbol the simulator jumps to. We want to go
59 % on to "main".
61 Main SETL $255,32
119 PUSHJ $0,main
  /src/external/apache2/llvm/dist/llvm/utils/
llvm-original-di-preservation.py 372 def Main():
451 Main()
  /src/external/public-domain/sqlite/dist/
Replace.cs 75 /// An exception was caught in <see cref="Main" />. Generally, this
129 private static int Main(
  /src/external/apache2/llvm/dist/llvm/utils/llvm-locstats/
llvm-locstats.py 325 def Main():
352 Main()
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/
hello.cs 79 public static void Main () {
  /src/external/apache2/llvm/dist/clang/examples/clang-interpreter/
main.cpp 1 //===-- examples/clang-interpreter/main.cpp - Clang C Interpreter Example -===//
42 // address of main, and some platforms can't implement GetMainExecutable
43 // without being given the address of a function in the main executable).
57 JITDylib &MainJD{ES.createBareJITDylib("<main>")};
125 int main(int argc, const char **argv) { function
127 // allow taking the address of ::main however.
226 auto Main = (int (*)(...))ExitOnErr(J->getSymbolAddress("main"));
227 Res = Main();
  /src/external/apache2/llvm/dist/llvm/examples/SpeculativeJIT/
SpeculativeJIT.cpp 106 MainJD(this->ES->createBareJITDylib("<main>")), LCTMgr(std::move(LCTMgr)),
149 int main(int argc, char *argv[]) { function
181 auto MainSym = ExitOnErr(SJ->lookup("main"));
182 auto Main =
185 return runAsMain(Main, InputArgv, StringRef(InputFiles.front()));
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFixFunctionBitcasts.cpp 225 // Test whether a main function with type FuncTy should be rewritten to have
228 // Only fix the main function if it's the standard zero-arg form. That way,
239 Function *Main = nullptr;
252 // If we have a "main" function, and its type isn't
253 // "int main(int argc, char *argv[])", create an artificial call with it
256 if (F.getName() == "main") {
257 Main = &F;
264 LLVM_DEBUG(dbgs() << "Found `main` function with incorrect type: "
269 ConstantExpr::getBitCast(Main, PointerType::get(MainTy, 0));
305 // If we created a wrapper for main, rename the wrapper so that it's th
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ToolRunner.cpp 210 std::string Main = sys::fs::getMainExecutable(Argv0, MainAddr);
211 StringRef Result = sys::path::parent_path(Main);
  /src/external/gpl3/gcc/dist/contrib/testsuite-management/
validate_failures.py 638 def Main(argv):
732 retval = Main(sys.argv)
  /src/external/gpl3/gcc.old/dist/contrib/testsuite-management/
validate_failures.py 475 def Main(argv):
536 retval = Main(sys.argv)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
LLJIT.h 70 /// Returns a reference to the JITDylib representing the JIT'd main program.
71 JITDylib &getMainJITDylib() { return *Main; }
95 /// Adds an IR module to the Main JITDylib.
97 return addIRModule(*Main, std::move(TSM));
108 return addObjectFile(*Main, std::move(Obj));
123 /// Look up a symbol in the main JITDylib by the symbol's linker-mangled name
127 return lookupLinkerMangled(*Main, Name);
135 /// Look up a symbol in the main JITDylib based on its IR symbol name.
137 return lookup(*Main, UnmangledName);
205 JITDylib *Main = nullptr
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/ossl_shim/
ossl_shim.cc 1235 static int Main(int argc, char **argv) {
1298 int main(int argc, char **argv) { function in namespace:bssl
1299 return bssl::Main(argc, argv);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorCombine.cpp 173 : Base(B), Main{AI.Inst}, IsHvx(Hvx), IsLoad(Load) {}
175 InstList Main; // Main group of instructions.
265 OS << "Main\n";
266 for (Instruction *I : MG.Main)
568 assert(!Move.Main.empty() && "Move group should have non-empty Main");
573 Instruction *Base = Move.Main.front();
590 Move.Main.push_back(Info.Inst);
605 erase_if(LoadGroups, [](const MoveGroup &G) { return G.Main.size() <= 1; })
    [all...]

Completed in 96 milliseconds