HomeSort by relevance Sort by last modified time
    Searched defs:function (Results 76 - 100 of 956) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/Misc/
ast-dump-stmt.cpp 4 void function() {} function in namespace:n
7 using n::function;
10 void (*f)() = &function;
11 // CHECK: DeclRefExpr{{.*}} (UsingShadow{{.*}}function
52 // CHECK: CXXNewExpr {{.*}} 'int *' Function {{.*}} 'operator new'
53 // CHECK: CXXDeleteExpr {{.*}} 'void' Function {{.*}} 'operator delete'
54 // CHECK: CXXNewExpr {{.*}} 'int *' array Function {{.*}} 'operator new[]'
55 // CHECK: CXXDeleteExpr {{.*}} 'void' array Function {{.*}} 'operator delete[]'
56 // CHECK: CXXNewExpr {{.*}} 'int *' global Function {{.*}} 'operator new'
57 // CHECK: CXXDeleteExpr {{.*}} 'void' global Function {{.*}} 'operator delete
    [all...]
  /external/llvm/test/MC/ARM/
eh-directive-personalityindex-diagnostics.s 7 .global function
8 .type function,%function
10 function: label
18 .type ununwindable,%function
34 .type nodata,%function
50 .type multiple_personality,%function
69 .type multiple_personality_indicies,%function
88 .type invalid_expression,%function
100 .type nonconstant_expression,%function
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_assert.c 37 * A call to lp_build_assert() will build a function call to this function.
53 * Build an assertion in LLVM IR by building a function call to the
54 * lp_assert() function above.
68 LLVMValueRef function; local
78 function = lp_build_const_func_pointer(gallivm,
83 /* build function call param list */
91 LLVMBuildCall(builder, function, args, ARRAY_SIZE(args), "");
  /external/tcpdump/
print-loopback.c 61 uint16_t function; local
65 /* function */
67 function = EXTRACT_LE_16BITS(cp);
69 ND_PRINT((ndo, ", %s", tok2str(fcode_str, " invalid (%u)", function)));
71 switch (function) {
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
elemental_ir_emitter.cc 53 // Create a function declaration.
54 llvm::Function* function = local
55 llvm::cast<llvm::Function>(module_->getOrInsertFunction(
58 function->setCallingConv(llvm::CallingConv::C);
59 function->setDoesNotThrow();
60 function->setDoesNotAccessMemory();
61 // Create an instruction to call the function.
62 llvm::Value* result = ir_builder_->CreateCall(function, operand_value);
92 // Create a function declaration
93 llvm::Function* function = local
    [all...]
  /external/tensorflow/tensorflow/core/framework/
function_testlib.h 22 #include "tensorflow/core/framework/function.h"
23 #include "tensorflow/core/framework/function.pb.h"
31 namespace function { namespace in namespace:tensorflow::test
87 void FunctionTestSchedClosure(std::function<void()> fn);
89 } // end namespace function
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
variables-original.cc 16 // Function parameters
17 int function(int interestingNumber) { function in namespace:blink
  /external/vixl/examples/aarch64/
check-bounds.cc 62 Instruction* function,
70 simulator->RunFrom(function);
85 // Generate the code for the example function.
91 // Run the example function.
92 Instruction* function = masm.GetLabelAddress<Instruction*>(&check_bounds); local
93 run_function(&simulator, function, 546, 50, 1000);
94 run_function(&simulator, function, 62, 100, 200);
95 run_function(&simulator, function, 200, 100, 200);
  /external/webrtc/webrtc/base/
common.cc 54 void LogAssert(const char* function, const char* file, int line,
57 custom_assert_logger_(function, file, line, expression);
60 << expression << " @ " << function; local
  /frameworks/base/core/java/com/android/internal/util/function/pooled/
ArgumentPlaceholder.java 17 package com.android.internal.util.function.pooled;
PooledConsumer.java 17 package com.android.internal.util.function.pooled;
19 import java.util.function.Consumer;
PooledFunction.java 17 package com.android.internal.util.function.pooled;
19 import java.util.function.Function;
22 * {@link Function} + {@link PooledLambda}
27 public interface PooledFunction<A, R> extends PooledLambda, Function<A, R> {
PooledPredicate.java 17 package com.android.internal.util.function.pooled;
19 import java.util.function.Predicate;
PooledRunnable.java 17 package com.android.internal.util.function.pooled;
  /libcore/luni/src/test/java/libcore/java/util/function/
UnaryOperatorTest.java 17 package libcore.java.util.function;
21 import java.util.function.UnaryOperator;
  /libcore/ojluni/src/main/java/java/util/function/
BiConsumer.java 25 package java.util.function;
BiPredicate.java 25 package java.util.function;
30 * Represents a predicate (boolean-valued function) of two arguments. This is
Consumer.java 25 package java.util.function;
DoubleConsumer.java 25 package java.util.function;
DoublePredicate.java 25 package java.util.function;
30 * Represents a predicate (boolean-valued function) of one {@code double}-valued
DoubleUnaryOperator.java 25 package java.util.function;
Function.java 25 package java.util.function;
30 * Represents a function that accepts one argument and produces a result.
35 * @param <T> the type of the input to the function
36 * @param <R> the type of the result of the function
41 public interface Function<T, R> {
44 * Applies this function to the given argument.
46 * @param t the function argument
47 * @return the function result
52 * Returns a composed function that first applies the {@code before}
53 * function to its input, and then applies this function to the result
    [all...]
IntConsumer.java 25 package java.util.function;
IntPredicate.java 25 package java.util.function;
30 * Represents a predicate (boolean-valued function) of one {@code int}-valued
IntUnaryOperator.java 25 package java.util.function;

Completed in 991 milliseconds

1 2 34 5 6 7 8 91011>>