Searched defs:arguments (Results 151 - 175 of 252) sorted by relevance

1234567891011

/external/llvm/utils/unittest/googletest/
H A Dgtest-death-test.cc843 // Utility class for accumulating command-line arguments.
861 void AddArguments(const ::std::vector<Str>& arguments) { argument
862 for (typename ::std::vector<Str>::const_iterator i = arguments.begin();
863 i != arguments.end();
875 // A struct that encompasses the arguments to the child process of a
878 char* const* argv; // Command-line arguments for the child's call to exec
/external/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc844 // Utility class for accumulating command-line arguments.
862 void AddArguments(const ::std::vector<Str>& arguments) { argument
863 for (typename ::std::vector<Str>::const_iterator i = arguments.begin();
864 i != arguments.end();
876 // A struct that encompasses the arguments to the child process of a
879 char* const* argv; // Command-line arguments for the child's call to exec
/external/v8/src/
H A Dbuiltins.cc31 #include "arguments.h"
49 BuiltinArguments(int length, Object** arguments) argument
50 : Arguments(length, arguments) { }
71 // Gets the total number of arguments including the receiver (but
72 // excluding extra arguments).
122 // In the body of the builtin function the arguments can be accessed
433 // Need to ensure that the arguments passed in args can be contained in
693 // Array.slice(arguments, ...) is quite a common idiom (notably more
939 // Iterate through all the arguments performing checks
1012 // illegal. Any arguments tha
[all...]
H A Ddeoptimizer.cc846 // Use the arguments marker value as a sentinel and fill in the arguments
853 PrintF(" ; arguments object\n");
1029 // materialized and so bypasses it when doing arguments access.
1109 // pointer, function, context, and all the incoming arguments.
1116 // The incoming arguments is the values for formal parameters and
1118 unsigned arguments = function->shared()->formal_parameter_count() + 1; local
1119 return arguments * kPointerSize;
1242 // including all arguments.
1259 // Last slot contains number of incomming arguments a
[all...]
H A Dfactory.cc1062 Handle<JSArray> arguments,
1070 *arguments,
1060 NewJSMessageObject( Handle<String> type, Handle<JSArray> arguments, int start_position, int end_position, Handle<Object> script, Handle<Object> stack_trace, Handle<Object> stack_frames) argument
H A Dlithium-allocator.cc1603 va_list arguments; local
1604 va_start(arguments, msg);
1605 OS::VPrint(msg, arguments);
1606 va_end(arguments);
/external/v8/src/ia32/
H A Dstub-cache-ia32.cc430 // Reserves space for the extra arguments to API function in the
433 // These arguments are set by CheckPrototypes and GenerateFastApiCall.
485 // Pass the additional arguments.
497 // Prepare arguments.
502 // Allocate the v8::Arguments structure in the arguments' space since
529 const ParameterCount& arguments,
533 arguments_(arguments),
1038 // Save a pointer to where we pushed the arguments pointer.
1055 __ mov(ApiParameterOperand(1), ebx); // arguments pointer.
1258 // Get the number of arguments
528 CallInterceptorCompiler(StubCompiler* stub_compiler, const ParameterCount& arguments, Register name, Code::ExtraICState extra_state) argument
[all...]
H A Dfull-codegen-ia32.cc112 // and arguments have been pushed on the stack left to right, with the
222 Variable* arguments = scope()->arguments(); local
223 if (arguments != NULL) {
224 // Function uses arguments object.
225 Comment cmnt(masm_, "[ Allocate arguments object");
241 // stack frame was an arguments adapter frame.
253 SetVar(arguments, eax, ebx, edx);
2149 ZoneList<Expression*>* args = expr->arguments();
2180 // Load the arguments
[all...]
H A Dlithium-ia32.cc359 arguments()->PrintTo(stream);
507 // A parameter relative to ebp in the arguments stub.
569 va_list arguments; local
570 va_start(arguments, format);
571 OS::VPrint(format, arguments);
572 va_end(arguments);
2285 // There are no real uses of the arguments object.
2286 // arguments.length and element access are supported directly on
2287 // stack arguments, and any real arguments objec
2294 LOperand* arguments = UseRegister(instr->arguments()); local
[all...]
H A Dlithium-ia32.h489 DECLARE_CONCRETE_INSTRUCTION(ApplyArguments, "apply-arguments")
500 LAccessArgumentsAt(LOperand* arguments, LOperand* length, LOperand* index) { argument
501 inputs_[0] = arguments;
506 DECLARE_CONCRETE_INSTRUCTION(AccessArgumentsAt, "access-arguments-at")
508 LOperand* arguments() { return inputs_[0]; } function in class:v8::internal::LAccessArgumentsAt
522 DECLARE_CONCRETE_INSTRUCTION(ArgumentsLength, "arguments-length")
530 DECLARE_CONCRETE_INSTRUCTION(ArgumentsElements, "arguments-elements")
/external/v8/src/x64/
H A Dstub-cache-x64.cc408 // Reserves space for the extra arguments to API function in the
411 // These arguments are set by CheckPrototypes and GenerateFastApiCall.
465 // Pass the additional arguments.
477 // Prepare arguments.
487 // Allocate the v8::Arguments structure in the arguments' space since
513 const ParameterCount& arguments,
517 arguments_(arguments),
1009 // Save a pointer to where we pushed the arguments pointer.
1038 // could be used to pass arguments.
1230 // Get the number of arguments
512 CallInterceptorCompiler(StubCompiler* stub_compiler, const ParameterCount& arguments, Register name, Code::ExtraICState extra_ic_state) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParser-in.cpp3947 // Per CSS3 syntax, <position> can't have 'center' as its second keyword as we have more arguments to follow.
4788 CSSParserValueList* arguments = m_valueList->current()->function->args.get(); local
4789 if (!arguments || arguments->size() < 3 || !validUnit(arguments->valueAt(0), FPositiveInteger) || !isComma(arguments->valueAt(1)))
4792 ASSERT_WITH_SECURITY_IMPLICATION(arguments->valueAt(0)->fValue > 0);
4793 size_t repetitions = arguments->valueAt(0)->fValue;
4795 arguments->next(); // Skip the repetition count.
4796 arguments
4842 CSSParserValueList* arguments = currentValue->function->args.get(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp945 ViewportArguments arguments = page->viewportArguments(); local
946 PageScaleConstraints constraints = arguments.resolve(initialViewportSize, FloatSize(deviceWidth, deviceHeight), 980 /* defaultLayoutWidthForNonMobilePages */);
965 builder.append(arguments.userZoom ? "true" : "false");
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DTestRunner.cpp818 void TestRunner::queueBackNavigation(const CppArgumentList& arguments, CppVariant* result) argument
820 if (arguments.size() > 0 && arguments[0].isNumber())
821 m_workQueue.addWork(new WorkItemBackForward(-arguments[0].toInt32()));
825 void TestRunner::queueForwardNavigation(const CppArgumentList& arguments, CppVariant* result) argument
827 if (arguments.size() > 0 && arguments[0].isNumber())
828 m_workQueue.addWork(new WorkItemBackForward(arguments[0].toInt32()));
873 void TestRunner::queueLoadingScript(const CppArgumentList& arguments, CppVariant* result) argument
875 if (arguments
880 queueNonLoadingScript(const CppArgumentList& arguments, CppVariant* result) argument
903 queueLoad(const CppArgumentList& arguments, CppVariant* result) argument
941 queueLoadHTMLString(const CppArgumentList& arguments, CppVariant* result) argument
972 setCloseRemainingWindowsWhenComplete(const CppArgumentList& arguments, CppVariant* result) argument
979 resetTestHelperControllers(const CppArgumentList& arguments, CppVariant* result) argument
986 setCustomPolicyDelegate(const CppArgumentList& arguments, CppVariant* result) argument
1011 setImagesAllowed(const CppArgumentList& arguments, CppVariant* result) argument
1018 setScriptsAllowed(const CppArgumentList& arguments, CppVariant* result) argument
1025 setStorageAllowed(const CppArgumentList& arguments, CppVariant* result) argument
1032 setPluginsAllowed(const CppArgumentList& arguments, CppVariant* result) argument
1039 setAllowDisplayOfInsecureContent(const CppArgumentList& arguments, CppVariant* result) argument
1047 setAllowRunningOfInsecureContent(const CppArgumentList& arguments, CppVariant* result) argument
1073 setDeferMainResourceDataLoad(const CppArgumentList& arguments, CppVariant* result) argument
1079 dumpSelectionRect(const CppArgumentList& arguments, CppVariant* result) argument
1097 setPrinting(const CppArgumentList& arguments, CppVariant* result) argument
1103 setShouldStayOnPageAfterHandlingBeforeUnload(const CppArgumentList& arguments, CppVariant* result) argument
1111 setWillSendRequestClearHeader(const CppArgumentList& arguments, CppVariant* result) argument
1121 setTabKeyCyclesThroughElements(const CppArgumentList& arguments, CppVariant* result) argument
1128 execCommand(const CppArgumentList& arguments, CppVariant* result) argument
1145 isCommandEnabled(const CppArgumentList& arguments, CppVariant* result) argument
1162 setDomainRelaxationForbiddenForURLScheme(const CppArgumentList& arguments, CppVariant* result) argument
1169 evaluateScriptInIsolatedWorldAndReturnValue(const CppArgumentList& arguments, CppVariant* result) argument
1199 evaluateScriptInIsolatedWorld(const CppArgumentList& arguments, CppVariant* result) argument
1210 setIsolatedWorldSecurityOrigin(const CppArgumentList& arguments, CppVariant* result) argument
1223 setIsolatedWorldContentSecurityPolicy(const CppArgumentList& arguments, CppVariant* result) argument
1233 addOriginAccessWhitelistEntry(const CppArgumentList& arguments, CppVariant* result) argument
1252 removeOriginAccessWhitelistEntry(const CppArgumentList& arguments, CppVariant* result) argument
1271 hasCustomPageSizeStyle(const CppArgumentList& arguments, CppVariant* result) argument
1285 forceRedSelectionColors(const CppArgumentList& arguments, CppVariant* result) argument
1291 addUserStyleSheet(const CppArgumentList& arguments, CppVariant* result) argument
1304 startSpeechInput(const CppArgumentList& arguments, CppVariant* result) argument
1324 findString(const CppArgumentList& arguments, CppVariant* result) argument
1352 setValueForUser(const CppArgumentList& arguments, CppVariant* result) argument
1369 enableFixedLayoutMode(const CppArgumentList& arguments, CppVariant* result) argument
1378 setFixedLayoutSize(const CppArgumentList& arguments, CppVariant* result) argument
1388 selectionAsMarkup(const CppArgumentList& arguments, CppVariant* result) argument
1393 setTextSubpixelPositioning(const CppArgumentList& arguments, CppVariant* result) argument
1404 setPageVisibility(const CppArgumentList& arguments, CppVariant* result) argument
1419 setTextDirection(const CppArgumentList& arguments, CppVariant* result) argument
1440 textSurroundingNode(const CppArgumentList& arguments, CppVariant* result) argument
1464 dumpResourceRequestPriorities(const CppArgumentList& arguments, CppVariant* result) argument
1470 enableAutoResizeMode(const CppArgumentList& arguments, CppVariant* result) argument
1488 disableAutoResizeMode(const CppArgumentList& arguments, CppVariant* result) argument
1502 setMockDeviceMotion(const CppArgumentList& arguments, CppVariant* result) argument
1550 setMockDeviceOrientation(const CppArgumentList& arguments, CppVariant* result) argument
1571 setUserStyleSheetEnabled(const CppArgumentList& arguments, CppVariant* result) argument
1580 setUserStyleSheetLocation(const CppArgumentList& arguments, CppVariant* result) argument
1590 setAuthorAndUserStylesEnabled(const CppArgumentList& arguments, CppVariant* result) argument
1599 setPopupBlockingEnabled(const CppArgumentList& arguments, CppVariant* result) argument
1609 setJavaScriptCanAccessClipboard(const CppArgumentList& arguments, CppVariant* result) argument
1618 setXSSAuditorEnabled(const CppArgumentList& arguments, CppVariant* result) argument
1627 setAllowUniversalAccessFromFileURLs(const CppArgumentList& arguments, CppVariant* result) argument
1636 setAllowFileAccessFromFileURLs(const CppArgumentList& arguments, CppVariant* result) argument
1645 overridePreference(const CppArgumentList& arguments, CppVariant* result) argument
1702 setPluginsEnabled(const CppArgumentList& arguments, CppVariant* result) argument
1728 evaluateInWebInspector(const CppArgumentList& arguments, CppVariant* result) argument
1736 clearAllDatabases(const CppArgumentList& arguments, CppVariant* result) argument
1742 setDatabaseQuota(const CppArgumentList& arguments, CppVariant* result) argument
1749 setAlwaysAcceptCookies(const CppArgumentList& arguments, CppVariant* result) argument
1756 setWindowIsKey(const CppArgumentList& arguments, CppVariant* result) argument
1763 pathToLocalResource(const CppArgumentList& arguments, CppVariant* result) argument
1772 setBackingScaleFactor(const CppArgumentList& arguments, CppVariant* result) argument
1787 setPOSIXLocale(const CppArgumentList& arguments, CppVariant* result) argument
1794 numberOfPendingGeolocationPermissionRequests(const CppArgumentList& arguments, CppVariant* result) argument
1801 setGeolocationPermission(const CppArgumentList& arguments, CppVariant* result) argument
1811 setMockGeolocationPosition(const CppArgumentList& arguments, CppVariant* result) argument
1821 setMockGeolocationPositionUnavailableError(const CppArgumentList& arguments, CppVariant* result) argument
1832 grantWebNotificationPermission(const CppArgumentList& arguments, CppVariant* result) argument
1842 simulateLegacyWebNotificationClick(const CppArgumentList& arguments, CppVariant* result) argument
1852 addMockSpeechInputResult(const CppArgumentList& arguments, CppVariant* result) argument
1863 setMockSpeechInputDumpRect(const CppArgumentList& arguments, CppVariant* result) argument
1874 addMockSpeechRecognitionResult(const CppArgumentList& arguments, CppVariant* result) argument
1883 setMockSpeechRecognitionError(const CppArgumentList& arguments, CppVariant* result) argument
1917 display(const CppArgumentList& arguments, CppVariant* result) argument
1923 displayInvalidatedRegion(const CppArgumentList& arguments, CppVariant* result) argument
1935 dumpAsText(const CppArgumentList& arguments, CppVariant* result) argument
1965 setAudioData(const CppArgumentList& arguments, CppVariant* result) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp373 WebCore::ViewportArguments arguments = document->viewportArguments(); local
374 arguments.width += 10;
375 webViewImpl->updatePageDefinedPageScaleConstraints(arguments);
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglcpp-parse.c1098 /* YYLEX -- calling `yylex' with the right arguments. */
3680 /* Find a set of function-like macro arguments by looking for a
3692 * Successfully parsed a set of function arguments.
3704 _arguments_parse (argument_list_t *arguments, argument
3722 argument = _token_list_create (arguments);
3723 _argument_list_append (arguments, argument);
3741 argument = _token_list_create (arguments);
3742 _argument_list_append (arguments, argument);
3849 * macro) and subsequent nodes which are arguments.
3864 argument_list_t *arguments; local
[all...]
/external/chromium_org/v8/src/arm/
H A Dstub-cache-arm.cc755 const ParameterCount& arguments,
772 __ str(r3, MemOperand(sp, arguments.immediate() * kPointerSize));
779 __ InvokeFunction(r1, arguments, JUMP_FUNCTION, NullCallWrapper(), call_kind);
824 // Reserves space for the extra arguments to API function in the
827 // These arguments are set by CheckPrototypes and GenerateFastApiDirectCall.
863 // Pass the additional arguments.
879 // Prepare arguments.
882 // Allocate the v8::Arguments structure in the arguments' space since
941 const ParameterCount& arguments,
945 arguments_(arguments),
753 GenerateCallFunction(MacroAssembler* masm, Handle<Object> object, const ParameterCount& arguments, Label* miss, Code::ExtraICState extra_ic_state) argument
940 CallInterceptorCompiler(StubCompiler* stub_compiler, const ParameterCount& arguments, Register name, Code::ExtraICState extra_ic_state) argument
[all...]
/external/chromium_org/v8/src/
H A Dfactory.cc1227 Handle<JSArray> arguments,
1235 *arguments,
1225 NewJSMessageObject( Handle<String> type, Handle<JSArray> arguments, int start_position, int end_position, Handle<Object> script, Handle<Object> stack_trace, Handle<Object> stack_frames) argument
/external/chromium_org/v8/src/ia32/
H A Dstub-cache-ia32.cc426 // Reserves space for the extra arguments to API function in the
429 // These arguments are set by CheckPrototypes and GenerateFastApiCall.
484 // Pass the additional arguments.
502 // Prepare arguments.
513 // Allocate the v8::Arguments structure in the arguments' space since
554 const ParameterCount& arguments,
558 arguments_(arguments),
1386 // Save a pointer to where we pushed the arguments pointer. This will be
1409 __ mov(ApiParameterOperand(1, returns_handle), ebx); // arguments pointer.
1551 // Get the number of arguments
553 CallInterceptorCompiler(StubCompiler* stub_compiler, const ParameterCount& arguments, Register name, Code::ExtraICState extra_state) argument
[all...]
/external/chromium_org/v8/src/mips/
H A Dstub-cache-mips.cc748 const ParameterCount& arguments,
764 __ sw(a3, MemOperand(sp, arguments.immediate() * kPointerSize));
771 __ InvokeFunction(a1, arguments, JUMP_FUNCTION, NullCallWrapper(), call_kind);
814 // Reserves space for the extra arguments to API function in the
817 // These arguments are set by CheckPrototypes and GenerateFastApiDirectCall.
853 // Pass the additional arguments.
872 // Prepare arguments.
875 // Allocate the v8::Arguments structure in the arguments' space since
944 const ParameterCount& arguments,
948 arguments_(arguments),
746 GenerateCallFunction(MacroAssembler* masm, Handle<Object> object, const ParameterCount& arguments, Label* miss, Code::ExtraICState extra_ic_state) argument
943 CallInterceptorCompiler(StubCompiler* stub_compiler, const ParameterCount& arguments, Register name, Code::ExtraICState extra_ic_state) argument
[all...]
/external/chromium_org/v8/src/x64/
H A Dstub-cache-x64.cc404 // Reserves space for the extra arguments to API function in the
407 // These arguments are set by CheckPrototypes and GenerateFastApiCall.
467 // Pass the additional arguments.
485 // Prepare arguments.
506 // Allocate the v8::Arguments structure in the arguments' space since
538 const ParameterCount& arguments,
542 arguments_(arguments),
1303 // Save a pointer to where we pushed the arguments pointer. This will be
1343 // could be used to pass arguments.
1473 // Get the number of arguments
537 CallInterceptorCompiler(StubCompiler* stub_compiler, const ParameterCount& arguments, Register name, Code::ExtraICState extra_ic_state) argument
[all...]
/external/v8/src/arm/
H A Dfull-codegen-arm.cc123 // and arguments have been pushed on the stack left to right. The actual
226 Variable* arguments = scope()->arguments(); local
227 if (arguments != NULL) {
228 // Function uses arguments object.
229 Comment cmnt(masm_, "[ Allocate arguments object");
247 // stack frame was an arguments adapter frame.
259 SetVar(arguments, r0, r1, r2);
1808 // Call load IC. It has arguments receiver and property name r0 and r2.
1816 // Call keyed load IC. It has arguments ke
[all...]
H A Dlithium-arm.cc354 arguments()->PrintTo(stream);
512 // A parameter relative to ebp in the arguments stub.
574 va_list arguments; local
575 va_start(arguments, format);
576 OS::VPrint(format, arguments);
577 va_end(arguments);
2182 // There are no real uses of the arguments object.
2183 // arguments.length and element access are supported directly on
2184 // stack arguments, and any real arguments objec
2191 LOperand* arguments = UseRegister(instr->arguments()); local
[all...]
H A Dstub-cache-arm.cc542 const ParameterCount& arguments,
559 __ str(r3, MemOperand(sp, arguments.immediate() * kPointerSize));
566 __ InvokeFunction(r1, arguments, JUMP_FUNCTION, NullCallWrapper(), call_kind);
609 // Reserves space for the extra arguments to FastHandleApiCall in the
612 // These arguments are set by CheckPrototypes and GenerateFastApiDirectCall.
645 // Pass the additional arguments FastHandleApiCall expects.
696 const ParameterCount& arguments,
700 arguments_(arguments),
1393 // Get the number of arguments.
1394 const int argc = arguments()
540 GenerateCallFunction(MacroAssembler* masm, Handle<Object> object, const ParameterCount& arguments, Label* miss, Code::ExtraICState extra_ic_state) argument
695 CallInterceptorCompiler(StubCompiler* stub_compiler, const ParameterCount& arguments, Register name, Code::ExtraICState extra_ic_state) argument
[all...]

Completed in 728 milliseconds

1234567891011