Home
last modified time | relevance | path

Searched refs:extra_info (Results 1 – 25 of 96) sorted by relevance

1234

/third_party/jerryscript/jerry-ext/include/jerryscript-ext/
Darg.impl.h100 uintptr_t extra_info; \
106 .extra_info = u.extra_info \
246 .extra_info = (uintptr_t) size in jerryx_arg_string()
291 .extra_info = (uintptr_t) size in jerryx_arg_utf8_string()
351 .extra_info = (uintptr_t) info_p in jerryx_arg_native_pointer()
376 … uintptr_t extra_info, /**< the extra parameter, specific to the transform function */ in jerryx_arg_custom() argument
383 .extra_info = extra_info in jerryx_arg_custom()
411 .extra_info = (uintptr_t) object_props in jerryx_arg_object_properties()
439 .extra_info = (uintptr_t) array_items_p in jerryx_arg_array()
Darg.h72 uintptr_t extra_info; /**< extra information, specific to func */ member
176 jerryx_arg_custom (void *dest, uintptr_t extra_info, jerryx_arg_transform_func_t func);
/third_party/cef/libcef_dll/cpptoc/
Dlife_span_handler_cpptoc.cc38 struct _cef_dictionary_value_t** extra_info, in life_span_handler_on_before_popup() argument
72 DCHECK(extra_info); in life_span_handler_on_before_popup()
73 if (!extra_info) in life_span_handler_on_before_popup()
100 if (extra_info && *extra_info) in life_span_handler_on_before_popup()
101 extra_infoPtr = CefDictionaryValueCToCpp::Wrap(*extra_info); in life_span_handler_on_before_popup()
131 if (extra_info) { in life_span_handler_on_before_popup()
134 *extra_info = CefDictionaryValueCToCpp::Unwrap(extra_infoPtr); in life_span_handler_on_before_popup()
137 *extra_info = nullptr; in life_span_handler_on_before_popup()
Drender_process_handler_cpptoc.cc45 struct _cef_dictionary_value_t* extra_info) { in render_process_handler_on_browser_created() argument
56 DCHECK(extra_info); in render_process_handler_on_browser_created()
57 if (!extra_info) in render_process_handler_on_browser_created()
63 CefDictionaryValueCToCpp::Wrap(extra_info)); in render_process_handler_on_browser_created()
/third_party/cef/libcef/browser/
Dbrowser_host_create.cc21 CefRefPtr<CefDictionaryValue> extra_info, in CreateBrowserHelper() argument
27 extra_info_(extra_info), in CreateBrowserHelper()
51 CefRefPtr<CefDictionaryValue> extra_info, in CreateBrowser() argument
84 windowInfo, client, url, settings, extra_info, request_context); in CreateBrowser()
108 CefRefPtr<CefDictionaryValue> extra_info, in CreateBrowserSync() argument
145 create_params.extra_info = extra_info; in CreateBrowserSync()
Dbrowser_info_manager.cc71 CefRefPtr<CefDictionaryValue> extra_info) { in CreateBrowserInfo() argument
75 ++next_browser_id_, is_popup, is_windowless, extra_info); in CreateBrowserInfo()
84 CefRefPtr<CefDictionaryValue> extra_info) { in CreatePopupBrowserInfo() argument
92 new CefBrowserInfo(++next_browser_id_, true, is_windowless, extra_info); in CreatePopupBrowserInfo()
176 pending_popup->settings, pending_popup->extra_info, in CanCreateWindow()
192 create_params.extra_info = pending_popup->extra_info; in CanCreateWindow()
244 CefRefPtr<CefDictionaryValue>& extra_info) { in WebContentsCreated() argument
262 extra_info = pending_popup->extra_info; in WebContentsCreated()
549 auto extra_info = browser_info->extra_info(); in SendNewBrowserInfoResponse() local
550 if (extra_info) { in SendNewBrowserInfoResponse()
[all …]
Dbrowser_info_manager.h57 CefRefPtr<CefDictionaryValue> extra_info);
66 CefRefPtr<CefDictionaryValue> extra_info);
98 CefRefPtr<CefDictionaryValue>& extra_info);
188 CefRefPtr<CefDictionaryValue> extra_info; member
Dbrowser_info.h40 CefRefPtr<CefDictionaryValue> extra_info);
45 CefRefPtr<CefDictionaryValue> extra_info() const { return extra_info_; } in extra_info() function
Dbrowser_host_base.h41 extra_info = that.extra_info;
83 CefRefPtr<CefDictionaryValue> extra_info; member
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-generator-prototype.c94 if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJECT_RUNNING) in ecma_builtin_generator_prototype_object_do()
99 …if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJECT_COMPLETE… in ecma_builtin_generator_prototype_object_do()
108 …if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_GENERATOR_ITERATE_AND_YIEL… in ecma_builtin_generator_prototype_object_do()
136 …executable_object_p->extended_object.u.class_prop.extra_info &= (uint16_t) ~ECMA_GENERATOR_ITERATE… in ecma_builtin_generator_prototype_object_do()
161 …bool done = (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJECT… in ecma_builtin_generator_prototype_object_do()
183 … executable_object_p->extended_object.u.class_prop.extra_info |= ECMA_GENERATOR_ITERATE_AND_YIELD; in ecma_builtin_generator_prototype_object_do()
/third_party/cef/libcef_dll/ctocpp/
Dlife_span_handler_ctocpp.cc36 CefRefPtr<CefDictionaryValue>& extra_info, in OnBeforePopup() argument
67 if (extra_info.get()) in OnBeforePopup()
68 extra_infoStruct = CefDictionaryValueCppToC::Wrap(extra_info); in OnBeforePopup()
92 extra_info = CefDictionaryValueCppToC::Unwrap(extra_infoStruct); in OnBeforePopup()
95 extra_info = nullptr; in OnBeforePopup()
Drender_process_handler_ctocpp.cc43 CefRefPtr<CefDictionaryValue> extra_info) { in OnBrowserCreated() argument
55 DCHECK(extra_info.get()); in OnBrowserCreated()
56 if (!extra_info.get()) in OnBrowserCreated()
61 CefDictionaryValueCppToC::Wrap(extra_info)); in OnBrowserCreated()
/third_party/cef/libcef/browser/views/
Dbrowser_view_impl.cc23 CefRefPtr<CefDictionaryValue> extra_info, in CreateBrowserView() argument
26 return CefBrowserViewImpl::Create(client, url, settings, extra_info, in CreateBrowserView()
47 CefRefPtr<CefDictionaryValue> extra_info, in Create() argument
65 browser_view->SetPendingBrowserCreateParams(client, url, settings, extra_info, in Create()
218 CefRefPtr<CefDictionaryValue> extra_info, in SetPendingBrowserCreateParams() argument
225 pending_browser_create_params_->extra_info = extra_info; in SetPendingBrowserCreateParams()
Dbrowser_view_impl.h34 CefRefPtr<CefDictionaryValue> extra_info,
87 CefRefPtr<CefDictionaryValue> extra_info,
/third_party/jerryscript/jerry-ext/arg/
Darg-transform-functions.c188 uintptr_t extra_info; \
189 } u = { .extra_info = c_arg_p->extra_info }; \
269 jerry_size_t target_buf_size = (jerry_size_t) c_arg_p->extra_info; in jerryx_arg_string_to_buffer_common_routine()
458 expected_info_p = (const jerry_object_native_info_t *) c_arg_p->extra_info; in jerryx_arg_transform_native_pointer()
483 … jerryx_arg_object_props_t *object_props = (const jerryx_arg_object_props_t *) c_arg_p->extra_info; in jerryx_arg_transform_object_props()
504 …t jerryx_arg_array_items_t *array_items_p = (const jerryx_arg_array_items_t *) c_arg_p->extra_info; in jerryx_arg_transform_array_items()
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/
Dtzselect.ksh249 extra_info=
258 extra_info="
277 echo >&2 "Therefore TZ='$TZ' will be used.$extra_info"
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dtzselect.ksh249 extra_info=
258 extra_info="
277 echo >&2 "Therefore TZ='$TZ' will be used.$extra_info"
/third_party/icu/icu4c/source/tools/tzcode/
Dtzselect.ksh249 extra_info=
258 extra_info="
277 echo >&2 "Therefore TZ='$TZ' will be used.$extra_info"
/third_party/cef/tests/ceftests/
Dnavigation_unittest.cc69 CefRefPtr<CefDictionaryValue> extra_info) override { in OnBrowserCreated() argument
70 run_test_ = extra_info->HasKey(kHistoryNavTestCmdKey); in OnBrowserCreated()
295 CefRefPtr<CefDictionaryValue> extra_info = CefDictionaryValue::Create(); in RunTest() local
296 extra_info->SetBool(kHistoryNavTestCmdKey, true); in RunTest()
299 CreateBrowser(CefString(), nullptr, extra_info); in RunTest()
1149 CefRefPtr<CefDictionaryValue> extra_info) override { in OnBrowserCreated() argument
1150 run_test_ = extra_info->HasKey(kOrderNavTestCmdKey); in OnBrowserCreated()
1351 CefRefPtr<CefDictionaryValue> extra_info = CefDictionaryValue::Create(); in GetExtraInfo() local
1352 extra_info->SetBool(kOrderNavTestCmdKey, true); in GetExtraInfo()
1353 return extra_info; in GetExtraInfo()
[all …]
Drequest_handler_unittest.cc81 CefRefPtr<CefDictionaryValue> extra_info = CefDictionaryValue::Create(); in SetupTest() local
82 extra_info->SetBool(kNetNotifyTestCmdKey, true); in SetupTest()
85 CreateBrowser(url1_, request_context, extra_info); in SetupTest()
403 CefRefPtr<CefDictionaryValue> extra_info) override { in OnBrowserCreated() argument
404 run_test_ = extra_info->HasKey(kNetNotifyTestCmdKey); in OnBrowserCreated()
/third_party/cef/libcef/browser/chrome/
Dchrome_browser_delegate.cc62 /*is_popup=*/false, /*is_windowless=*/false, create_params_.extra_info); in SetAsDelegate()
83 CefRefPtr<CefDictionaryValue> extra_info; in WebContentsCreated() local
87 client, platform_delegate, extra_info); in WebContentsCreated()
97 new_contents, /*is_windowless=*/false, extra_info); in WebContentsCreated()
/third_party/cef/tests/cefclient/browser/
Dbrowser_window_std_win.cc22 CefRefPtr<CefDictionaryValue> extra_info, in CreateBrowser() argument
37 extra_info, request_context); in CreateBrowser()
Dbrowser_window_osr_win.cc23 CefRefPtr<CefDictionaryValue> extra_info, in CreateBrowser() argument
30 extra_info, request_context, in CreateBrowser()
/third_party/jerryscript/tests/unit-ext/
Dtest-ext-arg.c195 int expected_num = (int) c_arg_p->extra_info; in my_custom_transform()
731 uintptr_t *extra_info = (uintptr_t *) (c_arg_p->extra_info); in jerry_arg_to_double_or_bool_t() local
735 bool last_parameter = (extra_info[2] == 1); in jerry_arg_to_double_or_bool_t()
740 (jerryx_arg_coerce_t) extra_info[0], in jerry_arg_to_double_or_bool_t()
763 (jerryx_arg_coerce_t) extra_info[0], in jerry_arg_to_double_or_bool_t()
764 (jerryx_arg_optional_t) extra_info[1]); in jerry_arg_to_double_or_bool_t()
/third_party/cef/tests/shared/renderer/
Dclient_app_renderer.cc23 CefRefPtr<CefDictionaryValue> extra_info) { in OnBrowserCreated() argument
26 (*it)->OnBrowserCreated(this, browser, extra_info); in OnBrowserCreated()

1234