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

12 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/es6/
prototype-ordinary-objects.js 51 for (var fun of funcs) {
52 var p = fun.prototype;
66 for (var fun of funcs) {
67 var p = fun.prototype;
68 assertEquals(`[object ${fun.name}]`, Object.prototype.toString.call(p));
math-log2-log10.js 30 [Math.log10, Math.log2].forEach( function(fun) {
31 assertTrue(isNaN(fun(NaN)));
32 assertTrue(isNaN(fun(fun)));
33 assertTrue(isNaN(fun({ toString: function() { return NaN; } })));
34 assertTrue(isNaN(fun({ valueOf: function() { return -1; } })));
35 assertTrue(isNaN(fun({ valueOf: function() { return "abc"; } })));
36 assertTrue(isNaN(fun(-0.1)));
37 assertTrue(isNaN(fun(-1)));
38 assertEquals("-Infinity", String(fun(0)))
    [all...]
math-hyperbolic.js 32 forEach(function(fun) {
33 assertTrue(isNaN(fun(NaN)));
34 assertTrue(isNaN(fun("abc")));
35 assertTrue(isNaN(fun({})));
36 assertEquals(fun(0), fun([]));
37 assertTrue(isNaN(fun([1, 1])));
38 assertEquals(fun(1.11), fun({ toString: function() { return "1.11"; } }));
39 assertEquals(fun(-3.1), fun({ toString: function() { return -3.1; } }))
    [all...]
  /external/autotest/client/deps/glbench/src/
glx_stuff.cc 15 #define F(fun, type) type fun = NULL;
50 #define F(fun, type) fun = reinterpret_cast<type>( \
51 glXGetProcAddress(reinterpret_cast<const GLubyte *>(#fun)));
  /external/clang/test/SemaCXX/
warn-tautological-compare.cpp 143 void fun();
156 assert(fun == 0);
157 // expected-warning@-1{{comparison of function 'fun' equal to a null pointer is always false}}
159 assert(fun != 0);
160 // expected-warning@-1{{comparison of function 'fun' not equal to a null pointer is always true}}
162 assert(fun == 0 && "expecting null pointer");
163 // expected-warning@-1{{comparison of function 'fun' equal to a null pointer is always false}}
165 assert(fun != 0 && "expecting non-null pointer");
166 // expected-warning@-1{{comparison of function 'fun' not equal to a null pointer is always true}}
addr-of-overloaded-function.cpp 180 void fun(int x) {} function in namespace:test1
183 void (*ptr1)(int, int) = &fun; // expected-error {{cannot initialize a variable of type 'void (*)(int, int)' with an rvalue of type 'void (*)(int)': different number of parameters (2 vs 1)}}
185 ptr2 = &fun; // expected-error {{assigning to 'void (*)(int, int)' from incompatible type 'void (*)(int)': different number of parameters (2 vs 1)}}
189 void (*ptr1)(double) = &fun; // expected-error {{cannot initialize a variable of type 'void (*)(double)' with an rvalue of type 'void (*)(int)': type mismatch at 1st parameter ('double' vs 'int')}}
191 ptr2 = &fun; // expected-error {{assigning to 'void (*)(double)' from incompatible type 'void (*)(int)': type mismatch at 1st parameter ('double' vs 'int')}}
195 int (*ptr1)(int) = &fun; // expected-error {{cannot initialize a variable of type 'int (*)(int)' with an rvalue of type 'void (*)(int)': different return type ('int' vs 'void')}}
197 ptr2 = &fun; // expected-error {{assigning to 'int (*)(int)' from incompatible type 'void (*)(int)': different return type ('int' vs 'void')}}
rval-references.cpp 25 void fun();
54 fun_type &&fun_ref = fun; // works because functions are special
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
reg-op-r.d 12 c: 02e88543 fun \$232,\$133,\$67
reg-op.d 10 c: 02e88543 fun \$232,\$133,\$67
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1.cpp 29 void fun(int p1[], Incomplete p2[10]);
  /external/v8/test/mjsunit/regress/
regress-crbug-513507.js 11 function fun(osr_fuse) {
19 return fun;
regress-map-invalidation-2.js 47 var fun = g();
48 fun(false, c);
49 fun(false, c);
50 fun(false, c);
51 %OptimizeFunctionOnNextCall(fun);
52 fun(false, c);
53 fun(true, c);
54 assertOptimized(fun);
regress-embedded-cons-string.js 37 function test(fun) {
38 fun();
39 fun();
41 %OptimizeFunctionOnNextCall(fun, "concurrent");
43 fun();
47 assertUnoptimized(fun, "no sync");
51 assertOptimized(fun, "sync");
  /toolchain/binutils/binutils-2.25/bfd/
elf32-spu.c 365 struct function_info *fun; member in struct:call_info
429 struct function_info fun[1]; member in struct:spu_elf_stack_info
2788 struct function_info *fun; local
2889 struct function_info *fun, *fun_start; local
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms.cpp 212 typedef int (*fun)(); typedef
213 volatile fun B::* volatile funmemptr1;
215 volatile fun B::* funmemptr2;
217 fun B::* volatile funmemptr3;
231 fun (B::* volatile memptrtofun7)();
233 volatile fun (B::* memptrtofun8)();
235 const fun (B::* memptrtofun9)();
  /external/v8/test/cctest/
test-compiler.cc 77 Handle<JSFunction> fun = Compile(buffer.start()); local
78 if (fun.is_null()) return -1;
81 Execution::Call(isolate, fun, global, 0, NULL).Check();
94 Handle<JSFunction> fun = Compile("result = x + y;"); local
95 if (fun.is_null()) return -1;
100 Execution::Call(isolate, fun, global, 0, NULL).Check();
113 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;"); local
114 if (fun.is_null()) return -1;
118 Execution::Call(isolate, fun, global, 0, NULL).Check();
131 Handle<JSFunction> fun local
154 Handle<JSFunction> fun = Compile(source); local
157 Execution::Call(CcTest::i_isolate(), fun, global, 0, NULL).Check(); local
185 Handle<JSFunction> fun = Compile(source); local
189 CcTest::i_isolate(), fun, global, 0, NULL).Check(); local
199 Handle<JSFunction> fun = Compile(source); local
560 v8::Local<v8::Function> fun = local
600 v8::Local<v8::Function> fun = local
624 v8::Local<v8::Function> fun = local
650 v8::Local<v8::Function> fun = local
685 v8::Local<v8::Function> fun = local
708 v8::Local<v8::Function> fun = v8::Local<v8::Function>::Cast( local
    [all...]
  /external/compiler-rt/test/msan/Linux/
xattr.cc 58 size_t test_list(ssize_t fun(char*, size_t), char **buf) {
63 ssize_t res = fun(*buf, buf_size);
80 bool test_get_single_attr(ssize_t fun(const char *, char *, size_t),
87 ssize_t res = fun(attr_name, buf, buf_size);
105 void test_get(ssize_t fun(const char *, char *, size_t), const char *attr_list,
116 if (test_get_single_attr(fun, attrs[i]))
  /external/v8/test/mjsunit/
debug-liveedit-exceptions.js 40 function Replace(fun, original, patch) {
41 var script = Debug.findScript(fun);
42 if (fun.toString().indexOf(original) < 0) return;
getters-on-elements.js 188 fun = function(a) { return a[0] + 5.5; }
189 fun(a);
190 fun(a);
191 fun(a); // should have a monomorphic KeyedLoadIC.
192 optimize(fun);
193 fun(a);
194 assertOptimized(fun);
198 fun(a);
199 assertOptimized(fun);
203 fun(a)
187 fun = function(a) { return a[0] + 5.5; } function
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_trace.h 23 extern void vbp_trace_util(const char* cat, const char* fun, int line, const char* format, ...);
  /external/v8/src/runtime/
runtime-function.cc 90 CONVERT_ARG_CHECKED(JSFunction, fun, 0);
91 int pos = fun->shared()->start_position();
109 CONVERT_ARG_CHECKED(JSFunction, fun, 0);
110 FixedArray* array = fun->native_context()->embedder_data();
118 CONVERT_ARG_CHECKED(JSFunction, fun, 0);
120 fun->shared()->set_instance_class_name(name);
129 CONVERT_ARG_CHECKED(JSFunction, fun, 0);
132 fun->shared()->set_length(length);
141 CONVERT_ARG_HANDLE_CHECKED(JSFunction, fun, 0);
143 CHECK(fun->IsConstructor())
    [all...]
  /external/autotest/client/common_lib/test_utils/
functools_24.py 49 fun = sargs[0]
57 return fun(*(sargs + args), **rkw)
  /external/pdfium/xfa/src/fxbarcode/
BC_Utils.cpp 32 void BC_FX_PtrArray_Sort(CFX_PtrArray& src, BC_PtrArrayCompareCallback fun) {
38 if (fun(src[i + 1], src[i])) {
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
BRWriter.kt 23 public fun write(pkg : String): String = "package $pkg;${StringUtils.LINE_SEPARATOR}$klass"
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 87 std::function<void(int)> fun = std::bind(&Foo::bar, &f, std::placeholders::_1); local
88 fun(10);

Completed in 3288 milliseconds

12 3 4 5 6 7 8 91011>>