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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mn10300/
am33-2.c 203 u8(0), comma, lparen, a16 (8), rparen, tick_random);
210 lparen, amreg(12), comma, amreg (8), rparen, tick_random);
212 lparen, d8 (0), comma, amreg (12), rparen, tick_random);
214 lparen, d24(0), comma, amreg (28), rparen, tick_random);
216 lparen, d32(0), comma, amreg (36), rparen, tick_random);
244 lparen, amreg (4), rparen, comma,
247 lparen, amreg (4), plus, rparen, comma,
250 lparen, spreg, rparen, comma, freg (0, 8));
252 amreg (4), comma, freg (0, 8), tick_random);
254 freg (4, 9), comma, lparen, amreg (0), rparen, tick_random)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
scomm-directive-5.d 4 #error: expected comma after symbol name
  /build/kati/testcase/
subst.mk 2 comma:= , macro
6 bar:= $(subst $(space),$(comma),$(foo))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4162.go 13 _ = int(1.0,) // comma was always permitted (like function call)
14 _ = []byte("foo",) // was syntax error: unexpected comma
15 _ = chan int(nil,) // was syntax error: unexpected comma
16 _ = (func())(nil,) // was syntax error: unexpected comma
issue13319.go 12 f(1, g() // ERROR "expecting \)|expecting comma or \)"
16 f(1, g() // ERROR "expecting \)|expecting comma or \)"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4162.go 13 _ = int(1.0,) // comma was always permitted (like function call)
14 _ = []byte("foo",) // was syntax error: unexpected comma
15 _ = chan int(nil,) // was syntax error: unexpected comma
16 _ = (func())(nil,) // was syntax error: unexpected comma
issue13319.go 12 f(1, g() // ERROR "expecting \)|expecting comma or \)"
16 f(1, g() // ERROR "expecting \)|expecting comma or \)"
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONWriter.java 63 * The comma flag determines if a comma should be output before the next
66 private boolean comma; field in class:JSONWriter
97 this.comma = false;
116 if (this.comma && this.mode == 'a') {
126 this.comma = true;
145 this.comma = false;
169 this.comma = true;
207 if (this.comma) {
213 this.comma = false
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
tic54x-dis.c 187 char *comma = ""; local
215 info->fprintf_func (info->stream, "%s%s", comma, operand[i]);
219 info->fprintf_func (info->stream, "%s%s", comma, operand[i]);
224 info->fprintf_func (info->stream, "%s", comma);
257 info->fprintf_func (info->stream, "%s", comma);
265 info->fprintf_func (info->stream, "%s", comma);
270 info->fprintf_func (info->stream, "%s%s", comma, operand[i]);
274 info->fprintf_func (info->stream, "%s%s", comma, operand[i]);
278 info->fprintf_func (info->stream, "%s%s", comma, operand[i]);
282 info->fprintf_func (info->stream, "%s%s", comma, operand[i])
    [all...]
  /prebuilts/go/darwin-x86/test/syntax/
composite.go 10 3 // ERROR "need trailing comma before newline in composite literal|expecting comma or }"
import.go 10 "io", // ERROR "unexpected comma"
  /prebuilts/go/linux-x86/test/syntax/
composite.go 10 3 // ERROR "need trailing comma before newline in composite literal|expecting comma or }"
import.go 10 "io", // ERROR "unexpected comma"
  /prebuilts/go/darwin-x86/src/encoding/json/
tags.go 11 // tagOptions is the string following a comma in a struct field's "json"
12 // tag, or the empty string. It does not include the leading comma.
16 // comma-separated options.
24 // Contains reports whether a comma-separated list of options
  /prebuilts/go/linux-x86/src/encoding/json/
tags.go 11 // tagOptions is the string following a comma in a struct field's "json"
12 // tag, or the empty string. It does not include the leading comma.
16 // comma-separated options.
24 // Contains reports whether a comma-separated list of options
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_fail.py 12 '["extra comma",]',
14 '["double extra comma",,]',
18 '["Comma after the close"],',
22 '{"Extra comma": true,}',
46 '{"Comma instead of colon", null}',
48 '["Colon instead of comma": false]',
  /external/dnsmasq/src/
option.c 513 /* find next comma, split string with zero and eliminate spaces.
514 return start of string following comma */
518 char *comma, *p; local
520 if (!s || !(comma = strchr(s, c)))
523 p = comma;
524 *comma = ' ';
526 for (; isspace((int)*comma); comma++);
531 return comma;
675 char *comma = NULL, *problem = NULL local
985 char *comma, *problem = NULL;; local
    [all...]
  /external/smali/smalidea/src/main/antlr/
smalideaParser.g 463 comma
464 : COMMA;
687 : open_brace (literal (comma literal)* | ) close_brace
903 : open_brace (register (comma register)*)? close_brace;
940 (comma local_name)?
1016 : LOCAL_DIRECTIVE register (comma string_or_null_literal colon type_descriptor
1017 (comma string_literal)? )?
1148 INSTRUCTION_FORMAT11n register comma integral_literal;
1156 instruction_format12x register comma register;
1160 INSTRUCTION_FORMAT20bc VERIFICATION_ERROR_TYPE comma verification_error_reference
    [all...]
  /external/llvm/test/MC/Mips/
mips-pdr-bad.s 7 .ent bar, # ASM: :[[@LINE]]:19: error: expected number after comma
8 .ent foo, bar # AMS: :[[@LINE]]:23: error: expected an absolute expression after comma
14 .frame $sp # ASM: :[[@LINE]]:20: error: unexpected token, expected comma
17 .frame $sp, 8 # ASM: :[[@LINE]]:23: error: unexpected token, expected comma
24 .mask 0x80000000 # ASM: :[[@LINE]]:26: error: unexpected token, expected comma
31 .fmask 0x80000000 # ASM: :[[@LINE]]:27: error: unexpected token, expected comma

Completed in 4111 milliseconds

1 2 3 4 5 6 7 8 91011>>