Searched refs:function (Results 26 - 50 of 1935) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeNodeStream.as38 function getNode(i:int):Object;
51 function LT(k:int):Object;
56 function get treeSource():Object;
63 function get tokenStream():TokenStream;
68 function get treeAdaptor():TreeAdaptor;
76 function set hasUniqueNavigationNodes(uniqueNavigationNodes:Boolean):void;
84 function toStringWithRange(start:Object, stop:Object):String;
98 function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void;
H A DTreeAdaptor.as50 function createWithPayload(payload:Token):Object;
55 function dupNode(treeNode:Object):Object;
58 function dupTree(tree:Object):Object;
64 function nil():Object;
80 function errorNode(input:TokenStream, start:Token, stop:Token, e:RecognitionException):Object;
83 function isNil(tree:Object):Boolean;
92 function addChild(t:Object, child:Object):void;
120 function becomeRoot(newRoot:Object, oldRoot:Object):Object;
135 function rulePostProcessing(root:Object):Object;
143 function getUniqueI
[all...]
H A DRewriteRuleTokenStream.as34 public function RewriteRuleTokenStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
39 public function nextNode():Object {
44 public function nextToken():Token {
51 protected override function toTree(el:Object):Object {
55 protected override function dup(el:Object):Object {
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfreloc.asm2 EXTERN function
7 call function
/external/clang/test/PCH/Inputs/
H A Dtypo.hpp2 template<typename F> class function {}; class in namespace:boost
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Ddefault.pass.cpp12 // class function<R(ArgTypes...)>
14 // explicit function();
21 std::function<int(int)> f;
H A DF_incomplete.pass.cpp12 // class function<R(ArgTypes...)>
14 // template<class F> function(F);
21 typedef std::function<void(X&)> callback_type;
H A Dnullptr_t.pass.cpp12 // class function<R(ArgTypes...)>
14 // function(nullptr_t);
21 std::function<int(int)> f(nullptr);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenStream.as38 function LT(k:int):Token;
47 function getToken(i:int):Token;
52 function get tokenSource():TokenSource;
59 function toStringWithRange(start:int, stop:int):String;
67 function toStringWithTokenRange(start:Token, stop:Token):String;
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
H A Dtypes.pass.cpp13 // class function<R(ArgTypes...)>
30 std::function<int()> >::value), "");
32 std::function<int()> >::value), "");
33 static_assert(( std::is_same< std::function<int()>::result_type,
37 std::function<double(int)> >::value), "");
39 std::function<double(int)> >::value), "");
40 static_assert(( std::is_same< std::function<double(int)>::result_type,
44 std::function<double(int, char)> >::value), "");
46 std::function<double(int, char)> >::value), "");
47 static_assert(( std::is_same< std::function<doubl
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp4 // Example function implementation from the variadic templates proposal,
7 template<typename Signature> class function;
28 class function<R (Args...)> { class
31 function() : invoker (0) { } function in class:function
32 function(const function& other) : invoker(0) { function in class:function
37 template<typename F> function(const F& f) : invoker(0) { function in class:function
41 ~function() {
46 function& operator=(const function
[all...]
/external/stlport/test/unit/
H A Dboost_check.cpp33 #include <boost/function.hpp>
39 #include <boost/function/function_base.hpp>
45 #include <boost/function/function1.hpp>
/external/llvm/test/MC/ELF/
H A Dgnu-type.s4 // CHECK: .type TYPE,@function
7 // CHECK: .type comma_TYPE,@function
10 // CHECK: .type at_TYPE,@function
13 // CHECK: .type percent_TYPE,@function
16 // CHECK: .type string_TYPE,@function
18 .type type function
19 // CHECK: .type type,@function
21 .type comma_type, function
22 // CHECK: .type comma_type,@function
24 .type at_type, @function
[all...]
/external/lldb/test/functionalities/breakpoint/breakpoint_command/
H A Dbktptcmd.py1 def function(frame, bp_loc, dict): function
/external/llvm/test/DebugInfo/AArch64/
H A Deh_frame.s5 .type foo,@function
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_import_prototypes.cpp26 * Import function prototypes from one IR tree into another.
34 * Visitor used to import function prototypes
39 * body of the function.
51 this->function = NULL;
56 assert(this->function == NULL);
58 this->function = this->symbols->get_function(ir->name);
59 if (!this->function) {
60 this->function = new(this->mem_ctx) ir_function(ir->name);
62 list->push_tail(this->function);
64 /* Add the new function t
97 ir_function *function; member in class:import_prototype_visitor
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DEnumsTest.java44 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class);
45 assertEquals(TestEnum.CHEETO, function.apply("CHEETO"));
46 assertEquals(TestEnum.HONDA, function.apply("HONDA"));
47 assertEquals(TestEnum.POODLE, function.apply("POODLE"));
51 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class);
52 assertNull(function.apply("cHEETO"));
53 assertNull(function.apply("Honda"));
54 assertNull(function.apply("poodlE"));
58 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class);
59 assertNull(function
[all...]
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke_int_0.pass.cpp12 // class function<R(ArgTypes...)>
36 // function
38 std::function<int ()> r1(f_int_0);
41 // function pointer
44 std::function<int ()> r1(fp);
50 std::function<int ()> r1(a0);
/external/mesa3d/src/glsl/
H A Dir_import_prototypes.cpp26 * Import function prototypes from one IR tree into another.
34 * Visitor used to import function prototypes
39 * body of the function.
51 this->function = NULL;
56 assert(this->function == NULL);
58 this->function = this->symbols->get_function(ir->name);
59 if (!this->function) {
60 this->function = new(this->mem_ctx) ir_function(ir->name);
62 list->push_tail(this->function);
64 /* Add the new function t
97 ir_function *function; member in class:import_prototype_visitor
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Djavascriptstatetracker_test.py34 function foo(aaa, bbb, ccc) {
42 var bar = function(ddd, eee, fff) {
50 var baz = function(ggg, hhh, iii) {
51 var qux = function(jjj, kkk, lll) {
66 # First function
67 function = functions[0]
68 self.assertEquals(['aaa', 'bbb', 'ccc'], function.parameters)
70 start_token = function.start_token
71 end_token = function.end_token
75 function
[all...]
/external/chromium_org/chrome/browser/extensions/api/tabs/
H A Dwindows_util.cc19 bool GetWindowFromWindowID(ChromeUIThreadExtensionFunction* function, argument
22 ChromeExtensionFunctionDetails function_details(function);
25 function->dispatcher()->delegate()->GetExtensionWindowController();
35 function->SetError(extensions::tabs_constants::kNoCurrentWindowError);
42 function->SetError(extensions::ErrorUtils::FormatErrorMessage(
/external/compiler-rt/lib/builtins/
H A Dint_util.c30 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
31 panic("%s:%d: abort in %s", file, line, function);
44 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
57 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas17 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
22 in_func = function(opaque: Pointer; var buf: PByte): Integer;
24 out_func = function(opaque: Pointer; buf: PByte; size: Integer): Integer;
105 function zlibVersion: PChar;
106 function deflateInit(var strm: z_stream; level: Integer): Integer;
107 function deflate(var strm: z_stream; flush: Integer): Integer;
108 function deflateEnd(var strm: z_stream): Integer;
109 function inflateInit(var strm: z_stream): Integer;
110 function inflate(var strm: z_stream; flush: Integer): Integer;
111 function inflateEn
[all...]
/external/chromium_org/extensions/common/
H A Dstack_frame.cc15 const char kAnonymousFunction[] = "(anonymous function)";
25 function(frame.function) {
31 const base::string16& function)
35 function(function.empty() ? base::UTF8ToUTF16(kAnonymousFunction)
36 : function) {
57 std::string function; local
60 &function, &source, &line, &column) &&
70 base::UTF8ToUTF16(function)));
28 StackFrame(size_t line_number, size_t column_number, const base::string16& source, const base::string16& function) argument
[all...]
/external/guava/guava/src/com/google/common/base/
H A DFunctionalEquivalence.java41 private final Function<F, ? extends T> function; field in class:FunctionalEquivalence
45 Function<F, ? extends T> function, Equivalence<T> resultEquivalence) {
46 this.function = checkNotNull(function);
51 return resultEquivalence.equivalent(function.apply(a), function.apply(b));
55 return resultEquivalence.hash(function.apply(a));
64 return function.equals(that.function)
71 return Objects.hashCode(function, resultEquivalenc
44 FunctionalEquivalence( Function<F, ? extends T> function, Equivalence<T> resultEquivalence) argument
[all...]

Completed in 1322 milliseconds

1234567891011>>