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

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/util/function/
ConsumerTest.java 17 package libcore.java.util.function;
21 import java.util.function.Consumer;
DoubleConsumerTest.java 17 package libcore.java.util.function;
21 import java.util.function.DoubleConsumer;
DoubleUnaryOperatorTest.java 17 package libcore.java.util.function;
22 import java.util.function.BinaryOperator;
23 import java.util.function.DoubleUnaryOperator;
FunctionTest.java 17 package libcore.java.util.function;
21 import java.util.function.Function;
27 assertSame(o, Function.identity().apply(o));
28 assertNull(Function.identity().apply(null));
32 Function<Double, Double> plusOne = x -> x + 1.0d;
33 Function<Double, Double> twice = x -> 2 *x;
38 Function<Double, Double> plusOne = x -> x + 1.0d;
46 Function<Double, Double> plusOne = x -> x + 1.0d;
47 Function<Double, Double> twice = x -> 2 *x
    [all...]
IntConsumerTest.java 17 package libcore.java.util.function;
21 import java.util.function.IntConsumer;
IntUnaryOperatorTest.java 17 package libcore.java.util.function;
21 import java.util.function.IntUnaryOperator;
LongConsumerTest.java 17 package libcore.java.util.function;
21 import java.util.function.LongConsumer;
LongUnaryOperatorTest.java 17 package libcore.java.util.function;
21 import java.util.function.LongUnaryOperator;
  /libcore/luni/src/test/java/tests/support/
