HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 1 - 25 of 9569) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
windows-itanium.c 7 int function() { function
11 // CHECK-C: define i32 @function() {{.*}} {
  /libcore/ojluni/src/main/java/java/util/function/
package-info.java 47 * they do not identify a complete set of function shapes to which lambda
62 * to those abstract concepts, for example using "this function" instead of
63 * "the function represented by this object". When an API method is said to
65 * provided function to...", this is understood to mean a <i>non-null</i>
73 * <li>There are several basic function shapes, including
74 * {@link java.util.function.Function} (unary function from {@code T} to {@code R}),
75 * {@link java.util.function.Consumer} (unary function from {@code T} to {@code void})
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-undefined/
undefined.c 7 function () function
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 33 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 get sourceName():String
    [all...]
Token.as 32 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 set channel(channel:int):void
    [all...]
CharStream.as 36 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;
  /frameworks/wilhelm/src/
trace.cpp 33 void slTraceEnterGlobal(const char *function)
36 SL_LOGD("Entering %s", function);
41 void slTraceLeaveGlobal(const char *function, SLresult result)
45 SL_LOGD("Leaving %s", function);
51 SL_LOGW("Leaving %s (%s)", function, str);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
60 void slTraceEnterInterface(const char *function)
65 if (*function == 'I') {
66 ++function;
68 const char *underscore = function;
    [all...]
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
101-macros-used-twice.c 2 #define function(x) 1 macro
11 #if function(0)
14 #if function(0)
056-macro-argument-with-comma.c 2 #define function(x) success macro
3 #define foo function
  /bionic/linker/
linker_libc_support.c 32 int atexit(void (*function)(void) __attribute__((__unused__))) {
  /external/clang/test/Modules/Inputs/
redecl-add-after-load-top.h 4 static constexpr int function();
redecl-add-after-load.h 3 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-1.10.6/include/asio/
handler_invoke_hook.hpp 23 * @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
52 * template <typename Function>
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
    [all...]
  /external/chromium-libpac/test/js-unittest/
return_empty_string.js 0 function FindProxyForURL(url, host) {
return_integer.js 0 function FindProxyForURL(url, host) {
direct.js 0 function FindProxyForURL(url, host) {
return_function.js 0 function FindProxyForURL(url, host) {
return_null.js 0 function FindProxyForURL(url, host) {
return_undefined.js 0 function FindProxyForURL(url, host) {
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
derive_from.fail.cpp 20 struct S : public std::function<void()> { using function::function; };
  /external/skia/experimental/docs/
utilities.js 0 function alpha(value, color) {
5 function argb(a, r, g, b) {
9 function assert(condition) {
13 function isAlpha(code) {
18 function isArray(a) {
22 function rgb(r, g, b) {
  /external/skqp/experimental/docs/
utilities.js 0 function alpha(value, color) {
5 function argb(a, r, g, b) {
9 function assert(condition) {
13 function isAlpha(code) {
18 function isArray(a) {
22 function rgb(r, g, b) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.func/
derive_from.fail.cpp 20 struct S : public std::function<void()> { using function::function; };
  /external/libchrome/base/debug/
dump_without_crashing.cc 11 // Pointer to the function that's called by DumpWithoutCrashing() to dump the
29 void SetDumpWithoutCrashingFunction(void (CDECL *function)()) {
30 dump_without_crashing_function_ = function;
  /libcore/ojluni/src/main/java/java/util/stream/
package-info.java 52 * an array, a generator function, or an I/O channel, through a pipeline of
96 * {@code Collection}, an array, a generator function, or an I/O channel);
199 * of a <a href="../function/package-summary.html">functional interface</a> such
200 * as {@link java.util.function.Function}, and are often lambda expressions or
293 * in which the mapper function is applied to individual elements, or in what
375 * {@link java.util.stream.Stream#reduce(java.util.function.BinaryOperator) reduce()}
393 * parallelizable, so long as the function(s) used to process the elements
443 * function takes a partial result and the next element, and produces a new
444 * partial result. The <em>combiner</em> function combines two partial result
    [all...]

Completed in 545 milliseconds

1 2 3 4 5 6 7 8 91011>>