Searched refs:function (Results 1 - 25 of 395) sorted by relevance

1234567891011>>

/frameworks/wilhelm/src/
H A Dtrace.cpp33 void slTraceEnterGlobal(const char *function) argument
36 SL_LOGD("Entering %s", function);
41 void slTraceLeaveGlobal(const char *function, SLresult result) argument
45 SL_LOGD("Leaving %s", function);
51 SL_LOGW("Leaving %s (%s)", function, str);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
60 void slTraceEnterInterface(const char *function) argument
65 if (*function == 'I') {
66 ++function;
68 const char *underscore = function;
86 slTraceLeaveInterface(const char *function, SLresult result) argument
133 slTraceEnterInterfaceVoid(const char *function) argument
141 slTraceLeaveInterfaceVoid(const char *function) argument
[all...]
H A Dtrace.h49 extern void slTraceEnterGlobal(const char *function);
50 extern void slTraceLeaveGlobal(const char *function, SLresult result);
51 extern void slTraceEnterInterface(const char *function);
52 extern void slTraceLeaveInterface(const char *function, SLresult result);
53 extern void slTraceEnterInterfaceVoid(const char *function);
54 extern void slTraceLeaveInterfaceVoid(const char *function);
/frameworks/base/core/java/com/android/internal/util/function/
H A DTriConsumer.java17 package com.android.internal.util.function;
20 import java.util.function.Consumer;
H A DTriPredicate.java17 package com.android.internal.util.function;
20 import java.util.function.Predicate;
H A DHexConsumer.java17 package com.android.internal.util.function;
19 import java.util.function.Consumer;
H A DHexFunction.java17 package com.android.internal.util.function;
19 import java.util.function.Function;
H A DHexPredicate.java17 package com.android.internal.util.function;
19 import java.util.function.Predicate;
H A DQuadConsumer.java17 package com.android.internal.util.function;
20 import java.util.function.Consumer;
H A DQuadFunction.java17 package com.android.internal.util.function;
20 import java.util.function.Function;
H A DQuadPredicate.java17 package com.android.internal.util.function;
20 import java.util.function.Predicate;
H A DQuintConsumer.java17 package com.android.internal.util.function;
19 import java.util.function.Consumer;
H A DQuintFunction.java17 package com.android.internal.util.function;
19 import java.util.function.Function;
H A DQuintPredicate.java17 package com.android.internal.util.function;
19 import java.util.function.Predicate;
H A DTriFunction.java17 package com.android.internal.util.function;
20 import java.util.function.Function;
/frameworks/base/core/java/com/android/internal/util/function/pooled/
H A DPooledConsumer.java17 package com.android.internal.util.function.pooled;
19 import java.util.function.Consumer;
H A DPooledFunction.java17 package com.android.internal.util.function.pooled;
19 import java.util.function.Function;
H A DPooledPredicate.java17 package com.android.internal.util.function.pooled;
19 import java.util.function.Predicate;
H A DPooledSupplier.java17 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;
H A DArgumentPlaceholder.java17 package com.android.internal.util.function.pooled;
H A DPooledRunnable.java17 package com.android.internal.util.function.pooled;
H A DPooledLambda.java17 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
173 obtainRunnable( Consumer<? super A> function, A arg1) argument
189 obtainSupplier( Predicate<? super A> function, A arg1) argument
205 obtainSupplier( Function<? super A, ? extends R> function, A arg1) argument
234 obtainMessage( Consumer<? super A> function, A arg1) argument
254 obtainRunnable( BiConsumer<? super A, ? super B> function, A arg1, B arg2) argument
271 obtainSupplier( BiPredicate<? super A, ? super B> function, A arg1, B arg2) argument
288 obtainSupplier( BiFunction<? super A, ? super B, ? extends R> function, A arg1, B arg2) argument
305 obtainConsumer( BiConsumer<? super A, ? super B> function, ArgumentPlaceholder<A> arg1, B arg2) argument
322 obtainPredicate( BiPredicate<? super A, ? super B> function, ArgumentPlaceholder<A> arg1, B arg2) argument
339 obtainFunction( BiFunction<? super A, ? super B, ? extends R> function, ArgumentPlaceholder<A> arg1, B arg2) argument
356 obtainConsumer( BiConsumer<? super A, ? super B> function, A arg1, ArgumentPlaceholder<B> arg2) argument
373 obtainPredicate( BiPredicate<? super A, ? super B> function, A arg1, ArgumentPlaceholder<B> arg2) argument
390 obtainFunction( BiFunction<? super A, ? super B, ? extends R> function, A arg1, ArgumentPlaceholder<B> arg2) argument
420 obtainMessage( BiConsumer<? super A, ? super B> function, A arg1, B arg2) argument
441 obtainRunnable( TriConsumer<? super A, ? super B, ? super C> function, A arg1, B arg2, C arg3) argument
459 obtainSupplier( TriFunction<? super A, ? super B, ? super C, ? extends R> function, A arg1, B arg2, C arg3) argument
477 obtainConsumer( TriConsumer<? super A, ? super B, ? super C> function, ArgumentPlaceholder<A> arg1, B arg2, C arg3) argument
495 obtainFunction( TriFunction<? super A, ? super B, ? super C, ? extends R> function, ArgumentPlaceholder<A> arg1, B arg2, C arg3) argument
513 obtainConsumer( TriConsumer<? super A, ? super B, ? super C> function, A arg1, ArgumentPlaceholder<B> arg2, C arg3) argument
531 obtainFunction( TriFunction<? super A, ? super B, ? super C, ? extends R> function, A arg1, ArgumentPlaceholder<B> arg2, C arg3) argument
549 obtainConsumer( TriConsumer<? super A, ? super B, ? super C> function, A arg1, B arg2, ArgumentPlaceholder<C> arg3) argument
567 obtainFunction( TriFunction<? super A, ? super B, ? super C, ? extends R> function, A arg1, B arg2, ArgumentPlaceholder<C> arg3) argument
598 obtainMessage( TriConsumer<? super A, ? super B, ? super C> function, A arg1, B arg2, C arg3) argument
620 obtainRunnable( QuadConsumer<? super A, ? super B, ? super C, ? super D> function, A arg1, B arg2, C arg3, D arg4) argument
639 obtainSupplier( QuadFunction<? super A, ? super B, ? super C, ? super D, ? extends R> function, A arg1, B arg2, C arg3, D arg4) argument
658 obtainConsumer( QuadConsumer<? super A, ? super B, ? super C, ? super D> function, ArgumentPlaceholder<A> arg1, B arg2, C arg3, D arg4) argument
677 obtainFunction( QuadFunction<? super A, ? super B, ? super C, ? super D, ? extends R> function, ArgumentPlaceholder<A> arg1, B arg2, C arg3, D arg4) argument
696 obtainConsumer( QuadConsumer<? super A, ? super B, ? super C, ? super D> function, A arg1, ArgumentPlaceholder<B> arg2, C arg3, D arg4) argument
715 obtainFunction( QuadFunction<? super A, ? super B, ? super C, ? super D, ? extends R> function, A arg1, ArgumentPlaceholder<B> arg2, C arg3, D arg4) argument
734 obtainConsumer( QuadConsumer<? super A, ? super B, ? super C, ? super D> function, A arg1, B arg2, ArgumentPlaceholder<C> arg3, D arg4) argument
753 obtainFunction( QuadFunction<? super A, ? super B, ? super C, ? super D, ? extends R> function, A arg1, B arg2, ArgumentPlaceholder<C> arg3, D arg4) argument
772 obtainConsumer( QuadConsumer<? super A, ? super B, ? super C, ? super D> function, A arg1, B arg2, C arg3, ArgumentPlaceholder<D> arg4) argument
791 obtainFunction( QuadFunction<? super A, ? super B, ? super C, ? super D, ? extends R> function, A arg1, B arg2, C arg3, ArgumentPlaceholder<D> arg4) argument
823 obtainMessage( QuadConsumer<? super A, ? super B, ? super C, ? super D> function, A arg1, B arg2, C arg3, D arg4) argument
846 obtainRunnable( QuintConsumer<? super A, ? super B, ? super C, ? super D, ? super E> function, A arg1, B arg2, C arg3, D arg4, E arg5) argument
866 obtainSupplier( QuintFunction<? super A, ? super B, ? super C, ? super D, ? super E, ? extends R> function, A arg1, B arg2, C arg3, D arg4, E arg5) argument
900 obtainMessage( QuintConsumer<? super A, ? super B, ? super C, ? super D, ? super E> function, A arg1, B arg2, C arg3, D arg4, E arg5) argument
924 obtainRunnable( HexConsumer<? super A, ? super B, ? super C, ? super D, ? super E, ? super F> function, A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) argument
945 obtainSupplier( HexFunction<? super A, ? super B, ? super C, ? super D, ? super E, ? super F, ? extends R> function, A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) argument
980 obtainMessage( HexConsumer<? super A, ? super B, ? super C, ? super D, ? super E, ? super F> function, A arg1, B arg2, C arg3, D arg4, E arg5, F arg6) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DToBooleanFunction.java19 import java.util.function.Function;
22 * Represents a function that produces an boolean-valued result. This is the
28 * @param <T> the type of the input to the function
37 * Applies this function to the given argument.
39 * @param value the function argument
40 * @return the function result
/frameworks/av/include/media/
H A DCounterMetric.h73 // Export the metrics to the provided |function|. Each value for Attribute
74 // has a separate count. As such, |function| will be called once per value
77 std::function<void (const AttributeType&,
78 const int64_t count)> function) const {
80 function(it->first, it->second);
/frameworks/av/media/libmedia/include/media/
H A DCounterMetric.h73 // Export the metrics to the provided |function|. Each value for Attribute
74 // has a separate count. As such, |function| will be called once per value
77 std::function<void (const AttributeType&,
78 const int64_t count)> function) const {
80 function(it->first, it->second);
/frameworks/native/vulkan/include/vulkan/
H A Dvk_layer_interface.h52 VkLayerFunction function; member in struct:__anon1917
68 VkLayerFunction function; member in struct:__anon1919

Completed in 3435 milliseconds

1234567891011>>