HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 51 - 75 of 2994) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/compiler/optimizing/
pretty_printer.h 44 bool first = true; local
46 if (first) {
47 first = false;
57 bool first = true; local
59 if (first) {
60 first = false;
  /bionic/libstdc++/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /external/ImageMagick/Magick++/tests/
readWriteBlob.cpp 196 list<Image> first; local
197 readImages( &first, srcdir + "test_image_anim.miff" );
198 writeImages( first.begin(), first.end(), &blob, true );
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
ChromosomePair.java 26 /** the first chromosome in the pair. */
27 private final Chromosome first; field in class:ChromosomePair
35 * @param c1 the first chromosome.
40 first = c1;
45 * Access the first chromosome.
47 * @return the first chromosome.
50 return first;
  /external/bison/src/
Sbitset.c 67 bool first = true; local
73 if (first)
74 first = false;
  /external/clang/test/CXX/special/class.copy/
p15-0x.cpp 6 const int first; member in struct:PR10622::foo
  /external/elfutils/libelf/
elf32_updatenull.c 184 bool first = true; local
208 for (size_t cnt = first == true; cnt < list->cnt; ++cnt)
411 first = false;
421 e_shnum (or sh_size of the dummy, first section header)
  /external/glide/library/src/main/java/com/bumptech/glide/util/
MultiClassKey.java 7 private Class<?> first; field in class:MultiClassKey
14 public MultiClassKey(Class<?> first, Class<?> second) {
15 set(first, second);
18 public void set(Class<?> first, Class<?> second) {
19 this.first = first;
26 + "first=" + first
42 if (!first.equals(that.first)) {
    [all...]
  /external/google-breakpad/src/client/linux/dump_writer_common/
mapping_info.h 52 MappingInfo first; member in struct:google_breakpad::MappingEntry
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultisets.java 73 @Override public E first() { method in class:SortedMultisets.ElementSet
  /external/harfbuzz_ng/test/api/
test-set.c 164 hb_codepoint_t next, first, last; local
191 first = last = HB_SET_VALUE_INVALID;
192 g_assert (hb_set_next_range (s, &first, &last));
193 g_assert_cmpint (first, ==, 6);
195 g_assert (hb_set_next_range (s, &first, &last));
196 g_assert_cmpint (first, ==, 10);
198 g_assert (hb_set_next_range (s, &first, &last));
199 g_assert_cmpint (first, ==, 20005);
201 g_assert (!hb_set_next_range (s, &first, &last));
202 g_assert_cmpint (first, ==, HB_SET_VALUE_INVALID)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Pair.java 10 * A pair of objects: first and second.
12 * @param <F> first object type
16 public final F first; field in class:Pair
19 protected Pair(F first, S second) {
20 this.first = first;
26 * @param first must be non-null
30 public static <F, S> Pair<F, S> of(F first, S second) {
31 if (first == null || second == null) {
34 return new Pair<F, S>(first, second)
    [all...]
  /external/iproute2/include/
hlist.h 12 struct hlist_node *first; member in struct:hlist_head
30 struct hlist_node *first = h->first; local
31 n->next = first;
32 if (first)
33 first->pprev = &n->next;
34 h->first = n;
35 n->pprev = &h->first;
39 for (pos = (head)->first; pos ; pos = pos->next)
43 for (pos = (head)->first; pos && ({ n = pos->next; 1; });
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
MethodItem.java 53 final int first = node.getFirstLine(); local
54 return first != ISourceNode.UNKNOWN_LINE ? link + "#L" + first : link;
  /external/jemalloc/include/jemalloc/internal/
quarantine.h 22 size_t first; member in struct:quarantine_s
  /external/libchrome/sandbox/linux/bpf_dsl/
syscall_set.cc 28 uint32_t first; member in struct:sandbox::__anon15953::SyscallRange
33 // First we iterate up to MAX_PUBLIC_SYSCALL, which is equal to MAX_SYSCALL
57 if (num >= range.first && num <= range.last) {
99 if (want_invalid && range.first > 0 && num_ < range.first - 1) {
102 return range.first - 1;
104 if (want_valid && num_ < range.first) {
105 return range.first;
  /external/libcxx/test/std/containers/sequences/list/
iterators.pass.cpp 27 int first; member in struct:A
133 i->first = 3;
135 assert(j->first == 3);
  /external/libcxx/test/std/containers/sequences/vector/
iterators.pass.cpp 27 int first; member in struct:A
133 i->first = 3;
135 assert(j->first == 3);
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.pass.cpp 28 typename S::const_iterator first = s.begin() + pos1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str);
iter_iter_size_char.pass.cpp 29 typename S::const_iterator first = s.begin() + pos1; local
31 typename S::size_type xlen = last - first;
32 s.replace(first, last, n2, c);
iter_iter_string.pass.cpp 28 typename S::const_iterator first = s.begin() + pos1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str);
  /external/libvterm/src/
unicode.c 24 * a first attempt of defining such behavior based on simple rules
73 int first; member in struct:interval
136 if (ucs < table[0].first || ucs > table[max].last)
142 else if (ucs < table[mid].first)
  /external/llvm/include/llvm/ExecutionEngine/
GenericValue.h 28 unsigned int first; member in struct:llvm::GenericValue::IntPair
45 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_split_tmp.h 30 unsigned first, incr; local
44 draw_pt_split_prim(prim, &first, &incr);
46 count = draw_pt_trim_count(count, first, incr);
47 if (count < first)
55 assert(max_count_simple >= first + incr &&
56 max_count_loop >= first + incr &&
57 max_count_fan >= first + incr);
64 const unsigned rollback = first - incr;
74 * remaining = count - seg_start = first + N'' * incr.
91 draw_pt_trim_count(MIN2(max_count_simple, count), first, incr)
    [all...]
  /external/mesa3d/src/mesa/math/
m_trans_tmp.h 37 const GLubyte *first = f; local
40 (void) first;
63 const GLubyte *first = f; local
66 (void) first;
88 const GLubyte *first = f; local
90 (void) first;
110 const GLubyte *first = f; local
112 (void) first;
130 const GLubyte *first = f; local
133 (void) first;
154 const GLubyte *first = f; local
178 const GLubyte *first = f; local
199 const GLubyte *first = f; local
    [all...]

Completed in 787 milliseconds

1 23 4 5 6 7 8 91011>>