Searched refs:first (Results 126 - 150 of 4757) sorted by relevance

1234567891011>>

/external/e2fsprogs/lib/e2p/
H A Dpf.c57 int first = 1; local
62 if (first)
63 first = 0;
74 if (long_opt && first)
/external/expat/tests/
H A Dudiffer.py47 parser.add_argument('first', metavar='FILE')
51 first = _read_lines(config.first)
54 diffs = list(difflib.unified_diff(first, second, fromfile=config.first,
/external/libcxx/test/std/containers/unord/unord.set/
H A Dinsert_rvalue.pass.cpp34 assert(*r.first == 3.5);
39 assert(*r.first == 3.5);
44 assert(*r.first == 4.5);
49 assert(*r.first == 5.5);
60 assert(*r.first == 3);
65 assert(*r.first == 3);
70 assert(*r.first == 4);
75 assert(*r.first == 5);
86 assert(*r.first == 3.5);
91 assert(*r.first
[all...]
H A Dinsert_const_lvalue.pass.cpp32 assert(*r.first == 3.5);
37 assert(*r.first == 3.5);
42 assert(*r.first == 4.5);
47 assert(*r.first == 5.5);
59 assert(*r.first == 3.5);
64 assert(*r.first == 3.5);
69 assert(*r.first == 4.5);
74 assert(*r.first == 5.5);
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
H A Dconst_pair_U_V_cxx03.pass.cpp26 assert(p2.first == 3);
H A Dswap.pass.cpp35 assert(p1.first == 5);
37 assert(p2.first == 3);
45 assert(p1.first == 5);
47 assert(p2.first == 3);
H A Dconst_first_const_second_cxx03.pass.cpp33 assert(p.first == 3.5f);
39 assert(p.first == A(1));
H A Dcopy_ctor.pass.cpp27 assert(p2.first == 3);
35 static_assert(p2.first == 3, "");
/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/
H A Dmake_pair.pass.cpp25 assert(p1.first == 3);
33 assert(*p1.first == 3);
39 assert(p1.first == nullptr);
47 static_assert(p1.first == 3, "");
/external/parameter-framework/upstream/utility/
H A DUtility.h42 /** Join all elements in [first, last[ with op.
49 * let [first, last[ = list<string>{"1", "2", "3"}
50 * then join(first, last, op) == "1|2|3"
54 T join(InputIt first, InputIt last, BinaryOperation op, T empty = T{}) argument
56 if (first == last) {
59 auto init = *first++;
61 return std::accumulate(first, last, init, op);
/external/python/cpython2/Doc/includes/
H A Dnoddy3.c6 PyObject *first; member in struct:__anon19159
14 Py_XDECREF(self->first);
26 self->first = PyString_FromString("");
27 if (self->first == NULL)
49 PyObject *first=NULL, *last=NULL, *tmp; local
51 static char *kwlist[] = {"first", "last", "number", NULL};
54 &first, &last,
58 if (first) {
59 tmp = self->first;
60 Py_INCREF(first);
[all...]
/external/python/cpython3/Doc/includes/
H A Dnoddy3.c6 PyObject *first; member in struct:__anon19712
14 Py_XDECREF(self->first);
26 self->first = PyUnicode_FromString("");
27 if (self->first == NULL) {
47 PyObject *first=NULL, *last=NULL, *tmp; local
49 static char *kwlist[] = {"first", "last", "number", NULL};
52 &first, &last,
56 if (first) {
57 tmp = self->first;
58 Py_INCREF(first);
[all...]
/external/skia/include/effects/
H A DSkRRectsGaussianEdgeMaskFilter.h27 static sk_sp<SkMaskFilter> Make(const SkRRect& first,
/external/skqp/include/effects/
H A DSkRRectsGaussianEdgeMaskFilter.h27 static sk_sp<SkMaskFilter> Make(const SkRRect& first,
/external/testng/src/test/java/test/priority/
H A DWithPrioritySample2Test.java8 public void first() { method in class:WithPrioritySample2Test
9 add("first");
H A DWithPrioritySampleTest.java8 public void first() { method in class:WithPrioritySampleTest
9 add("first");
/external/libcxx/test/std/containers/associative/set/
H A Demplace.pass.cpp35 assert(r.first == m.begin());
42 assert(r.first == m.begin());
54 assert(r.first == m.begin());
59 assert(r.first == next(m.begin()));
61 assert(*r.first == Emplaceable(2, 3.5));
64 assert(r.first == next(m.begin()));
66 assert(*r.first == Emplaceable(2, 3.5));
74 assert(r.first == m.begin());
76 assert(*r.first == 2);
84 assert(r.first
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h51 size_t XSizeA = getBlockSize(X.first.first);
52 size_t YSizeA = getBlockSize(Y.first.first);
56 size_t XSizeB = getBlockSize(X.first.second);
57 size_t YSizeB = getBlockSize(Y.first.second);
80 Edge e = (*EWi).first;
82 Forest.insert(e.first);
86 // Iterate over the sorted edges, biggest first.
89 Edge e = (*EWi).first;
[all...]
/external/python/cpython2/Lib/encodings/
H A Dutf_8_sig.py5 first three bytes.
7 * On decoding/reading if the first three bytes are a UTF-8 encoded BOM, these
28 self.first = 1
31 if self.first:
32 self.first = 0
39 self.first = 1
42 return self.first
45 self.first = state
50 self.first = True
53 if self.first
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h37 if (const BasicBlock *BBX = dyn_cast<BasicBlock>(X.first.first)) {
38 if (const BasicBlock *BBY = dyn_cast<BasicBlock>(Y.first.first)) {
43 if (const BasicBlock *BBX = dyn_cast<BasicBlock>(X.first.second)) {
44 if (const BasicBlock *BBY = dyn_cast<BasicBlock>(Y.first.second)) {
77 Edge e = (*EWi).first;
79 Forest.insert(e.first);
83 // Iterate over the sorted edges, biggest first.
86 Edge e = (*EWi).first;
[all...]
/external/libcxxabi/src/
H A Dcxa_demangle.cpp1686 const char *first = Contents.begin(); variable
1690 if (static_cast<std::size_t>(last - first) > N) {
1691 last = first + N;
1696 const char *t = first;
2008 const char *parse_expression(const char *first, const char *last, Db &db) {
2009 db.First = first;
2013 return first;
2018 const char *parse_expr_primary(const char *first, const char *last, Db &db) {
2019 db.First = first;
2023 return first;
[all...]
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
H A Dminmax_element.pass.cpp15 // minmax_element(Iter first, Iter last);
27 test(Iter first, Iter last) argument
29 std::pair<Iter, Iter> p = std::minmax_element(first, last);
30 if (first != last)
32 for (Iter j = first; j != last; ++j)
34 assert(!(*j < *p.first));
40 assert(p.first == last);
74 assert(base(p.first) == a);
88 static_assert ( *(p.first) == 1, "" );
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
H A Dinsert_const_lvalue.pass.cpp32 assert(r->first == 3.5);
37 assert(r->first == 3.5);
42 assert(r->first == 4.5);
47 assert(r->first == 5.5);
59 assert(r->first == 3.5);
64 assert(r->first == 3.5);
69 assert(r->first == 4.5);
74 assert(r->first == 5.5);
/external/strace/tests/
H A Dqual_fault.test42 local trace fault err first step procs extra
46 first=$1; shift
52 if [ -z "$first$step" ]; then
53 first=1
57 '') when=":when=$first"; step=0 ;;
58 +) when=":when=$first+"; step=1 ;;
59 *) when=":when=$first+$step" ;;
83 ../$NAME $raw "$err" "$first" "$step" $N \
/external/strace/tests-m32/
H A Dqual_fault.test42 local trace fault err first step procs extra
46 first=$1; shift
52 if [ -z "$first$step" ]; then
53 first=1
57 '') when=":when=$first"; step=0 ;;
58 +) when=":when=$first+"; step=1 ;;
59 *) when=":when=$first+$step" ;;
83 ../$NAME $raw "$err" "$first" "$step" $N \

Completed in 1069 milliseconds

1234567891011>>