HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 226 - 250 of 4292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
Function.java 7 * which is used to set the function result or error code.
12 * class SinFunc implements SQLite.Function {
13 * public void function(SQLite.FunctionContext fc, String args[]) {
31 public interface Function {
34 * Callback for regular function.
36 * @param fc function's context for reporting result
40 public void function(FunctionContext fc, String args[]); method in interface:Function
43 * Callback for one step in aggregate function.
45 * @param fc function's context for reporting result
52 * Callback for final step in aggregate function
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/
TupleFunction.pass.cpp 31 std::function<void()> f(x);
  /external/libunwind/src/ppc/
longjmp.S 29 .type _UI_longjmp_cont, @function
  /external/libunwind/src/x86_64/
longjmp.S 27 .type _UI_longjmp_cont, @function
siglongjmp.S 27 .type _UI_siglongjmp_cont, @function
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 18 #include "llvm/IR/Function.h"
39 bool runOnFunction(Function &function) override;
43 bool NVPTXAllocaHoisting::runOnFunction(Function &function) {
45 Function::iterator I = function.begin();
48 for (Function::iterator E = function.end(); I != E; ++I) {
  /external/llvm/test/MC/AArch64/
inst-directive-diagnostic.s 6 .type diagnostics,%function
  /external/llvm/test/MC/ARM/
directive-tlsdescseq-diagnostics.s 4 .type missing_variable,%function
12 .type bad_expression,%function
20 .type trailing_garbage,%function
28 .type invalid_use,%function
  /external/llvm/test/MC/ELF/
ifunc-reloc.s 6 .type alias, @function
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_debug.h 48 debug_malloc(const char *file, unsigned line, const char *function,
52 debug_calloc(const char *file, unsigned line, const char *function,
56 debug_free(const char *file, unsigned line, const char *function,
60 debug_realloc(const char *file, unsigned line, const char *function,
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_ppc.h 43 struct ppc_function *function,
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_stack.c 76 backtrace[i++].function = frame_pointer[1];
94 backtrace[i++].function = NULL;
107 if(!backtrace[i].function)
109 debug_symbol_print(backtrace[i].function);
u_debug_stack.h 47 const void *function; member in struct:debug_stack_frame
  /external/mesa3d/src/glsl/
ir_function_detect_recursion.cpp 28 * Consider the (possibly disjoint) graph of function calls in a shader. If a
29 * program contains recursion, this graph will contain a cycle. If a function
31 * calls another function).
33 * To detect recursion, the function call graph is constructed. The graph is
34 * repeatedly reduced by removing any function that either has no callees
43 * function appearing more than once at any one time in the run-time stack
44 * of function calls. That is, a function may not call itself either
95 * present if the static function call graph of the program contains
103 * - Is it an error to have a recursive function that is never staticall
134 class function { class
136 function(ir_function_signature *sig) function in class:function
    [all...]
  /external/v8/test/mjsunit/es6/
generators-poisoned-properties.js 5 function assertIteratorResult(value, done, result) {
9 function test(f) {
23 assertTrue(cdesc.get instanceof Function);
27 assertThrows(function() { return f.caller; }, TypeError);
28 assertThrows(function() { f.caller = 42; }, TypeError);
29 assertThrows(function() { return f.arguments; }, TypeError);
30 assertThrows(function() { f.arguments = 42; }, TypeError);
33 function *sloppy() { test(sloppy); }
34 function *strict() { "use strict"; test(strict); }
  /external/v8/test/mjsunit/regress/
regress-355486.js 7 function f() { var v = arguments[0]; }
8 function g() { f(); }
regress-357054.js 5 [].__defineSetter__(0, function() { });
6 function f(a,i,v) { a[i] = v; }
regress-360733.js 7 function f(a) {
11 Error.__defineGetter__('stackTraceLimit', function() { });
regress-crbug-345715.js 12 function f() {
16 function g() {
  /libcore/luni/src/main/native/
IcuUtilities.h 25 bool maybeThrowIcuException(JNIEnv* env, const char* function, UErrorCode error);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
TupleFunction.pass.cpp 31 std::function<void()> f(x);
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/machine/
asm.h 46 #define __bionic_asm_function_type %function
  /system/bt/test/suite/cases/
cases.h 27 bool (*function)(); member in struct:__anon69805
  /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/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
webcomponents-lite.js 13 (function(scope) {
18 location.search.slice(1).split("&").forEach(function(o) {
32 parts.forEach(function(f) {
54 (function(global) {
64 window.addEventListener("message", function(e) {
68 queue.forEach(function(func) {
73 setImmediate = function(func) {
80 function scheduleCallback(observer) {
87 function wrapIfNeeded(node) {
90 function dispatchCallbacks()
    [all...]

Completed in 2830 milliseconds

1 2 3 4 5 6 7 8 91011>>