MockFunction.java 19 import SQLite.Function;
23 public class MockFunction implements SQLite.Function{
35 public void function(FunctionContext fc, String args[]) { method in class:MockFunction
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
LeastSquaresConverter.java 31 * This class is mostly used when the vectorial objective function represents
41 * (i.e. the output of the vectorial objective function) and the observations. The
60 /** Underlying vectorial function. */
61 private final MultivariateVectorialFunction function; field in class:LeastSquaresConverter
63 /** Observations to be compared to objective function to compute residuals. */
73 * @param function vectorial residuals function to wrap
74 * @param observations observations to be compared to objective function to compute residuals
76 public LeastSquaresConverter(final MultivariateVectorialFunction function,
78 this.function = function
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 6 static T t; // expected-error{{static data member instantiated with function type 'int ()'}}
8 typedef int function(); typedef
9 A<function> a; // expected-note{{instantiation of}}
12 B() { T t; } // expected-error{{variable instantiated with function type 'int ()'}}
14 B<function> b; // expected-note{{instantiation of}}
29 f0(0, vla); // expected-error{{no matching function for call to 'f0'}}
  /external/flatbuffers/include/flatbuffers/
hash.h 70 HashFunction function; member in struct:flatbuffers::NamedHashFunction
88 return kHashFunctions32[i].function;
99 return kHashFunctions64[i].function;
  /external/syslinux/gpxe/src/include/gpxe/
ansiesc.h 25 * the control function.
33 /** The control function identifier
35 * The control function identifier consists of the
42 unsigned int function; member in struct:ansiesc_handler
50 * function should be used.
72 * Must be terminated by a handler with @c function set to
83 /** Control function identifier */
84 unsigned int function; member in struct:ansiesc_context
94 * @defgroup ansifuncs ANSI escape sequence function identifiers
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter_nested.cc 22 #include "llvm/IR/Function.h"
46 llvm::Function* IrEmitterNested::EmitBasePointersForNestedComputation(
76 llvm::Function* function = llvm::Function::Create( local
77 function_type, // The function type.
81 nested_computation.name()))), // The name of the function.
87 function->addDereferenceableAttr(arg_no + 1, arg_size);
95 llvm::BasicBlock::Create(function->getContext(), "entry", function);
    [all...]
  /external/v8/src/builtins/
builtins-global.cc 95 Handle<JSFunction> function; local
97 isolate, function,
103 Execution::Call(isolate, function, target_global_proxy, 0, nullptr));
  /external/v8/src/snapshot/
partial-serializer.cc 88 // Function and object templates are not context specific.
95 JSFunction* function = JSFunction::cast(obj); local
96 function->ClearTypeFeedbackInfo();
113 // Scripts should be referred only through shared function infos. We can't
  /external/v8/src/
source-position.cc 13 Handle<SharedFunctionInfo> function(pos.function);
15 if (function->script()->IsScript()) {
16 Script* script = Script::cast(function->script());
74 Handle<SharedFunctionInfo> function(
76 stack.push_back(SourcePositionInfo(pos, function));
79 Handle<SharedFunctionInfo> function(
81 stack.push_back(SourcePositionInfo(pos, function));
86 SharedFunctionInfo* function) const {
89 if (function->script()->IsScript())
117 SharedFunctionInfo* function = local
    [all...]
  /frameworks/base/core/java/com/android/internal/util/function/pooled/
OmniFunction.java 17 package com.android.internal.util.function.pooled;
21 import com.android.internal.util.function.HexConsumer;
22 import com.android.internal.util.function.HexFunction;
23 import com.android.internal.util.function.QuadConsumer;
24 import com.android.internal.util.function.QuadFunction;
25 import com.android.internal.util.function.QuintConsumer;
26 import com.android.internal.util.function.QuintFunction;
27 import com.android.internal.util.function.TriConsumer;
28 import com.android.internal.util.function.TriFunction;
30 import java.util.function.BiConsumer
    [all...]
PooledLambda.java 17 package com.android.internal.util.function.pooled;
19 import static com.android.internal.util.function.pooled.PooledLambdaImpl.acquire;
20 import static com.android.internal.util.function.pooled.PooledLambdaImpl.acquireConstSupplier;
24 import com.android.internal.util.function.HexConsumer;
25 import com.android.internal.util.function.HexFunction;
26 import com.android.internal.util.function.QuadConsumer;
27 import com.android.internal.util.function.QuadFunction;
28 import com.android.internal.util.function.QuintConsumer;
29 import com.android.internal.util.function.QuintFunction;
30 import com.android.internal.util.function.TriConsumer
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
CSVTest.java 15 * function,expected_output,input,extra_info
17 * for two input: function,expected_output,input1,input2,extra
66 String function = testCase[0]; local
70 if (twoInputFunctions.contains(function)) {
75 run2InputTest(function, expectedOutput, input, input2, extra);
80 runTest(function, expectedOutput, input, extra);
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
FrameDecorator.py 50 'function' method, then all of the other methods are carried out
85 def function(self): member in class:FrameDecorator
86 """ Return the name of the frame's function or an address of
87 the function of the frame. First determine if this is a
89 frame internal function API. Finally, if a name cannot be
90 determined return the address. If this function returns an
91 address, GDB will attempt to determine the function name from
96 # "function", so determine which object this is.
98 if hasattr(self._base, "function"):
100 # "function" method, use that
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
FrameDecorator.py 50 'function' method, then all of the other methods are carried out
85 def function(self): member in class:FrameDecorator
86 """ Return the name of the frame's function or an address of
87 the function of the frame. First determine if this is a
89 frame internal function API. Finally, if a name cannot be
90 determined return the address. If this function returns an
91 address, GDB will attempt to determine the function name from
96 # "function", so determine which object this is.
98 if hasattr(self._base, "function"):
100 # "function" method, use that
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
limits.cpp 44 // argument to a function out or inout parameter."
51 // N.B.: assuming the last rule excludes function calls
107 // check function calls for arguments modifying the loop index
115 TSymbol* function = symbolTable.find(node->getName()); local
116 const TType* type = (*function->getAsFunction())[i].type;
130 // External function to call for loop check.
174 // check for function calls, assuming they are bad; spec. doesn't really say
186 // External function to call for loop check.
  /toolchain/binutils/binutils-2.27/bfd/
coff-bfd.h 55 const char *function; member in struct:coff_section_tdata
  /cts/hostsidetests/gputools/layers/jni/
vk_layer_interface.h 52 VkLayerFunction function; member in struct:__anon1550
68 VkLayerFunction function; member in struct:__anon1552

Completed in 610 milliseconds

1 2 3 4 56 7 8 91011>>