HomeSort by relevance Sort by last modified time
    Searched full:open_paren (Results 1 - 25 of 30) sorted by null

1 2

  /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")
10 OPEN_PAREN("(") WHITE_SPACE("\n")
RealSmaliFileTest.tokens 156 OPEN_PAREN("(")
217 OPEN_PAREN("(")
265 OPEN_PAREN("(")
288 OPEN_PAREN("(")
299 OPEN_PAREN("(")
329 OPEN_PAREN("(")
372 OPEN_PAREN("(")
408 OPEN_PAREN("(")
425 OPEN_PAREN("(")
441 OPEN_PAREN("(")
    [all...]
TypeAndIdentifierTest.tokens 108 OPEN_PAREN("(")
  /external/smali/smalidea/testData/
InvalidMethodReference.txt 17 PsiElement(OPEN_PAREN)('(')
60 PsiElement(OPEN_PAREN)('(')
104 PsiElement(OPEN_PAREN)('(')
133 PsiErrorElement:mismatched input '.blah' expecting OPEN_PAREN
154 PsiElement(OPEN_PAREN)('(')
182 PsiElement(OPEN_PAREN)('(')
205 PsiElement(OPEN_PAREN)('(')
233 PsiElement(OPEN_PAREN)('(')
InvalidMethod4.txt 18 PsiErrorElement:mismatched input '.blah' expecting OPEN_PAREN
39 PsiElement(OPEN_PAREN)('(')
65 PsiElement(OPEN_PAREN)('(')
InvalidInstruction.txt 17 PsiElement(OPEN_PAREN)('(')
47 PsiElement(OPEN_PAREN)('(')
66 PsiElement(OPEN_PAREN)('(')
100 PsiElement(OPEN_PAREN)('(')
119 PsiElement(OPEN_PAREN)('(')
155 PsiElement(OPEN_PAREN)('(')
193 PsiElement(OPEN_PAREN)('(')
MissingDotDot.txt 18 PsiElement(OPEN_PAREN)('(')
43 PsiElement(OPEN_PAREN)('(')
70 PsiElement(OPEN_PAREN)('(')
ParamListInvalidParameter.txt 31 PsiElement(OPEN_PAREN)('(')
SuperClassInvalidSyntax2.txt 30 PsiElement(OPEN_PAREN)('(')
InvalidLocal.txt 18 PsiElement(OPEN_PAREN)('(')
47 PsiElement(OPEN_PAREN)('(')
InvalidMethod3.txt 17 PsiElement(OPEN_PAREN)('(')
37 PsiElement(OPEN_PAREN)('(')
InvalidParameter.txt 18 PsiElement(OPEN_PAREN)('(')
52 PsiElement(OPEN_PAREN)('(')
InvalidMethod2.txt 32 PsiErrorElement:mismatched input '.method' expecting OPEN_PAREN
  /system/extras/boottime_tools/bootio/
bootio_collector.cpp 93 char buf[MAX_LINE], *open_paren, *close_paren; local
101 open_paren = strchr(buf, '(');
103 if (!open_paren || !close_paren) return 1;
105 *open_paren = *close_paren = '\0';
107 app->set_tname(open_paren + 1, close_paren - open_paren - 1);
114 char buf[MAX_LINE], *open_paren, *close_paren; local
122 open_paren = strchr(buf, '(');
124 if (!open_paren || !close_paren) return 1;
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliLexerTest.java 74 "OPEN_PAREN ('(')\n" +
115 "OPEN_PAREN ('(')\n" +
  /external/mksh/src/
exprtok.h 105 FN("(", 1, P_PRIMARY, OPEN_PAREN)
  /external/smali/smalidea/src/main/antlr/
smalideaParser.g 424 : open_paren param_list close_paren type_descriptor
431 open_paren
432 : OPEN_PAREN;
513 : open_paren param_list_reference close_paren type_descriptor;
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliTokens.java 142 @SuppressWarnings({"UnusedDeclaration"}) public static IElementType OPEN_PAREN;
260 tokenColors.put("OPEN_PAREN", SmaliHighlightingColors.PARENS);
  /external/smali/smali/src/main/antlr/
smaliParser.g 132 OPEN_PAREN;
585 : OPEN_PAREN param_list CLOSE_PAREN type_descriptor
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
dynobj.cc 59 std::string::size_type open_paren = this->name().find('('); local
61 if (open_paren != std::string::npos
65 open_paren += 1;
66 this->soname_ = this->name().substr(open_paren,
67 close_paren - open_paren);
    [all...]
  /external/google-breakpad/src/testing/scripts/generator/cpp/
ast.py 879 def _GetMatchingChar(self, open_paren, close_paren, GetNextToken=None):
882 # Assumes the current token is open_paren and we will consume
888 if token.name == open_paren:
    [all...]
  /external/googletest/googlemock/scripts/generator/cpp/
ast.py 880 def _GetMatchingChar(self, open_paren, close_paren, GetNextToken=None):
883 # Assumes the current token is open_paren and we will consume
889 if token.name == open_paren:
    [all...]
  /external/v8/testing/gmock/scripts/generator/cpp/
ast.py 880 def _GetMatchingChar(self, open_paren, close_paren, GetNextToken=None):
883 # Assumes the current token is open_paren and we will consume
889 if token.name == open_paren:
    [all...]
  /external/smali/smali/src/main/jflex/
smaliLexer.jflex 669 "(" { return newToken(OPEN_PAREN); }
  /external/smali/smali/src/main/java/org/jf/smali/
smaliParser.java 71 "OPEN_BRACE", "OPEN_PAREN", "PACKED_SWITCH_DIRECTIVE", "PARAMETER_DIRECTIVE",
255 public static final int OPEN_PAREN=180;
    [all...]

Completed in 428 milliseconds

1 2