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

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/test/java/libcore/java/util/function/
BiPredicateTest.java 17 package libcore.java.util.function;
22 import java.util.function.BiPredicate;
DoublePredicateTest.java 17 package libcore.java.util.function;
22 import java.util.function.DoublePredicate;
IntPredicateTest.java 17 package libcore.java.util.function;
22 import java.util.function.IntPredicate;
LongPredicateTest.java 17 package libcore.java.util.function;
22 import java.util.function.LongPredicate;
PredicateTest.java 17 package libcore.java.util.function;
22 import java.util.function.Predicate;
  /packages/apps/Settings/src/com/android/settings/connecteddevice/usb/
UsbDetailsFunctionsController.java 99 long function = UsbBackend.usbFunctionsFromString(preference.getKey()); local
100 if (function != mUsbBackend.getCurrentFunctions() && !Utils.isMonkeyRunning()) {
101 mUsbBackend.setCurrentFunctions(function);
  /packages/services/Car/evs/app/
ConfigManager.cpp 131 Json::Value usageNode = node.get("function", "");
132 const char *function = usageNode.asCString(); local
180 info.function = function;
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_assert.h 28 /* Set up for C function definitions, even when using C++ */
114 const char *function; member in struct:SDL_assert_data
126 /* this tells Clang's static analysis that we're a custom assert function,
207 * \param handler Callback function, called when an assertion fails.
217 * This returns the function pointer that is called by default when an
218 * assertion is triggered. This is an internal function provided by SDL,
220 * used to provide a different function.
229 * This returns the function pointer that is called when an assertion is
231 * SDL_SetAssertionHandler(), or if no application-specified function is
238 * a NULL pointer to this function to ignore it
    [all...]
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_assert.h 28 /* Set up for C function definitions, even when using C++ */
114 const char *function; member in struct:SDL_assert_data
126 /* this tells Clang's static analysis that we're a custom assert function,
207 * \param handler Callback function, called when an assertion fails.
217 * This returns the function pointer that is called by default when an
218 * assertion is triggered. This is an internal function provided by SDL,
220 * used to provide a different function.
229 * This returns the function pointer that is called when an assertion is
231 * SDL_SetAssertionHandler(), or if no application-specified function is
238 * a NULL pointer to this function to ignore it
    [all...]
  /prebuilts/misc/windows/sdl2/include/
SDL_assert.h 28 /* Set up for C function definitions, even when using C++ */
114 const char *function; member in struct:SDL_assert_data
126 /* this tells Clang's static analysis that we're a custom assert function,
207 * \param handler Callback function, called when an assertion fails.
217 * This returns the function pointer that is called by default when an
218 * assertion is triggered. This is an internal function provided by SDL,
220 * used to provide a different function.
229 * This returns the function pointer that is called when an assertion is
231 * SDL_SetAssertionHandler(), or if no application-specified function is
238 * a NULL pointer to this function to ignore it
    [all...]
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_assert.h 28 /* Set up for C function definitions, even when using C++ */
114 const char *function; member in struct:SDL_assert_data
126 /* this tells Clang's static analysis that we're a custom assert function,
207 * \param handler Callback function, called when an assertion fails.
217 * This returns the function pointer that is called by default when an
218 * assertion is triggered. This is an internal function provided by SDL,
220 * used to provide a different function.
229 * This returns the function pointer that is called when an assertion is
231 * SDL_SetAssertionHandler(), or if no application-specified function is
238 * a NULL pointer to this function to ignore it
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
instruction.h 30 class Function;
37 Function* defining_function = nullptr,
47 /// Returns the Function where the instruction was defined. nullptr if it was
48 /// defined outside of a Function
49 const Function* function() const { return function_; } function in class:libspirv::Instruction
93 /// The function in which this instruction was declared
94 Function* function_;
  /bionic/tools/versioner/src/
DeclarationDatabase.h 39 function, member in class:DeclarationType
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
descrobject.h 28 void *function; member in struct:wrapperbase
36 #define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
67 void *d_wrapped; /* This can be any function pointer */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
descrobject.h 28 void *function; member in struct:wrapperbase
36 #define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
67 void *d_wrapped; /* This can be any function pointer */
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
iswctype_sb.c 199 wctrans_t function; member in struct:_transtrval
230 return transtrval[i].function;
  /external/adhd/cras/src/server/
cras_expr.h 36 cras_expr_function_type function; member in union:cras_expr_value::__anon14113
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
AbstractScalarDifferentiableOptimizer.java 75 /** Objective function. */
76 private DifferentiableMultivariateRealFunction function; field in class:AbstractScalarDifferentiableOptimizer
78 /** Objective function gradient. */
151 * @exception FunctionEvaluationException if the function gradient
160 * Compute the objective function value.
161 * @param evaluationPoint point at which the objective function must be evaluated
162 * @return objective function value at specified point
163 * @exception FunctionEvaluationException if the function cannot be evaluated
173 return function.value(evaluationPoint);
188 function = f
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
AbstractUnivariateRealOptimizer.java 44 /** Value of the function at the last computed result. */
58 /** Function to optimize. */
59 private UnivariateRealFunction function; field in class:AbstractUnivariateRealOptimizer
109 functionValue = function.value(opt);
115 * Convenience function for implementations.
132 * Convenience function for implementations.
181 * Compute the objective function value.
182 * @param f objective function
183 * @param point point at which the objective function must be evaluated
184 * @return objective function value at specified poin
    [all...]
  /external/cmockery/cmockery_0_1_2/src/example/
calculator.c 27 /* Redirect printf to a function in the test application so it's possible to
36 /* Redirect fprintf to a function in the test application so it's possible to
68 /* main is defined in the unit test so redefine name of the the main function
85 BinaryOperator function; member in struct:OperatorFunction
119 /* Searches the specified array of operator_functions for the function
120 * associated with the specified operator_string. This function returns the
121 * function associated with operator_string if successful, NULL otherwise.
135 return operator_function->function;
151 * If successful, this function returns the integer result of the operations.
194 const BinaryOperator function = find_operator_function_by_string local
    [all...]
  /external/deqp/modules/glshared/
glsInteractionTestUtil.hpp 59 deUint32 function; member in struct:deqp::gls::InteractionTestUtil::StencilState
70 : function (0)
  /external/google-breakpad/src/common/
module_unittest.cc 52 static Module::Function *generate_duplicate_function(const string &name) {
57 Module::Function *function = new Module::Function(name, DUP_ADDRESS); local
58 function->size = DUP_SIZE;
59 function->parameter_size = DUP_PARAMETER_SIZE;
60 return function;
82 Module::Function *function = new Module::Function( local
110 Module::Function *function = new Module::Function( local
167 Module::Function *function = new Module::Function( local
215 Module::Function *function = new Module::Function( local
495 Module::Function* function = new Module::Function("_xyz", 0xfff0); local
532 Module::Function* function = new Module::Function("_thumb_xyz", 0xfff0); local
    [all...]
  /external/guava/guava/src/com/google/common/base/
Suppliers.java 43 * Returns a new supplier which is the composition of the provided function
46 * {@code function} to that value. Note that the resulting supplier will not
47 * call {@code supplier} or invoke {@code function} until it is called.
50 Function<? super F, T> function, Supplier<F> supplier) {
51 Preconditions.checkNotNull(function);
53 return new SupplierComposition<F, T>(function, supplier);
58 final Function<? super F, T> function; field in class:Suppliers.SupplierComposition
61 SupplierComposition(Function<? super F, T> function, Supplier<F> supplier)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Lists.java 32 import com.google.common.base.Function;
509 * Returns a list that applies {@code function} to each element of {@code
519 * <p>The function is applied lazily, invoked when needed. This is necessary
520 * for the returned list to be a view, but it means that the function will be
522 * {@link List#hashCode}. For this to perform well, {@code function} should be
528 * function are.
534 * {@code fromList}, its contents, and {@code function} -- <i>not</i> by
542 List<F> fromList, Function<? super F, ? extends T> function) {
544 ? new TransformingRandomAccessList<F, T>(fromList, function)
556 final Function<? super F, ? extends T> function; field in class:Lists.TransformingSequentialList
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Lists.java 31 import com.google.common.base.Function;
475 * Returns a list that applies {@code function} to each element of {@code
485 * <p>The function is applied lazily, invoked when needed. This is necessary
486 * for the returned list to be a view, but it means that the function will be
488 * {@link List#hashCode}. For this to perform well, {@code function} should be
494 * function are.
500 * {@code fromList}, its contents, and {@code function} -- <i>not</i> by
508 List<F> fromList, Function<? super F, ? extends T> function) {
510 ? new TransformingRandomAccessList<F, T>(fromList, function)
522 final Function<? super F, ? extends T> function; field in class:Lists.TransformingSequentialList
    [all...]

Completed in 543 milliseconds

1 2 3 4 5 6 78 91011>>