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

<<11121314151617181920>>

  /external/v8/test/webkit/fast/js/kde/
var_decl_init.js 27 function varInFunction() {
32 function varInVarList() {
37 function varListOrder() {
43 function varInBlock() {
50 function varInIf() {
56 function varInElse() {
64 function varInDoWhile() {
71 function varInWhile() {
77 function varInFor() {
84 function varInForInitExpr()
    [all...]
  /external/v8/test/webkit/fast/js/
read-modify-eval.js 28 function multTest()
35 function divTest()
42 function addTest()
49 function subTest()
56 function lshiftTest()
63 function rshiftTest()
70 function urshiftTest()
77 function andTest()
84 function xorTest()
91 function orTest(
    [all...]
  /external/v8/test/webkit/
toString-elision-trailing-comma.js 25 "This test checks that toString() round-trip on a function that has a array with elision does not remove a comma."
28 function f1() {
32 function f2() {
36 function f3() {
42 function f4() {
46 function f5() {
49 function f6() {
53 function f7() {
57 function f8() {
61 function f9()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_memory.c 59 const char *function; member in struct:debug_memory_header
110 debug_malloc(const char *file, unsigned line, const char *function,
119 file, line, function,
127 hdr->function = function;
146 debug_free(const char *file, unsigned line, const char *function,
158 file, line, function,
167 hdr->file, hdr->line, hdr->function,
182 debug_calloc(const char *file, unsigned line, const char *function,
185 void *ptr = debug_malloc( file, line, function, count * size )
    [all...]
  /external/v8/test/mjsunit/es6/
iteration-semantics.js 37 function* values() {
43 function wrap_iterator(iterator) {
45 iterable[Symbol.iterator] = function() { return iterator; };
49 function integers_until(max) {
50 function next() {
58 function results(results) {
60 function next() {
66 function* integers_from(n) {
71 function append(x, tail) {
76 function sum(x, tail)
    [all...]
generators-mirror.js 8 function *generator(f) {
15 function MirrorRefCache(json_refs) {
23 MirrorRefCache.prototype.lookup = function(handle) {
27 function TestGeneratorMirror(g, test) {
53 var iter = generator(function () {
58 function assertSourceLocation(loc, line, column) {
63 TestGeneratorMirror(iter, function (mirror) {
69 TestGeneratorMirror(iter, function (mirror) {
75 TestGeneratorMirror(iter, function (mirror) {
81 TestGeneratorMirror(iter, function (mirror)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 13 org.antlr.runtime.BaseRecognizer = function(state) {
70 reset: function() {
109 match: function(input, ttype, follow) {
129 matchAny: function(input) {
142 mismatchIsUnwantedToken: function(input, ttype) {
154 mismatchIsMissingToken: function(input, follow) {
192 mismatch: function(input, ttype, follow) {
219 reportError: function(e) {
236 displayRecognitionError: function(tokenNames, e) {
248 getErrorHeader: function(e)
    [all...]
  /external/v8/src/
promise.js 36 (function() {
38 var $Promise = function Promise(resolver) {
46 resolver(function(x) { PromiseResolve(promise, x) },
47 function(r) { PromiseReject(promise, r) });
57 function PromiseSet(promise, status, value, onResolve, onReject) {
68 function PromiseInit(promise) {
73 function PromiseDone(promise, status, value, promiseQueue) {
80 function PromiseCoerce(constructor, x) {
101 function PromiseHandle(value, handler, deferred) {
118 function PromiseEnqueue(value, tasks, status)
    [all...]
  /external/skia/resources/
slides_transitions.lua 0 function scale_text_delta(template, delta)
9 function slide_transition(prev, next, is_forward)
11 proc = function(self, canvas, drawSlideProc)
27 rec.isDone = function (self) return self.curr_x <= -640 end
33 rec.isDone = function (self) return self.curr_x >= 0 end
38 function sqr(value) return value * value end
40 function set_blur(paint, alpha)
48 function fade_slide_transition(prev, next, is_forward)
53 proc = function(self, canvas, drawSlideProc)
73 rec.isDone = function (self) return self.next_x <= 0 en
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace_printer.cc 17 static const char *StripFunctionName(const char *function, const char *prefix) {
18 if (function == 0) return 0;
19 if (prefix == 0) return function;
21 if (0 == internal_strncmp(function, prefix, prefix_len))
22 return function + prefix_len;
23 return function;
57 buffer->append("%s", StripFunctionName(info.function, strip_func_prefix));
75 // Function name and offset, if file is unknown.
76 if (info.function) {
78 StripFunctionName(info.function, strip_func_prefix))
    [all...]
  /external/clang/test/CodeGen/
vla.c 55 void function(short width, int data[][width]) {} // expected-note {{passing argument to parameter 'data' here}} function
59 // CHECK: call void @function(i16 signext 1, i32* null)
60 function(1, 0);
61 // CHECK: call void @function(i16 signext 1, i32* inttoptr
62 function(1, 0xbadbeef); // expected-warning {{incompatible integer to pointer conversion passing}}
63 // CHECK: call void @function(i16 signext 1, i32* {{.*}})
64 function(1, bork);
72 // CHECK: call void @function(i16 signext 1, i32* {{.*}})
73 function(1, bork[2]);
  /external/compiler-rt/make/
lib_util.mk 5 # Function: GetCNAVar variable-name platform-key config arch
14 # Function: SelectFunctionDir config arch function-name optimized
16 # Choose the appropriate implementation directory to use for 'function-name' in
22 $(error SelectFunctionDir: invalid function name "$(3)" ($(strip\
24 no such function,\
25 function implemented in multiple directories!!!))))))
27 # Helper functions that select the entire list of subdirs where a function is
46 # Helper function to select the right set of dirs in generic priority order.
53 # Helper function to select the right set of dirs in optimized priority order
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
F.pass.cpp 12 // class function<R(ArgTypes...)>
14 // function(nullptr_t);
56 std::function<int(int)> f = A();
65 std::function<int(int)> f = g;
72 std::function<int(int)> f = (int (*)(int))0;
79 std::function<int(const A*, int)> f = &A::foo;
85 std::function<void(int)> f(&g);
F_assign.pass.cpp 12 // class function<R(ArgTypes...)>
59 std::function<int(int)> f;
69 std::function<int(int)> f;
77 std::function<int(int)> f;
85 std::function<int(const A*, int)> f;
92 std::function<void(int)> f;
  /external/libvpx/libvpx/build/make/
ads2gas_apple.pl 42 # Perl trim function to remove whitespace from the start and end of the string
141 # Make function visible to linker, and make additional symbol with
148 $function = trim($1);
149 push(@imported_functions, $function);
152 foreach $function (@imported_functions)
154 s/$function/_$function/;
  /external/v8/test/mjsunit/
array-iteration.js 39 (function() {
42 assertArrayEquals([0], a.filter(function(n) { return n == 0; }));
45 // Use specified object as this object when calling the function.
48 assertArrayEquals([42,42], a.filter(function(n) { return this.value == n }, o))
52 assertArrayEquals([42,42], a.filter(function(n, index, array) { array[index] = 43; return 42 == n; }));
58 assertArrayEquals([], a.filter(function(n, index, array) { array.push(n+1); return n == 2; }));
67 var a = a.filter(function(n) { count++; return n == 2; });
77 (function() {
81 a.forEach(function(n) { count++; });
84 // Use specified object as this object when calling the function
    [all...]
arguments-load-across-eval.js 31 function testNoShadowing(x, h) {
32 function f() {
36 function g() {
45 testNoShadowing(1, function() { return 2; });
48 function testNoShadowing2(x, h) {
50 function f() {
54 function g() {
63 testNoShadowing2(1, function() { return 2; });
66 function testShadowing(x, h) {
67 function f()
    [all...]
  /external/v8/test/mjsunit/compiler/
inline-arguments.js 30 function A() {
33 A.prototype.X = function (a, b, c) {
40 A.prototype.Y = function () {
44 A.prototype.Z = function () {
53 A.prototype.X.apply = function (receiver, args) {
54 return Function.prototype.apply.call(this, receiver, args);
61 function F1() { }
62 function F2() { F1.apply(this, arguments); }
63 function F3(x, y) {
69 function F31()
    [all...]
array-access.js 28 function Get0(a) {
32 function GetN(a,n) {
36 function GetA0(a) {
40 function GetAN(a,n) {
44 function GetAAN(a,n) {
48 function RunGetTests() {
68 function Set07(a) {
72 function Set0V(a, v) {
76 function SetN7(a, n) {
80 function SetNX(a, n, x)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-353004.js 9 var array1 = new Uint8Array(buffer1, {valueOf : function() {
18 assertThrows(function() {
19 var array2 = new Uint8Array(buffer2, 0, {valueOf : function() {
27 var dataView1 = new DataView(buffer3, {valueOf : function() {
35 assertThrows(function() {
36 var dataView2 = new DataView(buffer4, 0, {valueOf : function() {
44 var buffer6 = buffer5.slice({valueOf : function() {
52 var buffer8 = buffer7.slice(0, {valueOf : function() {
60 var array10 = array9.subarray({valueOf : function() {
69 var array12 = array11.subarray(0, {valueOf : function() {
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
ads2gas_apple.pl 42 # Perl trim function to remove whitespace from the start and end of the string
141 # Make function visible to linker, and make additional symbol with
148 $function = trim($1);
149 push(@imported_functions, $function);
152 foreach $function (@imported_functions)
154 s/$function/_$function/;
  /ndk/docs/Programmers_Guide/html/
resize.js 4 function readCookie(cookie)
25 function writeCookie(cookie, val, expiration)
37 function resizeWidth()
45 function restoreWidth(navWidth)
52 function resizeHeight()
62 function initResizable()
69 $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } });
70 $(window).resize(function() { resizeHeight(); });
77 var _preventDefault = function(evt) { evt.preventDefault(); };
79 $(document).bind('touchmove',function(e)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template<class F, class A> function(allocator_arg_t, const A&, F);
60 std::function<int(int)> f(std::allocator_arg, test_allocator<A>(), A());
67 std::function<int(int)> f(std::allocator_arg, test_allocator<int(*)(int)>(), g);
72 std::function<int(int)> f(std::allocator_arg, test_allocator<int(*)(int)>(),
79 std::function<int(const A*, int)> f(std::allocator_arg,
87 std::function<void(int)> fun = std::bind(&Foo::bar, &f, std::placeholders::_1);
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
markermanager.js 74 function MarkerManager(map, opt_opts) {
80 google.maps.event.addListener(me.projectionHelper_, 'ready', function () {
87 MarkerManager.prototype.initialize = function (map, opt_opts) {
130 google.maps.event.addListener(map, 'dragend', function () {
133 google.maps.event.addListener(map, 'zoom_changed', function () {
145 me.removeOverlay_ = function (marker) {
156 me.addOverlay_ = function (marker) {
193 MarkerManager.prototype.resetManager_ = function () {
208 MarkerManager.prototype.clearMarkers = function () {
225 MarkerManager.prototype.getTilePoint_ = function (latlng, zoom, padding)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/
simple_api_parser_test.js 6 function getFullTestName(test, idx) {
10 function sanitizeForComparison(str) {
18 function createTest(html, expected, options) {
19 return function () {
23 doctype: function (name, publicId, systemId) {
39 startTag: function (tagName, attrs, selfClosing) {
50 endTag: function (tagName) {
54 text: function (text) {
58 comment: function (text) {
93 .forEach(function (test, idx)
    [all...]

Completed in 2359 milliseconds

<<11121314151617181920>>