/external/mesa3d/src/glsl/glcpp/tests/ |
040-token-pasting.c | 2 paste(one , token)
|
/frameworks/base/core/java/android/os/ |
IUpdateLock.aidl | 25 void acquireUpdateLock(IBinder token, String tag); 26 void releaseUpdateLock(IBinder token);
|
/hardware/interfaces/radio/1.0/ |
ISap.hal | 32 * @param token Id to match req-resp. Resp must include same token. 35 oneway connectReq(int32_t token, int32_t maxMsgSize); 40 * @param token Id to match req-resp. Resp must include same token. 42 oneway disconnectReq(int32_t token); 47 * @param token Id to match req-resp. Resp must include same token. 51 oneway apduReq(int32_t token, SapApduType type, vec<uint8_t> command); 56 * @param token Id to match req-resp. Resp must include same token [all...] |
/packages/services/Car/car-systemtest-lib/src/android/car/test/ |
ICarTest.aidl | 30 void stopCarService(IBinder token) = 1; 33 void startCarService(IBinder token) = 2;
|
/external/ImageMagick/MagickWand/tests/ |
Makefile | 16 script-token-test: script-token-test.c ../script-token.[ch] 17 $(CC) -o script-token-test script-token-test.c 23 script-token-test.sh | diff script-token-test-results.txt -
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
OutputTest.java | 30 import org.antlr.runtime.Token; 36 private final Token token; field in class:OutputTest 38 public OutputTest(Token token) { 39 this.token = token; 44 return token.getText(); 49 return token.getType(); 65 return token.getText() [all...] |
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t005lexer.py | 27 token = lexer.nextToken() 28 assert token.type == self.lexerModule.FOO 29 assert token.start == 0, token.start 30 assert token.stop == 1, token.stop 31 assert token.text == 'fo', token.text 33 token = lexer.nextToken() 34 assert token.type == self.lexerModule.FO [all...] |
t006lexer.py | 27 token = lexer.nextToken() 28 assert token.type == self.lexerModule.FOO 29 assert token.start == 0, token.start 30 assert token.stop == 1, token.stop 31 assert token.text == 'fo', token.text 33 token = lexer.nextToken() 34 assert token.type == self.lexerModule.FO [all...] |
t007lexer.py | 27 token = lexer.nextToken() 28 assert token.type == self.lexerModule.FOO 29 assert token.start == 0, token.start 30 assert token.stop == 1, token.stop 31 assert token.text == 'fo', token.text 33 token = lexer.nextToken() 34 assert token.type == self.lexerModule.FO [all...] |
/system/vold/ |
ScryptParameters.cpp | 24 char *token; local 29 * The token we're looking for should be three integers separated by 32 for (i = 0, token = strtok_r(const_cast<char *>(paramstr), ":", &saveptr); 33 token != nullptr && i < 3; 34 i++, token = strtok_r(nullptr, ":", &saveptr)) { 36 params[i] = strtol(token, &endptr, 10); 41 if ((*token == '\0') || (*endptr != '\0') || params[i] < 0 || params[i] > 255) { 45 if (token != nullptr) {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
OIDTokenizer.java | 37 * Return the next token in the underlying String. 39 * @return the next token. 48 String token; local 53 token = oid.substring(index); 55 return token; 58 token = oid.substring(index, end); 61 return token;
|
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
Pp.cpp | 110 int token = scanToken(ppToken); local 111 if (token != PpAtomIdentifier) { 113 return token; 124 token = scanToken(ppToken); 125 if (token == '(' && ! ppToken->space) { 129 token = scanToken(ppToken); 130 if (argc == 0 && token == ')') 132 if (token != PpAtomIdentifier) { 135 return token; 152 token = scanToken(ppToken) 217 int token = scanToken(ppToken); local 247 int token = scanToken(ppToken); local 381 int token, precedence, (*op)(int, int); member in struct:glslang::TBinop 404 int token, (*op)(int); member in struct:glslang::TUnop 552 int token = scanToken(ppToken); local 572 int token = scanToken(ppToken); local 603 int token = scanToken(ppToken); local 649 int token = scanToken(ppToken); local 703 int token = scanToken(ppToken); local 734 int token = scanToken(ppToken); local 765 int token = scanToken(ppToken); local 809 int token = scanToken(ppToken); local 849 int token = scanToken(ppToken); local 932 int token; local 963 int token; local 1039 int token; local [all...] |
/external/libxml2/ |
rngparser.c | 59 const xmlChar *token; member in struct:_token 92 tokenPtr token; member in struct:_xmlCRelaxNGParserCtxt 244 * Scan the schema to get the next token 252 tokenPtr token; local 256 token = &(ctxt->tokens[(ctxt->firstToken + ctxt->nbTokens) % MAX_TOKEN]); 257 token->toktype = CRNG_NONE; 291 token->toklen = cur - ctxt->cur; 292 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen) 420 tokenPtr token; local 670 tokenPtr token; local 699 tokenPtr token; local 769 tokenPtr token; local 805 tokenPtr token; local 834 tokenPtr token; local 908 tokenPtr token; local 1002 tokenPtr token; local 1045 tokenPtr token; local 1093 tokenPtr token, tok2; local 1186 tokenPtr token; local 1210 tokenPtr token, tok2; local 1260 tokenPtr token; local 1295 tokenPtr token; local 1391 tokenPtr token; local [all...] |
/external/libxml2/doc/ |
apibuild.py | 406 def push(self, token): 407 self.tokens.insert(0, token); 410 print("Last token: ", self.last) 411 print("Token queue: ", self.tokens) 414 def token(self): member in class:CLexer 633 def error(self, msg, token=-1): 638 if token != -1: 639 print("Got token ", token) 643 def debug(self, msg, token=-1) 1023 def token(self): member in class:CParser [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Parser.java | 30 import gov.nist.core.Token; 58 Token tok = lexer.match(SIP); 80 Token[] tokens = this.lexer.peekNextToken(1); 81 Token token = (Token) tokens[0]; local 82 if (token.getTokenType() == INVITE 83 || token.getTokenType() == ACK 84 || token.getTokenType() == OPTIONS 85 || token.getTokenType() == BY [all...] |
/frameworks/base/services/core/java/com/android/server/tv/ |
TvRemoteService.java | 89 private void informInputBridgeConnected(IBinder token) { 90 mHandler.obtainMessage(UserHandler.MSG_INPUT_BRIDGE_CONNECTED, 0, 0, token).sendToTarget(); 94 private void openInputBridgeInternalLocked(TvRemoteProviderProxy provider, IBinder token, 98 Slog.d(TAG, "openInputBridgeInternalLocked(), token: " + token + ", name: " + name + 104 if (mBridgeMap.containsKey(token)) { 107 informInputBridgeConnected(token); 111 UinputBridge inputBridge = new UinputBridge(token, name, width, height, maxPointers); 113 mBridgeMap.put(token, inputBridge); 114 mProviderMap.put(token, provider) 235 IBinder token = (IBinder) msg.obj; local [all...] |
UinputBridge.java | 44 public UinputBridge(IBinder token, String name, int width, int height, int maxPointers) 52 if (token == null) { 53 throw new IllegalArgumentException("Token cannot be null"); 55 mPtr = nativeOpen(name, token.toString(), width, height, maxPointers); 59 mToken = token; 76 public void close(IBinder token) { 77 if (isTokenValid(token)) { 79 clear(token); 92 protected boolean isTokenValid(IBinder token) { 93 return mToken.equals(token); [all...] |
/toolchain/binutils/binutils-2.25/binutils/ |
arparse.y | 43 %token NEWLINE 44 %token VERBOSE 45 %token <name> FILENAME 46 %token ADDLIB 47 %token LIST 48 %token ADDMOD 49 %token CLEAR 50 %token CREATE 51 %token DELETE 52 %token DIRECTOR [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
CommonTree.cs | 38 * A tree node that is wrapper for a Token object. After 3.0 release 47 /** <summary>A single token is the payload</summary> */ 49 public IToken token; field in class:Antlr.Runtime.Tree.CommonTree 52 * What token indexes bracket all tokens associated with this node 73 this.token = node.token; 79 this.token = t; 85 if (token == null || token.CharPositionInLine == -1) { 91 return token.CharPositionInLine [all...] |
/external/parameter-framework/upstream/utility/ |
Tokenizer.cpp | 45 string token; local 52 if (token.empty()) { 58 // left-hand token and a right-side token. We are going to add 64 result.push_back(token); 65 token.clear(); 68 token += character; 72 // push any leftover token: 74 result.push_back(token);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/ |
WindowTokenTests.java | 49 final WindowTestUtils.TestWindowToken token = local 52 assertEquals(0, token.getWindowsCount()); 54 final WindowState window1 = createWindow(null, TYPE_APPLICATION, token, "window1"); 55 final WindowState window11 = createWindow(window1, FIRST_SUB_WINDOW, token, "window11"); 56 final WindowState window12 = createWindow(window1, FIRST_SUB_WINDOW, token, "window12"); 57 final WindowState window2 = createWindow(null, TYPE_APPLICATION, token, "window2"); 58 final WindowState window3 = createWindow(null, TYPE_APPLICATION, token, "window3"); 60 token.addWindow(window1); 61 // NOTE: Child windows will not be added to the token as window containers can only 63 token.addWindow(window11) 80 final WindowTestUtils.TestWindowToken token = new WindowTestUtils.TestWindowToken(0, dc); local 99 final WindowTestUtils.TestWindowToken token = local 140 final WindowTestUtils.TestWindowToken token = local [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
CommonTree.java | 30 import org.antlr.runtime.Token; 32 /** A tree node that is wrapper for a Token object. After 3.0 release 39 /** A single token is the payload */ 40 public Token token; field in class:CommonTree 42 /** What token indexes bracket all tokens associated with this node 57 this.token = node.token; 62 public CommonTree(Token t) { 63 this.token = t [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
StylesheetPIHandler.java | 156 String token = ""; local 160 token = tokenizer.nextToken(); 164 (token.equals(" ") || token.equals("\t") || token.equals("="))) 167 String name = token; 170 token = tokenizer.nextToken(); 172 (token.equals(" " ) || token.equals("\t") || token.equals("=")) [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/ |
t-error.pl | 16 my $token = eval { $lexer->next_token(); }; 22 last if $token->get_type() == $TLexer::EOF; 24 print "type: ", $token->get_type(), "\n"; 25 print "text: ", $token->get_text(), "\n";
|
t.pl | 16 my $token = $lexer->next_token(); 17 last if $token->get_type() == $TLexer::EOF; 19 print "type: ", $token->get_type(), "\n"; 20 print "text: ", $token->get_text(), "\n";
|