/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackFuzzLayoutCase.cpp | 356 const char* token; in operator <<() member 369 str << bitDesc[descNdx].token; in operator <<()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ubo/ |
H A D | vktUniformBlockCase.cpp | 291 const char* token; in operator <<() member 309 str << bitDesc[descNdx].token; in operator <<()
|
/third_party/python/Lib/test/test_email/ |
H A D | test__header_value_parser.py | 176 token = parser.get_unstructured(value) 177 return token, '' 967 # token. 2949 # XXX Need tests with comments on various sides of a unicode token,
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsUniformBlockCase.cpp | 89 const char* token; in operator <<() member 106 str << bitDesc[descNdx].token; in operator <<()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackFuzzLayoutCase.cpp | 356 const char* token; in operator <<() member 369 str << bitDesc[descNdx].token; in operator <<()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ubo/ |
H A D | vktUniformBlockCase.cpp | 291 const char* token; in operator <<() member 309 str << bitDesc[descNdx].token; in operator <<()
|
/foundation/window/window_manager/interfaces/innerkits/wm/ |
H A D | window.h | 529 * @param iSession session token of window session 531 * @param identityToken identity token of sceneSession 1011 * @brief Bind Dialog window to target token. 1013 * @param targetToken Window token of target. 1382 BackupAndRestoreType type = BackupAndRestoreType::NONE, sptr<IRemoteObject> token = nullptr, in NapiSetUIContent()
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/coap_discover/ |
H A D | coap_discover.c | 130 if (!coap_add_token(pdu, coapRequest->tokenLength, coapRequest->token)) { in CoapPackToPdu() 131 DFINDER_LOGW(TAG, "cannot add token to request"); in CoapPackToPdu()
|
/foundation/window/window_manager/wm/include/ |
H A D | window_impl.h | 279 BackupAndRestoreType type, sptr<IRemoteObject> token, AppExecFwk::Ability* ability) override;
|
/third_party/libwebsockets/lib/jose/jws/ |
H A D | jws.c | 1003 !strncmp(jose.alg->alg, ts.token, ts.token_len)) in lws_jwt_signed_validate() 1288 * can read the token or pages generated with it. in lws_jwt_token_sanity() 1291 * generated pages still when the auth token is expiring (and the user in lws_jwt_token_sanity()
|
/third_party/libwebsockets/lib/core-net/ |
H A D | private-lib-core-net.h | 1428 html_parser_cb(const hubbub_token *token, void *pw);
|
/third_party/node/src/ |
H A D | node_http2.h | 263 // HTTP/2 does not support identifying header names by token id. 265 static const char* ToHttpHeaderName(int32_t token) { return nullptr; } in ToHttpHeaderName()
|
/third_party/nghttp2/src/ |
H A D | http2_test.cc | 106 CU_ASSERT(http2::HD_TE == nva[0].token); in test_http2_add_header()
|
H A D | shrpx_http_downstream_connection.cc | 933 if (kv.token == http2::HD_TRANSFER_ENCODING && in htp_hdrs_completecb()
|
H A D | shrpx_https_upstream.cc | 144 // We happen to have the same value for method token. in htp_uricb() 349 if (kv.token == http2::HD_TRANSFER_ENCODING && in htp_hdrs_completecb()
|
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/ |
H A D | js_window.cpp | 2074 sptr<IRemoteObject> token = NAPI_ohos_rpc_getNativeRemoteObject(env, argv0);
in GetBindDialogToken() local 2075 if (token != nullptr) {
in GetBindDialogToken() 2076 return token;
in GetBindDialogToken() 2101 sptr<IRemoteObject> token = GetBindDialogToken(env, argv[0]);
in OnBindDialogTarget() local 2102 if (token == nullptr) {
in OnBindDialogTarget() 2103 TLOGE(WmsLogTag::WMS_DIALOG, "token is null!");
in OnBindDialogTarget() 2116 [weakToken, token](napi_env env, NapiAsyncTask& task, int32_t status) mutable {
in OnBindDialogTarget() 2123 WmErrorCode ret = WM_JS_TO_ERROR_CODE_MAP.at(weakWindow->BindDialogTarget(token));
in OnBindDialogTarget()
|
/third_party/node/deps/undici/ |
H A D | undici.js | 1262 const token = policyHeader[i - 1].trim(); 1263 if (referrerPolicyTokens.has(token)) { 1264 policy = token; 1478 for (const token of metadata.split(" ")) { 1480 const parsedToken = parseHashWithOptions.exec(token);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_main_thread.cpp | 559 sptr<VSyncIConnectionToken> token = new IRemoteStub<VSyncIConnectionToken>(); in Init() local 560 sptr<VSyncConnection> conn = new VSyncConnection(rsVSyncDistributor_, "rs", token->AsObject()); in Init() 564 receiver_ = std::make_shared<VSyncReceiver>(conn, token->AsObject(), handler_, "rs"); in Init()
|
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/ |
H A D | ReactorUnitTests.cpp | 3906 std::string token; 3907 while(fin >> token) 3909 if(token.find(addressString) != std::string::npos)
|
/third_party/glslang/glslang/HLSL/ |
H A D | hlslParseHelper.cpp | 6510 void HlslParseContext::constantValueCheck(TIntermTyped* node, const char* token) in constantValueCheck() argument 6513 error(node->getLoc(), "constant expression required", token, ""); in constantValueCheck() 6520 void HlslParseContext::integerCheck(const TIntermTyped* node, const char* token) in integerCheck() argument 6525 error(node->getLoc(), "scalar integer expression required", token, ""); in integerCheck() 6532 void HlslParseContext::globalCheck(const TSourceLoc& loc, const char* token) in globalCheck() argument 6535 error(loc, "not allowed in nested scope", token, ""); in globalCheck()
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | glslang_tab.cpp | 126 YYSYMBOL_YYUNDEF = 2, /* "invalid token" */ 1070 /* YYMAXUTOK -- Last valid token kind. */ 1249 "\"end of file\"", "error", "\"invalid token\"", "CONST", "BOOL", "INT", 1662 positive, shift that token. If negative, reduce the rule whose 4560 yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind)); in yy_symbol_print() 4799 that there is no unexpected or expected token to report. In that 4805 - Of course, the expected token list depends on states to have 4810 token list. However, the list is correct for canonical LR with 4811 one exception: it will still contain any token that will not be 4831 about the unexpected token YYTOKE [all...] |
/third_party/glfw/src/ |
H A D | wl_window.c | 2096 const char* token) in xdgActivationHandleDone() 2103 xdg_activation_v1_activate(_glfw.wl.activationManager, token, window->wl.surface); in xdgActivationHandleDone() 2094 xdgActivationHandleDone(void* userData, struct xdg_activation_token_v1* activationToken, const char* token) xdgActivationHandleDone() argument
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | speed.c | 3418 char *token = *string; in sstrsep() local 3439 return token; in sstrsep()
|
/third_party/openssl/apps/ |
H A D | speed.c | 3394 char *token = *string; in sstrsep() local 3415 return token; in sstrsep()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ssbo/ |
H A D | vktSSBOLayoutCase.cpp | 76 const char* token; in operator <<() member 93 str << bitDesc[descNdx].token; in operator <<()
|