Searched refs:six (Results 1 - 25 of 60) sorted by relevance

123

/external/compiler-rt/test/BlocksRuntime/
H A Dvarargs-bad-assign.c19 int six = 0; local
35 six = sumn(3, 1, 2, 3);
37 if ( six != 6 ) {
38 printf("%s: Expected 6 but got %d\n", argv[0], six);
H A Dvarargs.c30 int six = sumn(3, 1, 2, 3); local
32 if ( six != 6 ) {
33 printf("%s: Expected 6 but got %d\n", argv[0], six);
/external/clang/test/CodeGen/
H A Dtbaa-struct.cpp54 struct six { struct
60 void copy5(struct six *a, struct six *b) {
H A Dtbaa.cpp215 struct six { struct
221 char g14(struct six *a, struct six *b) {
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/
H A D_utils.py22 import six namespace
83 if six.PY2:
H A D_socket.py24 import six namespace
103 if c == six.b("\n"):
105 return six.b("").join(line)
109 if isinstance(data, six.text_type):
H A D_abnf.py26 import six namespace
44 if six.PY3:
170 six.byte2int(self.data[0:1]) + six.byte2int(self.data[1:2])
196 if opcode == ABNF.OPCODE_TEXT and isinstance(data, six.text_type):
218 frame_header = six.b(frame_header)
221 frame_header = six.b(frame_header)
225 frame_header = six.b(frame_header)
237 if isinstance(mask_key, six.text_type):
254 if isinstance(mask_key, six
[all...]
H A D_handshake.py26 import six namespace
33 if six.PY3:
152 if isinstance(result, six.text_type):
H A D_core.py28 import six namespace
273 if isinstance(payload, six.text_type):
283 if isinstance(payload, six.text_type):
294 if six.PY3 and opcode == ABNF.OPCODE_TEXT:
359 def send_close(self, status=STATUS_NORMAL, reason=six.b("")):
372 def close(self, status=STATUS_NORMAL, reason=six.b(""), timeout=3):
H A D_app.py32 import six namespace
221 if six.PY3 and op_code == ABNF.OPCODE_TEXT:
259 code = 256 * six.byte2int(data[0:1]) + six.byte2int(data[1:2])
H A D_http.py27 import six namespace
35 if six.PY3:
131 return six.PY2 and sys.version_info >= (2, 7, 9) or sys.version_info >= (3, 2)
H A D_url.py27 from six.moves.urllib.parse import urlparse
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/tests/
H A Dtest_websocket.py11 import six namespace
21 if six.PY3:
184 self.assertTrue(six.u("¥n") not in key)
237 self.assertEqual(s.sent[0], six.b("\x81\x85abcd)\x07\x0f\x08\x0e"))
240 self.assertEqual(s.sent[1], six.b("\x81\x8fabcd\x82\xe3\xf0\x87\xe3\xf1\x80\xe5\xca\x81\xe2\xc5\x82\xe3\xcc"))
243 self.assertEqual(s.sent[1], six.b("\x81\x8fabcd\x82\xe3\xf0\x87\xe3\xf1\x80\xe5\xca\x81\xe2\xc5\x82\xe3\xcc"))
251 something = six.b("\x81\x8fabcd\x82\xe3\xf0\x87\xe3\xf1\x80\xe5\xca\x81\xe2\xc5\x82\xe3\xcc")
256 s.add_packet(six.b("\x81\x85abcd)\x07\x0f\x08\x0e"))
276 s.add_packet(six.b("foo"))
278 s.add_packet(six
[all...]
/external/protobuf/python/google/protobuf/
H A Dtext_encoding.py34 import six namespace
76 Ord = ord if isinstance(text, six.string_types) else lambda x: x
H A Djson_format.py48 import six namespace
311 if not isinstance(text, six.text_type): text = text.decode('utf-8')
456 _INT_OR_FLOAT = six.integer_types + (float,)
469 elif isinstance(value, six.string_types):
580 if isinstance(value, six.text_type) and value.find(' ') != -1:
/external/protobuf/python/google/protobuf/internal/
H A Dtype_checkers.py48 import six namespace
50 if six.PY3:
129 if not isinstance(proposed_value, six.integer_types):
131 (proposed_value, type(proposed_value), six.integer_types))
153 if not isinstance(proposed_value, six.integer_types):
155 (proposed_value, type(proposed_value), six.integer_types))
173 if not isinstance(proposed_value, (bytes, six.text_type)):
175 (proposed_value, type(proposed_value), (bytes, six.text_type)))
H A Dtext_format_test.py39 import six namespace
123 class UnicodeSub(six.text_type):
374 six.assertRaisesRegex(self,
383 six.assertRaisesRegex(self,
392 six.assertRaisesRegex(self,
400 six.assertRaisesRegex(self,
409 six.assertRaisesRegex(self,
735 six.assertRaisesRegex(
744 six.assertRaisesRegex(
824 six
[all...]
H A D_parameterized.py158 import six namespace
178 isinstance(obj, six.string_types))
H A Dencoder.py71 import six namespace
376 write(six.int2byte(0x80|bits))
379 return write(six.int2byte(bits))
394 write(six.int2byte(0x80|bits))
397 return write(six.int2byte(bits))
/external/caliper/examples/src/main/java/examples/
H A DVarargsBenchmark.java54 @Override long six(long a, long b, long c, long d, long e, long f) {
78 @Override long six(long a, long b, long c, long d, long e, long f) {
79 return VarargsBenchmark.six(a, b, c, d, e, f);
93 abstract long six(long a, long b, long c, long d, long e, long f); method in class:VarargsBenchmark.Strategy
124 private static long six(long a, long b, long c, long d, long e, long f) { method in class:VarargsBenchmark
226 dummy += strategy.six(
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/bin/
H A Dwsdump.py9 import six namespace
10 from six.moves.urllib.parse import urlparse
77 if six.PY3:
82 if ENCODING and ENCODING != "utf-8" and not isinstance(line, six.text_type):
84 elif isinstance(line, six.text_type):
162 if six.PY3 and opcode == websocket.ABNF.OPCODE_TEXT and isinstance(data, bytes):
/external/toybox/tests/
H A Dcp.test81 touch one/{six,seven,eight}
/external/boringssl/src/crypto/perlasm/
H A Dppc-xlate.pl230 my $vshasigmad = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1730); };
231 my $vshasigmaw = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1666); };
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp5-generic-lambda-1y.cpp9 auto six = Fact(Fact, 3); member in namespace:test_factorial
/external/parameter-framework/upstream/test/functional-tests/
H A DHandle.cpp89 <BitParameter Pos="6" Size="6" Max="10" Name="six"/>
356 <BitParameter Name="six">0</BitParameter>
375 <BitParameter Name="six">10</BitParameter>
393 <BitParameter Name="six">0xA</BitParameter>

Completed in 433 milliseconds

123