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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/v8/test/webkit/
dfg-to-string-toString-in-string.js 34 var argument = new String("hello");
38 argument = new String("hello");
39 argument.toString = function() { return 42; }
42 shouldBe("\"\" + foo(argument)", expected);
dfg-to-string-valueOf-in-string.js 34 var argument = new String("hello");
37 argument = new String("hello");
38 argument.valueOf = function() { return 42; }
40 shouldBe("\"\" + foo(argument)", "\"hello\"");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
argument.hpp 12 // Description : model of actual argument (both typed and abstract interface)
35 // ************** runtime::argument ************** //
43 class argument { class in namespace:boost::BOOST_RT_PARAM_NAMESPACE
46 argument( parameter const& p, rtti::id_t value_type ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::argument
52 virtual ~argument() {}
64 class typed_argument : public argument {
68 : argument( p, rtti::type_id<T>() )
71 : argument( p, rtti::type_id<T>() )
84 arg_value( argument const& arg_ )
95 arg_value( argument& arg_
    [all...]
  /external/chromium/base/debug/
debug_on_start_win.cc 16 // Minimalist implementation to try to find a command line argument. We can use
19 // The code is not that bright and will find things like ---argument or
20 // /-/argument.
23 wchar_t argument[50] = {}; local
25 argument[i] = argument_c[i];
27 int argument_len = lstrlen(argument);
32 // Try to find an argument.
37 if (lstrcmpi(command_line+1, argument) == 0) {
54 // Try to find the argument.
  /external/chromium_org/base/debug/
debug_on_start_win.cc 16 // Minimalist implementation to try to find a command line argument. We can use
19 // The code is not that bright and will find things like ---argument or
20 // /-/argument.
23 wchar_t argument[50] = {}; local
25 argument[i] = argument_c[i];
27 int argument_len = lstrlen(argument);
32 // Try to find an argument.
37 if (lstrcmpi(command_line+1, argument) == 0) {
54 // Try to find the argument.
  /external/chromium_org/sandbox/win/tests/integration_tests/
integration_tests_test.cc 60 wchar_t argument[20]; local
62 memcpy(argument, argv[i], __min(sizeof(argument), argument_bytes));
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.cpp 48 String argument; local
49 if (options.get("body", argument))
50 notification->setBody(argument);
51 if (options.get("tag", argument))
52 notification->setTag(argument);
53 if (options.get("lang", argument))
54 notification->setLang(argument);
55 if (options.get("dir", argument))
56 notification->setDir(argument);
57 if (options.get("icon", argument)) {
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/depgraph/
DependencyGraph.cpp 29 TGraphArgument* argument = new TGraphArgument(intermFunctionCall, argumentNumber); local
30 mAllNodes.push_back(argument);
31 return argument;
DependencyGraphBuilder.cpp 36 // "x -> argument 0 -> function call".
54 TGraphArgument* argument = mGraph->createArgument(intermFunctionCall, argumentNumber); local
55 connectMultipleNodesToSingleNode(argumentNodes, argument);
56 argument->addDependentNode(functionCall);
63 // "x -> argument 0 -> function call -> y".
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-regexp.jar 
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 133 Object argument = argVec.elementAt( i ); local
136 if ( argument instanceof XNodeSet ) {
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
138 } else if ( argument instanceof XObject ) {
139 Object passedArgument = ((XObject)argument).object();
142 argList.add ( i, argument );
184 Object argument = argVec.elementAt( i ); local
187 if ( argument instanceof XNodeSet ) {
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
189 } else if ( argument instanceof XObject )
    [all...]
  /external/chromium_org/chrome_frame/
function_stub.h 26 uintptr_t arg_addr_; // ; extra argument
59 // and we would like to add one static argument to make it, say:
91 // @param extra_argument The static argument to pass to the function.
107 uintptr_t argument() const { return argument_; } function in struct:FunctionStub
108 void set_argument(uintptr_t argument) { argument_ = argument; }
132 // This is the argument value that gets passed to the destination_function_.
function_stub_unittest.cc 114 uintptr_t argument = reinterpret_cast<uintptr_t>(this); local
116 stub_ = FunctionStub::Create(argument, FooDivert);
129 EXPECT_EQ(argument, stub_->argument());
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 40 void *IncrementerThread(void *argument) {
41 CallbackArgument *callback_argument = (CallbackArgument *)argument;
56 void *argument) {
57 CallbackArgument *callback_argument = (CallbackArgument *)argument;
73 CallbackArgument argument; local
78 &argument);
80 StopTheWorld(&Callback, &argument);
82 EXPECT_TRUE(argument.callback_executed);
83 EXPECT_TRUE(argument.threads_stopped);
84 // argument is on stack, so we have to wait for the incrementer thread t
166 AdvancedCallbackArgument argument; local
    [all...]
  /external/ceres-solver/internal/ceres/
compressed_row_jacobian_writer.cc 195 const int argument = evaluated_jacobian_blocks[i].second; local
202 jacobians[argument] + r * parameter_block_size;
  /external/chromium/base/
time_win_unittest.cc 87 void* argument = reinterpret_cast<void*>(kChecks); local
90 _beginthreadex(NULL, 0, RolloverTestThreadMain, argument, 0,
  /external/chromium_org/base/time/
time_win_unittest.cc 87 void* argument = reinterpret_cast<void*>(kChecks); local
90 _beginthreadex(NULL, 0, RolloverTestThreadMain, argument, 0,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
kernel.cpp 31 const std::vector<clover::module::argument> &args) :
34 if (arg.type == module::argument::scalar)
36 else if (arg.type == module::argument::global)
38 else if (arg.type == module::argument::local)
40 else if (arg.type == module::argument::constant)
42 else if (arg.type == module::argument::image2d_rd ||
43 arg.type == module::argument::image3d_rd)
45 else if (arg.type == module::argument::image2d_wr ||
46 arg.type == module::argument::image3d_wr)
48 else if (arg.type == module::argument::sampler
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
    [all...]
kernel.hpp 36 class argument;
69 class argument { class in struct:_cl_kernel
71 argument(size_t size);
73 /// \a true if the argument has been set.
76 /// Argument size in the input buffer.
82 /// Set this argument to some object.
86 /// object to this argument, and update \a ctx accordingly.
99 const std::vector<clover::module::argument> &args);
114 std::vector<std::unique_ptr<argument>> args;
120 class scalar_argument : public argument {
    [all...]
module.hpp 58 struct argument { struct in struct:clover::module
71 argument(enum type type, size_t size) : type(type), size(size) { } function in struct:clover::module::argument
72 argument() : type(scalar), size(0) { } function in struct:clover::module::argument
80 size_t offset, const clover::compat::vector<argument> &args) :
87 clover::compat::vector<argument> args;
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.cpp 31 const std::vector<clover::module::argument> &args) :
34 if (arg.type == module::argument::scalar)
36 else if (arg.type == module::argument::global)
38 else if (arg.type == module::argument::local)
40 else if (arg.type == module::argument::constant)
42 else if (arg.type == module::argument::image2d_rd ||
43 arg.type == module::argument::image3d_rd)
45 else if (arg.type == module::argument::image2d_wr ||
46 arg.type == module::argument::image3d_wr)
48 else if (arg.type == module::argument::sampler
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
    [all...]
kernel.hpp 36 class argument;
69 class argument { class in struct:_cl_kernel
71 argument(size_t size);
73 /// \a true if the argument has been set.
76 /// Argument size in the input buffer.
82 /// Set this argument to some object.
86 /// object to this argument, and update \a ctx accordingly.
99 const std::vector<clover::module::argument> &args);
114 std::vector<std::unique_ptr<argument>> args;
120 class scalar_argument : public argument {
    [all...]
module.hpp 58 struct argument { struct in struct:clover::module
71 argument(enum type type, size_t size) : type(type), size(size) { } function in struct:clover::module::argument
72 argument() : type(scalar), size(0) { } function in struct:clover::module::argument
80 size_t offset, const clover::compat::vector<argument> &args) :
87 clover::compat::vector<argument> args;
  /dalvik/vm/compiler/template/
gen-template.py 56 raise DataParseError("handler-size requires one argument")
78 raise DataParseError("import requires one argument") namespace
93 raise DataParseError("import requires one argument") namespace
110 raise DataParseError("opStart takes a directory name argument")
  /dalvik/vm/mterp/
gen-mterp.py 62 raise DataParseError("handler-style requires one argument")
78 raise DataParseError("handler-size requires one argument")
100 raise DataParseError("import requires one argument") namespace
119 raise DataParseError("import requires one argument") namespace
137 raise DataParseError("import requires one argument") namespace
149 raise DataParseError("opStart takes a directory name argument")

Completed in 700 milliseconds

1 2 3 4 5 6 7 8 9