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

12 3 4 5 6 7 8 9

  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
ext.kt 27 override fun get(thisRef: K, desc: PropertyMetadata): T {
40 override fun get(thisRef: K, desc: PropertyMetadata): T {
54 fun Delegates.lazy<K, T>(initializer: (k : K) -> T): ReadOnlyProperty<K, T> = LazyExt(initializer)
55 fun Delegates.versionedLazy<K, T>(initializer: (k : K) -> T): ReadOnlyProperty<K, T> = VersionedLazyExt(initializer)
57 public fun Class<*>.toJavaCode() : String {
81 public fun String.androidId() : String = this.splitBy("/")[1]
83 public fun String.toCamelCase() : String {
90 public fun String.toCamelCaseAsVar() : String {
97 public fun String.br() : String =
  /external/v8/test/mjsunit/
debug-stepin-positions.js 36 function TestCase(fun, frame_number) {
67 fun();
114 function TestCaseWithDebugger(fun) {
115 TestCase(fun, 1);
118 function TestCaseWithBreakpoint(fun, line_number, frame_number) {
119 var breakpointId = Debug.setBreakPoint(fun, line_number);
120 TestCase(fun, frame_number);
124 function TestCaseWithException(fun, frame_number) {
126 TestCase(fun, frame_number);
135 var fun = function()
    [all...]
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...]
fuzz-accessors.js 54 var fun = function () { }; function
63 [fun, fun],
68 function runTest(fun) {
78 fun(obj, propertyName);
debug-set-variable-value.js 33 // Accepts a function/closure 'fun' that must have a debugger statement inside.
38 new_value, expected_new_result, fun) {
39 var actual_old_result = fun();
67 actual_new_result = fun();
80 // Accepts a closure 'fun' that returns a variable from it's outer scope.
84 new_value, expected_new_result, fun) {
85 var actual_old_result = fun();
88 var fun_mirror = Debug.MakeMirror(fun);
93 var actual_new_result = fun();
112 var fun = this.factory_(true)
    [all...]
  /external/v8/test/mjsunit/es6/
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/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-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");
  /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/clang/test/SemaCXX/
addr-of-overloaded-function.cpp 179 void fun(int x) {} function in namespace:test1
182 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)}}
184 ptr2 = &fun; // expected-error {{assigning to 'void (*)(int, int)' from incompatible type 'void (*)(int)': different number of parameters (2 vs 1)}}
188 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')}}
190 ptr2 = &fun; // expected-error {{assigning to 'void (*)(double)' from incompatible type 'void (*)(int)': type mismatch at 1st parameter ('double' vs 'int')}}
194 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')}}
196 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
warn-bool-conversion.cpp 127 void fun();
135 assert(fun);
136 assert(fun && "expecting null pointer");
137 // expected-warning@-1{{address of function 'fun' will always evaluate to 'true'}}
  /external/v8/src/compiler/
js-builtin-reducer-unittest.cc 71 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
73 fun, UndefinedConstant(), p0);
89 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
91 fun, UndefinedConstant());
104 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
106 fun, UndefinedConstant(), p0);
122 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
124 graph()->NewNode(javascript()->Call(4, NO_CALL_FUNCTION_FLAGS), fun,
158 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
160 graph()->NewNode(javascript()->Call(4, NO_CALL_FUNCTION_FLAGS), fun,
    [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/cctest/
test-compiler.cc 76 Handle<JSFunction> fun = Compile(buffer.start()); local
77 if (fun.is_null()) return -1;
80 Execution::Call(isolate, fun, global, 0, NULL).Check();
93 Handle<JSFunction> fun = Compile("result = x + y;"); local
94 if (fun.is_null()) return -1;
99 Execution::Call(isolate, fun, global, 0, NULL).Check();
112 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;"); local
113 if (fun.is_null()) return -1;
117 Execution::Call(isolate, fun, global, 0, NULL).Check();
130 Handle<JSFunction> fun local
153 Handle<JSFunction> fun = Compile(source); local
156 Execution::Call(CcTest::i_isolate(), fun, global, 0, NULL).Check(); local
184 Handle<JSFunction> fun = Compile(source); local
188 CcTest::i_isolate(), fun, global, 0, NULL).Check(); local
198 Handle<JSFunction> fun = Compile(source); local
401 v8::Local<v8::Function> fun = local
    [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/
execution.cc 203 Object* fun = *object; local
204 while (fun->IsJSFunctionProxy()) {
205 fun = JSFunctionProxy::cast(fun)->call_trap();
207 if (fun->IsJSFunction()) return Handle<Object>(fun, isolate);
211 if (fun->IsHeapObject() &&
212 HeapObject::cast(fun)->map()->has_instance_call_handler()) {
226 Object* fun = *object; local
227 while (fun->IsJSFunctionProxy())
256 Object* fun = *object; local
282 Object* fun = *object; local
    [all...]
d8-debug.cc 60 Local<Function> fun = Local<Function>::Cast(exec_state->Get(fun_name)); local
62 Local<Object>::Cast(fun->Call(exec_state, 0, NULL));
96 Handle<Function> fun; local
105 fun = Handle<Function>::Cast(cmd_processor->Get(fun_name));
107 Handle<Value> response_val = fun->Call(cmd_processor, kArgc, args);
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
LayoutBinderWriter.kt 37 fun String.stripNonJava() = this.split("[^a-zA-Z0-9]".toRegex()).map{ it.trim() }.joinToCamelCaseAsVar()
54 fun localizeFlag(set : FlagSet, name:String) : FlagSet {
61 fun getUniqueName(base : String, scope : Scope) : String {
77 fun ExprModel.getUniqueFieldName(base : String) : String = ext.getUniqueName(base, Scope.FIELD)
78 fun ExprModel.getUniqueMethodName(base : String) : String = ext.getUniqueName(base, Scope.METHOD)
79 fun ExprModel.getUniqueFlagName(base : String) : String = ext.getUniqueName(base, Scope.FLAG)
80 fun ExprModel.getConstructorParamName(base : String) : String = ext.getUniqueName(base, Scope.CONSTRUCTOR_PARAM)
82 fun ExprModel.localizeFlag(set : FlagSet, base : String) : FlagSet = ext.localizeFlag(set, base)
93 fun BindingTarget.superConversion(variable : String) : String {
171 fun Expr.toCode(full : Boolean = false) : KCode = CodeGenUtil.toCode(this, full
    [all...]
BRWriter.kt 23 public fun write(pkg : String): String = "package $pkg;${System.lineSeparator()}$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);
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 342 virtual void fun() {} function in struct:GA
346 virtual void fun() {} function in struct:GC
385 virtual void fun() {} function in struct:HA
  /external/clang/test/Parser/
ms-inline-asm.c 15 int 0x2c ; } asm comments are fun! }{
  /external/clang/test/SemaTemplate/
resolve-single-template-id.cpp 38 decltype(oneT<int>)* fun = 0;

Completed in 851 milliseconds

12 3 4 5 6 7 8 9