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

1 2 34 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObjectList.java 102 /** returns the first element
105 public GenericObject first() { method in class:NetObjectList
106 return (NetObject) super.first();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
MergeMapsTest.java 35 Map<?, ?> first = result.iterator().next(); local
38 assertEquals("Size must coinside.", first.size(), data.size());
39 assertEquals(first, data);
  /external/testng/src/main/java/org/testng/internal/collections/
Pair.java 10 private final A first; field in class:Pair
13 public Pair(A first, B second) {
14 this.first = first;
18 public A first() { method in class:Pair
19 return first;
30 result = prime * result + ((first == null) ? 0 : first.hashCode());
47 if (first == null) {
48 if (other.first != null)
    [all...]
  /external/toybox/toys/lsb/
seq.c 1 /* seq.c - Count from first to last, by increment.
14 usage: seq [-w|-f fmt_str] [-s sep_str] [first] [increment] last
16 Count from first to last, by increment. Omitted arguments default
17 to 1. Two arguments are used as first and last. Arguments can be
47 double first, increment, last, dd; local
53 first = increment = 1;
56 case 2: first = atof(*toys.optargs);
66 dd = (double []){first, increment, last}[i];
84 for (dd=first; (increment>0 && dd<=last) || (increment<0 && dd>=last);
87 if (dd != first) printf("%s", sep_str)
    [all...]
  /external/v8/test/mjsunit/
cyrillic.js 33 FIRST: "\u0410", // A property in class:cyrillic
34 first: "\u0430", // a
48 FIRST: "\u0391", // ALPHA property in class:greek
49 first: "\u03b1", // alpha
69 var first = lc ? chars.first : chars.FIRST;
72 var first_other_case = lc ? chars.FIRST : chars.first;
76 assertTrue(Range(first, last).test(first), 1)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-969.js 40 function first(x, y) { return x; } function
48 function test0() { return first((y = 1, typeof x0), 2); }
57 function test1() { return first((y += 1, typeof x1), 2); }
64 function test2() { return first((++y, typeof x2), 2); }
70 function test3() { return first((y++, typeof x3), 2); }
79 function test4() { return first((o.x = 1, typeof x4), 2); }
85 function test5() { return first((o.x += 1, typeof x5), 2); }
91 function test6() { return first((++o.x, typeof x6), 2); }
97 function test7() { return first((o.x++, typeof x7), 2); }
106 function test8(index) { return first((o[index] = 1, typeof x8), 2);
    [all...]
  /external/v8/test/unittests/interpreter/
bytecode-register-allocator-unittest.cc 28 int first; local
31 first = temporaries.NewRegister().index();
43 CHECK_EQ(first, second);
  /external/webp/src/enc/
cost.h 29 int first; member in struct:VP8Residual
39 void VP8InitResidual(int first, int coeff_type,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_PutVLCBits.c 123 OMX_U8 last = 0, first = 1, fMode; local
141 if (first == 0)
176 first = 0;
  /frameworks/base/libs/hwui/utils/
Pair.h 27 F first; member in struct:android::uirenderer::Pair
31 Pair(const Pair& o) : first(o.first), second(o.second) { }
32 Pair(const F& f, const S& s) : first(f), second(s) { }
35 return first;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
RoundRobinScheduler.java 46 Filter first = null; local
51 if (first == null) {
52 // store the first available filter
53 first = filter;
65 if (first != null ) {
67 return first;
  /frameworks/compile/mclinker/include/mcld/ADT/
ilist_sort.h 35 iterator first = xs.begin(); local
38 if (is_less_than(*second, *first)) {
39 xs.splice(first, xs, second);
  /frameworks/support/compat/java/android/support/v4/util/
Pair.java 25 public final F first; field in class:Pair
31 * @param first the first object in the Pair
34 public Pair(F first, S second) {
35 this.first = first;
53 return objectsEqual(p.first, first) && objectsEqual(p.second, second);
67 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /libcore/ojluni/src/main/java/java/text/
CharacterIterator.java 54 * by calling setIndex(), first(), and last().
67 * for(char c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
118 * @return the first character in the text, or DONE if the text is empty
121 public char first(); method in interface:CharacterIterator
175 * Returns the end index of the text. This index is the index of the first
  /ndk/sources/cxx-stl/gabi++/include/
stl_pair.h 76 _T1 first; member in struct:pair
78 pair() : first(), second() {}
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
88 return __x.first == __y.first && __x.second == __y.second;
94 return __x.first < __y.first ||
95 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/
iterators.pass.cpp 27 int first; member in struct:A
133 i->first = 3;
135 assert(j->first == 3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/
iterators.pass.cpp 27 int first; member in struct:A
133 i->first = 3;
135 assert(j->first == 3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /ndk/sources/cxx-stl/system/include/
stl_pair.h 76 _T1 first; member in struct:pair
78 pair() : first(), second() {}
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
88 return __x.first == __y.first && __x.second == __y.second;
94 return __x.first < __y.first ||
95 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
msvc_eti_base.hpp 40 typedef result_ first; typedef in struct:boost::mpl::aux::msvc_eti_base_impl::result_
69 typedef msvc_eti_base first; typedef in struct:boost::mpl::aux::msvc_eti_base
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
for_each.hpp 97 typedef typename begin<Sequence>::type first; typedef
100 aux::for_each_impl< boost::is_same<first,last>::value >
101 ::execute(static_cast<first*>(0), static_cast<last*>(0), static_cast<TransformOp*>(0), f);
  /packages/apps/Messaging/src/com/android/messaging/util/
ConversationIdSet.java 38 public String first() { method in class:ConversationIdSet
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
digraph_utils.h 39 typedef struct { int first; int second; int compositeGlyph; } digraph_t; member in struct:latinime::DigraphUtils::__anon36376

Completed in 975 milliseconds

1 2 34 5 6 7 8 91011>>