OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputname
(Results
1 - 3
of
3
) sorted by null
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
split-lib.py
42
def splitScript(
inputname
, libGenScript, timingScript):
43
rootname =
inputname
[:-2]
47
infile = open(
inputname
, "r")
50
print "Splitting %s into %s and %s" % (
inputname
, callname, libname)
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
split-lib.py
42
def splitScript(
inputname
, libGenScript, timingScript):
43
rootname =
inputname
[:-2]
47
infile = open(
inputname
, "r")
50
print "Splitting %s into %s and %s" % (
inputname
, callname, libname)
/external/javassist/sample/preproc/
Compiler.java
60
* @param
inputname
the name of the source file.
62
public Compiler(String
inputname
) throws CannotCompileException {
64
input = new BufferedReader(new FileReader(
inputname
));
67
throw new CannotCompileException("cannot open: " +
inputname
);
70
String outputname = getOutputFilename(
inputname
);
71
if (outputname.equals(
inputname
))
73
+
inputname
);
Completed in 130 milliseconds