HomeSort by relevance Sort by last modified time
    Searched refs:Comma (Results 1 - 25 of 61) sorted by null

1 2 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node,
44 compile_args = open_expr + [Comma(), filename_arg, Comma(), exec_str]
49 args.extend([Comma(), globals.clone()])
51 args.extend([Comma(), locals.clone()])
fix_exec.py 15 from ..fixer_util import Comma, Name, Call
36 args.extend([Comma(), b.clone()])
38 args.extend([Comma(), c.clone()])
fix_apply.py 12 from ..fixer_util import Call, Comma, parenthesize
52 l_newargs.extend([Comma(),
fix_print.py 21 from ..fixer_util import Name, Call, Comma, String, is_tuple
55 if args and args[-1] == Comma():
61 args = args[3:] # Strip a possible comma after the file expression
85 l_nodes.append(Comma())
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
61 names.append_child(Comma())
fix_idioms.py 32 from ..fixer_util import Call, Comma, Name, Node, BlankLine, syms
105 test = Call(Name(u"isinstance"), [x, Comma(), T])
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
79 import name with a comma separated list of its
89 names.extend([Name(name[0], prefix=pref), Comma()])
153 names.append(Comma())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node,
44 compile_args = open_expr + [Comma(), filename_arg, Comma(), exec_str]
49 args.extend([Comma(), globals.clone()])
51 args.extend([Comma(), locals.clone()])
fix_exec.py 15 from ..fixer_util import Comma, Name, Call
36 args.extend([Comma(), b.clone()])
38 args.extend([Comma(), c.clone()])
fix_apply.py 12 from ..fixer_util import Call, Comma, parenthesize
52 l_newargs.extend([Comma(),
fix_print.py 21 from ..fixer_util import Name, Call, Comma, String, is_tuple
55 if args and args[-1] == Comma():
61 args = args[3:] # Strip a possible comma after the file expression
85 l_nodes.append(Comma())
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
61 names.append_child(Comma())
fix_idioms.py 32 from ..fixer_util import Call, Comma, Name, Node, BlankLine, syms
105 test = Call(Name(u"isinstance"), [x, Comma(), T])
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
79 import name with a comma separated list of its
89 names.extend([Name(name[0], prefix=pref), Comma()])
153 names.append(Comma())
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 29 Comma = 1, // ,
  /external/llvm/lib/MC/
MCSectionMachO.cpp 187 // Find the first comma.
188 std::pair<StringRef, StringRef> Comma = Spec.split(',');
190 // If there is no comma, we fail.
191 if (Comma.second.empty())
193 "separated by a comma";
196 Segment = Comma.first;
205 Comma = Comma.second.split(',');
208 Section = Comma.first;
216 // If there is no comma after the section, we're done
    [all...]
SubtargetFeature.cpp 66 /// Split - Splits a string of comma separated items in to a vector of strings.
75 // Find the next comma
76 size_t Comma = S.find(',', Pos);
77 // If no comma found then the rest of the string is used
78 if (Comma == std::string::npos) {
84 V.push_back(S.substr(Pos, Comma - Pos));
86 Pos = Comma + 1;
90 /// Join a vector of strings to a string with a comma separating each element.
101 // Add a comma
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 185 if (getLexer().isNot(AsmToken::Comma))
216 if (getLexer().isNot(AsmToken::Comma))
363 if (getLexer().is(AsmToken::Comma)) {
369 if (getLexer().isNot(AsmToken::Comma))
388 if (getLexer().isNot(AsmToken::Comma)) {
403 if (getLexer().isNot(AsmToken::Comma))
413 if (getLexer().isNot(AsmToken::Comma))
418 if (getLexer().is(AsmToken::Comma)) {
491 if (getLexer().isNot(AsmToken::Comma))
565 if (getLexer().isNot(AsmToken::Comma))
    [all...]
DarwinAsmParser.cpp 399 if (getLexer().isNot(AsmToken::Comma))
459 if (getLexer().isNot(AsmToken::Comma))
478 if (getLexer().isNot(AsmToken::Comma))
507 // Verify there is a following comma.
508 if (!getLexer().is(AsmToken::Comma))
653 if (getLexer().isNot(AsmToken::Comma))
664 if (getLexer().is(AsmToken::Comma)) {
705 if (getLexer().isNot(AsmToken::Comma))
711 return TokError("expected section name after comma in '.zerofill' "
724 if (getLexer().isNot(AsmToken::Comma))
    [all...]
COFFAsmParser.cpp 274 if (getLexer().isNot(AsmToken::Comma))
330 if (getLexer().is(AsmToken::Comma)) {
508 if (getLexer().isNot(AsmToken::Comma))
514 if (getLexer().is(AsmToken::Comma)) {
553 if (getLexer().isNot(AsmToken::Comma))
594 if (getLexer().isNot(AsmToken::Comma))
621 if (getLexer().isNot(AsmToken::Comma))
AsmParser.cpp 323 /// \brief Parse until the end of a statement or a comma is encountered,
324 /// return the contents from the current token up to the end or comma.
711 Lexer.isNot(AsmToken::Comma) &&
    [all...]
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 42 case tok::comma: return prec::Comma;
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 45 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/libvpx/libvpx/vp8/encoder/
tokenize.c 438 # define Comma( X) (X? ",":"")
444 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
450 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
456 fprintf(f, "%s\n {", Comma(pt));
466 fprintf(f, "%s %d", Comma(t), y);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScriptsPanelDescriptor.js 120 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Comma, WebInspector.KeyboardShortcut.Modifiers.Ctrl)

Completed in 319 milliseconds

1 2 3