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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 12 from ..fixer_util import Call, Comma, parenthesize
52 l_newargs.extend([Comma(),
fix_exec.py 15 from ..fixer_util import Comma, Name, Call
36 args.extend([Comma(), b.clone()])
38 args.extend([Comma(), c.clone()])
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_idioms.py 32 from ..fixer_util import Call, Comma, Name, Node, BlankLine, syms
105 test = Call(Name(u"isinstance"), [x, Comma(), T])
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_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())
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
61 names.append_child(Comma())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 12 from ..fixer_util import Call, Comma, parenthesize
52 l_newargs.extend([Comma(),
fix_exec.py 15 from ..fixer_util import Comma, Name, Call
36 args.extend([Comma(), b.clone()])
38 args.extend([Comma(), c.clone()])
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_idioms.py 32 from ..fixer_util import Call, Comma, Name, Node, BlankLine, syms
105 test = Call(Name(u"isinstance"), [x, Comma(), T])
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_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())
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
61 names.append_child(Comma())
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 29 Comma = 1, // ,
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 49 constexpr int Comma(int n) { return // expected-error {{constexpr function never produces a constant expression}}
  /external/libvpx/libvpx/vp8/encoder/
tokenize.c 442 # define Comma( X) (X? ",":"")
448 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
454 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
460 fprintf(f, "%s\n {", Comma(pt));
470 fprintf(f, "%s %d", Comma(t), y);
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 158 bool Comma = false;
161 if (Comma)
164 Comma = true;
169 if (Comma)
172 Comma = true;
177 if (Comma)
180 Comma = true;
StreamWriter.h 179 bool Comma = false;
181 if (Comma)
184 Comma = true;
ARMEHABIPrinter.h 264 bool Comma = false;
267 if (Comma)
270 Comma = true;
278 bool Comma = false;
281 if (Comma)
284 Comma = true;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
tokenize.c 442 # define Comma( X) (X? ",":"")
448 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
454 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
460 fprintf(f, "%s\n {", Comma(pt));
470 fprintf(f, "%s %d", Comma(t), y);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 46 def Comma():
47 """A comma leaf"""
48 return Leaf(token.COMMA, u",")
243 (prev is not None and prev.type == token.COMMA) or
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 46 def Comma():
47 """A comma leaf"""
48 return Leaf(token.COMMA, u",")
243 (prev is not None and prev.type == token.COMMA) or
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 47 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 12 from lib2to3.fixer_util import Attr, Name, Call, Comma
88 children.append(Comma())

Completed in 439 milliseconds

1 2