HomeSort by relevance Sort by last modified time
    Searched refs:token (Results 126 - 150 of 4235) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libnl/lib/route/cls/
ematch_syntax.y 62 %token <i> ERROR LOGIC NOT OPERAND NUMBER ALIGN LAYER
63 %token <i> KW_OPEN "("
64 %token <i> KW_CLOSE ")"
65 %token <i> KW_PLUS "+"
66 %token <i> KW_MASK "mask"
67 %token <i> KW_SHIFT ">>"
68 %token <i> KW_AT "at"
69 %token <i> EMATCH_CMP "cmp"
70 %token <i> EMATCH_NBYTE "pattern"
71 %token <i> EMATCH_TEXT "text
    [all...]
  /cts/tools/dasm/src/java_cup/runtime/
char_token.java 4 /** This subclass of token represents symbols that need to maintain one
13 public class char_token extends token {
int_token.java 4 /** This subclass of token represents symbols that need to maintain one
13 public class int_token extends token {
long_token.java 4 /** This subclass of token represents symbols that need to maintain one
13 public class long_token extends token {
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
096-paste-twice.c 2 paste_twice(just, one, token)
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 63 // dropping spaces and comments to identify property names and token runs
79 if (!(it.hasTokenAfterSpace() && ":".equals(it.token()))) {
96 String token = it.token(); local
103 handler.startFunction(token);
105 handler.endFunction(token);
106 continue; // Skip the advance over token.
108 handler.identifier(token);
111 if (token.length() == 4 || token.length() == 7)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
AnchorTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 AnchorToken token = new AnchorToken("&id123", mark, mark); local
28 assertEquals("value=&id123", token.getArguments());
33 AnchorToken token = new AnchorToken("&id123", mark, mark); local
34 assertEquals(ID.Anchor, token.getTokenId());
BlockEndTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 BlockEndToken token = new BlockEndToken(mark, mark); local
28 assertEquals("", token.getArguments());
33 BlockEndToken token = new BlockEndToken(mark, mark); local
34 assertEquals(ID.BlockEnd, token.getTokenId());
  /frameworks/base/core/java/android/os/
IVibratorService.aidl 26 void vibrate(int uid, String opPkg, in VibrationEffect effect, int usageHint, IBinder token);
27 void cancelVibrate(IBinder token);
  /libcore/dalvik/src/main/java/dalvik/system/
ZygoteHooks.java 28 private long token; field in class:ZygoteHooks
52 token = nativePreFork();
62 nativePostForkChild(token, runtimeFlags, isSystemServer, isZygote, instructionSet);
77 private static native void nativePostForkChild(long token, int runtimeFlags,
  /external/antlr/antlr-3.4/runtime/Python/tests/
t003lexer.py 27 token = lexer.nextToken()
28 self.failUnlessEqual(token.type, self.lexerModule.ZERO)
30 token = lexer.nextToken()
31 self.failUnlessEqual(token.type, self.lexerModule.FOOZE)
33 token = lexer.nextToken()
34 self.failUnlessEqual(token.type, self.lexerModule.ONE)
36 token = lexer.nextToken()
37 self.failUnlessEqual(token.type, self.lexerModule.EOF)
45 token = lexer.nextToken()
  /external/e2fsprogs/lib/support/
parse_qtype.c 20 char *buf, *token, *next, *tmp; local
33 for (token = buf, next = strtok_r(buf, PARSE_DELIM, &tmp);
34 token && *token; token = next) {
36 char *p = token;
59 *err_token = malloc(strlen(token) + 1);
61 strcpy(*err_token, token);
66 printf("word: %s\n", token);
  /external/smali/smali/src/main/java/org/jf/smali/
SemanticException.java 34 import org.antlr.runtime.Token;
54 this.token = tree.getToken();
56 this.line = token.getLine();
57 this.charPositionInLine = token.getCharPositionInLine();
61 SemanticException(IntStream input, Token token, String errorMessage, Object... messageArguments) {
64 this.token = token;
65 this.index = ((CommonToken)token).getStartIndex();
66 this.line = token.getLine()
    [all...]
  /system/security/keystore/
operation.cpp 31 sp<IBinder> token = new ::android::BBinder(); local
32 mMap.emplace(token, Operation(handle, keyid, purpose, dev, std::move(characteristics), appToken,
34 if (pruneable) mLru.push_back(token);
36 mAppTokenMap[appToken].push_back(token);
37 return token;
40 NullOr<const Operation&> OperationMap::getOperation(const sp<IBinder>& token) {
41 auto entry = mMap.find(token);
44 updateLru(token);
48 void OperationMap::updateLru(const sp<IBinder>& token) {
49 auto lruEntry = std::find(mLru.begin(), mLru.end(), token);
    [all...]
  /system/tools/hidl/docs/src/parser/elements/declarations/
AbstractDeclarationParser.kt 19 import lexer.Token
28 abstract class AbstractDeclarationParser(iter: ListIterator<Token>) : AbstractParser(iter) {
33 override fun scanTokens(iter: ListIterator<Token>): List<Token> {
34 val token = peekPreviousToken(iter) ?: throw ParseException("No token before declaration", this.indexStart)
36 if (token.category != TokenCategory.Annotation && token.identifier != TokenGrammar.DOC_END)
43 * Takes a delimited separated list and splits entries into list of list<token>.
47 protected fun scanDelimitedList(iter: ListIterator<Token>,
    [all...]
  /system/hwservicemanager/
TokenManager.cpp 13 namespace token { namespace in namespace:android::hidl
39 // Methods from ::android::hidl::token::V1_0::ITokenManager follow.
48 uint64_t id = getTokenId(interface.token);
57 hidl_cb(interface.token);
62 TokenManager::lookupToken(const hidl_vec<uint8_t> &token) {
63 uint64_t tokenId = getTokenId(token);
77 if (!constantTimeCompare(token, interface.token)) {
78 ALOGE("Fetch of token with invalid hash.");
85 Return<bool> TokenManager::unregister(const hidl_vec<uint8_t> &token) {
125 const hidl_vec<uint8_t> &token = TokenManager::getToken(id, hmac.data(), hmacSize); local
158 hidl_vec<uint8_t> token; local
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
MacroExpander.cpp 22 #include "Token.h"
35 typedef std::vector<Token> TokenVector;
43 void lex(Token *token) override
47 token->reset();
48 token->type = Token::LAST;
52 *token = *mIter++;
120 void MacroExpander::lex(Token *token)
243 Token token; local
360 Token token; local
476 const Token &token = replacements->back(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MissingTokenException.as 17 if ( inserted!=null && token!=null ) {
18 return "MissingTokenException(inserted "+inserted+" at "+token.text+")";
20 if ( token!=null ) {
21 return "MissingTokenException(at "+token.text+")";
  /external/deqp/framework/randomshaders/
rsgPrettyPrinter.hpp 44 void processToken (const Token& token);
46 static const char* getSimpleTokenStr (Token::Type token);
  /external/javassist/src/main/javassist/compiler/ast/
Keyword.java 26 public Keyword(int token) {
27 tokenId = token;
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 11 protected Token token; field in class:Lexer
32 public Token peek() throws LexerException, IOException
34 while(this.token == null)
36 this.token = getToken();
40 return this.token;
43 public Token next() throws LexerException, IOException
45 while(this.token == null)
47 this.token = getToken();
51 Token result = this.token
160 @SuppressWarnings("hiding") Token token = new0( local
175 @SuppressWarnings("hiding") Token token = new1( local
190 @SuppressWarnings("hiding") Token token = new2( local
204 @SuppressWarnings("hiding") Token token = new3( local
218 @SuppressWarnings("hiding") Token token = new4( local
232 @SuppressWarnings("hiding") Token token = new5( local
246 @SuppressWarnings("hiding") Token token = new6( local
260 @SuppressWarnings("hiding") Token token = new7( local
274 @SuppressWarnings("hiding") Token token = new8( local
289 @SuppressWarnings("hiding") Token token = new9( local
303 @SuppressWarnings("hiding") Token token = new10( local
317 @SuppressWarnings("hiding") Token token = new11( local
331 @SuppressWarnings("hiding") Token token = new12( local
345 @SuppressWarnings("hiding") Token token = new13( local
359 @SuppressWarnings("hiding") Token token = new14( local
373 @SuppressWarnings("hiding") Token token = new15( local
387 @SuppressWarnings("hiding") Token token = new16( local
401 @SuppressWarnings("hiding") Token token = new17( local
415 @SuppressWarnings("hiding") Token token = new18( local
429 @SuppressWarnings("hiding") Token token = new19( local
443 @SuppressWarnings("hiding") Token token = new20( local
457 @SuppressWarnings("hiding") Token token = new21( local
471 @SuppressWarnings("hiding") Token token = new22( local
485 @SuppressWarnings("hiding") Token token = new23( local
499 @SuppressWarnings("hiding") Token token = new24( local
513 @SuppressWarnings("hiding") Token token = new25( local
527 @SuppressWarnings("hiding") Token token = new26( local
541 @SuppressWarnings("hiding") Token token = new27( local
555 @SuppressWarnings("hiding") Token token = new28( local
569 @SuppressWarnings("hiding") Token token = new29( local
583 @SuppressWarnings("hiding") Token token = new30( local
597 @SuppressWarnings("hiding") Token token = new31( local
611 @SuppressWarnings("hiding") Token token = new32( local
625 @SuppressWarnings("hiding") Token token = new33( local
639 @SuppressWarnings("hiding") Token token = new34( local
654 @SuppressWarnings("hiding") Token token = new35( local
668 @SuppressWarnings("hiding") Token token = new36( local
682 @SuppressWarnings("hiding") Token token = new37( local
696 @SuppressWarnings("hiding") Token token = new38( local
710 @SuppressWarnings("hiding") Token token = new39( local
724 @SuppressWarnings("hiding") Token token = new40( local
738 @SuppressWarnings("hiding") Token token = new41( local
752 @SuppressWarnings("hiding") Token token = new42( local
766 @SuppressWarnings("hiding") Token token = new43( local
780 @SuppressWarnings("hiding") Token token = new44( local
794 @SuppressWarnings("hiding") Token token = new45( local
808 @SuppressWarnings("hiding") Token token = new46( local
822 @SuppressWarnings("hiding") Token token = new47( local
837 @SuppressWarnings("hiding") Token token = new48( local
852 @SuppressWarnings("hiding") Token token = new49( local
867 @SuppressWarnings("hiding") Token token = new50( local
882 @SuppressWarnings("hiding") Token token = new51( local
897 @SuppressWarnings("hiding") Token token = new52( local
912 @SuppressWarnings("hiding") Token token = new53( local
926 @SuppressWarnings("hiding") Token token = new54( local
941 @SuppressWarnings("hiding") Token token = new55( local
956 @SuppressWarnings("hiding") Token token = new56( local
982 @SuppressWarnings("hiding") EOF token = new EOF( local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.java 79 Token token = lexer.getNextToken(); local
80 accept.setContentType(token.getTokenValue());
83 token = lexer.getNextToken();
84 accept.setContentSubType(token.getTokenValue());
97 token = lexer.getNextToken();
98 accept.setContentType(token.getTokenValue());
101 token = lexer.getNextToken();
102 accept.setContentSubType(token.getTokenValue());
  /external/selinux/libsepol/cil/src/
cil_lexer.h 45 struct token { struct
53 int cil_lexer_next(struct token *tok);
  /frameworks/base/media/java/android/media/
IRingtonePlayer.aidl 29 oneway void play(IBinder token, in Uri uri, in AudioAttributes aa, float volume, boolean looping);
30 oneway void stop(IBinder token);
31 boolean isPlaying(IBinder token);
32 oneway void setPlaybackProperties(IBinder token, float volume, boolean looping);
  /frameworks/base/media/java/android/media/midi/
IMidiDeviceOpenCallback.aidl 24 void onDeviceOpened(in IMidiDeviceServer server, IBinder token);

Completed in 429 milliseconds

1 2 3 4 56 7 8 91011>>