/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/lex/lexer/lexertl/ |
D | token.hpp | 124 struct token<Iterator, lex::omit, mpl::false_, Idtype> struct 126 typedef Iterator iterator_type; 127 typedef mpl::false_ has_state; 128 typedef Idtype id_type; 129 typedef unused_type token_value_type; 132 token() : id_(id_type(boost::lexer::npos)) {} in token() function 135 explicit token(int) : id_(id_type(0)) {} in token() argument 137 token(id_type id, std::size_t) : id_(id) {} in token() function 139 token(id_type id, std::size_t, token_value_type) in token() function 142 token_value_type& value() { static token_value_type u; return u; } in value() [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/app/ |
H A D | IActivityClientController.aidl | 40 oneway void activityIdle(in IBinder token, in Configuration config, in boolean stopProfiling); in activityIdle() 41 oneway void activityResumed(in IBinder token, in boolean handleSplashScreenExit); in activityResumed() 42 oneway void activityRefreshed(in IBinder token); in activityRefreshed() 54 void activityPaused(in IBinder token); in activityPaused() 55 oneway void activityStopped(in IBinder token, in Bundle state, in activityStopped() 57 oneway void activityDestroyed(in IBinder token); in activityDestroyed() 58 oneway void activityLocalRelaunch(in IBinder token); in activityLocalRelaunch() 59 oneway void activityRelaunched(in IBinder token); in activityRelaunched() 61 oneway void reportSizeConfigurations(in IBinder token, in reportSizeConfigurations() 63 boolean moveActivityTaskToBack(in IBinder token, boolean nonRoot); in moveActivityTaskToBack() [all …]
|
H A D | ActivityClient.java | 49 public void activityIdle(IBinder token, Configuration config, boolean stopProfiling) { in activityIdle() 58 public void activityResumed(IBinder token, boolean handleSplashScreenExit) { in activityResumed() 67 public void activityRefreshed(IBinder token) { in activityRefreshed() 88 public void activityPaused(IBinder token) { in activityPaused() 97 public void activityStopped(IBinder token, Bundle state, PersistableBundle persistentState, in activityStopped() 108 public void activityDestroyed(IBinder token) { in activityDestroyed() 117 public void activityLocalRelaunch(IBinder token) { in activityLocalRelaunch() 126 public void activityRelaunched(IBinder token) { in activityRelaunched() 134 void reportSizeConfigurations(IBinder token, SizeConfigurationBuckets sizeConfigurations) { in reportSizeConfigurations() 142 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) { in moveActivityTaskToBack() [all …]
|
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/jwt/ |
H A D | RawJwtTest.java | 40 RawJwt token = RawJwt.newBuilder().withoutExpiration().build(); in emptyToken_getRegisteredClaimShouldThrow() local 52 RawJwt token = RawJwt.newBuilder().withoutExpiration().build(); in emptyToken_hasShouldReturnFalse() local 64 RawJwt token = RawJwt.newBuilder().setIssuer("foo").withoutExpiration().build(); in setIssuer_success() local 71 RawJwt token = RawJwt.newBuilder().addAudience("foo").withoutExpiration().build(); in addAudience_success() local 78 RawJwt token = in addMulitpleAudiences_success() local 86 RawJwt token = RawJwt.newBuilder().setAudience("foo").withoutExpiration().build(); in setAudience_success() local 93 RawJwt token = in setAudiences_success() local 117 RawJwt token = in setAudiencesAndAddAudience_appendToList() local 162 RawJwt.Builder token = RawJwt.newBuilder(); in setInvalidStrings_fails() local 181 RawJwt token = RawJwt.newBuilder().setSubject("foo").withoutExpiration().build(); in setSubject_success() local [all …]
|
H A D | VerifiedJwtTest.java | 74 VerifiedJwt token = new VerifiedJwt(rawToken); in getIssuer_success() local 83 VerifiedJwt token = new VerifiedJwt(rawToken); in getSubject_success() local 92 VerifiedJwt token = new VerifiedJwt(rawToken); in getAudiences_success() local 102 VerifiedJwt token = new VerifiedJwt(rawToken); in getMultipleAudiences_success() local 111 VerifiedJwt token = new VerifiedJwt(rawToken); in getJwtId_success() local 120 VerifiedJwt token = new VerifiedJwt(rawToken); in getExpiration_success() local 133 VerifiedJwt token = new VerifiedJwt(rawToken); in getNotBefore_success() local 143 VerifiedJwt token = new VerifiedJwt(rawToken); in getIssuedAt_success() local 161 VerifiedJwt token = new VerifiedJwt(rawToken); in getRegisteredClaim_shouldThrow() local 187 VerifiedJwt token = new VerifiedJwt(rawToken); in getNotRegisteredSimpleClaims_success() local [all …]
|
/aosp_15_r20/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/ |
H A D | Lexer.java | 11 protected Token token; field in Lexer 160 @SuppressWarnings("hiding") Token token = new0( in getToken() local 175 @SuppressWarnings("hiding") Token token = new1( in getToken() local 190 @SuppressWarnings("hiding") Token token = new2( in getToken() local 204 @SuppressWarnings("hiding") Token token = new3( in getToken() local 218 @SuppressWarnings("hiding") Token token = new4( in getToken() local 232 @SuppressWarnings("hiding") Token token = new5( in getToken() local 246 @SuppressWarnings("hiding") Token token = new6( in getToken() local 260 @SuppressWarnings("hiding") Token token = new7( in getToken() local 274 @SuppressWarnings("hiding") Token token = new8( in getToken() local [all …]
|
/aosp_15_r20/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/ |
H A D | ParserImpl.java | 187 private CommentEvent produceCommentEvent(CommentToken token) { in produceCommentEvent() 209 StreamStartToken token = (StreamStartToken) scanner.getToken(); in produce() local 226 Token token = scanner.peekToken(); in produce() local 249 Token token = scanner.peekToken(); in produce() local 272 StreamEndToken token = (StreamEndToken) scanner.getToken(); in produce() local 289 Token token = scanner.peekToken(); in produce() local 340 DirectiveToken token = (DirectiveToken) scanner.getToken(); in processDirectives() local 427 AliasToken token = (AliasToken) scanner.getToken(); in parseNode() local 434 AnchorToken token = (AnchorToken) scanner.getToken(); in parseNode() local 451 AnchorToken token = (AnchorToken) scanner.getToken(); in parseNode() local [all …]
|
/aosp_15_r20/external/pdfium/xfa/fxfa/formcalc/ |
H A D | cxfa_fmlexer_unittest.cpp | 14 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 21 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 29 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 39 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 45 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 51 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 57 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 63 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 71 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local 85 CXFA_FMLexer::Token token = lexer.NextToken(); in TEST() local [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/core/platform/ |
H A D | file_system.h | 50 void* token; member 76 const std::string& fname, TransactionToken* token, in NewRandomAccessFile() 101 const std::string& fname, TransactionToken* token, in NewWritableFile() 123 const std::string& fname, TransactionToken* token, in NewAppendableFile() 144 const std::string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile() 155 TransactionToken* token) { in FileExists() 179 TransactionToken* token, in GetChildren() 212 TransactionToken* token, in GetMatchingPaths() 231 TransactionToken* token, in Stat() 242 TransactionToken* token) { in DeleteFile() [all …]
|
H A D | env.h | 127 Status NewRandomAccessFile(const std::string& fname, TransactionToken* token, in NewRandomAccessFile() 150 Status NewWritableFile(const std::string& fname, TransactionToken* token, in NewWritableFile() 170 Status NewAppendableFile(const std::string& fname, TransactionToken* token, in NewAppendableFile() 189 const std::string& fname, TransactionToken* token, in NewReadOnlyMemoryRegionFromFile() 197 Status FileExists(const std::string& fname, TransactionToken* token) { in FileExists() 207 bool FilesExist(const std::vector<string>& files, TransactionToken* token, in FilesExist() 218 Status GetChildren(const std::string& dir, TransactionToken* token, in GetChildren() 235 Status GetMatchingPaths(const std::string& pattern, TransactionToken* token, in GetMatchingPaths() 243 Status DeleteFile(const std::string& fname, TransactionToken* token) { in DeleteFile() 274 Status DeleteRecursively(const std::string& dirname, TransactionToken* token, in DeleteRecursively() [all …]
|
/aosp_15_r20/external/angle/util/capture/ |
H A D | trace_interpreter.cpp | 165 void readToken(Token &token, char delim) in readToken() 236 Token &token = paramTokens[numParams++]; in readFunction() local 333 void PackResourceID(ParamBuffer ¶ms, const Token &token) in PackResourceID() 397 void PackIntParameter(ParamBuffer ¶ms, ParamType paramType, const Token &token) in PackIntParameter() 433 uint32_t GetStringArrayOffset(const Token &token, const char *prefixString) in GetStringArrayOffset() 447 void PackMutablePointerParameter(ParamBuffer ¶ms, ParamType paramType, const Token &token) in PackMutablePointerParameter() 471 void PackConstPointerParameter(ParamBuffer ¶ms, ParamType paramType, const Token &token) in PackConstPointerParameter() 664 void PackParameter<uint32_t>(ParamBuffer ¶ms, const Token &token, const TraceStringMap &strings) in PackParameter() 677 void PackParameter<int32_t>(ParamBuffer ¶ms, const Token &token, const TraceStringMap &strings) in PackParameter() 694 void PackParameter<void *>(ParamBuffer ¶ms, const Token &token, const TraceStringMap &strings) in PackParameter() [all …]
|
/aosp_15_r20/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallAdapter.java | 58 long token = Binder.clearCallingIdentity(); in answerCall() local 81 long token = Binder.clearCallingIdentity(); in deflectCall() local 106 long token = Binder.clearCallingIdentity(); in rejectCall() local 140 long token = Binder.clearCallingIdentity(); in rejectCallWithReason() local 162 long token = Binder.clearCallingIdentity(); in transferCall() local 187 long token = Binder.clearCallingIdentity(); in consultativeTransfer() local 212 long token = Binder.clearCallingIdentity(); in playDtmfTone() local 235 long token = Binder.clearCallingIdentity(); in stopDtmfTone() local 258 long token = Binder.clearCallingIdentity(); in postDialContinue() local 281 long token = Binder.clearCallingIdentity(); in disconnectCall() local [all …]
|
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | ActivityClientController.java | 175 public void activityIdle(IBinder token, Configuration config, boolean stopProfiling) { in activityIdle() 197 public void activityResumed(IBinder token, boolean handleSplashScreenExit) { in activityResumed() 206 public void activityRefreshed(IBinder token) { in activityRefreshed() 224 public void activityPaused(IBinder token) { in activityPaused() 238 public void activityStopped(IBinder token, Bundle icicle, PersistableBundle persistentState, in activityStopped() 288 public void activityDestroyed(IBinder token) { in activityDestroyed() 306 public void activityLocalRelaunch(IBinder token) { in activityLocalRelaunch() 318 public void activityRelaunched(IBinder token) { in activityRelaunched() 330 public void reportSizeConfigurations(IBinder token, in reportSizeConfigurations() 362 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) { in moveActivityTaskToBack() [all …]
|
/aosp_15_r20/external/antlr/runtime/C/src/ |
H A D | antlr3commontoken.c | 75 pANTLR3_COMMON_TOKEN token; in antlr3CommonTokenNew() local 207 pANTLR3_COMMON_TOKEN token; in newPoolToken() local 270 ANTLR3_UINT32 token; in factoryClose() local 329 pANTLR3_COMMON_TOKEN token; in newToken() local 349 antlr3SetTokenAPI(pANTLR3_COMMON_TOKEN token) in antlr3SetTokenAPI() 374 static pANTLR3_STRING getText (pANTLR3_COMMON_TOKEN token) in getText() 438 static void setText8 (pANTLR3_COMMON_TOKEN token, pANTLR3_UINT8 text) in setText8() 474 static void setText (pANTLR3_COMMON_TOKEN token, pANTLR3_STRING text) in setText() 487 static ANTLR3_UINT32 getType (pANTLR3_COMMON_TOKEN token) in getType() 492 static void setType (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 type) in setType() [all …]
|
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/radio/1.0/android.hardware.radio-V1.0-java_gen_java/gen/srcs/android/hardware/radio/V1_0/ |
D | ISapCallback.java | 95 void connectResponse(int token, int sapConnectRsp, int maxMsgSize) in connectResponse() 102 void disconnectResponse(int token) in disconnectResponse() 110 void disconnectIndication(int token, int disconnectType) in disconnectIndication() 126 void apduResponse(int token, int resultCode, java.util.ArrayList<Byte> apduRsp) in apduResponse() 142 void transferAtrResponse(int token, int resultCode, java.util.ArrayList<Byte> atr) in transferAtrResponse() 157 void powerResponse(int token, int resultCode) in powerResponse() 171 void resetSimResponse(int token, int resultCode) in resetSimResponse() 179 void statusIndication(int token, int status) in statusIndication() 193 void transferCardReaderStatusResponse(int token, int resultCode, int cardReaderStatus) in transferCardReaderStatusResponse() 200 void errorResponse(int token) in errorResponse() [all …]
|
D | ISap.java | 100 void connectReq(int token, int maxMsgSize) in connectReq() 107 void disconnectReq(int token) in disconnectReq() 116 void apduReq(int token, int type, java.util.ArrayList<Byte> command) in apduReq() 123 void transferAtrReq(int token) in transferAtrReq() 131 void powerReq(int token, boolean state) in powerReq() 138 void resetSimReq(int token) in resetSimReq() 145 void transferCardReaderStatusReq(int token) in transferCardReaderStatusReq() 153 void setTransferProtocolReq(int token, int transferProtocol) in setTransferProtocolReq() 317 public void connectReq(int token, int maxMsgSize) in connectReq() 334 public void disconnectReq(int token) in disconnectReq() [all …]
|
/aosp_15_r20/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/javadoc/ |
H A D | JavadocWriter.java | 74 void requestMoeBeginStripComment(Token token) { in requestMoeBeginStripComment() 94 void writeFooterJavadocTagStart(Token token) { in writeFooterJavadocTagStart() 126 void writeListOpen(Token token) { in writeListOpen() 137 void writeListClose(Token token) { in writeListClose() 148 void writeListItemOpen(Token token) { in writeListItemOpen() 160 void writeHeaderOpen(Token token) { in writeHeaderOpen() 166 void writeHeaderClose(Token token) { in writeHeaderClose() 172 void writeParagraphOpen(Token token) { in writeParagraphOpen() 186 void writeBlockquoteOpenOrClose(Token token) { in writeBlockquoteOpenOrClose() 194 void writePreOpen(Token token) { in writePreOpen() [all …]
|
/aosp_15_r20/external/deqp-deps/amber/src/amberscript/ |
D | parser.cc | 207 for (auto token = tokenizer->NextToken();; token = tokenizer->NextToken()) { in ParseBufferData() local 288 for (auto token = tokenizer_->NextToken(); !token->IsEOS(); in Parse() local 445 auto token = tokenizer_->NextToken(); in ValidateEndOfStatement() local 453 auto token = tokenizer_->NextToken(); in ParseShaderBlock() local 559 auto token = tokenizer_->NextToken(); in ParsePipelineBlock() local 585 std::unique_ptr<Token> token; in ParsePipelineBody() local 645 auto token = tokenizer_->NextToken(); in ParsePipelineAttach() local 727 auto token = tokenizer_->NextToken(); in ParseShaderSpecialization() local 776 auto token = tokenizer_->NextToken(); in ParsePipelineShaderOptimizations() local 812 auto token = tokenizer_->NextToken(); in ParsePipelineShaderCompileOptions() local [all …]
|
/aosp_15_r20/external/kotlinx.serialization/formats/json-tests/jvmTest/src/kotlinx/serialization/features/ |
H A D | SerializerByTypeTest.kt | 69 val token = myArr::class.java in testArray() constant 76 val token = object : ParameterizedType { in testList() constant 87 val token = object : ParameterizedType { in testListAsCollection() constant 99 val token = typeTokenOf<Array<String>>() in testReifiedArrayResolving() constant 106 val token = IntArray::class.java in testPrimitiveArrayResolving() constant 115 val token = typeTokenOf<List<String>>() in testReifiedListResolving() constant 122 val token = typeTokenOf<Set<String>>() in testReifiedSetResolving() constant 129 val token = typeTokenOf<Map<String, Data>>() in testReifiedMapResolving() constant 136 val token = typeTokenOf<List<List<List<Int>>>>() in testNestedListResolving() constant 143 val token = typeTokenOf<Array<Array<Array<Int>>>>() in testNestedArrayResolving() constant [all …]
|
/aosp_15_r20/frameworks/base/core/jni/ |
H A D | android_util_XmlBlock.cpp | 66 jlong token) in android_content_XmlBlock_nativeGetStringBlock() 78 jlong token, jint res_id) in android_content_XmlBlock_nativeCreateParseState() 98 static jint android_content_XmlBlock_nativeNext(CRITICAL_JNI_PARAMS_COMMA jlong token) { in android_content_XmlBlock_nativeNext() 128 static jint android_content_XmlBlock_nativeGetNamespace(CRITICAL_JNI_PARAMS_COMMA jlong token) { in android_content_XmlBlock_nativeGetNamespace() 137 static jint android_content_XmlBlock_nativeGetName(CRITICAL_JNI_PARAMS_COMMA jlong token) { in android_content_XmlBlock_nativeGetName() 146 static jint android_content_XmlBlock_nativeGetText(CRITICAL_JNI_PARAMS_COMMA jlong token) { in android_content_XmlBlock_nativeGetText() 155 static jint android_content_XmlBlock_nativeGetLineNumber(CRITICAL_JNI_PARAMS_COMMA jlong token) { in android_content_XmlBlock_nativeGetLineNumber() 165 CRITICAL_JNI_PARAMS_COMMA jlong token) { in android_content_XmlBlock_nativeGetAttributeCount() 175 CRITICAL_JNI_PARAMS_COMMA jlong token, jint idx) { in android_content_XmlBlock_nativeGetAttributeNamespace() 184 static jint android_content_XmlBlock_nativeGetAttributeName(CRITICAL_JNI_PARAMS_COMMA jlong token, in android_content_XmlBlock_nativeGetAttributeName() [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/companion/virtual/ |
H A D | IVirtualDevice.aidl | 154 void createVirtualDpad(in VirtualDpadConfig config, IBinder token); in createVirtualDpad() 159 void createVirtualKeyboard(in VirtualKeyboardConfig config, IBinder token); in createVirtualKeyboard() 164 void createVirtualMouse(in VirtualMouseConfig config, IBinder token); in createVirtualMouse() 169 void createVirtualTouchscreen(in VirtualTouchscreenConfig config, IBinder token); in createVirtualTouchscreen() 175 void createVirtualNavigationTouchpad(in VirtualNavigationTouchpadConfig config, IBinder token); in createVirtualNavigationTouchpad() 180 void createVirtualStylus(in VirtualStylusConfig config, IBinder token); in createVirtualStylus() 185 void createVirtualRotaryEncoder(in VirtualRotaryEncoderConfig config, IBinder token); in createVirtualRotaryEncoder() 190 void unregisterInputDevice(IBinder token); in unregisterInputDevice() 196 int getInputDeviceId(IBinder token); in getInputDeviceId() 201 boolean sendDpadKeyEvent(IBinder token, in VirtualKeyEvent event); in sendDpadKeyEvent() [all …]
|
/aosp_15_r20/packages/modules/NetworkStack/common/networkstackclient/src/android/net/ip/ |
D | IpClientManager.java | 69 final long token = Binder.clearCallingIdentity(); in completedPreDhcpAction() local 85 final long token = Binder.clearCallingIdentity(); in confirmConfiguration() local 101 final long token = Binder.clearCallingIdentity(); in readPacketFilterComplete() local 117 final long token = Binder.clearCallingIdentity(); in shutdown() local 133 final long token = Binder.clearCallingIdentity(); in startProvisioning() local 151 final long token = Binder.clearCallingIdentity(); in stop() local 170 final long token = Binder.clearCallingIdentity(); in setTcpBufferSizes() local 189 final long token = Binder.clearCallingIdentity(); in setHttpProxy() local 206 final long token = Binder.clearCallingIdentity(); in setMulticastFilter() local 233 final long token = Binder.clearCallingIdentity(); in addKeepalivePacketFilter() local [all …]
|
/aosp_15_r20/external/angle/src/compiler/preprocessor/ |
H A D | DirectiveParser.cpp | 45 DirectiveType getDirective(const pp::Token *token) in getDirective() 111 bool isEOD(const pp::Token *token) in isEOD() 116 void skipUntilEOD(pp::Lexer *lexer, pp::Token *token) in skipUntilEOD() 163 void DirectiveParser::lex(Token *token) in lex() 201 void DirectiveParser::parseDirective(Token *token) in parseDirective() 287 void DirectiveParser::parseDefine(Token *token) in parseDefine() 381 void DirectiveParser::parseUndef(Token *token) in parseUndef() 421 void DirectiveParser::parseIf(Token *token) in parseIf() 427 void DirectiveParser::parseIfdef(Token *token) in parseIfdef() 433 void DirectiveParser::parseIfndef(Token *token) in parseIfndef() [all …]
|
/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/ |
H A D | LaunchAdjacentControllerTest.kt | 57 val token = MockToken().token() in <lambda>() constant 65 val token = MockToken().token() in <lambda>() constant 73 val token = MockToken().token() in <lambda>() constant 82 val token = MockToken().token() in <lambda>() constant 94 val token = MockToken().token() in <lambda>() constant 113 val token = MockToken().token() in <lambda>() constant 123 val token = MockToken().token() in <lambda>() constant 138 val token = MockToken().token() in <lambda>() constant
|
/aosp_15_r20/frameworks/base/media/lib/tvremote/java/com/android/media/tv/remoteprovider/ |
H A D | TvRemoteProvider.java | 162 public void onInputBridgeConnected(@NonNull IBinder token) { in onInputBridgeConnected() 193 public void openRemoteInputBridge( in openRemoteInputBridge() 237 public void openGamepadBridge(@NonNull IBinder token, @NonNull String name) in openGamepadBridge() 271 public void closeInputBridge(@NonNull IBinder token) throws RuntimeException { in closeInputBridge() 288 public void clearInputBridge(@NonNull IBinder token) throws RuntimeException { in clearInputBridge() 306 public void sendTimestamp(@NonNull IBinder token, long timestamp) throws RuntimeException { in sendTimestamp() 324 public void sendKeyUp(@NonNull IBinder token, int keyCode) throws RuntimeException { in sendKeyUp() 341 public void sendKeyDown(@NonNull IBinder token, int keyCode) throws RuntimeException { in sendKeyDown() 360 public void sendPointerUp(@NonNull IBinder token, int pointerId) throws RuntimeException { in sendPointerUp() 381 public void sendPointerDown(@NonNull IBinder token, int pointerId, int x, int y) in sendPointerDown() [all …]
|