Searched defs:arguments (Results 201 - 225 of 252) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp3056 void WebViewImpl::updatePageDefinedPageScaleConstraints(const ViewportArguments& arguments) argument
3061 ViewportArguments adjustedArguments = arguments;
4207 ViewportArguments arguments = mainFrameImpl()->frame()->document()->viewportArguments(); local
4208 return arguments.width == ViewportArguments::ValueDeviceWidth || !arguments.userZoom
4209 || (arguments.minZoom == arguments.maxZoom && arguments.minZoom != ViewportArguments::ValueAuto);
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc104 va_list arguments; local
105 va_start(arguments, format);
106 builder.AddFormattedList(format, arguments);
107 va_end(arguments);
760 // [incoming arguments] [spill slots] [pushed outgoing arguments]
764 // [parameters] [locals] [expression stack including arguments]
768 // [expression stack including arguments] [locals] [4 words] [parameters]
949 int arguments,
955 kind, arguments, deopt_mod
946 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
983 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
991 RecordSafepointWithRegistersAndDoubles( LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
3148 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc126 va_list arguments; local
127 va_start(arguments, format);
128 builder.AddFormattedList(format, arguments);
129 va_end(arguments);
190 // Copy arguments, receiver, and return address.
936 // [incoming arguments] [spill slots] [pushed outgoing arguments]
940 // [parameters] [locals] [expression stack including arguments]
944 // [expression stack including arguments] [locals] [4 words] [parameters]
1155 int arguments,
1152 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
1184 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode mode) argument
3263 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc104 va_list arguments; local
105 va_start(arguments, format);
106 builder.AddFormattedList(format, arguments);
107 va_end(arguments);
734 // [incoming arguments] [spill slots] [pushed outgoing arguments]
738 // [parameters] [locals] [expression stack including arguments]
742 // [expression stack including arguments] [locals] [4 words] [parameters]
932 int arguments,
938 kind, arguments, deopt_mod
929 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
966 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
974 RecordSafepointWithRegistersAndDoubles( LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
3022 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/chromium_org/v8/src/
H A Dparser.cc1926 // Strict mode variables may not be named eval or arguments
2040 // Compute the arguments for the runtime call.
2041 ZoneList<Expression*>* arguments = local
2044 arguments->Add(factory()->NewLiteral(name), zone());
2048 arguments->Add(value, zone());
2054 // the number of arguments (1 or 2).
2058 arguments);
2063 arguments->Add(factory()->NewNumberLiteral(language_mode), zone());
2070 arguments->Add(value, zone());
2077 // the number of arguments (
4474 ZoneList<Expression*>* arguments = local
4939 Vector< Handle<Object> > arguments = HandleVector<Object>(&first, argc); local
4950 Vector< Handle<Object> > arguments = local
4957 NewThrowError(Handle<String> constructor, Handle<String> message, Vector< Handle<Object> > arguments) argument
[all...]
H A Dast.h1689 ZoneList<Expression*>* arguments() const { return arguments_; } function in class:v8::internal::Call
1741 ZoneList<Expression*>* arguments,
1745 arguments_(arguments),
1772 ZoneList<Expression*>* arguments() const { return arguments_; } function in class:v8::internal::CallNew
1790 ZoneList<Expression*>* arguments,
1794 arguments_(arguments),
1816 // with a set of arguments. This is used from the builtins that are
1824 ZoneList<Expression*>* arguments() const { return arguments_; } function in class:v8::internal::CallRuntime
1833 ZoneList<Expression*>* arguments)
1837 arguments_(arguments) { }
1739 Call(Isolate* isolate, Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
1788 CallNew(Isolate* isolate, Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
1830 CallRuntime(Isolate* isolate, Handle<String> name, const Runtime::Function* function, ZoneList<Expression*>* arguments) argument
3094 NewCall(Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
3101 NewCallNew(Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
3108 NewCallRuntime(Handle<String> name, const Runtime::Function* function, ZoneList<Expression*>* arguments) argument
[all...]
H A Dheap.cc3654 JSArray* arguments,
3669 message->set_arguments(arguments);
4356 // To get fast allocation and map sharing for arguments objects we
4357 // allocate them based on an arguments boilerplate.
4390 // Copy the content. The arguments boilerplate doesn't have any
4401 // Set the callee property for non-strict mode arguments object only.
3653 AllocateJSMessageObject(String* type, JSArray* arguments, int start_position, int end_position, Object* script, Object* stack_trace, Object* stack_frames) argument
H A Dhydrogen-instructions.h3162 // The values contain a list of all elements in the arguments object
3235 // Default arguments to is_not_in_new_space depend on this heap number
3665 HAccessArgumentsAt(HValue* arguments, HValue* length, HValue* index) { argument
3668 SetOperandAt(0, arguments);
3676 // The arguments elements is considered tagged.
3682 HValue* arguments() { return OperandAt(0); } function in class:v8::HAccessArgumentsAt
3754 // However when building stubs, where we know that the arguments are Int32,
H A Dhydrogen.cc569 // Check that phis have correct arguments.
2449 // We don't support phi uses of arguments for now.
2808 ZoneList<Expression*>* arguments) {
2809 for (int i = 0; i < arguments->length(); i++) {
2810 CHECK_ALIVE(VisitArgument(arguments->at(i)));
3020 ZoneList<HValue*> arguments(count, zone());
3022 arguments.Add(Pop(), zone());
3025 while (!arguments.is_empty()) {
3026 Add<HPushArgument>(arguments.RemoveLast());
3041 // Create an arguments objec
2807 VisitArgumentList( ZoneList<Expression*>* arguments) argument
5807 HArgumentsObject* arguments = entry->arguments_object(); local
9296 HEnvironment(HEnvironment* outer, Handle<JSFunction> closure, FrameType frame_type, int arguments, Zone* zone) argument
9453 CopyForInlining( Handle<JSFunction> target, int arguments, FunctionLiteral* function, HConstant* undefined, InliningKind inlining_kind, bool undefined_receiver) const argument
[all...]
H A Dobjects.cc32 #include "arguments.h"
5332 // Check the arguments.
5333 FixedArray* arguments = FixedArray::cast(parameter_map->get(1)); local
5334 kind = arguments->IsDictionary() ? DICTIONARY_ELEMENTS :
5336 if (ReferencesObjectFromElements(arguments, kind, obj)) return true;
5343 // Get the constructor function for arguments array.
5362 // If it is an arguments array check the content.
5463 // Freezing non-strict arguments should be handled elsewhere.
5957 // getter/setter pair in an arguments elements dictionary backing
5964 FixedArray* arguments local
11696 FixedArray* arguments = FixedArray::cast(elements->get(1)); local
11708 FixedArray* arguments = FixedArray::cast(elements->get(1)); local
12363 FixedArray* arguments = FixedArray::cast(parameter_map->get(1)); local
13188 FixedArray* arguments = FixedArray::cast(parameter_map->get(1)); local
[all...]
/external/chromium_org/v8/src/x64/
H A Dlithium-codegen-x64.cc109 va_list arguments; local
110 va_start(arguments, format);
111 builder.AddFormattedList(format, arguments);
112 va_end(arguments);
649 // [incoming arguments] [spill slots] [pushed outgoing arguments]
653 // [parameters] [locals] [expression stack including arguments]
657 // [expression stack including arguments] [locals] [4 words] [parameters]
840 int arguments,
847 kind, arguments, deopt_mod
837 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
875 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
2858 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/v8/src/arm/
H A Dlithium-codegen-arm.cc99 va_list arguments; local
100 va_start(arguments, format);
101 OS::VPrint(format, arguments);
102 va_end(arguments);
113 va_list arguments; local
114 va_start(arguments, format);
115 builder.AddFormattedList(format, arguments);
116 va_end(arguments);
528 // this is only used for the arguments object.
615 // [incoming arguments] [spil
751 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
788 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
796 RecordSafepointWithRegistersAndDoubles( LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
2605 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/v8/src/
H A Dast.h1570 ZoneList<Expression*>* arguments() const { return arguments_; } function in class:v8::internal::Call
1598 ZoneList<Expression*>* arguments,
1602 arguments_(arguments),
1629 ZoneList<Expression*>* arguments() const { return arguments_; } function in class:v8::internal::CallNew
1644 ZoneList<Expression*>* arguments,
1648 arguments_(arguments),
1667 // with a set of arguments. This is used from the builtins that are
1675 ZoneList<Expression*>* arguments() const { return arguments_; } function in class:v8::internal::CallRuntime
1684 ZoneList<Expression*>* arguments)
1688 arguments_(arguments) { }
1596 Call(Isolate* isolate, Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
1642 CallNew(Isolate* isolate, Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
1681 CallRuntime(Isolate* isolate, Handle<String> name, const Runtime::Function* function, ZoneList<Expression*>* arguments) argument
2853 NewCall(Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
2860 NewCallNew(Expression* expression, ZoneList<Expression*>* arguments, int pos) argument
2867 NewCallRuntime(Handle<String> name, const Runtime::Function* function, ZoneList<Expression*>* arguments) argument
[all...]
H A Dheap.cc2932 JSArray* arguments,
2946 message->set_arguments(arguments);
3592 // To get fast allocation and map sharing for arguments objects we
3593 // allocate them based on an arguments boilerplate.
3626 // Copy the content. The arguments boilerplate doesn't have any
3637 // Set the callee property for non-strict mode arguments object only.
2931 AllocateJSMessageObject(String* type, JSArray* arguments, int start_position, int end_position, Object* script, Object* stack_trace, Object* stack_frames) argument
H A Dparser.cc1020 // name of one of the arguments to the function.
2163 // Strict mode variables may not be named eval or arguments
2274 // Compute the arguments for the runtime call.
2275 ZoneList<Expression*>* arguments = new(zone()) ZoneList<Expression*>(3); local
2277 arguments->Add(factory()->NewLiteral(name));
2281 arguments->Add(value);
2287 // the number of arguments (1 or 2).
2291 arguments);
2296 arguments->Add(factory()->NewNumberLiteral(language_mode));
2303 arguments
4978 Vector< Handle<Object> > arguments = HandleVector<Object>(&first, argc); local
4989 Vector< Handle<Object> > arguments = local
4996 NewThrowError(Handle<String> constructor, Handle<String> type, Vector< Handle<Object> > arguments) argument
[all...]
H A Dhydrogen.cc514 // Check that phis have correct arguments.
922 // We don't support phi uses of arguments for now.
1004 va_list arguments; local
1005 va_start(arguments, msg);
1006 OS::VPrint(msg, arguments);
1007 va_end(arguments);
1147 va_list arguments; local
1148 va_start(arguments, msg);
1149 OS::VPrint(msg, arguments);
1150 va_end(arguments);
2430 VisitArgumentList(ZoneList<Expression*>* arguments) argument
5176 TryInline(CallKind call_kind, Handle<JSFunction> target, ZoneList<Expression*>* arguments, HValue* receiver, int ast_id, int return_id, ReturnHandlingFlag return_handling) argument
7634 HEnvironment(HEnvironment* outer, Handle<JSFunction> closure, FrameType frame_type, int arguments) argument
7789 CopyForInlining( Handle<JSFunction> target, int arguments, FunctionLiteral* function, HConstant* undefined, CallKind call_kind, bool is_construct) const argument
[all...]
/external/v8/src/ia32/
H A Dlithium-codegen-ia32.cc103 va_list arguments; local
104 va_start(arguments, format);
105 OS::VPrint(format, arguments);
106 va_end(arguments);
117 va_list arguments; local
118 va_start(arguments, format);
119 builder.AddFormattedList(format, arguments);
120 va_end(arguments);
417 // this is only used for the arguments object.
520 // [incoming arguments] [spil
674 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
706 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode mode) argument
2409 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/v8/src/mips/
H A Dlithium-codegen-mips.cc97 va_list arguments; local
98 va_start(arguments, format);
99 OS::VPrint(format, arguments);
100 va_end(arguments);
111 va_list arguments; local
112 va_start(arguments, format);
113 builder.AddFormattedList(format, arguments);
114 va_end(arguments);
496 // this is only used for the arguments object.
576 // [incoming arguments] [spil
714 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
751 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
759 RecordSafepointWithRegistersAndDoubles( LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
2478 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/v8/src/x64/
H A Dlithium-codegen-x64.cc100 va_list arguments; local
101 va_start(arguments, format);
102 OS::VPrint(format, arguments);
103 va_end(arguments);
114 va_list arguments; local
115 va_start(arguments, format);
116 builder.AddFormattedList(format, arguments);
117 va_end(arguments);
417 // this is only used for the arguments object.
507 // [incoming arguments] [spil
633 RecordSafepoint( LPointerMap* pointers, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
671 RecordSafepointWithRegisters(LPointerMap* pointers, int arguments, Safepoint::DeoptMode deopt_mode) argument
2359 Register arguments = ToRegister(instr->arguments()); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.filetransfer_4.0.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.identity_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 701 milliseconds

1234567891011