HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 351 - 375 of 2784) sorted by null

<<11121314151617181920>>

  /hardware/qcom/audio/legacy/alsa_sound/
ALSAStreamOps.cpp 263 bool first = true; local
282 value += (first ? append : String8("|") + append);
283 first = false;
  /libcore/ojluni/src/main/java/java/util/
EnumSet.java 167 E first = i.next(); local
168 EnumSet<E> result = EnumSet.of(first);
313 * @param first an element that the set is to contain initially
320 public static <E extends Enum<E>> EnumSet<E> of(E first, E... rest) {
321 EnumSet<E> result = noneOf(first.getDeclaringClass());
322 result.add(first);
334 * @param from the first element in the range
  /libcore/ojluni/src/main/java/java/util/jar/
JarInputStream.java 48 private JarEntry first; field in class:JarInputStream
80 // should be either the first or the second entry (when preceded
86 first = checkManifest(e);
141 if (first == null) {
148 e = first;
149 if (first.getName().equalsIgnoreCase(JarIndex.INDEX_NAME))
151 first = null;
206 if (first == null) {
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
RangeTest.java 47 Integer first = Stream.iterate(0, i -> i + 1).filter(i -> i > 10000).findFirst().get(); local
48 assertEquals(first, Stream.iterate(0, i -> i + 1).parallel().filter(i -> i > 10000).findFirst().get());
143 int first = IntStream.iterate(0, i -> i + 1).filter(i -> i > 10000).findFirst().getAsInt(); local
144 assertEquals(first, IntStream.iterate(0, i -> i + 1).parallel().filter(i -> i > 10000).findFirst().getAsInt());
226 long first = LongStream.iterate(0, i -> i + 1).filter(i -> i > 10000).findFirst().getAsLong(); local
227 assertEquals(first, LongStream.iterate(0, i -> i + 1).parallel().filter(i -> i > 10000).findFirst().getAsLong());
  /ndk/tests/device/test-gnustl-full/unit/
alg_test.cpp 229 vector<int>::iterator first; local
230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
231 CPPUNIT_ASSERT( first != intv.end() );
232 CPPUNIT_ASSERT( *first == 1 );
241 vector<int>::iterator first; local
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
243 CPPUNIT_ASSERT( first != intv.end() );
244 CPPUNIT_ASSERT( *first == 2 );
259 vector<int>::iterator first; local
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end())
271 vector<int>::iterator first; local
285 vector<int>::iterator first; local
299 vector<int>::iterator first; local
314 vector<int>::iterator first; local
328 vector<MyIntComparable>::iterator first; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
alg_test.cpp 229 vector<int>::iterator first; local
230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
231 CPPUNIT_ASSERT( first != intv.end() );
232 CPPUNIT_ASSERT( *first == 1 );
241 vector<int>::iterator first; local
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
243 CPPUNIT_ASSERT( first != intv.end() );
244 CPPUNIT_ASSERT( *first == 2 );
259 vector<int>::iterator first; local
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end())
271 vector<int>::iterator first; local
285 vector<int>::iterator first; local
299 vector<int>::iterator first; local
314 vector<int>::iterator first; local
328 vector<MyIntComparable>::iterator first; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DeferredHandler.java 48 r = p.first;
130 p.first.run();
137 Runnable peek = p.first;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asynchat.py 210 first = self.producer_fifo[0]
212 if not first:
214 if first is None:
224 data = buffer(first, 0, obs)
226 data = first.more()
241 if num_sent < len(data) or obs < len(first):
242 self.producer_fifo[0] = first[num_sent:]
283 def first (self): member in class:fifo
shelve.py 175 This adds methods first(), next(), previous(), last() and
203 def first(self): member in class:BsdDbShelf
204 (key, value) = self.dict.first()
  /prebuilts/gdb/linux-x86/lib/python2.7/
asynchat.py 210 first = self.producer_fifo[0]
212 if not first:
214 if first is None:
224 data = buffer(first, 0, obs)
226 data = first.more()
241 if num_sent < len(data) or obs < len(first):
242 self.producer_fifo[0] = first[num_sent:]
283 def first (self): member in class:fifo
shelve.py 175 This adds methods first(), next(), previous(), last() and
203 def first(self): member in class:BsdDbShelf
204 (key, value) = self.dict.first()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asynchat.py 210 first = self.producer_fifo[0]
212 if not first:
214 if first is None:
224 data = buffer(first, 0, obs)
226 data = first.more()
241 if num_sent < len(data) or obs < len(first):
242 self.producer_fifo[0] = first[num_sent:]
283 def first (self): member in class:fifo
shelve.py 175 This adds methods first(), next(), previous(), last() and
203 def first(self): member in class:BsdDbShelf
204 (key, value) = self.dict.first()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asynchat.py 210 first = self.producer_fifo[0]
212 if not first:
214 if first is None:
224 data = buffer(first, 0, obs)
226 data = first.more()
241 if num_sent < len(data) or obs < len(first):
242 self.producer_fifo[0] = first[num_sent:]
283 def first (self): member in class:fifo
shelve.py 175 This adds methods first(), next(), previous(), last() and
203 def first(self): member in class:BsdDbShelf
204 (key, value) = self.dict.first()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 62 /** Short javadoc (i.e. the first sentence). */
83 * @param javadoc Short javadoc (i.e. the first sentence).
130 /** Returns a short javadoc, .i.e. the first sentence. */
153 /** Sets a short javadoc, .i.e. the first sentence. */
222 char first = value.charAt(0); local
229 if ((first == '@' || first == '?') /* && mFormats.contains(REFERENCE)*/) {
313 if (Character.isDigit(first) || first == '-' || first == '.')
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 100 Element first = mElements.get(0); local
108 if (DomUtilities.getChildren(first).size() == 0) {
112 Node parent = first.getParentNode();
114 mContainer = first;
124 mContainer = first;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidator.java 142 char first = newText.charAt(0); local
143 if (!(first >= 'a' && first <= 'z')) {
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
util.c 58 static bool first, first_global = true; variable
229 for (first = true, c = 0; c == 0 || !(lflag || qflag); ) {
368 (first || since_printed > Bflag))
378 first = false;
  /system/extras/ext4_utils/
allocate.h 33 struct region *first; member in struct:region_list
  /system/extras/iotop/
iotop.cpp 171 bool first = true; local
180 pid_t tgid = tgid_it.first;
217 if (!first) {
277 first = false;
  /toolchain/binutils/binutils-2.25/bfd/
elf-nacl.c 48 Its first section must start far enough past the page boundary to
67 The first non-executable PT_LOAD segment appears first in the file
174 /* First, we're just finding the earliest PT_LOAD.
184 /* Now that we've noted the first PT_LOAD, we're looking for
185 the first non-executable PT_LOAD with a nonempty p_filesz. */
192 First, clear the flags on previous segments that
218 /* Now swap the first and last PT_LOAD segments'
220 struct elf_segment_map *first = *first_load; local
222 *first_load = first->next
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
xtensa-dis.c 147 int first, first_slot, valid_insn; local
167 /* Allocate buffers the first time through. */
240 first = 1;
245 if (first)
248 first = 0;
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedStringTest.java 33 buf.append(it.first());
173 buf.append(it.first());
278 public char first() { method in class:OldAttributedStringTest.testAttributedCharacterIterator
403 assertEquals("Incorrect iteration on AttributedString", it.first(),
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RuleBasedBreakIterator.java 328 public int first() { method in class:RuleBasedBreakIterator
337 fText.first();
393 * @return The position of the first boundary after this one.
428 // Reset the old break cache first.
439 // looking for the first dictionary character (which may be the one
539 // If we found breaks, build a new break cache. The first and last entries must
677 * Sets the iterator to refer to the first boundary position following
680 * @return The position of the first break after the current position.
697 // cache, then just search the cache for the first break position
720 return first();
911 first(); \/\/ For side effects on current position, tag values. method
954 first(); method
    [all...]

Completed in 428 milliseconds

<<11121314151617181920>>