Home
last modified time | relevance | path

Searched refs:VISIBLE_SIZE (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Objects/
Dstructseq.c16 #define VISIBLE_SIZE(op) Py_SIZE(op) macro
57 return VISIBLE_SIZE(obj); in structseq_length()
63 if (i < 0 || i >= VISIBLE_SIZE(obj)) { in structseq_item()
79 if (high > VISIBLE_SIZE(obj)) in structseq_slice()
80 high = VISIBLE_SIZE(obj); in structseq_slice()
103 i += VISIBLE_SIZE(self); in structseq_subscript()
105 if (i < 0 || i >= VISIBLE_SIZE(self)) { in structseq_subscript()
120 slicelen = _PySlice_AdjustIndices(VISIBLE_SIZE(self), &start, &stop, in structseq_subscript()
230 return structseq_slice(obj, 0, VISIBLE_SIZE(obj)); in make_tuple()
261 for (i=0; i < VISIBLE_SIZE(obj); i++) { in structseq_repr()
[all …]
/external/autotest/frontend/client/src/autotest/afe/
DLabelFilter.java14 public static final int VISIBLE_SIZE = 10; field in LabelFilter
18 super("multiple_labels", VISIBLE_SIZE); in LabelFilter()
/external/python/cpython3/Objects/
Dstructseq.c18 #define VISIBLE_SIZE(op) Py_SIZE(op) macro
191 for (i=0; i < VISIBLE_SIZE(obj); i++) { in structseq_repr()
251 n_visible_fields = VISIBLE_SIZE(self); in structseq_reduce()