HomeSort by relevance Sort by last modified time
    Searched refs:arg_list (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/sync/js/
js_arg_list_unittest.cc 16 JsArgList arg_list; local
17 EXPECT_TRUE(arg_list.Get().empty());
18 EXPECT_EQ("[]", arg_list.ToString());
32 JsArgList arg_list(list.get());
34 // |arg_list| should take over |list|'s data.
36 EXPECT_TRUE(arg_list.Get().Equals(list_copy.get()));
  /external/chromium/chrome/browser/sync/
js_arg_list_unittest.cc 16 JsArgList arg_list; local
17 EXPECT_TRUE(arg_list.Get().empty());
29 JsArgList arg_list(*list);
31 // Make sure arg_list takes a deep copy.
34 EXPECT_TRUE(arg_list.Get().Equals(list_copy.get()));
49 JsArgList arg_list(vec);
56 // Make sure arg_list takes a deep copy.
59 EXPECT_TRUE(arg_list.Get().Equals(&list));
  /external/chromium_org/sandbox/win/sandbox_poc/
sandbox.cc 27 LPWSTR *arg_list;
33 arg_list = CommandLineToArgvW(command_line, &arg_count);
34 if (NULL == arg_list || arg_count < 4) {
38 std::wstring entry_point_wide = arg_list[1];
39 std::wstring dll_name_wide = arg_list[2];
42 *log_file = arg_list[3];
45 LocalFree(arg_list);
main_ui_window.cc 625 va_list arg_list; local
626 _crt_va_start(arg_list, format);
629 vswprintf_s(text, kMaxDebugBuffSize, format, arg_list);
  /external/chromium_org/chrome/browser/ui/webui/
sync_internals_ui.cc 133 std::vector<const Value*> arg_list(1, &details.Get());
134 web_ui()->CallJavascriptFunction(event_handler, arg_list);
142 std::vector<const Value*> arg_list(args.Get().begin(), args.Get().end());
143 web_ui()->CallJavascriptFunction(reply_handler, arg_list);
  /external/chromium/chrome/browser/ui/webui/
sync_internals_ui.cc 75 std::vector<const Value*> arg_list(args.Get().begin(), args.Get().end());
76 CallJavascriptFunction(name, arg_list);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/
policy.hpp 403 typedef mpl::list<A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13> arg_list; typedef in struct:boost::math::policies::policy
406 typedef typename detail::find_arg<arg_list, is_domain_error<mpl::_1>, domain_error<> >::type domain_error_type;
407 typedef typename detail::find_arg<arg_list, is_pole_error<mpl::_1>, pole_error<> >::type pole_error_type;
408 typedef typename detail::find_arg<arg_list, is_overflow_error<mpl::_1>, overflow_error<> >::type overflow_error_type;
409 typedef typename detail::find_arg<arg_list, is_underflow_error<mpl::_1>, underflow_error<> >::type underflow_error_type;
410 typedef typename detail::find_arg<arg_list, is_denorm_error<mpl::_1>, denorm_error<> >::type denorm_error_type;
411 typedef typename detail::find_arg<arg_list, is_evaluation_error<mpl::_1>, evaluation_error<> >::type evaluation_error_type;
412 typedef typename detail::find_arg<arg_list, is_rounding_error<mpl::_1>, rounding_error<> >::type rounding_error_type;
413 typedef typename detail::find_arg<arg_list, is_indeterminate_result_error<mpl::_1>, indeterminate_result_error<> >::type indeterminate_result_error_type;
418 typedef typename detail::find_arg<arg_list, is_digits10<mpl::_1>, digits10<> >::type digits10_type
513 typedef mpl::list<A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13> arg_list; typedef in struct:boost::math::policies::normalise
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
api_activity_logger.cc 63 scoped_ptr<ListValue> arg_list(new ListValue());
65 arg_list->Set(i,
69 params.arguments.Swap(arg_list.get());
  /frameworks/base/tools/aidl/
aidl_language_y.y 211 type IDENTIFIER '(' arg_list ')' ';' {
229 | ONEWAY type IDENTIFIER '(' arg_list ')' ';' {
247 | type IDENTIFIER '(' arg_list ')' '=' IDVALUE ';' {
265 | ONEWAY type IDENTIFIER '(' arg_list ')' '=' IDVALUE ';' {
285 arg_list: label
288 | arg_list ',' arg {
  /external/chromium_org/content/public/browser/
web_ui.h 43 // by |function_name| with the arguments specified in |arg_list|.
46 const std::vector<const base::Value*>& arg_list);
  /hardware/ti/omap4xxx/security/tf_daemon/
lib_manifest2.c 42 va_list arg_list; local
43 va_start(arg_list, msg);
44 exosTraceVPrintf("LIB_MANIFEST2", EXOS_TRACE_ORG_APPLI, K_PRINT_ERROR_LOG, msg, &arg_list);
45 va_end(arg_list);
  /external/chromium_org/content/browser/webui/
web_ui_impl.cc 32 const std::vector<const Value*>& arg_list) {
35 for (size_t i = 0; i < arg_list.size(); ++i) {
39 base::JSONWriter::Write(arg_list[i], &json);
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 91 # arg_list: The arguments used to call the stub function.
95 %(return_prefix)s%(name)s_ptr(%(arg_list)s);
105 # arg_list: The arguments used to call the stub function without the
114 %(return_type)s ret___ = %(name)s_ptr(%(arg_list)s, va_arg(args___, void*));
125 # arg_list: The arguments used to call the stub function without the
134 %(name)s_ptr(%(arg_list)s, va_arg(args___, void*));
645 arg_list = ', '.join(arguments)
646 if arg_list == 'void':
647 arg_list = ''
649 if arg_list != '' and len(arguments) > 1 and arguments[-1] == '...'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 137 def add(self, *arg_list):
138 if not arg_list: return self
139 if len(arg_list) > 1: self.add(*arg_list[1:])
140 other = arg_list[0]
collections.py 236 '{typename}({arg_list})'
242 def __new__(_cls, {arg_list}):
243 'Create new instance of {typename}({arg_list})'
244 return _tuple.__new__(_cls, ({arg_list}))
346 arg_list = repr(tuple(field_names)).replace("'", "")[1:-1],
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 137 def add(self, *arg_list):
138 if not arg_list: return self
139 if len(arg_list) > 1: self.add(*arg_list[1:])
140 other = arg_list[0]
collections.py 236 '{typename}({arg_list})'
242 def __new__(_cls, {arg_list}):
243 'Create new instance of {typename}({arg_list})'
244 return _tuple.__new__(_cls, ({arg_list}))
346 arg_list = repr(tuple(field_names)).replace("'", "")[1:-1],
  /external/chromium_org/chromeos/display/
output_configurator_unittest.cc 77 va_list arg_list; local
78 va_start(arg_list, action);
83 action = va_arg(arg_list, const char*);
85 va_end(arg_list);
  /external/chromium_org/ppapi/generators/
idl_thunk.py 217 arg_list = ', '.join([a[1] for a in args])
223 arg_list)
  /external/chromium_org/third_party/pexpect/
pexpect.py     [all...]

Completed in 644 milliseconds