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

1 2 3 45 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/function/
LongConsumer.java 25 package java.util.function;
LongPredicate.java 25 package java.util.function;
30 * Represents a predicate (boolean-valued function) of one {@code long}-valued
LongUnaryOperator.java 25 package java.util.function;
Predicate.java 25 package java.util.function;
30 * Represents a predicate (boolean-valued function) of one argument.
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 4 // 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& other) {
    [all...]
  /cts/tests/tests/jni/libjnitest/
helper.c 60 JniTestFunction *function = va_arg(args, JniTestFunction *); local
64 char *oneResult = function(env);
  /external/clang/test/Analysis/
bug_hash_test.cpp 4 int function(int p) { function
125 // CHECK-NEXT: <string>debug.DumpBugHash$int function(int)$10$return5;$debug</string>
127 // CHECK-NEXT: <string>debug.DumpBugHash$int function(int)$10$return5;$debug</string>
130 // CHECK-NEXT: <key>description</key><string>debug.DumpBugHash$int function(int)$10$return5;$debug</string>
136 // CHECK-NEXT: <key>issue_context_kind</key><string>function</string>
137 // CHECK-NEXT: <key>issue_context</key><string>function</string>
219 // CHECK-NEXT: <key>issue_context_kind</key><string>function</string>
302 // CHECK-NEXT: <key>issue_context_kind</key><string>function</string>
    [all...]
  /external/clang/test/Preprocessor/
microsoft-ext.c 39 void function(int a); variable
42 function(x, __VA_ARGS__);
45 // CHECK: function(x);
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesShaderIntrinsics.cpp 76 const SpirVFunction function = static_cast<SpirVFunction>(functionNdx); local
95 switch (function)
108 switch (function)
111 formatGroup->addChild(new SparseCaseOpImageSparseFetch(testCtx, stream.str(), function, imageType, imageSize, format));
114 formatGroup->addChild(new SparseCaseOpImageSparseRead(testCtx, stream.str(), function, imageType, imageSize, format));
117 formatGroup->addChild(new SparseCaseOpImageSparseSampleExplicitLod(testCtx, stream.str(), function, imageType, imageSize, format));
120 formatGroup->addChild(new SparseCaseOpImageSparseSampleImplicitLod(testCtx, stream.str(), function, imageType, imageSize, format));
123 formatGroup->addChild(new SparseCaseOpImageSparseGather(testCtx, stream.str(), function, imageType, imageSize, format));
  /external/google-breakpad/src/common/
stabs_to_module_unittest.cc 47 // Feed in a simple compilation unit that defines a function with
51 EXPECT_TRUE(h.StartFunction("function", 0xfde4abbed390c394LL));
61 vector<Module::Function *> functions;
64 Module::Function *function = functions[0]; local
65 EXPECT_STREQ("function", function->name.c_str());
66 EXPECT_EQ(0xfde4abbed390c394LL, function->address);
67 EXPECT_EQ(0x10U, function->size);
68 EXPECT_EQ(0U, function->parameter_size)
131 Module::Function *function = functions[0]; local
166 Module::Function *function = functions[0]; local
211 Module::Function *function = functions[0]; local
    [all...]
  /external/guava/guava/src/com/google/common/base/
FunctionalEquivalence.java 41 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
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ByFunctionOrdering.java 22 import com.google.common.base.Function;
31 * function on those elements.
36 final Function<F, ? extends T> function; field in class:ByFunctionOrdering
40 Function<F, ? extends T> function, Ordering<T> ordering) {
41 this.function = checkNotNull(function);
46 return ordering.compare(function.apply(left), function.apply(right))
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/
FunctionInterfaceLogicTest.java 27 import java.util.function.Consumer;
28 import java.util.function.Function;
44 ResolvedType function = new ReferenceTypeImpl(new ReflectionInterfaceDeclaration(Function.class, typeSolver), typeSolver); local
45 assertEquals(true, FunctionalInterfaceLogic.getFunctionalMethod(function).isPresent());
46 assertEquals("apply", FunctionalInterfaceLogic.getFunctionalMethod(function).get().getName());
  /external/llvm/test/ExecutionEngine/RuntimeDyld/ARM/
COFF_Thumb.s 25 .def function
29 .globl function
33 function: label
70 # bl function @ IMAGE_REL_ARM_BLX23T
96 .long function(imgrel) @ IMAGE_REL_ARM_ADDR32NB
97 # rtdyld-check: *{4}relocations = function - section_addr(COFF_Thumb.s.tmp.obj, .text)
  /external/strace/
sigevent.h 41 unsigned long function; member in struct:__anon35331::__anon35333::__anon35334
  /external/tensorflow/tensorflow/compiler/jit/
build_xla_launch_ops_pass.cc 21 #include "tensorflow/core/common_runtime/function.h"
49 NameAttrList function; local
50 function.set_name(function_name);
51 *function.mutable_attr() = function_attr;
52 AddNodeAttr("function", function, &def);
82 // Build a _XlaLaunch operator to execute the function body.
  /external/tensorflow/tensorflow/compiler/xla/service/
inliner.cc 67 HloComputation* function = map->to_apply(); local
68 HloInstruction& root = *function->root_instruction();
79 VLOG(10) << "inlining map({X ... Y}, op) => : op(X ... Y) with function "
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
kernel_support_library.cc 25 const std::function<void(llvm::Value*, bool)>& for_body_generator) {
36 const std::function<void(llvm::Value*, llvm::Value*)>& for_body_generator) {
56 llvm::Value* condition, const std::function<void()>& true_block_generator,
57 const std::function<void()>& false_block_generator) {
71 const std::function<void(KernelSupportLibrary::ArgumentVector)>&
74 llvm::Function* function = local
89 if (!function) {
99 function = llvm_ir::CreateFunction(
107 llvm::BasicBlock::Create(ir_builder->getContext(), "entry", function);
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
function_testlib.cc 24 namespace function { namespace in namespace:tensorflow::test
78 } // namespace function
  /external/tensorflow/tensorflow/core/lib/io/
iterator.h 73 // Clients are allowed to register function/arg1/arg2 triples that
79 void RegisterCleanup(CleanupFunction function, void* arg1, void* arg2);
83 CleanupFunction function; member in struct:tensorflow::table::Iterator::Cleanup
  /external/v8/src/inspector/
v8-function-call.cc 31 #include "src/inspector/v8-function-call.h"
85 v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(value); local
100 v8::MaybeLocal<v8::Value> maybeResult = function->Call(
  /frameworks/base/core/java/com/android/internal/util/function/pooled/
PooledSupplier.java 17 package com.android.internal.util.function.pooled;
21 import java.util.function.DoubleSupplier;
22 import java.util.function.IntSupplier;
23 import java.util.function.LongSupplier;
24 import java.util.function.Supplier;
  /libcore/luni/src/test/java/libcore/java/util/function/
BiConsumerTest.java 17 package libcore.java.util.function;
21 import java.util.function.BiConsumer;
BiFunctionTest.java 17 package libcore.java.util.function;
21 import java.util.function.BiFunction;
22 import java.util.function.Function;
28 Function<Integer, String> toString = i -> Integer.toString(i);
42 Function<Integer, String> assertNull = i -> { assertNull(i); return "ok"; };
BinaryOperatorTest.java 17 package libcore.java.util.function;
22 import java.util.function.BinaryOperator;

Completed in 494 milliseconds

1 2 3 45 6 7 8 91011>>