Searched refs:function (Results 1 - 25 of 962) 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;
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;
H A DANTLRStringStream.as64 public function ANTLRStringStream(input:String = null, lineDelimiter:String = "\n") {
76 public function reset():void {
83 public function consume():void {
94 public function LA(i:int):int {
111 public function LT(i:int):int {
119 public function get index():int {
123 public function get size():int {
127 public function mark():int {
148 public function rewindTo(m:int):void {
157 public function rewin
[all...]
/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/webkit/Source/JavaScriptCore/wtf/
H A DThreadFunctionInvocation.h37 ThreadFunctionInvocation(ThreadFunction function, void* data) argument
38 : function(function)
43 ThreadFunction function; member in struct:WTF::ThreadFunctionInvocation
/external/webkit/Source/WebKit/mac/Misc/
H A DOldWebAssertions.c29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) argument
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...) argument
/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/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/clang/test/PCH/Inputs/
H A Dtypo.hpp2 template<typename F> class function {}; class in namespace:boost
/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/webkit/Source/WebKit/chromium/src/
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/webkit/Source/WebCore/css/
H A DCSSFunctionValue.cpp35 CSSFunctionValue::CSSFunctionValue(CSSParserFunction* function) argument
36 : m_name(function->name)
38 if (function->args)
39 m_args = CSSValueList::createFromParserValueList(function->args.get());
/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/compiler-rt/lib/
H A Dint_util.c28 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
29 panic("%s:%d: abort in %s", file, line, function);
40 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
41 __assert_rtn(function, file, line, "libcompiler_rt abort");
52 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/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 707 milliseconds

1234567891011>>