OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CompileError
(Results
1 - 25
of
101
) sorted by null
1
2
3
4
5
/external/javassist/src/main/javassist/compiler/ast/
Visitor.java
18
import javassist.compiler.
CompileError
;
26
public void atASTList(ASTList n) throws
CompileError
{}
27
public void atPair(Pair n) throws
CompileError
{}
29
public void atFieldDecl(FieldDecl n) throws
CompileError
{}
30
public void atMethodDecl(MethodDecl n) throws
CompileError
{}
31
public void atStmnt(Stmnt n) throws
CompileError
{}
32
public void atDeclarator(Declarator n) throws
CompileError
{}
34
public void atAssignExpr(AssignExpr n) throws
CompileError
{}
35
public void atCondExpr(CondExpr n) throws
CompileError
{}
36
public void atBinExpr(BinExpr n) throws
CompileError
{}
[
all
...]
ArrayInit.java
18
import javassist.compiler.
CompileError
;
28
public void accept(Visitor v) throws
CompileError
{ v.atArrayInit(this); }
Keyword.java
18
import javassist.compiler.
CompileError
;
34
public void accept(Visitor v) throws
CompileError
{ v.atKeyword(this); }
Member.java
18
import javassist.compiler.
CompileError
;
38
public void accept(Visitor v) throws
CompileError
{ v.atMember(this); }
StringL.java
18
import javassist.compiler.
CompileError
;
34
public void accept(Visitor v) throws
CompileError
{ v.atStringL(this); }
Symbol.java
18
import javassist.compiler.
CompileError
;
34
public void accept(Visitor v) throws
CompileError
{ v.atSymbol(this); }
Variable.java
18
import javassist.compiler.
CompileError
;
37
public void accept(Visitor v) throws
CompileError
{ v.atVariable(this); }
AssignExpr.java
18
import javassist.compiler.
CompileError
;
37
public void accept(Visitor v) throws
CompileError
{
BinExpr.java
18
import javassist.compiler.
CompileError
;
40
public void accept(Visitor v) throws
CompileError
{ v.atBinExpr(this); }
FieldDecl.java
18
import javassist.compiler.
CompileError
;
31
public void accept(Visitor v) throws
CompileError
{
InstanceOfExpr.java
18
import javassist.compiler.
CompileError
;
36
public void accept(Visitor v) throws
CompileError
{
ASTree.java
19
import javassist.compiler.
CompileError
;
40
public abstract void accept(Visitor v) throws
CompileError
;
CallExpr.java
18
import javassist.compiler.
CompileError
;
45
public void accept(Visitor v) throws
CompileError
{ v.atCallExpr(this); }
CastExpr.java
19
import javassist.compiler.
CompileError
;
54
public void accept(Visitor v) throws
CompileError
{ v.atCastExpr(this); }
/external/javassist/src/main/javassist/compiler/
SyntaxError.java
18
public class SyntaxError extends
CompileError
{
CompileError.java
21
public class
CompileError
extends Exception {
25
public
CompileError
(String s, Lex l) {
30
public
CompileError
(String s) {
35
public
CompileError
(CannotCompileException e) {
39
public
CompileError
(NotFoundException e) {
ProceedHandler.java
28
void doit(JvstCodeGen gen, Bytecode b, ASTList args) throws
CompileError
;
29
void setReturnType(JvstTypeChecker c, ASTList args) throws
CompileError
;
Parser.java
32
public ASTList parseMember(SymbolTable tbl) throws
CompileError
{
42
public ASTList parseMember1(SymbolTable tbl) throws
CompileError
{
75
Declarator d) throws
CompileError
87
throw new
CompileError
(
105
throws
CompileError
145
throws
CompileError
183
private Declarator parseFormalType(SymbolTable tbl) throws
CompileError
{
205
throws
CompileError
238
throws
CompileError
281
private Stmnt parseBlock(SymbolTable tbl) throws
CompileError
{
[
all
...]
NoFieldException.java
20
public class NoFieldException extends
CompileError
{
Javac.java
87
public CtMember compile(String src) throws
CompileError
{
103
throw new
CompileError
(bb.getMessage());
106
throw new
CompileError
(e.getMessage());
128
throws
CompileError
, CannotCompileException
142
throws
CompileError
180
throw new
CompileError
(e.toString());
191
throws
CompileError
215
throw new
CompileError
(
228
throw new
CompileError
(e.toString());
270
throws
CompileError
[
all
...]
MemberCodeGen.java
73
protected String getSuperName() throws
CompileError
{
78
protected void insertDefaultSuperCall() throws
CompileError
{
188
protected void atTryStmnt(Stmnt st) throws
CompileError
{
206
throw new
CompileError
("empty try block");
273
throws
CompileError
291
public void atNewExpr(NewExpr expr) throws
CompileError
{
310
public void atNewArrayExpr(NewExpr expr) throws
CompileError
{
317
throw new
CompileError
(
330
String jvmClassname, ArrayInit init) throws
CompileError
{
333
throw new
CompileError
("no array size")
[
all
...]
CodeGen.java
97
protected static void fatal() throws
CompileError
{
98
throw new
CompileError
("fatal");
147
protected abstract String getSuperName() throws
CompileError
;
155
throws
CompileError
;
161
throws
CompileError
;
227
public void compileExpr(ASTree expr) throws
CompileError
{
233
throws
CompileError
239
public void doTypeCheck(ASTree expr) throws
CompileError
{
244
public void atASTList(ASTList n) throws
CompileError
{ fatal(); }
246
public void atPair(Pair n) throws
CompileError
{ fatal();
[
all
...]
JvstTypeChecker.java
46
public void atMember(Member mem) throws
CompileError
{
69
throws
CompileError
86
public void atCastExpr(CastExpr expr) throws
CompileError
{
110
protected void atCastToRtype(CastExpr expr) throws
CompileError
{
124
protected void atCastToWrapper(CastExpr expr) throws
CompileError
{
140
public void atCallExpr(CallExpr expr) throws
CompileError
{
161
protected void atCflow(ASTList cname) throws
CompileError
{
200
String[] cnames) throws
CompileError
{
236
throws
CompileError
246
protected void compileUnwrapValue(CtClass type) throws
CompileError
[
all
...]
JvstCodeGen.java
80
public void atMember(Member mem) throws
CompileError
{
98
throw new
CompileError
(dollarTypeName + " is not available");
105
throw new
CompileError
(clazzName + " is not available");
123
ASTree right, boolean doDup) throws
CompileError
128
throw new
CompileError
("bad operator for " + paramArrayName);
132
throw new
CompileError
("invalid type for " + paramArrayName);
143
throws
CompileError
160
public void atCastExpr(CastExpr expr) throws
CompileError
{
184
protected void atCastToRtype(CastExpr expr) throws
CompileError
{
197
throw new
CompileError
("invalid cast")
[
all
...]
/external/javassist/src/main/javassist/
CannotCompileException.java
18
import javassist.compiler.
CompileError
;
99
* Constructs a CannotCompileException with an <code>
CompileError
</code>.
101
public CannotCompileException(
CompileError
e) {
Completed in 147 milliseconds
1
2
3
4
5