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

1 2 3 4 56 7 8 910

  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py     [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
parser-syntax-check.js 74 // some comma expressions: see reparsing-semicolon-insertion.js
173 debug ("Array and object literal, comma operator");
  /external/mksh/src/
eval.c 1759 char *brace_start, *brace_end, *comma = NULL; local
    [all...]
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 235 if (PragmaToken.isNot(clang::tok::comma))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pdb.py 353 # parse arguments; comma has lowest precedence
358 comma = arg.find(',')
359 if comma > 0:
360 # parse stuff after comma: "condition"
361 cond = arg[comma+1:].lstrip()
362 arg = arg[:comma].rstrip()
363 # parse stuff before comma: [filename:]lineno | function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pdb.py 353 # parse arguments; comma has lowest precedence
358 comma = arg.find(',')
359 if comma > 0:
360 # parse stuff after comma: "condition"
361 cond = arg[comma+1:].lstrip()
362 arg = arg[:comma].rstrip()
363 # parse stuff before comma: [filename:]lineno | function
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_XML.py 755 comma = ""
758 p_string = p_string + comma + p.name
759 comma = ", "
glX_proto_send.py 374 comma = ',' if i < len(names) - 1 else ''
375 print ' { "%s", (_glapi_proc) gl%s }%s' % (names[i], procs[names[i]], comma)
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
gl_XML.py 755 comma = ""
758 p_string = p_string + comma + p.name
759 comma = ", "
glX_proto_send.py 374 comma = ',' if i < len(names) - 1 else ''
375 print ' { "%s", (_glapi_proc) gl%s }%s' % (names[i], procs[names[i]], comma)
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 700 After.is(tok::comma))) ||
748 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
760 if (Tok.isNot(tok::comma)) {
    [all...]
Parser.cpp 106 return Tok.is(tok::colon) || Tok.is(tok::comma); // : or , for ;
781 Tok.is(tok::comma) || // int X(), -> not a function def
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubycontainer.swg 567 bool comma = false;
569 for ( ; i != e; ++i, comma = true )
571 if (comma) str = rb_str_cat2( str, "," );
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast_function.cpp 84 const char *comma = ""; local
88 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name);
89 comma = ", ";
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 385 bool comma = false; local
392 if (comma) std::cout << ", ";
394 comma = true;
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 453 // Assume comma separator is actually braced list separator and change
454 // it back to a comma.
456 I->setKind(tok::comma);
540 assert((Tok.is(tok::l_paren) || Tok.is(tok::comma)) &&
578 } else if (Tok.is(tok::comma) && NumParens == 0 &&
584 // Comma ends this argument if there are more fixed arguments expected.
586 // variadic part, then the comma is just an argument token.
725 // If the macro contains the comma pasting extension, the diagnostic
733 // Remember this occurred, allowing us to elide the comma when used for
    [all...]
  /external/mesa3d/src/glsl/
ast_function.cpp 84 const char *comma = ""; local
88 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name);
89 comma = ", ";
    [all...]
  /build/core/
package_internal.mk 426 # aapt will convert comma inside resource lable to underscore in the file names.
427 my_split_suffixes := $(subst $(comma),_,$(LOCAL_PACKAGE_SPLITS))
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 140 /// The separator is a comma followed by a space i.e. ", ".
152 /// The separator is a comma followed by a space i.e. ", ".
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryTokenizer.cpp 142 MediaQueryToken MediaQueryTokenizer::comma(UChar cc) function in class:WebCore::MediaQueryTokenizer
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 263 constexpr const int &comma = (1, (2, ConstDerived{}).b); member in namespace:LiteralReference
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_attr.js 756 '?', '?', '?', '?', '?', '?', '?', '?', '?', '?', '?' // comma.
    [all...]
  /external/chromium_org/third_party/jinja2/
parser.py 281 self.stream.expect('comma')
295 if parse_context() or self.stream.current.type != 'comma':
301 self.stream.skip_if('comma')
310 self.stream.expect('comma')
352 self.stream.expect('comma')
581 delimited by a comma a :class:`~jinja2.nodes.Tuple` node is created.
589 Because tuples do not require delimiters and may end in a bogus comma
609 self.stream.expect('comma')
613 if self.stream.current.type == 'comma':
638 self.stream.expect('comma')
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
json-20090211.jar 

Completed in 2888 milliseconds

1 2 3 4 56 7 8 910