HomeSort by relevance Sort by last modified time
    Searched refs:OPENBRACE (Results 1 - 6 of 6) sorted by null

  /external/chromium/third_party/icu/source/tools/genrb/
read.c 23 #define OPENBRACE 0x007B
86 case OPENBRACE:
270 || c == OPENBRACE
308 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) {
  /external/icu4c/tools/genrb/
read.c 23 #define OPENBRACE 0x007B
86 case OPENBRACE:
270 || c == OPENBRACE
308 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) {
  /external/webkit/JavaScriptCore/parser/
Grammar.y 223 %token <intValue> OPENBRACE /* { (with char offset) */
326 | IDENT IDENT '(' ')' OPENBRACE FunctionBody CLOSEBRACE { $$ = createNodeInfo<PropertyNode*>(makeGetterOrSetterPropertyNode(GLOBAL_DATA, *$1, *$2, 0, $6, GLOBAL_DATA->lexer->sourceCode($5, $7, @5.first_line)), ClosureFeature, 0); setStatementLocation($6, @5, @7); if (!$$.m_node) YYABORT; }
327 | IDENT IDENT '(' FormalParameterList ')' OPENBRACE FunctionBody CLOSEBRACE
351 | OPENBRACE CLOSEBRACE { $$ = createNodeInfo<ExpressionNode*>(new (GLOBAL_DATA) ObjectLiteralNode(GLOBAL_DATA), 0, 0); }
352 | OPENBRACE PropertyList CLOSEBRACE { $$ = createNodeInfo<ExpressionNode*>(new (GLOBAL_DATA) ObjectLiteralNode(GLOBAL_DATA, $2.m_node.head), $2.m_features, $2.m_numConstants); }
354 | OPENBRACE PropertyList ',' CLOSEBRACE { $$ = createNodeInfo<ExpressionNode*>(new (GLOBAL_DATA) ObjectLiteralNode(GLOBAL_DATA, $2.m_node.head), $2.m_features, $2.m_numConstants); }
    [all...]
Lexer.cpp 517 token = OPENBRACE;
1022 SourceCode Lexer::sourceCode(int openBrace, int closeBrace, int firstLine)
1025 return SourceCode(m_source->provider(), openBrace, closeBrace + 1, firstLine);
1029 ASSERT(openBrace < closeBrace);
1035 for (i = m_source->startOffset(); i < openBrace; ++i)
1040 return SourceCode(m_source->provider(), openBrace + numBOMsBeforeOpenBrace,
  /system/core/sh/
init.c 279 #undef OPENBRACE
280 #define OPENBRACE '{'
571 #undef OPENBRACE
572 #define OPENBRACE '{'
859 #undef OPENBRACE
860 #define OPENBRACE '{'
parser.c 75 #define OPENBRACE '{'
1267 if (c != '(' && c != OPENBRACE && !is_name(c) && !is_special(c)) {
1282 if (c == OPENBRACE) {
    [all...]

Completed in 194 milliseconds