Home
last modified time | relevance | path

Searched refs:token (Results 76 - 100 of 2250) sorted by relevance

12345678910>>...90

/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_native_test/ability_delegator/
H A Dmock_ability_delegator_stub.cpp35 int MockAbilityDelegatorStub::CloseAbility(const sptr<IRemoteObject>& token, int resultCode, const Want* resultWant) in CloseAbility() argument
53 int MockAbilityDelegatorStub::MinimizeAbility(const sptr<IRemoteObject>& token, bool fromUser) in MinimizeAbility() argument
107 const sptr<IRemoteObject> &token, const sptr<IRemoteObject> &callStub) in CallRequestDone()
159 int MockAbilityDelegatorStub::StopServiceAbility(const Want& want, int32_t userId, const sptr<IRemoteObject> &token) in StopServiceAbility() argument
164 int MockAbilityDelegatorStub::GetTopAbility(sptr<IRemoteObject>& token) in GetTopAbility() argument
167 token = sptr<IRemoteObject>(new MockAbilityDelegatorStub); in GetTopAbility()
171 int MockAbilityDelegatorStub::DelegatorDoAbilityForeground(const sptr<IRemoteObject>& token) in DelegatorDoAbilityForeground() argument
177 int MockAbilityDelegatorStub::DelegatorDoAbilityBackground(const sptr<IRemoteObject>& token) in DelegatorDoAbilityBackground() argument
191 int MockAbilityDelegatorStub::DoAbilityForeground(const sptr<IRemoteObject>& token, uint32_t flag) in DoAbilityForeground() argument
196 int MockAbilityDelegatorStub::DoAbilityBackground(const sptr<IRemoteObject>& token, uint32_ argument
106 CallRequestDone( const sptr<IRemoteObject> &token, const sptr<IRemoteObject> &callStub) CallRequestDone() argument
201 GetMissionIdByToken(const sptr<IRemoteObject>& token) GetMissionIdByToken() argument
206 GetAbilityTokenByCalleeObj(const sptr<IRemoteObject> &callStub, sptr<IRemoteObject> &token) GetAbilityTokenByCalleeObj() argument
236 CloseAbility(const sptr<IRemoteObject>& token, int resultCode, const Want* resultWant) CloseAbility() argument
241 MinimizeAbility(const sptr<IRemoteObject>& token, bool fromUser) MinimizeAbility() argument
251 StopServiceAbility(const Want& want, int32_t userId, const sptr<IRemoteObject> &token) StopServiceAbility() argument
299 CallRequestDone( const sptr<IRemoteObject> &token, const sptr<IRemoteObject> &callStub) CallRequestDone() argument
347 GetTopAbility(sptr<IRemoteObject>& token) GetTopAbility() argument
370 DelegatorDoAbilityForeground(const sptr<IRemoteObject>& token) DelegatorDoAbilityForeground() argument
376 DelegatorDoAbilityBackground(const sptr<IRemoteObject>& token) DelegatorDoAbilityBackground() argument
390 DoAbilityForeground(const sptr<IRemoteObject>& token, uint32_t flag) DoAbilityForeground() argument
395 DoAbilityBackground(const sptr<IRemoteObject>& token, uint32_t flag) DoAbilityBackground() argument
400 GetMissionIdByToken(const sptr<IRemoteObject>& token) GetMissionIdByToken() argument
405 GetAbilityTokenByCalleeObj(const sptr<IRemoteObject> &callStub, sptr<IRemoteObject> &token) GetAbilityTokenByCalleeObj() argument
429 SetMissionIcon( const sptr<IRemoteObject>& token, const std::shared_ptr<OHOS::Media::PixelMap>& icon) SetMissionIcon() argument
441 SetMissionIcon( const sptr<IRemoteObject>& token, const std::shared_ptr<OHOS::Media::PixelMap>& icon) SetMissionIcon() argument
[all...]
H A Dmock_ability_delegator_stub.h46 MOCK_METHOD3(TerminateAbility, int(const sptr<IRemoteObject>& token, int resultCode, const Want* resultWant));
47 int CloseAbility(const sptr<IRemoteObject>& token, int resultCode = DEFAULT_INVAL_VALUE,
49 int MinimizeAbility(const sptr<IRemoteObject>& token, bool fromUser = false) override;
57 MOCK_METHOD2(AddWindowInfo, void(const sptr<IRemoteObject>& token, int32_t windowToken));
58 MOCK_METHOD2(AttachAbilityThread, int(const sptr<IAbilityScheduler>& scheduler, const sptr<IRemoteObject>& token));
59 MOCK_METHOD3(AbilityTransitionDone, int(const sptr<IRemoteObject>& token, int state, const PacMap&));
61 ScheduleConnectAbilityDone, int(const sptr<IRemoteObject>& token, const sptr<IRemoteObject>& remoteObject));
62 MOCK_METHOD1(ScheduleDisconnectAbilityDone, int(const sptr<IRemoteObject>& token));
63 MOCK_METHOD1(ScheduleCommandAbilityDone, int(const sptr<IRemoteObject>& token));
64 MOCK_METHOD4(ScheduleCommandAbilityWindowDone, int(const sptr<IRemoteObject> &token,
[all...]
/third_party/python/Lib/lib2to3/pgen2/
H A Dtokenize.py11 the token type (see token.py)
12 the token (a string)
13 the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
26 each time a new token is found."""
34 from lib2to3.pgen2.token import *
36 from . import token namespace
37 __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",
39 del token
[all...]
/foundation/multimedia/av_codec/services/services/codeclist/ipc/
H A Dcodeclist_service_proxy.cpp46 bool token = data.WriteInterfaceToken(CodecListServiceProxy::GetDescriptor()); in FindDecoder() local
47 CHECK_AND_RETURN_RET_LOG(token, "", "Failed to write descriptor"); in FindDecoder()
48 token = AVCodecParcel::Marshalling(data, format); in FindDecoder()
49 CHECK_AND_RETURN_RET_LOG(token, "", "Marshalling failed"); in FindDecoder()
61 bool token = data.WriteInterfaceToken(CodecListServiceProxy::GetDescriptor()); in FindEncoder() local
62 CHECK_AND_RETURN_RET_LOG(token, "", "Failed to write descriptor"); in FindEncoder()
63 token = AVCodecParcel::Marshalling(data, format); in FindEncoder()
64 CHECK_AND_RETURN_RET_LOG(token, "", "Marshalling failed"); in FindEncoder()
78 bool token = data.WriteInterfaceToken(CodecListServiceProxy::GetDescriptor()); in GetCapability() local
79 CHECK_AND_RETURN_RET_LOG(token, AVCS_ERR_UNKNOW in GetCapability()
96 bool token = data.WriteInterfaceToken(CodecListServiceProxy::GetDescriptor()); DestroyStub() local
[all...]
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/
H A Dpage_ability_impl_test.cpp75 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); in HWTEST_F() local
76 auto record = std::make_shared<AbilityLocalRecord>(abilityInfo, token, nullptr, 0); in HWTEST_F()
87 pageAbilityImpl_->Init(application, record, ability, handler, token); in HWTEST_F()
108 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); in HWTEST_F() local
109 auto record = std::make_shared<AbilityLocalRecord>(abilityInfo, token, nullptr, 0); in HWTEST_F()
120 pageAbilityImpl_->Init(application, record, ability, handler, token); in HWTEST_F()
140 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); in HWTEST_F() local
141 auto record = std::make_shared<AbilityLocalRecord>(abilityInfo, token, nullptr, 0); in HWTEST_F()
152 pageAbilityImpl_->Init(application, record, ability, handler, token); in HWTEST_F()
173 sptr<IRemoteObject> token in HWTEST_F() local
206 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
239 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
271 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
305 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
335 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
365 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
395 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
427 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
460 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
495 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
529 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
565 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
592 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
620 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
650 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
676 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
707 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
738 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
769 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
800 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
831 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
863 sptr<IRemoteObject> token = sptr<IRemoteObject>(new (std::nothrow) MockAbilityToken()); HWTEST_F() local
[all...]
H A Dextension_impl_test.cpp72 sptr<IRemoteObject> token = nullptr; in HWTEST_F() local
75 impl->Init(application, record, extension, handler, token); in HWTEST_F()
93 sptr<IRemoteObject> token = nullptr; in HWTEST_F() local
96 impl->Init(application, record, extension, handler, token); in HWTEST_F()
113 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); in HWTEST_F() local
114 auto record = std::make_shared<AppExecFwk::AbilityLocalRecord>(info, token, nullptr, 0); in HWTEST_F()
120 impl->Init(application, record, extension, handler, token); in HWTEST_F()
129 * @tc.desc: token is not null, others is null, Validation initialization failed.
135 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); in HWTEST_F() local
141 impl->Init(application, record, extension, handler, token); in HWTEST_F()
156 sptr<IRemoteObject> token = nullptr; HWTEST_F() local
179 sptr<IRemoteObject> token = nullptr; HWTEST_F() local
201 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
224 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
281 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
306 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
362 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
388 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
441 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
498 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
525 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
562 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
593 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
620 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
647 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
672 sptr<IRemoteObject> token = new AppExecFwk::MockAbilityToken(); HWTEST_F() local
[all...]
/foundation/ability/dmsfwk/services/dtbabilitymgr/include/
H A Ddistributed_ability_manager_service.h41 const std::shared_ptr<ContinuationExtraParams>& continuationExtraParams, int32_t& token) override;
42 int32_t Unregister(int32_t token) override;
44 int32_t token, const std::string& cbType, const sptr<IRemoteObject>& notifier) override;
45 int32_t UnregisterDeviceSelectionCallback(int32_t token, const std::string& cbType) override;
46 int32_t UpdateConnectStatus(int32_t token, const std::string& deviceId,
49 int32_t token, const std::shared_ptr<ContinuationExtraParams>& continuationExtraParams = nullptr) override;
52 void ScheduleStartDeviceManager(const sptr<IRemoteObject>& appProxy, int32_t token,
54 int32_t OnDeviceConnect(int32_t token, const std::vector<ContinuationResult>& continuationResults);
55 int32_t OnDeviceDisconnect(int32_t token, const std::vector<ContinuationResult>& continuationResults);
63 bool IsTokenRegistered(uint32_t accessToken, int32_t token);
[all...]
/third_party/gn/src/gn/
H A Dstring_utils.cc15 #include "gn/token.h"
22 // token has quotes around it that are not counted by the offset.
23 Err ErrInsideStringToken(const Token& token, in ErrInsideStringToken() argument
28 // The "+1" is skipping over the " at the beginning of the token. in ErrInsideStringToken()
30 Location begin_loc(token.location().file(), token.location().line_number(), in ErrInsideStringToken()
31 token.location().column_number() + int_offset + 1); in ErrInsideStringToken()
32 Location end_loc(token.location().file(), token.location().line_number(), in ErrInsideStringToken()
33 token in ErrInsideStringToken()
56 AppendInterpolatedExpression(Scope* scope, const Token& token, const char* input, size_t begin_offset, size_t end_offset, std::string* output, Err* err) AppendInterpolatedExpression() argument
110 AppendInterpolatedIdentifier(Scope* scope, const Token& token, const char* input, size_t begin_offset, size_t end_offset, std::string* output, Err* err) AppendInterpolatedIdentifier() argument
140 AppendStringInterpolation(Scope* scope, const Token& token, const char* input, size_t size, size_t* i, std::string* output, Err* err) AppendStringInterpolation() argument
208 AppendHexByte(Scope* scope, const Token& token, const char* input, size_t size, size_t* i, std::string* output, Err* err) AppendHexByte() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
H A Dpreprocessor.y69 angle::pp::Token *token;
96 %token TOK_CONST_INT
97 %token TOK_IDENTIFIER
124 // This rule should be applied right after the token is lexed, so we can
125 // refer to context->token in the error message.
127 context->token->location, context->token->text);
210 context->token->location,
235 context->token->location,
263 context->token
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DExpressionParser.y81 pp::Token* token;
108 %token TOK_CONST_INT
109 %token TOK_IDENTIFIER
136 // This rule should be applied right after the token is lexed, so we can
137 // refer to context->token in the error message.
139 context->token->location, context->token->text);
222 context->token->location,
247 context->token->location,
275 context->token
[all...]
/third_party/mesa3d/src/compiler/glsl/glcpp/
H A Dglcpp-parse.y103 _token_list_append(glcpp_parser_t *parser, token_list_t *list, token_t *token);
127 * prefixing a token of type 'head_token_type').
196 %token DEFINED ELIF_EXPANDED HASH_TOKEN DEFINE_TOKEN FUNC_IDENTIFIER OBJ_IDENTIFIER ELIF ELSE ENDIF ERROR_TOKEN IF IFDEF IFNDEF LINE PRAGMA UNDEF VERSION_TOKEN GARBAGE IDENTIFIER IF_EXPANDED INTEGER INTEGER_STRING LINE_EXPANDED NEWLINE OTHER PLACEHOLDER SPACE PLUS_PLUS MINUS_MINUS PATH INCLUDE
197 %token PASTE
202 %type <token> preprocessing_token
1055 token_t *token;
1057 token = linear_alloc_child(parser->linalloc, sizeof(token_t));
1058 token->type = type;
1059 token->value.str = str;
1060 token
[all...]
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dapp_exception_manager.cpp30 void AppExceptionManager::LaunchAbilityFailed(sptr<IRemoteObject> token, const std::string &msg) in LaunchAbilityFailed() argument
32 FreezeUtil::LifecycleFlow flow{token, FreezeUtil::TimeoutState::LOAD}; in LaunchAbilityFailed()
34 NotifyLifecycleException(LifecycleException::LAUNCH_ABILITY_FAIL, token); in LaunchAbilityFailed()
37 void AppExceptionManager::ForegroundAppFailed(sptr<IRemoteObject> token, const std::string &msg) in ForegroundAppFailed() argument
39 FreezeUtil::LifecycleFlow flow{token, FreezeUtil::TimeoutState::FOREGROUND}; in ForegroundAppFailed()
41 NotifyLifecycleException(LifecycleException::FOREGROUND_APP_FAIL, token); in ForegroundAppFailed()
44 void AppExceptionManager::ForegroundAppWait(sptr<IRemoteObject> token, const std::string &msg) in ForegroundAppWait() argument
46 FreezeUtil::LifecycleFlow flow{token, FreezeUtil::TimeoutState::FOREGROUND}; in ForegroundAppWait()
48 NotifyLifecycleException(LifecycleException::FOREGROUND_APP_WAIT, token); in ForegroundAppWait()
51 void AppExceptionManager::NotifyLifecycleException(LifecycleException type, sptr<IRemoteObject> token) in NotifyLifecycleException() argument
[all...]
/third_party/glslang/glslang/HLSL/
H A DhlslTokenStream.cpp69 // already pre-processed token stream.
71 // This interrupts current token processing which must be restored
81 currentTokenStack.push_back(token); in pushTokenStream()
83 // set up new token stream in pushTokenStream()
86 // start position at first token: in pushTokenStream()
87 token = (*tokens)[0]; in pushTokenStream()
96 token = currentTokenStack.back(); in popTokenStream()
100 // Load 'token' with the next token in the stream of tokens.
103 pushTokenBuffer(token); in advanceToken()
[all...]
/device/soc/rockchip/common/sdk_linux/scripts/kconfig/
H A Dparser.y53 %token <string> T_HELPTEXT
54 %token <string> T_WORD
55 %token <string> T_WORD_QUOTE
56 %token T_ALLNOCONFIG_Y
57 %token T_BOOL
58 %token T_CHOICE
59 %token T_CLOSE_PAREN
60 %token T_COLON_EQUAL
61 %token T_COMMENT
62 %token T_CONFI
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DShader.cpp133 Shader::Instruction::Instruction(const unsigned long *token, int size, unsigned char majorVersion) : analysis(0) in Instruction() argument
135 parseOperationToken(*token++, majorVersion); in Instruction()
148 if(size > 0) parseSourceToken(0, token++, majorVersion); in Instruction()
149 if(size > 1) parseSourceToken(1, token++, majorVersion); in Instruction()
150 if(size > 2) parseSourceToken(2, token++, majorVersion); in Instruction()
155 parseDeclarationToken(*token++); in Instruction()
156 parseDestinationToken(token++, majorVersion); in Instruction()
162 parseDestinationToken(token, majorVersion); in Instruction()
166 token++; in Instruction()
170 token in Instruction()
533 parseOperationToken(unsigned long token, unsigned char majorVersion) parseOperationToken() argument
589 parseDeclarationToken(unsigned long token) parseDeclarationToken() argument
596 parseDestinationToken(const unsigned long *token, unsigned char majorVersion) parseDestinationToken() argument
640 parseSourceToken(int i, const unsigned long *token, unsigned char majorVersion) parseSourceToken() argument
1150 parse(const unsigned long *token) parse() argument
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dprofile-data-reader.cc55 std::string token; in EnsureInitProfileData() local
57 if (!std::getline(line_stream, token, ',')) continue; in EnsureInitProfileData()
58 if (token == ProfileDataFromFileConstants::kBlockCounterMarker) { in EnsureInitProfileData()
64 CHECK(std::getline(line_stream, token, ',')); in EnsureInitProfileData()
66 uint32_t id = static_cast<uint32_t>(strtoul(token.c_str(), &end, 0)); in EnsureInitProfileData()
67 CHECK(errno == 0 && end != token.c_str()); in EnsureInitProfileData()
68 std::getline(line_stream, token, ','); in EnsureInitProfileData()
70 double count = strtod(token.c_str(), &end); in EnsureInitProfileData()
71 CHECK(errno == 0 && end != token.c_str()); in EnsureInitProfileData()
77 } else if (token in EnsureInitProfileData()
[all...]
/foundation/ability/dmsfwk/services/dtbabilitymgr/src/
H A Ddistributed_ability_manager_stub.cpp68 HILOGE("interface token check failed!"); in OnRemoteRequest()
96 int32_t token = -1; in RegisterInner() local
106 int32_t result = Register(continuationExtraParamsPtr, token); in RegisterInner()
109 PARCEL_WRITE_HELPER(reply, Int32, token); in RegisterInner()
115 int32_t token = -1; in UnregisterInner() local
116 PARCEL_READ_HELPER(data, Int32, token); in UnregisterInner()
117 int32_t result = Unregister(token); in UnregisterInner()
125 int32_t token = -1; in RegisterDeviceSelectionCallbackInner() local
126 PARCEL_READ_HELPER(data, Int32, token); in RegisterDeviceSelectionCallbackInner()
138 int32_t result = RegisterDeviceSelectionCallback(token, cbTyp in RegisterDeviceSelectionCallbackInner()
147 int32_t token = -1; UnregisterDeviceSelectionCallbackInner() local
163 int32_t token = -1; UpdateConnectStatusInner() local
176 int32_t token = -1; StartDeviceManagerInner() local
[all...]
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dread.c47 struct UString *token,
50 static UChar32 getNextChar (UCHARBUF *buf, UBool skipwhite, struct UString *token, UErrorCode *status);
51 static void seekUntilNewline (UCHARBUF *buf, struct UString *token, UErrorCode *status);
52 static void seekUntilEndOfComment (UCHARBUF *buf, struct UString *token, UErrorCode *status);
60 /* Read and return the next token from the stream. If the token is of
61 type eString, fill in the token parameter with the token. If the
62 token is eError, then the status parameter will contain the
70 struct UString *token, in getNextToken()
69 getNextToken(UCHARBUF* buf, struct UString *token, uint32_t *linenumber, struct UString *comment, UErrorCode *status) getNextToken() argument
123 getStringToken(UCHARBUF* buf, UChar32 initialChar, struct UString *token, UErrorCode *status) getStringToken() argument
324 getNextChar(UCHARBUF* buf, UBool skipwhite, struct UString *token, UErrorCode *status) getNextChar() argument
381 seekUntilNewline(UCHARBUF* buf, struct UString *token, UErrorCode *status) seekUntilNewline() argument
399 seekUntilEndOfComment(UCHARBUF *buf, struct UString *token, UErrorCode *status) seekUntilEndOfComment() argument
[all...]
/third_party/icu/icu4c/source/tools/genrb/
H A Dread.c47 struct UString *token,
50 static UChar32 getNextChar (UCHARBUF *buf, UBool skipwhite, struct UString *token, UErrorCode *status);
51 static void seekUntilNewline (UCHARBUF *buf, struct UString *token, UErrorCode *status);
52 static void seekUntilEndOfComment (UCHARBUF *buf, struct UString *token, UErrorCode *status);
60 /* Read and return the next token from the stream. If the token is of
61 type eString, fill in the token parameter with the token. If the
62 token is eError, then the status parameter will contain the
70 struct UString *token, in getNextToken()
69 getNextToken(UCHARBUF* buf, struct UString *token, uint32_t *linenumber, struct UString *comment, UErrorCode *status) getNextToken() argument
123 getStringToken(UCHARBUF* buf, UChar32 initialChar, struct UString *token, UErrorCode *status) getStringToken() argument
324 getNextChar(UCHARBUF* buf, UBool skipwhite, struct UString *token, UErrorCode *status) getNextChar() argument
381 seekUntilNewline(UCHARBUF* buf, struct UString *token, UErrorCode *status) seekUntilNewline() argument
399 seekUntilEndOfComment(UCHARBUF *buf, struct UString *token, UErrorCode *status) seekUntilEndOfComment() argument
[all...]
/third_party/python/Lib/
H A Dshlex.py51 self.token = ''
73 "Push a token onto the stack popped by the get_token method"
75 print("shlex: pushing token " + repr(tok))
102 "Get a token from the input stream (or from stack if it's nonempty)"
106 print("shlex: popping token " + repr(tok))
108 # No pushback. Get a token.
128 print("shlex: token=" + repr(raw))
130 print("shlex: token=EOF")
147 self.token = '' # past end of file
156 if self.token o
[all...]
/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A Dread.c45 struct UString *token,
48 static UChar32 getNextChar (UCHARBUF *buf, UBool skipwhite, struct UString *token, UErrorCode *status);
49 static void seekUntilNewline (UCHARBUF *buf, struct UString *token, UErrorCode *status);
50 static void seekUntilEndOfComment (UCHARBUF *buf, struct UString *token, UErrorCode *status);
58 /* Read and return the next token from the stream. If the token is of
59 type eString, fill in the token parameter with the token. If the
60 token is eError, then the status parameter will contain the
68 struct UString *token, in getNextToken()
67 getNextToken(UCHARBUF* buf, struct UString *token, uint32_t *linenumber, struct UString *comment, UErrorCode *status) getNextToken() argument
121 getStringToken(UCHARBUF* buf, UChar32 initialChar, struct UString *token, UErrorCode *status) getStringToken() argument
322 getNextChar(UCHARBUF* buf, UBool skipwhite, struct UString *token, UErrorCode *status) getNextChar() argument
379 seekUntilNewline(UCHARBUF* buf, struct UString *token, UErrorCode *status) seekUntilNewline() argument
397 seekUntilEndOfComment(UCHARBUF *buf, struct UString *token, UErrorCode *status) seekUntilEndOfComment() argument
[all...]
/foundation/multimedia/player_framework/services/services/avmetadatahelper/ipc/
H A Davmetadatahelper_service_proxy.cpp46 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); in DestroyStub() local
47 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATION, "Failed to write descriptor!"); in DestroyStub()
62 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); in SetSource() local
63 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATION, "Failed to write descriptor!"); in SetSource()
81 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); in SetSource() local
82 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATION, "Failed to write descriptor!"); in SetSource()
102 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); in SetSource() local
103 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATION, "Failed to write descriptor!"); in SetSource()
119 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); in SetListenerObject() local
120 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATIO in SetListenerObject()
136 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); ResolveMetadata() local
156 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); GetAVMetadata() local
187 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); ResolveMetadataMap() local
217 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); FetchArtPicture() local
234 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); FetchFrameYuv() local
259 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); FetchFrameAtTime() local
281 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); Release() local
294 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); SetHelperCallback() local
310 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); GetTimeByFrameIndex() local
328 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); GetFrameIndexByTime() local
346 bool token = data.WriteInterfaceToken(AVMetadataHelperServiceProxy::GetDescriptor()); SetIsNapiInstance() local
[all...]
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/examples/
H A Dnegate.js21 .filter((token) => token.kind === 'option')
22 .forEach((token) => {
23 if (token.name.startsWith('no-')) {
25 const positiveName = token.name.slice(3);
27 delete values[token.name];
30 values[token.name] = token.value ?? true;
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-scanner-ops.c69 if (context_p->token.type != LEXER_LEFT_BRACE) in scanner_check_arrow_body()
92 if (context_p->token.type != LEXER_ARROW in scanner_check_arrow()
93 || (context_p->token.flags & LEXER_WAS_NEWLINE)) in scanner_check_arrow()
158 /* Skip the => token, which size is two. */ in scanner_scan_simple_arrow()
161 context_p->token.flags = (uint8_t) (context_p->token.flags & ~LEXER_NO_SKIP_SPACES); in scanner_scan_simple_arrow()
180 if (context_p->token.type == LEXER_THREE_DOTS) in scanner_check_arrow_arg()
185 if (context_p->token.type == LEXER_LITERAL in scanner_check_arrow_arg()
186 && context_p->token.lit_location.type == LEXER_IDENT_LITERAL) in scanner_check_arrow_arg()
202 if (context_p->token in scanner_check_arrow_arg()
[all...]
/foundation/ability/ability_runtime/test/fuzztest/applicationanrlistener_fuzzer/
H A Dapplicationanrlistener_fuzzer.cpp76 sptr<Token> token = nullptr; in GetFuzzAbilityRecord() local
90 sptr<Token> token = nullptr; in GetFuzzAbilityToken() local
93 token = abilityRecord->GetToken(); in GetFuzzAbilityToken()
95 return token; in GetFuzzAbilityToken()
112 sptr<IRemoteObject> token = GetFuzzAbilityToken(); in DoSomethingInterestingWithMyAPI() local
126 freeInstallManager->IsTopAbility(token); in DoSomethingInterestingWithMyAPI()
127 freeInstallManager->StartFreeInstall(*want, int32Param, intParam, token); in DoSomethingInterestingWithMyAPI()
128 freeInstallManager->RemoteFreeInstall(*want, int32Param, intParam, token); in DoSomethingInterestingWithMyAPI()
129 freeInstallManager->BuildFreeInstallInfo(*want, int32Param, intParam, token, boolParam); in DoSomethingInterestingWithMyAPI()
130 freeInstallManager->StartRemoteFreeInstall(*want, intParam, int32Param, token); in DoSomethingInterestingWithMyAPI()
[all...]

Completed in 13 milliseconds

12345678910>>...90