Searched refs:function (Results 1 - 25 of 1483) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DIntStream.as33 function consume():void;
40 function LA(i:int):int;
49 function mark():int;
55 function get index():int;
65 function rewindTo(marker:int):void;
76 function rewind():void;
86 function release(marker:int):void;
108 function seek(index:int):void;
114 function get size():int;
120 function ge
[all...]
H A DToken.as32 function get text():String;
33 function set text(text:String):void;
35 function get type():int;
36 function set type(ttype:int):void;
39 function get line():int;
40 function set line(line:int):void;
43 function get charPositionInLine():int;
44 function set charPositionInLine(pos:int):void;
46 function get channel():int;
47 function se
[all...]
H A DCharStream.as36 function substring(start:int, stop:int):String;
43 function LT(i:int):int;
46 function get line():int;
49 function set line(line:int):void;
51 function set charPositionInLine(pos:int):void;
54 function get charPositionInLine():int;
H A DTokenSource.as48 function nextToken():Token;
53 function get sourceName():String;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMainThread.cpp43 void initializeMainThread(void (*function)(MainThreadFunction, void*)) argument
49 callOnMainThreadFunction = function;
54 void callOnMainThread(MainThreadFunction* function, void* context) argument
56 (*callOnMainThreadFunction)(function, context);
61 Function<void()>* function = static_cast<Function<void()>*>(context); local
62 (*function)();
63 delete function;
66 void callOnMainThread(const Function<void()>& function) argument
68 callOnMainThread(callFunctionObject, new Function<void()>(function));
H A DThreadFunctionInvocation.h37 ThreadFunctionInvocation(ThreadFunction function, void* data) argument
38 : function(function)
43 ThreadFunction function; member in struct:WTF::ThreadFunctionInvocation
/external/qemu/
H A Dmodule.h18 #define module_init(function, type) \
19 static void __attribute__((constructor)) do_qemu_init_ ## function(void) { \
20 register_module_init(function, type); \
30 #define block_init(function) module_init(function, MODULE_INIT_BLOCK)
31 #define device_init(function) module_init(function, MODULE_INIT_DEVICE)
32 #define machine_init(function) module_init(function, MODULE_INIT_MACHINE)
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D101-macros-used-twice.c2 #define function(x) 1 macro
11 #if function(0)
14 #if function(0)
H A D056-macro-argument-with-comma.c2 #define function(x) success macro
3 #define foo function
/external/clang/test/Misc/
H A Dast-dump-stmt.cpp4 void function() {} function in namespace:n
7 using n::function;
10 void (*f)() = &function;
11 // CHECK: DeclRefExpr{{.*}} (UsingShadow{{.*}}function
/external/mesa3d/src/glsl/glcpp/tests/
H A D101-macros-used-twice.c2 #define function(x) 1 macro
11 #if function(0)
14 #if function(0)
H A D056-macro-argument-with-comma.c2 #define function(x) success macro
3 #define foo function
/external/chromium_org/remoting/webapp/
H A Dbrowser_globals.gtestjs12 var XMLHttpRequest = function() {};
15 addEventListener: function() {},
/external/chromium_org/cc/animation/
H A Dtiming_function_unittest.cc13 scoped_ptr<CubicBezierTimingFunction> function = local
18 EXPECT_NEAR(function->GetValue(0), 0, epsilon);
19 EXPECT_NEAR(function->GetValue(0.05), 0.01136, epsilon);
20 EXPECT_NEAR(function->GetValue(0.1), 0.03978, epsilon);
21 EXPECT_NEAR(function->GetValue(0.15), 0.079780, epsilon);
22 EXPECT_NEAR(function->GetValue(0.2), 0.12803, epsilon);
23 EXPECT_NEAR(function->GetValue(0.25), 0.18235, epsilon);
24 EXPECT_NEAR(function->GetValue(0.3), 0.24115, epsilon);
25 EXPECT_NEAR(function->GetValue(0.35), 0.30323, epsilon);
26 EXPECT_NEAR(function
42 scoped_ptr<CubicBezierTimingFunction> function = local
[all...]
/external/chromium_org/build/android/pylib/host_driven/
H A Dtests_annotations.py15 def _AddFunction(annotation, function):
16 """Adds an annotated function to our container.
20 function: the function.
22 The function passed in.
25 function.__globals__['__file__']))[0]
26 qualified_function_name = '.'.join([module_name, function.func_name])
30 return function
34 """True if function name (module.function) contain
[all...]
/external/bison/build-aux/snippet/
H A Dwarn-on-use.h1 /* A C macro for emitting warnings if a function is used.
17 /* _GL_WARN_ON_USE (function, "literal string") issues a declaration
19 the text of "literal string" anywhere that function is called, if
23 This macro is useful for marking a function as a potential
25 instructions on the replacement function that should be used
26 instead. However, one of the reasons that a function is a
32 function. But this implies that _GL_WARN_ON_USE is only safe to
53 possible to write a wrapper accessor function, and poison that
68 # define _GL_WARN_ON_USE(function, message) \
69 extern __typeof__ (function) functio
[all...]
/external/bison/darwin-lib/
H A Dwarn-on-use.h5 # define _GL_WARN_ON_USE(function, message) \
6 extern __typeof__ (function) function __attribute__ ((__warning__ (message)))
8 /* Verify the existence of the function. */
9 # define _GL_WARN_ON_USE(function, message) \
10 extern __typeof__ (function) function
12 # define _GL_WARN_ON_USE(function, message) \
17 /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string")
18 is like _GL_WARN_ON_USE (function, "strin
[all...]
/external/bison/linux-lib/
H A Dwarn-on-use.h5 # define _GL_WARN_ON_USE(function, message) \
6 extern __typeof__ (function) function __attribute__ ((__warning__ (message)))
8 /* Verify the existence of the function. */
9 # define _GL_WARN_ON_USE(function, message) \
10 extern __typeof__ (function) function
12 # define _GL_WARN_ON_USE(function, message) \
17 /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string")
18 is like _GL_WARN_ON_USE (function, "strin
[all...]
/external/bison/lib/
H A Dfatal-signal.h35 /* Register a cleanup function to be executed when a catchable fatal signal
38 Restrictions for the cleanup function:
39 - The cleanup function can do all kinds of system calls.
48 - Also, the cleanup function must not block the catchable fatal signals
51 The cleanup function is executed asynchronously. It is unspecified
54 extern void at_fatal_signal (void (*function) (void));
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebCommon.cpp38 void failedAssertion(const char* file, int line, const char* function, const char* assertion) argument
40 WTFReportAssertionFailure(file, line, function, assertion);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
H A Dgas-instlabel.asm2 .type SUB, @function
/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;
/external/chromium_org/chrome/common/
H A Ddump_without_crashing.h16 // Sets a function that'll be invoked to dump the current process when
18 void SetDumpWithoutCrashingFunction(void (*function)());
/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

Completed in 917 milliseconds

1234567891011>>