OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:javaSource
(Results
1 - 2
of
2
) sorted by null
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateCompiler.java
89
CharSequence
javaSource
= translateAstToJavaSource(ast, mode);
92
Class<?> templateClass = compileAndLoad(
javaSource
, errorMessage);
114
StringBuffer
javaSource
= sourceBuffer.getBuffer();
115
logger.log(Level.FINEST, "Compiled template:\n{0}",
javaSource
);
116
return
javaSource
;
119
private Class<?> compileAndLoad(CharSequence
javaSource
, String errorMessage)
133
new CompilingClassLoader(parentClassLoader, CLASS_NAME,
javaSource
, diagnosticCollector);
139
throwExceptionWithLotsOfDiagnosticInfo(
javaSource
, errorMessage, diagnosticCollector
145
private void throwExceptionWithLotsOfDiagnosticInfo(CharSequence
javaSource
, String errorMessage,
150
message.append("------ Source code ------\n").append(
javaSource
);
[
all
...]
/cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java
33
import dex.reader.util.
JavaSource
;
49
JavaSource
A = new
JavaSource
("a.b.c.A",
63
JavaSource
T0 = new
JavaSource
("T0",
109
JavaSource
T1 = new
JavaSource
( "T1","public class T1 extends T0 {}" );
112
private static Set<
JavaSource
> toSet(
JavaSource
...javaSources){
113
return new HashSet<
JavaSource
>(Arrays.asList(javaSources))
[
all
...]
Completed in 182 milliseconds