Home
last modified time | relevance | path

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

12

/third_party/skia/tests/
H A DSkTOptionalTest.cpp78 skstd::optional<int> six = 6; in DEF_TEST() local
81 REPORTER_ASSERT(r, v[index] < six); in DEF_TEST()
82 REPORTER_ASSERT(r, o[index] < six); in DEF_TEST()
83 REPORTER_ASSERT(r, six > v[index]); in DEF_TEST()
84 REPORTER_ASSERT(r, six > o[index]); in DEF_TEST()
91 REPORTER_ASSERT(r, !(six < v[index])); in DEF_TEST()
92 REPORTER_ASSERT(r, !(six < o[index])); in DEF_TEST()
93 REPORTER_ASSERT(r, !(v[index] > six)); in DEF_TEST()
94 REPORTER_ASSERT(r, !(o[index] > six)); in DEF_TEST()
121 REPORTER_ASSERT(r, o[index] != six); in DEF_TEST()
[all...]
/third_party/protobuf/python/google/protobuf/
H A Dtext_encoding.py34 import six namespace
75 if six.PY3:
112 if six.PY2:
H A Dtext_format.py51 import six namespace
53 if six.PY3:
105 if six.PY2:
111 if six.PY2:
112 if isinstance(val, six.text_type):
565 for i in six.moves.range(len(value) - 1):
613 if isinstance(value, six.text_type) and (six.PY2 or not self.as_utf8):
841 if six.PY2:
1472 return six
[all...]
H A Djson_format.py61 import six namespace
81 _UNPAIRED_SURROGATE_PATTERN = re.compile(six.u(
427 if not isinstance(text, six.text_type): text = text.decode('utf-8')
456 _INT_OR_FLOAT = six.integer_types + (float,)
644 elif isinstance(value, six.string_types):
727 if isinstance(value, six.text_type):
774 if isinstance(value, six.text_type) and value.find(' ') != -1:
/third_party/node/test/parallel/
H A Dtest-stream-reduce.js45 const six = await Readable.from([1, 2, 3]).reduce(async (p, c) => p + c, 0);
46 assert.strictEqual(six, 6);
49 const six = await Readable.from([1, 2, 3]).reduce(async (p, c) => p + c);
50 assert.strictEqual(six, 6);
/third_party/typescript/tests/baselines/reference/
H A DtypeUsedAsValueError.js22 let six = someType;
39 var six = someType; variable
/third_party/ffmpeg/libavcodec/mips/
H A Diirfilter_mips.c92 float six = 6.0; in iir_filter_flt_mips() local
127 "mul.s $f9, $f6, %[six] \n\t" in iir_filter_flt_mips()
128 "mul.s $f10, $f7, %[six] \n\t" in iir_filter_flt_mips()
152 "madd.s %[res3], %[res3], %[in1], %[six] \n\t" in iir_filter_flt_mips()
154 "madd.s %[res4], %[res4], %[in2], %[six] \n\t" in iir_filter_flt_mips()
163 [four]"f"(four), [six]"f"(six) in iir_filter_flt_mips()
/third_party/protobuf/python/google/protobuf/internal/
H A Dtext_format_test.py42 import six namespace
210 if six.PY2 else
228 if six.PY2 else
235 class UnicodeSub(six.text_type):
363 golden_text = golden_unicode if six.PY3 else golden_unicode.encode('utf-8')
776 six.assertRaisesRegex(self, text_format.ParseError, (
783 six.assertRaisesRegex(self, text_format.ParseError, (
796 six.assertRaisesRegex(self, text_format.ParseError,
805 six.assertRaisesRegex(self, text_format.ParseError,
841 with six
[all...]
H A Denum_type_wrapper.py40 import six namespace
60 if not isinstance(number, six.integer_types):
H A Dtype_checkers.py54 import six namespace
56 if six.PY3:
170 (proposed_value, type(proposed_value), six.integer_types))
194 (proposed_value, type(proposed_value), six.integer_types))
212 if not isinstance(proposed_value, (bytes, six.text_type)):
214 (proposed_value, type(proposed_value), (bytes, six.text_type)))
H A Ddecoder.py85 import six namespace
88 if six.PY3:
92 _SURROGATE_PATTERN = re.compile(six.u(r'[\ud800-\udfff]'))
126 b = six.indexbytes(buffer, pos)
149 b = six.indexbytes(buffer, pos)
192 while six.indexbytes(buffer, pos) & 0x80:
566 local_unicode = six.text_type
578 if is_strict_utf8 and six.PY2 and sys.maxunicode > _UCS2_MAXUNICODE:
H A D_parameterized.py157 import six namespace
184 isinstance(obj, six.string_types))
H A Dencoder.py71 import six namespace
375 local_int2byte = six.int2byte
392 local_int2byte = six.int2byte
423 return six.binary_type(
H A Dwell_known_types.py46 import six namespace
715 _INT_OR_FLOAT = six.integer_types + (float,)
725 elif isinstance(value, six.string_types):
H A Dpython_message.py58 import six namespace
59 from six.moves import range
488 six.reraise(type(exc), exc, sys.exc_info()[2])
501 if isinstance(value, six.string_types):
1136 if isinstance(serialized, memoryview) and six.PY2:
H A Dmessage_test.py53 import six namespace
92 if six.PY3:
844 @unittest.skipIf(six.PY2, 'memoryview objects are not supported on py2')
864 self.assertIsInstance(m1.optional_string, six.text_type)
865 self.assertIsInstance(m1.repeated_string[0], six.text_type)
867 @unittest.skipIf(six.PY3, 'memoryview is supported by py3')
1059 self.assertIsInstance(m.optional_string, six.text_type)
1804 self.assertIsInstance(msg.map_string_string['abc'], six.text_type)
1919 self.assertIsInstance(key, six.text_type)
1920 self.assertIsInstance(value, six
[all...]
/third_party/node/deps/openssl/openssl/crypto/perlasm/
H A Dppc-xlate.pl316 my $vshasigmad = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1730); };
317 my $vshasigmaw = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1666); };
/third_party/openssl/crypto/perlasm/
H A Dppc-xlate.pl316 my $vshasigmad = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1730); };
317 my $vshasigmaw = sub { my ($st,$six)=splice(@_,-2); vcrypto_op(@_, $st<<4|$six, 1666); };
/third_party/pulseaudio/src/modules/rtp/
H A Dsap.c148 unsigned six, ac, k; in pa_sap_recv() local
201 six = (header >> 28) & 1U; in pa_sap_recv()
204 k = 4 + (six ? 16U : 4U) + ac*4U; in pa_sap_recv()
/third_party/skia/tools/
H A Drewrite_includes.py11 import six namespace
14 from six import StringIO
/third_party/libabigail/tests/data/test-annotate/
H A Dtest-anonymous-members-0.cc22 enum {five, six} e3; enumerator
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/
H A Dstreamname.py10 from six.moves import urllib
/third_party/protobuf/kokoro/release/python/windows/
H A Dbuild_artifacts.bat12 set PB_TEST_DEP="six==1.9"
/third_party/ffmpeg/libavcodec/x86/
H A Dv210enc.asm129 ; only six bytes at a time
/third_party/python/Tools/msi/
H A Dtestrelease.bat86 "%~2\Python\python.exe" -m pip uninstall -y azure python-dateutil six >> "%~2\pip.txt" 2>&1

Completed in 20 milliseconds

12