OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:compileerror
(Results
1 - 25
of
81
) sorted by null
1
2
3
4
/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); }
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); }
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); }
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/
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) {
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
...]
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
...]
TypeChecker.java
88
catch (
CompileError
e) {
106
protected static void fatal() throws
CompileError
{
107
throw new
CompileError
("fatal");
120
protected String getSuperName() throws
CompileError
{
130
protected String resolveClassName(ASTList name) throws
CompileError
{
137
protected String resolveClassName(String jvmName) throws
CompileError
{
141
public void atNewExpr(NewExpr expr) throws
CompileError
{
155
public void atNewArrayExpr(NewExpr expr) throws
CompileError
{
179
public void atArrayInit(ArrayInit init) throws
CompileError
{
190
throws
CompileError
[
all
...]
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
...]
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
...]
AccessorMaker.java
40
throws
CompileError
74
throw new
CompileError
(e);
77
throw new
CompileError
(e);
99
throws
CompileError
136
throw new
CompileError
(e);
139
throw new
CompileError
(e);
150
throws
CompileError
190
throw new
CompileError
(e);
193
throw new
CompileError
(e);
201
throws
CompileError
[
all
...]
MemberResolver.java
35
private static void fatal() throws
CompileError
{
36
throw new
CompileError
("fatal");
79
throws
CompileError
107
throws
CompileError
198
throws
CompileError
287
catch (
CompileError
e) {
306
throws
CompileError
315
throws
CompileError
322
throw new
CompileError
("no such field: " + fieldName.get());
325
public CtClass lookupClassByName(ASTList name) 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
...]
ProceedHandler.java
28
void doit(JvstCodeGen gen, Bytecode b, ASTList args) throws
CompileError
;
29
void setReturnType(JvstTypeChecker c, ASTList args) throws
CompileError
;
/external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.cc
93
JtlCompiler::
CompileError
::ErrorCode TranscodeInstruction(
100
return JtlCompiler::
CompileError
::INVALID_OPERATION_NAME;
103
return JtlCompiler::
CompileError
::INVALID_ARGUMENT_COUNT;
110
return JtlCompiler::
CompileError
::INVALID_ARGUMENT_TYPE;
117
return JtlCompiler::
CompileError
::INVALID_ARGUMENT_TYPE;
124
return JtlCompiler::
CompileError
::INVALID_ARGUMENT_TYPE;
127
return JtlCompiler::
CompileError
::INVALID_ARGUMENT_VALUE;
139
return JtlCompiler::
CompileError
::INVALID_ARGUMENT_TYPE;
145
return JtlCompiler::
CompileError
::INVALID_ARGUMENT_TYPE;
150
return JtlCompiler::
CompileError
::ERROR_NONE
[
all
...]
jtl_compiler_unittest.cc
113
JtlCompiler::
CompileError
error;
118
EXPECT_EQ(JtlCompiler::
CompileError
::INVALID_OPERATION_NAME,
130
JtlCompiler::
CompileError
error;
135
EXPECT_EQ(JtlCompiler::
CompileError
::INVALID_ARGUMENT_COUNT,
161
JtlCompiler::
CompileError
error;
167
EXPECT_EQ(JtlCompiler::
CompileError
::INVALID_ARGUMENT_TYPE,
182
JtlCompiler::
CompileError
error;
188
EXPECT_EQ(JtlCompiler::
CompileError
::INVALID_ARGUMENT_VALUE,
197
JtlCompiler::
CompileError
error;
201
EXPECT_EQ(JtlCompiler::
CompileError
::MISMATCHED_DOUBLE_QUOTES
[
all
...]
jtl_compiler.h
38
struct
CompileError
{
49
CompileError
() : line_number(0), error_code(ERROR_NONE) {}
50
CompileError
(size_t line_number,
68
CompileError
* error);
jtl_compiler_frontend.cc
41
const char* ResolveErrorCode(JtlCompiler::
CompileError
::ErrorCode code) {
43
case JtlCompiler::
CompileError
::MISMATCHED_DOUBLE_QUOTES:
45
case JtlCompiler::
CompileError
::PARSING_ERROR:
47
case JtlCompiler::
CompileError
::INVALID_ARGUMENT_COUNT:
49
case JtlCompiler::
CompileError
::INVALID_ARGUMENT_TYPE:
51
case JtlCompiler::
CompileError
::INVALID_ARGUMENT_VALUE:
53
case JtlCompiler::
CompileError
::INVALID_OPERATION_NAME:
88
JtlCompiler::
CompileError
error;
/external/clang/test/SemaObjC/
property-dot-receiver.m
17
+ (void)
compileError
Completed in 253 milliseconds
1
2
3
4