HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 26 - 50 of 6305) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
return_integer.js 0 function FindProxyForURL(url, host) {
direct.js 0 function FindProxyForURL(url, host) {
return_function.js 0 function FindProxyForURL(url, host) {
return_null.js 0 function FindProxyForURL(url, host) {
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
vec3-spec.js 23 describe("vec3", function() {
26 beforeEach(function() { vecA = [1, 2, 3]; vecB = [4, 5, 6]; out = [0, 0, 0]; });
28 describe("create", function() {
29 beforeEach(function() { result = vec3.create(); });
30 it("should return a 3 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0, 0]); });
33 describe("clone", function() {
34 beforeEach(function() { result = vec3.clone(vecA); });
35 it("should return a 3 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); });
38 describe("fromValues", function() {
39 beforeEach(function() { result = vec3.fromValues(1, 2, 3); })
    [all...]
mat2d-spec.js 23 describe("mat2d", function() {
26 beforeEach(function() {
52 describe("create", function() {
53 beforeEach(function() { result = mat2d.create(); });
54 it("should return a 6 element array initialized to a 2x3 identity matrix", function() { expect(result).toBeEqualish(identity); });
57 describe("clone", function() {
58 beforeEach(function() { result = mat2d.clone(matA); });
59 it("should return a 6 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
62 describe("copy", function() {
63 beforeEach(function() { result = mat2d.copy(out, matA); })
    [all...]
vec4-spec.js 23 describe("vec4", function() {
26 beforeEach(function() { vecA = [1, 2, 3, 4]; vecB = [5, 6, 7, 8]; out = [0, 0, 0, 0]; });
28 describe("create", function() {
29 beforeEach(function() { result = vec4.create(); });
30 it("should return a 4 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0, 0, 0]); });
33 describe("clone", function() {
34 beforeEach(function() { result = vec4.clone(vecA); });
35 it("should return a 4 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); });
38 describe("fromValues", function() {
39 beforeEach(function() { result = vec4.fromValues(1, 2, 3, 4); })
    [all...]
mat3-spec.js 23 describe("mat3", function() {
26 beforeEach(function() {
44 describe("fromMat4", function() {
45 beforeEach(function() {
51 it("should return out", function() { expect(result).toBe(out); });
53 it("should calculate proper mat3", function() {
60 describe("create", function() {
61 beforeEach(function() { result = mat3.create(); });
62 it("should return a 9 element array initialized to a 3x3 identity matrix", function() { expect(result).toBeEqualish(identity); });
65 describe("clone", function() {
    [all...]
mat4-spec.js 23 describe("mat4", function() {
26 beforeEach(function() {
49 describe("create", function() {
50 beforeEach(function() { result = mat4.create(); });
51 it("should return a 16 element array initialized to a 4x4 identity matrix", function() { expect(result).toBeEqualish(identity); });
54 describe("clone", function() {
55 beforeEach(function() { result = mat4.clone(matA); });
56 it("should return a 16 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
59 describe("copy", function() {
60 beforeEach(function() { result = mat4.copy(out, matA); })
    [all...]
  /external/chromium_org/ui/gfx/geometry/
cubic_bezier_unittest.cc 14 CubicBezier function(0.25, 0.0, 0.75, 1.0);
18 EXPECT_NEAR(function.Solve(0), 0, epsilon);
19 EXPECT_NEAR(function.Solve(0.05), 0.01136, epsilon);
20 EXPECT_NEAR(function.Solve(0.1), 0.03978, epsilon);
21 EXPECT_NEAR(function.Solve(0.15), 0.079780, epsilon);
22 EXPECT_NEAR(function.Solve(0.2), 0.12803, epsilon);
23 EXPECT_NEAR(function.Solve(0.25), 0.18235, epsilon);
24 EXPECT_NEAR(function.Solve(0.3), 0.24115, epsilon);
25 EXPECT_NEAR(function.Solve(0.35), 0.30323, epsilon);
26 EXPECT_NEAR(function.Solve(0.4), 0.36761, epsilon)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
MainThread.cpp 44 void initializeMainThread(void (*function)(MainThreadFunction, void*))
50 callOnMainThreadFunction = function;
57 void callOnMainThread(MainThreadFunction* function, void* context)
59 (*callOnMainThreadFunction)(function, context);
64 Function<void()>* function = static_cast<Function<void()>*>(context); local
65 (*function)();
66 delete function;
69 void callOnMainThread(const Function<void()>& function
    [all...]
  /external/clang/test/Modules/Inputs/
redecl-add-after-load.h 3 extern constexpr int function() { return 0; } function
8 extern constexpr int function() { return 0; } function in namespace:N
14 constexpr int C::function() { return 0; } function in class:C
19 static constexpr int function();
23 constexpr int D::function() { return 0; } function in class:D
  /external/bison/build-aux/snippet/
warn-on-use.h 1 /* A C macro for emitting warnings if a function is used.
17 /* _GL_WARN_ON_USE (function, "literal string") issues a declaration
18 for FUNCTION which will then trigger a compiler warning containing
19 the text of "literal string" anywhere that function is called, if
23 This macro is useful for marking a function as a potential
25 instructions on the replacement function that should be used
26 instead. However, one of the reasons that a function is a
28 FUNCTION with a different signature in C is a compilation error, so
30 that programs that avoid the problematic FUNCTION do not fail to
32 function. But this implies that _GL_WARN_ON_USE is only safe t
    [all...]
  /external/bison/darwin-lib/
warn-on-use.h 5 # define _GL_WARN_ON_USE(function, message) \
6 extern __typeof__ (function) function __attribute__ ((__warning__ (message)))
8 /* Verify the existence of the function. */
9 # define _GL_WARN_ON_USE(function, message) \
10 extern __typeof__ (function) function
12 # define _GL_WARN_ON_USE(function, message) \
17 /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string")
18 is like _GL_WARN_ON_USE (function, "string"), except that the function i
    [all...]
  /external/bison/linux-lib/
warn-on-use.h 5 # define _GL_WARN_ON_USE(function, message) \
6 extern __typeof__ (function) function __attribute__ ((__warning__ (message)))
8 /* Verify the existence of the function. */
9 # define _GL_WARN_ON_USE(function, message) \
10 extern __typeof__ (function) function
12 # define _GL_WARN_ON_USE(function, message) \
17 /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string")
18 is like _GL_WARN_ON_USE (function, "string"), except that the function i
    [all...]
  /external/chromium_org/chrome/browser/resources/contextual_search/
promo.js 14 document.addEventListener('DOMContentLoaded', function(event) {
18 $('optin-label').addEventListener('click', function() {
28 function getContentHeight() {
  /ndk/tests/build/lambda-defarg3/jni/
lambda-defarg3.C 5 struct function struct
7 template <class U> function(U u) { } function in struct:function
12 static T test(function f = [](int i){return i;}) { }
  /cts/suite/cts/deviceTests/browserbench/assets/octane/js/
bootstrap-transition.js 21 !function ($) {
23 $(function () {
31 $.support.transition = (function () {
33 var transitionEnd = (function () {
  /external/bison/lib/
fatal-signal.h 35 /* Register a cleanup function to be executed when a catchable fatal signal
38 Restrictions for the cleanup function:
39 - The cleanup function can do all kinds of system calls.
48 - Also, the cleanup function must not block the catchable fatal signals
51 The cleanup function is executed asynchronously. It is unspecified
54 extern void at_fatal_signal (void (*function) (void));
  /external/chromium-libpac/test/js-unittest/
direct.js 0 function FindProxyForURL(url, host) {
return_function.js 0 function FindProxyForURL(url, host) {
return_null.js 0 function FindProxyForURL(url, host) {
return_undefined.js 0 function FindProxyForURL(url, host) {
  /external/chromium_org/base/debug/
dump_without_crashing.cc 11 // Pointer to the function that's called by DumpWithoutCrashing() to dump the
26 void SetDumpWithoutCrashingFunction(void (CDECL *function)()) {
27 dump_without_crashing_function_ = function;
  /external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/
simple.js 0 function FindProxyForURL(url, host) {

Completed in 378 milliseconds

12 3 4 5 6 7 8 91011>>