Searched defs:argument (Results 26 - 50 of 140) sorted by relevance

123456

/external/ceres-solver/internal/ceres/
H A Dcompressed_row_jacobian_writer.cc203 const int argument = evaluated_jacobian_blocks[i].second; local
210 jacobians[argument] + r * parameter_block_size;
/external/chromium_org/chrome/browser/extensions/api/system_private/
H A Dsystem_private_api.cc49 // Dispatches an extension event with |argument|
50 void DispatchEvent(const std::string& event_name, base::Value* argument) { argument
52 if (argument) {
53 list_args->Append(argument);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathStringBuilder.cpp56 static void emitCommand1Arg(StringBuilder& stringBuilder, char commandChar, float argument) argument
59 appendFloat(stringBuilder, argument);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DSyncCallbackHelper.h58 static ReturnType createFromCallbackArg(CallbackArg argument) argument
60 return ResultType::create(argument);
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
H A DDependencyGraphBuilder.cpp44 // "x -> argument 0 -> function call".
65 TGraphArgument *argument = mGraph->createArgument( local
67 connectMultipleNodesToSingleNode(argumentNodes, argument);
68 argument->addDependentNode(functionCall);
75 // "x -> argument 0 -> function call -> y".
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dkernel.hpp36 class argument;
69 class argument { class in struct:_cl_kernel
71 argument(size_t size);
73 /// \a true if the argument has been set.
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 {
132 class global_argument : public argument {
[all...]
H A Dmodule.hpp58 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;
H A Dkernel.cpp31 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
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A Dstack_logging.h60 uint64_t argument; member in struct:__anon25419
82 unsigned argument; member in struct:__anon25420
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dkernel.hpp36 class argument;
69 class argument { class in struct:_cl_kernel
71 argument(size_t size);
73 /// \a true if the argument has been set.
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 {
132 class global_argument : public argument {
[all...]
H A Dmodule.hpp58 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;
H A Dkernel.cpp31 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
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
[all...]
/external/bison/lib/
H A Dprintf-args.h1 /* Decomposed printf argument list.
90 /* Polymorphic argument */
136 argument; typedef in typeref:struct:__anon340
144 argument *arg;
145 argument direct_alloc_arg[N_DIRECT_ALLOC_ARGUMENTS];
/external/chromium_org/base/time/
H A Dtime_win_unittest.cc87 void* argument = reinterpret_cast<void*>(kChecks); local
90 _beginthreadex(NULL, 0, RolloverTestThreadMain, argument, 0,
/external/chromium_org/content/browser/android/java/
H A Dgin_java_method_invocation_helper.cc153 const base::Value* argument; local
154 arguments_->Get(i, &argument);
156 argument,
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DBrailleInputEvent.java31 * also an integer argument that contains additional information.
91 * The argument is the zero-based position, relative to the first cell
102 * The argument contains the dots that were pressed as a bitmask.
131 // Meanings of the argument to a command.
133 /** This command doesn't have an argument. */
142 * The argument represents a 0-based position on the display counted from
189 public BrailleInputEvent(int command, int argument, long eventTime) { argument
191 mArgument = argument;
203 * Returns the command-specific argument of the event, or zero if the
204 * command doesn't have an argument
[all...]
/external/chromium_org/tools/win/split_link/
H A Dsplit_link.cc55 static void ArgvQuote(const std::wstring& argument, argument
58 if (!argument.empty() &&
59 argument.find_first_of(L" \t\n\v\"") == argument.npos) {
60 command_line->append(argument);
63 for (std::wstring::const_iterator it = argument.begin();; ++it) {
65 while (it != argument.end() && *it == L'\\') {
69 if (it == argument.end()) {
/external/chromium_org/ui/events/linux/
H A Dtext_edit_command_auralinux.h56 const std::string& argument,
59 argument_(argument),
63 const std::string& argument() const { return argument_; } function in class:ui::TextEditCommandAuraLinux
55 TextEditCommandAuraLinux(CommandId command_id, const std::string& argument, bool extend_selection) argument
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_linux_test.cc94 void *TidReporterThread(void *argument) { argument
95 TidReporterArgument *arg = reinterpret_cast<TidReporterArgument *>(argument);
/external/e2fsprogs/ext2ed/
H A Dgeneral_com.c28 char argument [80],*ptr; local
32 ptr=parse_word (command_line,argument);
35 ptr=parse_word (ptr,argument);
36 if (*argument!=0) {
37 detailed_help (argument);
216 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();
/external/e2fsprogs/intl/
H A Dprintf-args.h1 /* Decomposed printf argument list.
77 /* Polymorphic argument */
119 argument; typedef in typeref:struct:__anon20456
124 argument *arg;
/external/libhevc/common/
H A Dithread.c77 WORD32 ithread_create(void *thread_handle, void *attribute, void *strt, void *argument) argument
90 argument, /* Parameters */
326 WORD32 ithread_create(void *thread_handle, void *attribute, void *strt, void *argument) argument
328 return pthread_create((pthread_t *)thread_handle, attribute, (void * (*)(void *))strt, argument);
/external/proguard/src/proguard/
H A DConfigurationWriter.java240 private void writeOption(String optionName, int argument) argument
242 if (argument != 1)
246 writer.println(argument);
/external/chromium_org/media/audio/win/
H A Daudio_manager_win.cc248 std::string argument; local
251 argument = "-R";
254 argument = "mmsys.cpl,,1";
261 command_line.AppendArg(argument);
/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_opcodes.h129 // - An index to indicate which one is the input argument
144 // parameters: An array of all input parameters. This argument is normally
146 // count: The number of parameters passed as first argument.
152 // Retrieves a stored argument by index. Valid index values are
155 void GetArgument(size_t index, T* argument) const {
157 *argument = *reinterpret_cast<const T*>(&arguments_[index].mem);
160 // Sets a stored argument by index. Valid index values are
163 void SetArgument(size_t index, const T& argument) { argument
165 *reinterpret_cast<T*>(&arguments_[index].mem) = argument;
168 // Retrieves the actual address of an string argument
[all...]

Completed in 475 milliseconds

123456