/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | mod.rs | 40 use syn::token::{Brace, Bracket, Paren};
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cSparseTexture2Tests.hpp | 280 void replaceToken(const GLchar* token, const GLchar* text, std::string& string);
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | s390x.pm | 133 my $token; 135 $token=lc(".$1") if (/^.*::([A-Z_]+)$/);# uppercase: directive 136 $token="\t$1" if (/^.*::([a-z]+)$/); # lowercase: mnemonic 137 confess(err("PARSE")) if (!defined($token)); 139 $token.="\t" if ($#_>=0); 140 $out.=$token.join(',',@_)."\n";
|
/third_party/openssl/crypto/perlasm/ |
H A D | s390x.pm | 133 my $token; 135 $token=lc(".$1") if (/^.*::([A-Z_]+)$/);# uppercase: directive 136 $token="\t$1" if (/^.*::([a-z]+)$/); # lowercase: mnemonic 137 confess(err("PARSE")) if (!defined($token)); 139 $token.="\t" if ($#_>=0); 140 $out.=$token.join(',',@_)."\n";
|
/third_party/python/Modules/ |
H A D | _tkinter.c | 2570 /**** Tktt Object (timer token) ****/ 2576 Tcl_TimerToken token; member 2592 if (v->token != NULL) { in _tkinter_tktimertoken_deletetimerhandler_impl() 2593 Tcl_DeleteTimerHandler(v->token); in _tkinter_tktimertoken_deletetimerhandler_impl() 2594 v->token = NULL; in _tkinter_tktimertoken_deletetimerhandler_impl() 2614 v->token = NULL; in Tktt_New() 2699 v->token = Tcl_CreateTimerHandler(milliseconds, TimerHandler, in _tkinter_tkapp_createtimerhandler_impl()
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | text_format_test.py | 1951 token = tokenizer.token 1952 self.assertEqual(token, m) 2089 self.assertEqual(tokenizer.token, ':') 2123 self.assertEqual(tokenizer.token, ':') 2138 self.assertEqual(tokenizer.token, ':')
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | scan.c | 207 !wpa_s->beacon_rep_data.token; in wpas_trigger_scan_cb() 238 if (wpa_s->beacon_rep_data.token) in wpas_trigger_scan_cb() 2897 const char *token, *context = NULL; in wpas_sched_scan_plans_set() local 2911 while ((token = cstr_token(cmd, " ", &context))) { in wpas_sched_scan_plans_set() 2923 ret = sscanf(token, "%u:%u", &scan_plan->interval, in wpas_sched_scan_plans_set() 2927 "Invalid sched scan plan input: %s", token); in wpas_sched_scan_plans_set()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | scan.c | 251 !wpa_s->beacon_rep_data.token; in wpas_trigger_scan_cb() 286 if (wpa_s->beacon_rep_data.token) in wpas_trigger_scan_cb() 3328 const char *token, *context = NULL; in wpas_sched_scan_plans_set() local 3342 while ((token = cstr_token(cmd, " ", &context))) { in wpas_sched_scan_plans_set() 3354 ret = sscanf(token, "%u:%u", &scan_plan->interval, in wpas_sched_scan_plans_set() 3358 "Invalid sched scan plan input: %s", token); in wpas_sched_scan_plans_set()
|
/foundation/distributedhardware/device_manager/services/implementation/src/authentication/ |
H A D | dm_auth_manager.cpp | 232 authRequestContext_->token = std::to_string(GenRandInt(MIN_PIN_TOKEN, MAX_PIN_TOKEN)); in GetAuthParam() 613 jsonObj[PIN_TOKEN] = authResponseContext_->token; in OnGroupCreated() 922 authRequestContext_->token, STATUS_DM_SHOW_AUTHORIZE_UI, DM_OK); in ProcessAuthRequest() 965 authRequestContext_->token, AuthState::AUTH_REQUEST_NEGOTIATE_DONE, ERR_DM_UNSUPPORTED_AUTH_TYPE); in ProcessAuthRequestExt() 996 authRequestContext_->token, STATUS_DM_SHOW_AUTHORIZE_UI, DM_OK); in ProcessAuthRequestExt() 1105 authRequestContext_->token, STATUS_DM_SHOW_PIN_INPUT_UI, DM_OK); in StartRespAuthProcess() 1233 authRequestContext_->token, authResponseContext_->state, authRequestContext_->reason); in SrcAuthenticateFinish() 1399 jsonObj[TAG_TOKEN] = authResponseContext_->token; in ShowConfigDialog()
|
/third_party/openGLES/xml/ |
H A D | readme.tex | 377 token (enumerant) names used in the API. 432 Each \tag{enum} tag defines a single GL (or other API) token. 439 \item \attr{name} - enumerant name, a legal C preprocessor token name. 442 the same token (used to address a few accidental incompatibilities 456 where token names have been changed as a result of profile changes 671 \item \attr{name} - version name, used as the C preprocessor token under 674 \item \attr{protect} - an additional preprocessor token used to protect 762 \item \attr{protect} - an additional preprocessor token used to protect
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/ |
H A D | ui_ability.cpp | 76 std::shared_ptr<AppExecFwk::AbilityHandler> &handler, const sptr<IRemoteObject> &token) in Init() 87 token_ = token; in Init() 854 void UIAbility::OnDisplayInfoChange(const sptr<IRemoteObject>& token, Rosen::DisplayId displayId, float density, in OnDisplayInfoChange() argument 74 Init(std::shared_ptr<AppExecFwk::AbilityLocalRecord> record, const std::shared_ptr<AppExecFwk::OHOSApplication> application, std::shared_ptr<AppExecFwk::AbilityHandler> &handler, const sptr<IRemoteObject> &token) Init() argument
|
/foundation/ability/ability_runtime/test/unittest/application_context_test/ |
H A D | application_context_test.cpp | 703 sptr<IRemoteObject> token = new OHOS::AppExecFwk::MockAbilityToken(); in HWTEST_F() local 704 context_->SetToken(token); in HWTEST_F() 706 EXPECT_EQ(ret, token); in HWTEST_F()
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/ability_runtime/ |
H A D | cj_ui_ability.cpp | 108 const sptr<IRemoteObject> &token) in Init() 120 UIAbility::Init(record, application, handler, token); in Init() 794 executeInfo.token = context->GetToken(); in GetInsightIntentExecutorInfo() 106 Init(std::shared_ptr<AppExecFwk::AbilityLocalRecord> record, const std::shared_ptr<OHOSApplication> application, std::shared_ptr<AbilityHandler> &handler, const sptr<IRemoteObject> &token) Init() argument
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/ui_extension_ability/ |
H A D | js_ui_extension_base.cpp | 122 const sptr<IRemoteObject> &token) in Init() 444 executorInfo.token = context_->GetToken(); in ForegroundWindowWithInsightIntent() 892 const sptr<IRemoteObject> &token, Rosen::DisplayId displayId, float density, Rosen::DisplayOrientation orientation) in OnDisplayInfoChange() 120 Init(const std::shared_ptr<AbilityLocalRecord> &record, const std::shared_ptr<OHOSApplication> &application, std::shared_ptr<AbilityHandler> &handler, const sptr<IRemoteObject> &token) Init() argument 891 OnDisplayInfoChange( const sptr<IRemoteObject> &token, Rosen::DisplayId displayId, float density, Rosen::DisplayOrientation orientation) OnDisplayInfoChange() argument
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/security_component/ |
H A D | security_component_handler.cpp | 752 sptr<IRemoteObject> token = container->GetToken(); in ReportSecurityComponentClickEventInner() local 754 token = container->GetParentToken(); in ReportSecurityComponentClickEventInner() 757 componentInfo, event, token, std::move(callback)); in ReportSecurityComponentClickEventInner()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_render_service_client.cpp | 164 sptr<VSyncIConnectionToken> token = new IRemoteStub<VSyncIConnectionToken>(); in CreateVSyncReceiver() local 165 sptr<IVSyncConnection> conn = renderService->CreateVSyncConnection(name, token, id, windowNodeId); in CreateVSyncReceiver() 170 return std::make_shared<VSyncReceiver>(conn, token->AsObject(), looper, name); in CreateVSyncReceiver()
|
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/test/unittest/ |
H A D | vsync_generator_test.cpp | 63 sptr<VSyncIConnectionToken> token = new IRemoteStub<VSyncIConnectionToken>();
in SetUpTestCase() local 64 sptr<VSyncConnection> conn = new VSyncConnection(rsDistributor, "generator_test", token->AsObject());
in SetUpTestCase() 68 receiver = std::make_shared<VSyncReceiver>(conn, token->AsObject(), handler_, "generator_test");
in SetUpTestCase()
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/ |
H A D | media_datashare_ext_ability.cpp | 93 const sptr<IRemoteObject> &token) in Init() 95 if ((record == nullptr) || (application == nullptr) || (handler == nullptr) || (token == nullptr)) { in Init() 100 DataShareExtAbility::Init(record, application, handler, token); in Init() 91 Init(const shared_ptr<AbilityLocalRecord> &record, const shared_ptr<OHOSApplication> &application, shared_ptr<AbilityHandler> &handler, const sptr<IRemoteObject> &token) Init() argument
|
/foundation/window/window_manager/window_scene/session/host/include/ |
H A D | session.h | 134 sptr<WindowSessionProperty> property = nullptr, sptr<IRemoteObject> token = nullptr, 138 sptr<IRemoteObject> token = nullptr, int32_t pid = -1, int32_t uid = -1); 399 void SetAbilityToken(sptr<IRemoteObject> token);
|
H A D | scene_session.h | 150 sptr<WindowSessionProperty> property = nullptr, sptr<IRemoteObject> token = nullptr, 154 sptr<WindowSessionProperty> property = nullptr, sptr<IRemoteObject> token = nullptr, 158 sptr<IRemoteObject> token = nullptr, int32_t pid = -1, int32_t uid = -1);
|
/foundation/window/window_manager/wmserver/src/zidl/ |
H A D | window_manager_proxy.cpp | 33 const std::shared_ptr<RSSurfaceNode>& surfaceNode, uint32_t& windowId, sptr<IRemoteObject> token) in CreateWindow() 57 if (token != nullptr) { in CreateWindow() 58 if (!data.WriteRemoteObject(token)) { in CreateWindow() 32 CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property, const std::shared_ptr<RSSurfaceNode>& surfaceNode, uint32_t& windowId, sptr<IRemoteObject> token) CreateWindow() argument
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/ |
H A D | wil6210.h | 614 u8 tid, u8 token, u16 status, bool amsdu, 1271 u8 mid, u8 cid, u8 tid, u8 token, 1439 u8 tid, u8 token, u16 status, bool amsdu,
|
/kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlegacy/ |
H A D | commands.h | 2139 __le16 len; /* number of bytes starting from token */ 2140 u8 token; /* token id */ member 2158 u8 token; member 2209 u8 token; member
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/ |
H A D | htt.h | 1674 __le32 token; member 1692 __le32 token; member 2288 __le32 token,
|
/kernel/linux/linux-5.10/include/linux/mlx5/ |
H A D | device.h | 533 u8 token; member 651 __be32 token; member 759 u8 token; member
|