HomeSort by relevance Sort by last modified time
    Searched defs:function (Results 1 - 25 of 956) 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() {{.*}} {
  /external/doclava/res/assets/templates-sdk/
trailer.cs 32 (function(lang) { method
  /external/llvm/test/MC/ARM/Windows/
text-attributes.s 9 .def function
13 .global function
15 function: label
  /external/llvm/test/MC/ARM/
arm-qualifier-diagnostics.s 5 .type function,%function
6 function: label
target-expressions.s 7 .type function,%function
8 function: label
12 .type external,%function
16 .type test,%function
18 movw r0, :lower16:function
19 movt r0, :upper16:function
21 movw r1, #:lower16:function
22 movt r1, #:upper16:function
49 @ CHECK: movw r0, :lower16:function
    [all...]
thumb-movwt-reloc.s 7 .type function,%function
8 function: label
12 .type external,%function
14 .type test,%function
16 movw r0, :lower16:function
17 movt r0, :upper16:function
20 @ CHECK: movw r0, :lower16:function
21 @ CHECK: movt r0, :upper16:function
24 @ CHECK-RELOCATIONS: 0x2 R_ARM_THM_MOVW_ABS_NC function 0x
    [all...]
  /external/llvm/test/MC/X86/
variant-diagnostics.s 6 function: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ia64/
undefined.s 12 .global function#
13 .proc function#
14 function: label
45 .endp function#
132 stringz "function"
152 stringz "function"
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-undefined/
undefined.c 7 function () function
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
undefined.s 11 .globl function
12 .type function, @function
13 function: label
21 .size function, .-function
134 .string "function"
154 .string "function"
  /build/make/tools/droiddoc/templates-pdk/
customizations.cs 19 addLoadEvent(function() { method
33 addLoadEvent(function() { method
100 addLoadEvent(function() {
  /external/llvm/test/DebugInfo/X86/
asm-macro-line-number.s 18 function: label
  /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/tools/versioner/src/
SymbolDatabase.h 30 function, member in class:NdkSymbolType
  /build/make/tools/droiddoc/templates-ndk/
customizations.cs 34 $(document).ready(function() { method
52 $(document).ready(function() { method
71 $(document).ready(function() { method
90 $(document).ready(function() { method
109 $(document).ready(function() { method
129 $(document).ready(function() { method
143 $(document).ready(function() { method
157 $(document).ready(function() { method
171 $(document).ready(function() { method
185 $(document).ready(function() { method
199 $(document).ready(function() { method
213 $(document).ready(function() { method
227 $(document).ready(function() { method
241 $(document).ready(function() { method
259 $(document).ready(function() { method
278 $(document).ready(function() { method
296 $(document).ready(function() { method
315 $(document).ready(function() { method
338 $(document).ready(function() { method
357 $(document).ready(function() { method
377 $(document).ready(function() { method
393 $(document).ready(function() { method
    [all...]
  /external/clang/test/PCH/Inputs/
typo.hpp 2 template<typename F> class function {}; class in namespace:boost
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_stack.h 54 const void *function; member in struct:debug_stack_frame
  /external/tensorflow/tensorflow/core/common_runtime/
function_testlib.h 19 #include "tensorflow/core/framework/function.h"
23 namespace function { namespace in namespace:tensorflow::test
28 // Adds a function call to the given scope and returns the output for the node.
33 } // namespace function
  /external/valgrind/memcheck/tests/solaris/
ldynsym.c 18 static void function(size_t size) function
25 function(10);
  /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/gas/testsuite/gas/elf/
type-noifunc.s 2 .size function,1
3 .type function,%function
4 function: label
  /external/boringssl/src/util/fipstools/testdata/ppc64le-Sample/
in.s 34 .string "function is %p\n"
57 .type function, @function
58 function: label
61 .localentry function,.-function
93 addis 5,2,function@toc@ha
94 addi 5,5,function@toc@l
137 .size function,.-function
    [all...]
  /external/clang/test/Modules/Inputs/
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/javasqlite/src/main/java/SQLite/
Function.java 7 * which is used to set the function result or error code.
12 * class SinFunc implements SQLite.Function {
13 * public void function(SQLite.FunctionContext fc, String args[]) {
31 public interface Function {
34 * Callback for regular function.
36 * @param fc function's context for reporting result
40 public void function(FunctionContext fc, String args[]); method in interface:Function
43 * Callback for one step in aggregate function.
45 * @param fc function's context for reporting result
52 * Callback for final step in aggregate function
    [all...]

Completed in 1437 milliseconds

1 2 3 4 5 6 7 8 91011>>