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

1 2 3 4

  /prebuilts/gdb/darwin-x86/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())
  /prebuilts/gdb/linux-x86/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())
  /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())
  /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())
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 29 Comma = 1, // ,
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 174 if (getLexer().isNot(AsmToken::Comma))
204 if (getLexer().isNot(AsmToken::Comma))
329 if (!getLexer().is(AsmToken::Comma))
331 Lex(); // Eat the comma.
381 if (getLexer().is(AsmToken::Comma)) {
387 if (getLexer().isNot(AsmToken::Comma))
415 if (getLexer().isNot(AsmToken::Comma)) {
433 if (getLexer().isNot(AsmToken::Comma))
443 if (getLexer().isNot(AsmToken::Comma))
448 if (getLexer().is(AsmToken::Comma)) {
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer.go 21 // Comma is the field delimiter.
25 Comma rune // Field delimiter (set to ',' by NewWriter)
33 Comma: ',',
43 if _, err = w.w.WriteRune(w.Comma); err != nil {
118 // Fields with a Comma, fields with a quote or newline, and
133 if field == `\.` || strings.IndexRune(field, w.Comma) >= 0 || strings.IndexAny(field, "\"\r\n") >= 0 {
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 21 // Comma is the field delimiter.
25 Comma rune // Field delimiter (set to ',' by NewWriter)
33 Comma: ',',
43 if _, err = w.w.WriteRune(w.Comma); err != nil {
118 // Fields with a Comma, fields with a quote or newline, and
133 if field == `\.` || strings.IndexRune(field, w.Comma) >= 0 || strings.IndexAny(field, "\"\r\n") >= 0 {
  /external/llvm/tools/llvm-readobj/
StreamWriter.h 190 bool Comma = false;
192 if (Comma)
195 Comma = true;
203 bool Comma = false;
205 if (Comma)
208 Comma = true;

Completed in 398 milliseconds

1 2 3 4