Searched refs:ast (Results 1 - 25 of 106) sorted by relevance

12345

/external/lldb/source/Symbol/
H A DClangASTContext.cpp343 ASTContext *ast = getASTContext(); local
344 if (ast)
345 return ast->getExternalSource () != NULL;
352 ASTContext *ast = getASTContext(); local
353 if (ast)
355 ast->setExternalSource (ast_source_ap);
356 ast->getTranslationUnitDecl()->setHasExternalLexicalStorage(true);
357 //ast->getTranslationUnitDecl()->setHasExternalVisibleStorage(true);
364 ASTContext *ast = getASTContext(); local
366 if (ast)
529 QualTypeMatchesBitSize(const uint64_t bit_size, ASTContext *ast, QualType qual_type) argument
543 GetBuiltinTypeForEncodingAndBitSize(ASTContext *ast, Encoding encoding, uint32_t bit_size) argument
670 GetBasicType(ASTContext *ast, const ConstString &name) argument
695 GetBasicType(ASTContext *ast, lldb::BasicType basic_type) argument
811 ASTContext *ast = getASTContext(); local
1021 GetUnknownAnyType(clang::ASTContext *ast) argument
1031 ASTContext *ast = getASTContext(); local
1041 GetTranslationUnitDecl(clang::ASTContext *ast) argument
1082 ASTContext *ast = type1.GetASTContext(); local
1108 ASTContext *ast = m_ast_ap.get(); local
1120 ASTContext *ast = m_ast_ap.get(); local
1136 ASTContext *ast = getASTContext(); local
1179 CreateTemplateParameterList(ASTContext *ast, const ClangASTContext::TemplateParameterInfos &template_param_infos, llvm::SmallVector<NamedDecl *, 8> &template_param_decls) argument
1238 ASTContext *ast = getASTContext(); local
1285 ASTContext *ast = getASTContext(); local
1361 ASTContext *ast = getASTContext(); local
1382 ASTContext *ast = getASTContext(); local
1676 FieldIsBitfield( ASTContext *ast, FieldDecl* field, uint32_t& bitfield_bit_size ) argument
1740 ASTContext *ast = getASTContext(); local
1802 ASTContext *ast = getASTContext(); local
1908 ASTContext *ast = getASTContext(); local
1955 CreateFunctionType(ASTContext *ast, const ClangASTType& result_type, const ClangASTType *args, unsigned num_args, bool is_variadic, unsigned type_quals) argument
1984 ASTContext *ast = getASTContext(); local
2014 ASTContext *ast = getASTContext(); local
2058 ASTContext *ast = getASTContext(); local
2130 GetFloatTypeFromBitSize(clang::ASTContext *ast, size_t bit_size) argument
2148 GetCompleteDecl(clang::ASTContext *ast, clang::Decl *decl) argument
2199 SetMetadata(clang::ASTContext *ast, const void *object, ClangASTMetadata &metadata) argument
2211 GetMetadata(clang::ASTContext *ast, const void *object) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Dconstruction.rb376 expected_tree = opts[ :ast ]
394 ast_test :input => "1 + 2", :rule => :r1, :ast => "(+ 1 2)"
396 ast_test :input => "assert 2+3", :rule => :r2, :ast => "(assert (+ 2 3))"
398 ast_test :input => "assert 2+3 : 5", :rule => :r2, :ast => "(assert (+ 2 3) 5)"
400 ast_test :input => "if 1 fooze", :rule => :r3, :ast => "(if 1 fooze)"
402 ast_test :input => "if 1 fooze else fooze", :rule => :r3, :ast => "(if 1 fooze fooze)"
404 ast_test :input => "while 2 fooze", :rule => :r4, :ast => "(while 2 fooze)"
406 ast_test :input => "return;", :rule => :r5, :ast => "return"
408 ast_test :input => "return 2+3;", :rule => :r5, :ast => "(return (+ 2 3))"
410 ast_test :input => "3", :rule => :r6, :ast
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DArrayInit.java16 package javassist.compiler.ast;
H A DKeyword.java16 package javassist.compiler.ast;
H A DMember.java16 package javassist.compiler.ast;
H A DStringL.java16 package javassist.compiler.ast;
H A DSymbol.java16 package javassist.compiler.ast;
H A DVariable.java16 package javassist.compiler.ast;
H A DAssignExpr.java16 package javassist.compiler.ast;
H A DBinExpr.java16 package javassist.compiler.ast;
H A DFieldDecl.java16 package javassist.compiler.ast;
H A DInstanceOfExpr.java16 package javassist.compiler.ast;
H A DASTree.java16 package javassist.compiler.ast;
H A DCallExpr.java16 package javassist.compiler.ast;
/external/lldb/include/lldb/Symbol/
H A DClangNamespaceDecl.h27 ClangNamespaceDecl (clang::ASTContext *ast, clang::NamespaceDecl *namespace_decl) : argument
28 m_ast (ast),
75 SetASTContext (clang::ASTContext *ast) argument
77 m_ast = ast;
/external/selinux/libsepol/cil/test/unit/
H A Dtest_cil_fqn.c55 cil_build_ast(test_db, tree->root, test_db->ast->root);
57 int rc = cil_fqn_qualify(test_db->ast->root);
71 cil_build_ast(test_db, tree->root, test_db->ast->root);
73 int rc = cil_fqn_qualify(test_db->ast->root);
H A Dtest_cil_resolve_ast.c80 cil_build_ast(test_db, test_tree->root, test_db->ast->root);
82 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head;
104 cil_build_ast(test_db, test_tree->root, test_db->ast->root);
106 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head;
118 test_db->ast->root = NULL;
120 int rc = cil_resolve_ast(test_db, test_db->ast->root);
143 cil_build_ast(test_db, test_tree->root, test_db->ast->root);
145 int rc = cil_resolve_roleallow(test_db->ast->root->cl_head->next->next, args);
162 int rc1=cil_build_ast(test_db, test_tree->root, test_db->ast->root);
165 int rc = cil_resolve_roleallow(test_db->ast
[all...]
H A Dtest_cil_copy_ast.c156 test_ast_node->parent = test_db->ast->root;
224 test_ast_node->parent = test_db->ast->root;
251 test_ast_node->parent = test_db->ast->root;
282 test_ast_node->parent = test_db->ast->root;
316 test_ast_node->parent = test_db->ast->root;
343 test_ast_node->parent = test_db->ast->root;
372 test_ast_node->parent = test_db->ast->root;
399 test_ast_node->parent = test_db->ast->root;
426 test_ast_node->parent = test_db->ast->root;
455 test_ast_node->parent = test_db->ast
[all...]
H A Dtest_cil_build_ast.c45 struct cil_tree_node *ast; member in struct:cil_args_build
54 args->ast = node;
218 test_ast_node->parent = test_db->ast->root;
240 test_ast_node->parent = test_db->ast->root;
259 test_ast_node->parent = test_db->ast->root;
295 test_ast_node->parent = test_db->ast->root;
348 test_ast_node->parent = test_db->ast->root;
369 test_ast_node->parent = test_db->ast->root;
388 test_ast_node->parent = test_db->ast->root;
407 test_ast_node->parent = test_db->ast
[all...]
/external/javassist/src/main/javassist/compiler/
H A DNoFieldException.java18 import javassist.compiler.ast.ASTree;
H A DProceedHandler.java19 import javassist.compiler.ast.ASTList;
H A DSymbolTable.java19 import javassist.compiler.ast.Declarator;
/external/google-breakpad/src/testing/scripts/generator/cpp/
H A Dgmock_class.py36 from cpp import ast namespace
52 function_type = ast.FUNCTION_VIRTUAL | ast.FUNCTION_PURE_VIRTUAL
53 ctor_or_dtor = ast.FUNCTION_CTOR | ast.FUNCTION_DTOR
58 if (isinstance(node, ast.Function) and
63 if node.modifiers & ast.FUNCTION_CONST:
125 if (isinstance(node, ast.Class) and node.body and
194 builder = ast.BuilderFromSource(source, filename)
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java88 public static ITestCaseOutput createAstOutput(String ast) { argument
89 if(ast == null) throw new IllegalArgumentException("null");
90 return new TestCaseOutputAST(ast);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A DMakefile24 $(PROJ_SRC_DIR)/ast.ml \

Completed in 5388 milliseconds

12345