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

1 2 34 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/function/
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;
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.
  /prebuilts/go/darwin-x86/src/runtime/debug/
stack.go 31 // then attempts to discover, for Go functions, the calling function or
62 fmt.Fprintf(buf, "\t%s: %s\n", function(pc), source(lines, line))
75 // function returns, if possible, the name of the function containing the PC.
76 func function(pc uintptr) []byte { func
  /prebuilts/go/linux-x86/src/runtime/debug/
stack.go 31 // then attempts to discover, for Go functions, the calling function or
62 fmt.Fprintf(buf, "\t%s: %s\n", function(pc), source(lines, line))
75 // function returns, if possible, the name of the function containing the PC.
76 func function(pc uintptr) []byte { func
  /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);
  /development/ndk/platforms/android-3/include/linux/
timer.h 25 void (*function)(unsigned long); member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
  /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/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/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/v8/test/cctest/compiler/
test-linkage.cc 27 // So we can get a real JS function.
44 Handle<JSFunction> function = Compile("a + b"); local
45 ParseInfo parse_info(handles.main_zone(), function);
53 const char* sources[] = {"(function() { })", "(function(a) { })",
54 "(function(a,b) { })", "(function(a,b,c) { })"};
58 Handle<JSFunction> function = local
60 *v8::Local<v8::Function>::Cast(CompileRun(sources[i]))));
61 ParseInfo parse_info(handles.main_zone(), function);
90 Handle<JSFunction> function = Compile("a + c"); local
    [all...]
  /external/v8/test/cctest/
test-elements-kind.cc 76 Handle<JSFunction> function = factory->NewFunction(factory->empty_string()); local
79 Handle<JSObject> object = factory->NewJSObject(function);
85 // for the default constructor function no in-object properties are reserved
104 Handle<JSFunction> function = factory->NewFunction(factory->empty_string()); local
107 function->shared()->set_expected_nof_properties(nof_inobject_properties);
110 Handle<JSObject> object = factory->NewJSObject(function);
150 Handle<JSFunction> function = factory->NewFunction(factory->empty_string()); local
153 Handle<JSObject> object = factory->NewJSObject(function);
212 // for the default constructor function no in-object properties are reserved
  /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;
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;

Completed in 330 milliseconds

1 2 34 5 6 7 8 91011>>