Home
last modified time | relevance | path

Searched refs:seq2 (Results 1 - 15 of 15) sorted by relevance

/third_party/python/Lib/unittest/
H A Dcase.py964 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None):
972 seq2: The second sequence to compare.
983 if not isinstance(seq2, seq_type):
985 % (seq_type_name, safe_repr(seq2)))
998 len2 = len(seq2)
1004 if seq1 == seq2:
1009 _common_shorten_repr(seq1, seq2))
1020 item2 = seq2[i]
1032 type(seq1) != type(seq2)):
1050 (len1, safe_repr(seq2[len
[all...]
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dregcomp.c1920 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1951 &pos_add, NULL, &seq2, &max_pos); in tre_expand_ast()
1954 seq2 = tre_ast_new_iter(mem, seq2, 0, -1, 0); in tre_expand_ast()
1955 if (seq2 == NULL) in tre_expand_ast()
1968 if (seq2 != NULL) in tre_expand_ast()
1969 seq2 = tre_ast_new_catenation(mem, copy, seq2); in tre_expand_ast()
1971 seq2 = copy; in tre_expand_ast()
1972 if (seq2 in tre_expand_ast()
[all...]
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dregcomp.c1921 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1952 &pos_add, NULL, &seq2, &max_pos); in tre_expand_ast()
1955 seq2 = tre_ast_new_iter(mem, seq2, 0, -1, 0); in tre_expand_ast()
1956 if (seq2 == NULL) in tre_expand_ast()
1969 if (seq2 != NULL) in tre_expand_ast()
1970 seq2 = tre_ast_new_catenation(mem, copy, seq2); in tre_expand_ast()
1972 seq2 = copy; in tre_expand_ast()
1973 if (seq2 in tre_expand_ast()
[all...]
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dregcomp.c1920 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1951 &pos_add, NULL, &seq2, &max_pos); in tre_expand_ast()
1954 seq2 = tre_ast_new_iter(mem, seq2, 0, -1, 0); in tre_expand_ast()
1955 if (seq2 == NULL) in tre_expand_ast()
1968 if (seq2 != NULL) in tre_expand_ast()
1969 seq2 = tre_ast_new_catenation(mem, copy, seq2); in tre_expand_ast()
1971 seq2 = copy; in tre_expand_ast()
1972 if (seq2 in tre_expand_ast()
[all...]
/third_party/musl/src/regex/
H A Dregcomp.c1920 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1951 &pos_add, NULL, &seq2, &max_pos); in tre_expand_ast()
1954 seq2 = tre_ast_new_iter(mem, seq2, 0, -1, 0); in tre_expand_ast()
1955 if (seq2 == NULL) in tre_expand_ast()
1968 if (seq2 != NULL) in tre_expand_ast()
1969 seq2 = tre_ast_new_catenation(mem, copy, seq2); in tre_expand_ast()
1971 seq2 = copy; in tre_expand_ast()
1972 if (seq2 in tre_expand_ast()
[all...]
/third_party/python/Modules/clinic/
H A Ditertoolsmodule.c.h560 itertools_compress_impl(PyTypeObject *type, PyObject *seq1, PyObject *seq2);
572 PyObject *seq2; in itertools_compress() local
579 seq2 = fastargs[1]; in itertools_compress()
580 return_value = itertools_compress_impl(type, seq1, seq2); in itertools_compress()
/third_party/python/Lib/test/
H A Dtest_difflib.py52 seq2 = 'a' + 'b' * 200
54 sm = difflib.SequenceMatcher(None, seq1, seq2)
59 sm = difflib.SequenceMatcher(None, seq1, seq2, autojunk=False)
H A Dtest_collections.py1910 def assert_index_same(seq1, seq2, index_args):
1915 seq2.index(*index_args)
1917 actual = seq2.index(*index_args)
/third_party/python/Include/
H A Ddictobject.h50 of a key wins, else the first. The Python dict constructor dict(seq2)
51 is equivalent to dict={}; PyDict_MergeFromSeq(dict, seq2, 1).
54 PyObject *seq2,
/third_party/python/Lib/unittest/test/
H A Dtest_case.py834 seq2 = 'b' + 'x' * 80**2
836 pprint.pformat(seq2).splitlines()))
843 self.assertSequenceEqual(seq1, seq2)
853 self.assertSequenceEqual(seq1, seq2)
863 self.assertSequenceEqual(seq1, seq2)
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dranden_engine_test.cc63 std::seed_seq seq2{rd(), rd(), rd()}; in TYPED_TEST()
64 engine.seed(seq2); in TYPED_TEST()
H A Dpcg_engine_test.cc61 std::seed_seq seq2{rd(), rd(), rd()}; in TYPED_TEST()
62 engine.seed(seq2); in TYPED_TEST()
/third_party/python/Objects/
H A Ddictobject.c2731 PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override) in PyDict_MergeFromSeq2() argument
2733 PyObject *it; /* iter(seq2) */ in PyDict_MergeFromSeq2()
2734 Py_ssize_t i; /* index into seq2 of current element */ in PyDict_MergeFromSeq2()
2735 PyObject *item; /* seq2[i] */ in PyDict_MergeFromSeq2()
2740 assert(seq2 != NULL); in PyDict_MergeFromSeq2()
2742 it = PyObject_GetIter(seq2); in PyDict_MergeFromSeq2()
/third_party/python/Modules/
H A Ditertoolsmodule.c3828 selectors as seq2: object
3836 itertools_compress_impl(PyTypeObject *type, PyObject *seq1, PyObject *seq2) in itertools_compress_impl() argument
3845 selectors = PyObject_GetIter(seq2); in itertools_compress_impl()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lecp/
H A Dmain.c2011 }, seq2[] = { variable
4187 .seq = seq2, .seq_size = LWS_ARRAY_SIZE(seq2) },

Completed in 43 milliseconds