/external/smali/smali/src/test/resources/LexerTest/ |
SymbolTest.tokens | 6 OPEN_BRACE("{") CLOSE_BRACE("}") OPEN_PAREN("(") CLOSE_PAREN(")") WHITE_SPACE("\n") 7 OPEN_BRACE("{") WHITE_SPACE(" ") CLOSE_BRACE("}") WHITE_SPACE(" ") OPEN_PAREN("(") WHITE_SPACE(" ") CLOSE_PAREN(")") WHITE_SPACE("\n") 11 CLOSE_PAREN(")")
|
RealSmaliFileTest.tokens | 157 CLOSE_PAREN(")") 218 CLOSE_PAREN(")") 267 CLOSE_PAREN(")") 290 CLOSE_PAREN(")") 301 CLOSE_PAREN(")") 331 CLOSE_PAREN(")") 374 CLOSE_PAREN(")") 409 CLOSE_PAREN(")") 427 CLOSE_PAREN(")") 443 CLOSE_PAREN(")") [all...] |
TypeAndIdentifierTest.tokens | 109 CLOSE_PAREN(")")
|
/external/smali/smalidea/testData/ |
ParamListInvalidParameter.txt | 34 PsiErrorElement:extraneous input 'f' expecting CLOSE_PAREN 36 PsiElement(CLOSE_PAREN)(')')
|
InvalidMethod4.txt | 23 PsiElement(CLOSE_PAREN)(')') 47 PsiErrorElement:mismatched input '.blah' expecting CLOSE_PAREN 68 PsiElement(CLOSE_PAREN)(')') 70 PsiElement(CLOSE_PAREN)(')')
|
InvalidMethodReference.txt | 20 PsiElement(CLOSE_PAREN)(')') 63 PsiElement(CLOSE_PAREN)(')') 107 PsiElement(CLOSE_PAREN)(')') 138 PsiElement(CLOSE_PAREN)(')') 157 PsiElement(CLOSE_PAREN)(')') 187 PsiErrorElement:mismatched input '.blah' expecting CLOSE_PAREN 208 PsiElement(CLOSE_PAREN)(')') 236 PsiElement(CLOSE_PAREN)(')') 238 PsiElement(CLOSE_PAREN)(')')
|
InvalidInstruction.txt | 20 PsiElement(CLOSE_PAREN)(')') 50 PsiElement(CLOSE_PAREN)(')') 69 PsiElement(CLOSE_PAREN)(')') 103 PsiElement(CLOSE_PAREN)(')') 122 PsiElement(CLOSE_PAREN)(')') 158 PsiElement(CLOSE_PAREN)(')') 196 PsiElement(CLOSE_PAREN)(')')
|
MissingDotDot.txt | 21 PsiElement(CLOSE_PAREN)(')') 46 PsiElement(CLOSE_PAREN)(')') 73 PsiElement(CLOSE_PAREN)(')')
|
SuperClassInvalidSyntax2.txt | 33 PsiElement(CLOSE_PAREN)(')')
|
InvalidLocal.txt | 21 PsiElement(CLOSE_PAREN)(')') 50 PsiElement(CLOSE_PAREN)(')')
|
InvalidMethod3.txt | 20 PsiElement(CLOSE_PAREN)(')') 40 PsiElement(CLOSE_PAREN)(')')
|
InvalidParameter.txt | 21 PsiElement(CLOSE_PAREN)(')') 55 PsiElement(CLOSE_PAREN)(')')
|
/toolchain/binutils/binutils-2.25/opcodes/ |
tic80-dis.c | 200 int close_paren; 232 close_paren = 0; 238 close_paren = 1; 246 if (close_paren) 196 int close_paren; local
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
SmaliLexerTest.java | 77 "CLOSE_PAREN (')')\n" + 117 "CLOSE_PAREN (')')\n" +
|
/system/core/toolbox/ |
top.c | 327 char buf[MAX_LINE], *open_paren, *close_paren; local 336 close_paren = strrchr(buf, ')'); 337 if (!open_paren || !close_paren) return 1; 339 *open_paren = *close_paren = '\0'; 345 sscanf(close_paren + 1,
|
/external/toybox/toys/pending/ |
lsof.c | 400 char *close_paren = strrchr(toybuf, ')'); local 402 if (open_paren && close_paren) { 403 *close_paren = 0;
|
/external/smali/smalidea/src/main/antlr/ |
smalideaParser.g | 424 : open_paren param_list close_paren type_descriptor 439 close_paren 440 : CLOSE_PAREN; 513 : open_paren param_list_reference close_paren type_descriptor; [all...] |
/external/smali/smalidea/src/main/java/org/jf/smalidea/ |
SmaliTokens.java | 64 @SuppressWarnings({"UnusedDeclaration"}) public static IElementType CLOSE_PAREN; 182 tokenColors.put("CLOSE_PAREN", SmaliHighlightingColors.PARENS);
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/findUsages/ |
SmaliUsageTypeProvider.java | 114 if (elementType == SmaliTokens.CLOSE_PAREN) {
|
/external/smali/smali/src/main/antlr/ |
smaliParser.g | 52 CLOSE_PAREN; 591 : OPEN_PAREN param_list CLOSE_PAREN type_descriptor [all...] |
/external/mksh/src/ |
expr.c | 59 OPEN_PAREN, CLOSE_PAREN, CTERN, 371 if (es->tok != CLOSE_PAREN)
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
ast.py | 879 def _GetMatchingChar(self, open_paren, close_paren, GetNextToken=None): 883 # and return up to the close_paren. 890 elif token.name == close_paren: [all...] |
/toolchain/binutils/binutils-2.25/gold/ |
dynobj.cc | 60 std::string::size_type close_paren = this->name().find(')'); local 62 && close_paren != std::string::npos) 67 close_paren - open_paren); [all...] |
/external/smali/smali/src/main/jflex/ |
smaliLexer.jflex | 678 ")" { return newToken(CLOSE_PAREN); }
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
cpplib.h | 76 OP(CLOSE_PAREN, ")") \ [all...] |