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

1234567891011>>

/external/clang/test/CodeGen/
H A Dwindows-itanium.c7 int function() { function
11 // CHECK-C: define i32 @function() {{.*}} {
/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;
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/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/clang/test/Modules/Inputs/
H A Dredecl-add-after-load-top.h4 static constexpr int function();
H A Dredecl-add-after-load.h3 extern constexpr int function() { return 0; } function
8 extern constexpr int function() { return 0; } function in namespace:N
14 constexpr int C::function() { return 0; } function in class:C
19 static constexpr int function();
23 constexpr int D::function() { return 0; } function in class:D
/external/parameter-framework/asio/include/asio/
H A Dhandler_invoke_hook.hpp23 * @brief Default invoke function for handlers.
37 * hooking function ensures that the invoked method used for the final handler
43 * This default implementation invokes the function object like so:
44 * @code function(); @endcode
45 * If necessary, the default implementation makes a copy of the function object
53 * void asio_handler_invoke(Function function, my_handler* context)
55 * context->strand_.dispatch(function);
61 /// Default handler invocation hook used for non-const function objects.
63 inline void asio_handler_invoke(Function& function, ...) argument
65 function();
70 asio_handler_invoke(const Function& function, ...) argument
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dhandler_invoke_hook.hpp23 * @brief Default invoke function for handlers.
37 * hooking function ensures that the invoked method used for the final handler
43 * This default implementation invokes the function object like so:
44 * @code function(); @endcode
45 * If necessary, the default implementation makes a copy of the function object
53 * void asio_handler_invoke(Function function, my_handler* context)
55 * context->strand_.dispatch(function);
61 /// Default handler invocation hook used for non-const function objects.
63 inline void asio_handler_invoke(Function& function, ...) argument
65 function();
70 asio_handler_invoke(const Function& function, ...) argument
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
H A Datexit_with_log.py8 def _WrapFunction(function):
10 logging.debug('Try running %s', repr(function))
11 function(*args, **kwargs)
12 logging.debug('Did run %s', repr(function))
15 def Register(function, *args, **kwargs):
16 atexit.register(_WrapFunction(function), *args, **kwargs)
/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/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
H A Dderive_from.fail.cpp20 struct S : public std::function<void()> { using function::function; };
H A Dderive_from.pass.cpp22 using Fn = std::function<void()>;
23 struct S : public std::function<void()> { using function::function; };
/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/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...]
/external/clang/test/PCH/Inputs/
H A Dtypo.hpp2 template<typename F> class function {}; class in namespace:boost
/external/libcxx/test/std/experimental/func/header.functional.synop/
H A Dincludes.pass.cpp20 std::function<int(int)> x;
/external/libcxx/test/std/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;
/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...]

Completed in 483 milliseconds

1234567891011>>