HomeSort by relevance Sort by last modified time
    Searched defs:fun (Results 1 - 25 of 33) sorted by null

1 2

  /external/v8/src/
apinatives.js 72 var fun = %CreateApiFunction(data);
73 if (name) %FunctionSetName(fun, name);
74 cache[serialNumber] = fun;
76 fun.prototype = prototype ? Instantiate(prototype) : {};
77 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
81 fun.prototype.__proto__ = parent_fun.prototype;
83 ConfigureTemplateInstance(fun, data);
75 fun.prototype = prototype ? Instantiate(prototype) : {}; class
compiler.cc 212 Handle<JSFunction> fun = local
218 Compiler::SetFunctionInfo(fun, lit, true, script);
223 SetExpectedNofPropertiesFromEstimate(fun, lit->expected_property_count());
227 Debugger::OnAfterCompile(script, fun);
230 return fun;
525 void Compiler::SetFunctionInfo(Handle<JSFunction> fun,
529 fun->shared()->set_length(lit->num_parameters());
530 fun->shared()->set_formal_parameter_count(lit->num_parameters());
531 fun->shared()->set_script(*script);
532 fun->shared()->set_function_token_position(lit->function_token_position())
    [all...]
d8-debug.cc 77 Local<Function> fun = Function::Cast(*exec_state->Get(fun_name)); local
79 Object::Cast(*fun->Call(exec_state, 0, NULL));
113 Handle<Function> fun; local
122 fun = Handle<Function>::Cast(cmd_processor->Get(fun_name));
124 Handle<Value> response_val = fun->Call(cmd_processor, kArgc, args);
messages.cc 76 Handle<JSFunction> fun(Top::global_context()->make_message_fun());
110 Execution::Call(fun, Factory::undefined_value(), argc, argv,
148 Handle<JSFunction> fun = local
155 Execution::TryCall(fun, Top::builtins(), 1, argv, &caught_exception);
string-stream.cc 458 JSFunction* fun = JSFunction::cast(f); local
459 Object* perhaps_context = fun->unchecked_context();
463 Context* context = fun->context();
485 JSFunction* fun = JSFunction::cast(f); local
487 PrintPrototype(fun, receiver);
488 *code = fun->code();
526 void StringStream::PrintPrototype(JSFunction* fun, Object* receiver) {
527 Object* name = fun->shared()->name();
531 Object* key = JSObject::cast(p)->SlowReverseLookup(fun);
552 PrintName(fun->shared()->name())
    [all...]
codegen.h 396 ApiFunction* fun)
398 fun_(fun) { }
408 ApiFunction* fun() { return fun_; } function in class:v8::internal::ApiGetterEntryStub
execution.cc 565 Handle<JSFunction> fun,
570 Handle<Object>::cast(fun).location(),
623 Object* fun = it.frame()->function(); local
624 if (fun && fun->IsJSFunction()) {
626 if (JSFunction::cast(fun)->IsBuiltin()) {
629 GlobalObject* global = JSFunction::cast(fun)->context()->global();
full-codegen.cc 56 void FullCodeGenSyntaxChecker::Check(FunctionLiteral* fun) {
57 Scope* scope = fun->scope();
61 VisitStatements(fun->body());
89 if (decl->fun() != NULL) {
90 Visit(decl->fun());
320 Expression* fun = expr->expression(); local
322 Variable* var = fun->AsVariableProxy()->AsVariable();
332 } else if (fun->AsProperty() != NULL) {
333 Property* prop = fun->AsProperty();
340 Visit(fun);
    [all...]
stub-cache.cc 747 v8::AccessorGetter fun = FUNCTION_CAST<v8::AccessorGetter>(getter_address); local
748 ASSERT(fun != NULL);
761 result = fun(v8::Utils::ToLocal(args.at<String>(4)), info);
773 v8::AccessorSetter fun = FUNCTION_CAST<v8::AccessorSetter>(setter_address); local
774 ASSERT(fun != NULL);
787 fun(v8::Utils::ToLocal(name), v8::Utils::ToLocal(value), info);
    [all...]
d8.cc 273 Handle<Value> fun = global->Get(String::New("GetCompletions")); local
276 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
285 Handle<Value> fun = global->Get(String::New("DebugMessageDetails")); local
288 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
296 Handle<Value> fun = global->Get(String::New("DebugCommandToJSONRequest")); local
299 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
factory.cc 424 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
432 Handle<Object> result = Execution::TryCall(fun,
449 Handle<JSFunction> fun = local
458 Handle<Object> result = Execution::TryCall(fun,
715 Handle<JSFunction> fun = NewFunctionHelper(name, prototype); local
716 fun->set_context(Top::context()->global_context());
717 return fun;
    [all...]
top.cc 651 Handle<JSFunction> fun(JSFunction::cast(frame->function()));
661 Execution::GetStackTraceLine(recv, fun, pos_obj, is_top_level);
675 JSFunction* fun = JSFunction::cast(frame->function()); local
676 Object* script = fun->shared()->script();
    [all...]
bootstrapper.cc 74 void Add(Vector<const char> name, Handle<JSFunction> fun) {
75 ASSERT(fun->IsBoilerplate());
84 cache_->set(length + 1, *fun);
85 Script::cast(fun->shared()->script())->set_type(Smi::FromInt(type_));
910 Handle<JSFunction> fun = local
1400 Handle<JSFunction> fun = local
    [all...]
  /external/v8/test/mjsunit/
fuzz-accessors.js 54 var fun = function () { }; function
63 [fun, fun],
68 function runTest(fun) {
78 fun(obj, propertyName);
keyed-ic.js 180 function fun() { };
183 o.f = fun;
194 assertEquals(fun, property);
  /external/v8/test/cctest/
test-func-name-inference.cc 65 Handle<JSFunction> fun = v8::Utils::OpenHandle(*script); local
66 Handle<Script> i_script(Script::cast(fun->shared()->script()));
test-compiler.cc 135 Handle<JSFunction> fun = Compile(buffer.start()); local
136 if (fun.is_null()) return -1;
140 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
154 Handle<JSFunction> fun = Compile("result = x + y;"); local
155 if (fun.is_null()) return -1;
161 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
175 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;"); local
176 if (fun.is_null()) return -1;
181 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
195 Handle<JSFunction> fun local
219 Handle<JSFunction> fun = Compile(source); local
252 Handle<JSFunction> fun = Compile(source); local
267 Handle<JSFunction> fun = Compile(source); local
    [all...]
test-accessors.cc 61 Local<Function> fun = fun_templ->GetFunction(); local
62 env->Global()->Set(v8_str("Fun"), fun);
63 Local<Script> getter = v8_compile("var obj = new Fun(); obj.foo;");
  /external/skia/src/xml/
SkJS.cpp 119 JSFunction *fun; local
146 fun = JS_DefineFunction(cx, obj, name, Exec, 0, JSPROP_ENUMERATE);
147 ok = (fun != NULL);
  /external/libffi/darwin-x86/
ffi.h 255 void (*fun)(ffi_cif*,void*,void**,void*); member in struct:__anon3262
265 void (*fun)(ffi_cif*,void*,void**,void*),
271 void (*fun)(ffi_cif*,void*,void**,void*),
291 void (*fun)(ffi_cif*,void*,ffi_raw*,void*); member in struct:__anon3263
312 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon3264
320 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
326 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
333 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
339 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
  /external/libffi/include/
ffi_real.h 256 void (*fun)(ffi_cif*,void*,void**,void*); member in struct:__anon3270
266 void (*fun)(ffi_cif*,void*,void**,void*),
272 void (*fun)(ffi_cif*,void*,void**,void*),
292 void (*fun)(ffi_cif*,void*,ffi_raw*,void*); member in struct:__anon3271
313 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); member in struct:__anon3272
321 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
327 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
334 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
340 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5events.c 139 void (*fun)(const int numevents, DIDEVICEOBJECTDATA *events); member in struct:__anon4506
227 SDL_DIfun[i] = inputs[i].fun;
  /external/v8/src/arm/
full-codegen-arm.cc 566 } else if (decl->fun() != NULL) {
567 VisitForValue(decl->fun(), kAccumulator);
589 } else if (decl->fun() != NULL) {
590 VisitForValue(decl->fun(), kAccumulator);
616 } else if (decl->fun() != NULL) {
619 VisitForValue(decl->fun(), kStack);
630 if (decl->fun() != NULL || decl->mode() == Variable::CONST) {
636 if (decl->fun() != NULL) {
637 VisitForValue(decl->fun(), kAccumulator);
1219 Expression* fun = expr->expression(); local
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 680 } else if (decl->fun() != NULL) {
681 VisitForValue(decl->fun(), kAccumulator);
703 } else if (decl->fun() != NULL) {
704 VisitForValue(decl->fun(), kAccumulator);
728 } else if (decl->fun() != NULL) {
729 VisitForValue(decl->fun(), kStack);
739 if (decl->fun() != NULL || decl->mode() == Variable::CONST) {
745 if (decl->fun() != NULL) {
746 VisitForValue(decl->fun(), kAccumulator);
1333 Expression* fun = expr->expression(); local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 682 } else if (decl->fun() != NULL) {
683 VisitForValue(decl->fun(), kAccumulator);
706 } else if (decl->fun() != NULL) {
707 VisitForValue(decl->fun(), kAccumulator);
731 } else if (decl->fun() != NULL) {
732 VisitForValue(decl->fun(), kStack);
742 if (decl->fun() != NULL || decl->mode() == Variable::CONST) {
748 if (decl->fun() != NULL) {
749 VisitForValue(decl->fun(), kAccumulator);
1331 Expression* fun = expr->expression(); local
    [all...]

Completed in 470 milliseconds

1 2