Searched defs:function_type (Results 1 - 17 of 17) sorted by relevance

/external/lldb/source/API/
H A DSBFunction.cpp208 Type *function_type = m_opaque_ptr->GetType(); local
209 if (function_type)
210 sb_type.ref().SetType (function_type->shared_from_this());
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_intr.c62 LLVMTypeRef function_type; local
67 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
68 function = LLVMAddFunction(module, name, function_type);
H A Dlp_bld_const.c469 LLVMTypeRef function_type; local
472 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
477 LLVMPointerType(function_type, 0),
H A Dlp_bld_format_aos.c545 LLVMTypeRef function_type; local
552 function_type = LLVMFunctionType(ret_type, arg_types,
561 LLVMPointerType(function_type, 0),
/external/lldb/examples/functions/
H A Dmain.cpp266 SBType function_type = function.GetType(); local
267 SBType return_type = function_type.GetFunctionReturnType();
280 SBTypeList function_args = function_type.GetFunctionArgumentTypes();
/external/lldb/source/Symbol/
H A DFunction.cpp487 Type *function_type = GetType(); local
488 if (function_type)
489 return function_type->GetClangFullType();
H A DClangASTType.cpp4563 const clang::FunctionType *function_type = dyn_cast<FunctionType>(method_qual_type.getTypePtr()); local
4565 if (function_type == NULL)
4568 const FunctionProtoType *method_function_prototype (dyn_cast<FunctionProtoType>(function_type));
4640 DeclarationNameInfo (m_ast->DeclarationNames.getCXXConversionFunctionName (m_ast->getCanonicalType (function_type->getResultType())), SourceLocation()),
/external/cmockery/cmockery_0_1_2/src/google/
H A Dcmockery.h300 UnitTestFunctionType function_type; member in struct:UnitTest
425 void ** const state, const UnitTestFunctionType function_type,
/external/v8/src/
H A Dpreparser.cc826 FunctionLiteral::FunctionType function_type,
823 ParseFunctionLiteral( Identifier function_name, Scanner::Location function_name_location, bool name_is_strict_reserved, FunctionKind kind, int function_token_pos, FunctionLiteral::FunctionType function_type, FunctionLiteral::ArityRestriction arity_restriction, bool* ok) argument
H A Dparser.cc1017 FunctionLiteral::FunctionType function_type = shared_info->is_expression() local
1032 function_type,
3439 FunctionLiteral::FunctionType function_type,
3496 function_type == FunctionLiteral::DECLARATION &&
3596 if (function_type == FunctionLiteral::NAMED_EXPRESSION) {
3690 num_parameters, duplicate_parameters, function_type,
3436 ParseFunctionLiteral( const AstRawString* function_name, Scanner::Location function_name_location, bool name_is_strict_reserved, FunctionKind kind, int function_token_pos, FunctionLiteral::FunctionType function_type, FunctionLiteral::ArityRestriction arity_restriction, bool* ok) argument
H A Dpreparser.h1080 FunctionLiteral::FunctionType function_type,
1524 FunctionLiteral::FunctionType function_type,
2533 FunctionLiteral::FunctionType function_type = local
2539 function_type = FunctionLiteral::NAMED_EXPRESSION;
2545 function_token_position, function_type, FunctionLiteral::NORMAL_ARITY,
1074 NewFunctionLiteral( PreParserIdentifier name, AstValueFactory* ast_value_factory, const PreParserScope& scope, PreParserStatementList body, int materialized_literal_count, int expected_property_count, int handler_count, int parameter_count, FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionLiteral::FunctionType function_type, FunctionLiteral::IsFunctionFlag is_function, FunctionLiteral::IsParenthesizedFlag is_parenthesized, FunctionKind kind, int position) argument
H A Dast.h2451 int parameter_count, FunctionType function_type,
2467 bitfield_ = IsExpression::encode(function_type != DECLARATION) |
2468 IsAnonymous::encode(function_type == ANONYMOUS_EXPRESSION) |
3487 FunctionLiteral::FunctionType function_type,
3493 expected_property_count, handler_count, parameter_count, function_type,
2447 FunctionLiteral(Zone* zone, const AstRawString* name, AstValueFactory* ast_value_factory, Scope* scope, ZoneList<Statement*>* body, int materialized_literal_count, int expected_property_count, int handler_count, int parameter_count, FunctionType function_type, ParameterFlag has_duplicate_parameters, IsFunctionFlag is_function, IsParenthesizedFlag is_parenthesized, FunctionKind kind, int position, IdGen* id_gen) argument
3482 NewFunctionLiteral( const AstRawString* name, AstValueFactory* ast_value_factory, Scope* scope, ZoneList<Statement*>* body, int materialized_literal_count, int expected_property_count, int handler_count, int parameter_count, FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionLiteral::FunctionType function_type, FunctionLiteral::IsFunctionFlag is_function, FunctionLiteral::IsParenthesizedFlag is_parenthesized, FunctionKind kind, int position) argument
/external/javasqlite/src/main/java/SQLite/
H A DDatabase.java498 public void function_type(String name, int type) { method in class:Database
/external/lldb/source/Expression/
H A DClangExpressionDeclMap.cpp1774 Type *function_type = function->GetType(); local
1776 if (!function_type)
1783 function_clang_type = function_type->GetClangFullType();
1804 function_type->GetName().GetCString(),
1805 function_type->GetID());
1817 function_type->GetName().GetCString(),
1818 function_type->GetID());
/external/cmockery/cmockery_0_1_2/src/
H A Dcmockery.c1485 void ** const state, const UnitTestFunctionType function_type,
1512 if (function_type == UNIT_TEST_FUNCTION_TYPE_TEST) {
1523 if (function_type != UNIT_TEST_FUNCTION_TYPE_SETUP) {
1529 if (function_type == UNIT_TEST_FUNCTION_TYPE_TEST) {
1591 switch (test->function_type) {
1616 test->function_type);
1623 test->function_type, test_check_point);
1628 switch (test->function_type) {
1483 _run_test( const char * const function_name, const UnitTestFunction Function, void ** const state, const UnitTestFunctionType function_type, const void* const heap_check_point) argument
/external/lldb/source/Target/
H A DThread.cpp1690 Type *function_type = sc.function->GetType(); local
1691 if (function_type)
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli551 (** [function_type ret_ty param_tys] returns the function type returning
554 val function_type : lltype -> lltype array -> lltype var
557 [function_type ret_ty param_tys] except that it returns the function type

Completed in 492 milliseconds