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

1 2 3 4 5 67 8 91011>>

  /toolchain/binutils/binutils-2.25/libiberty/
objalloc.c 203 /* First set P to the chunk which contains the block we are freeing,
228 struct objalloc_chunk *first; local
237 first = NULL;
252 else if (first == NULL)
253 first = q;
258 if (first == NULL)
259 first = p;
260 o->chunks = (PTR) first;
  /ndk/build/core/
definitions-utils.mk 136 # Function : find-first
139 # Returns : the first item of $1 that satisfies the predicate.
141 find-first = $(firstword $(call filter-by,$1,$2))
143 -test-find-first.empty = \
145 $(call test-expect,,$(call find-first,,-local-pred))\
146 $(call test-expect,,$(call find-first,bar,-local-pred))
148 -test-find-first.simple = \
150 $(call test-expect,foo,$(call find-first,foo,-local-pred))\
151 $(call test-expect,foo,$(call find-first,aaa foo bar,-local-pred))\
152 $(call test-expect,foo,$(call find-first,aaa foo foo bar,-local-pred)
    [all...]
  /art/runtime/arch/
instruction_set_features.cc 222 bool first = false; // Is this first feature? local
231 if (!first) {
251 first = true;
  /build/tools/releasetools/
rangelib.py 271 def first(self, n): member in class:RangeSet
272 """Return the RangeSet that contains at most the first 'n' integers.
274 >>> RangeSet("0-9").first(1)
276 >>> RangeSet("10-19").first(5)
278 >>> RangeSet("10-19").first(15)
280 >>> RangeSet("10-19 30-39").first(3)
282 >>> RangeSet("10-19 30-39").first(15)
284 >>> RangeSet("10-19 30-39").first(30)
286 >>> RangeSet("0-9").first(0)
  /cts/tests/tests/graphics/src/android/graphics/cts/
SumPathEffectTest.java 48 PathEffect first = new CornerPathEffect(40); local
52 paint.setPathEffect(first);
61 SumPathEffect sumPathEffect = new SumPathEffect(second, first);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
UniformListItem.java 33 * output list size (which is four bytes) and before the first item.</p>
98 OffsettedItem first = items.get(0); local
99 return (items.size() * first.writeSize()) + getAlignment(items);
131 boolean first = true;
136 if (first) {
137 first = false;
162 boolean first = true;
168 if (first) {
171 first = false;
  /dalvik/dx/src/com/android/dx/dex/file/
UniformListItem.java 31 * output list size (which is four bytes) and before the first item.</p>
96 OffsettedItem first = items.get(0); local
97 return (items.size() * first.writeSize()) + getAlignment(items);
129 boolean first = true;
134 if (first) {
135 first = false;
160 boolean first = true;
166 if (first) {
169 first = false;
  /developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 142 String first = WORDS_TO_REPLACE[i * 2]; local
145 if (parts[j].equals(first)) {
148 parts[j] = first;
  /developers/samples/android/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 142 String first = WORDS_TO_REPLACE[i * 2]; local
145 if (parts[j].equals(first)) {
148 parts[j] = first;
  /development/perftests/panorama/feature_mos/src/mosaic/
CSite.h 28 short first; member in struct:__anon2763
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_indexing.cpp 36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal)
44 s_point=source+first;
46 d_bottom=dest+first;
61 long first=0; local
76 for(;last-first>2;)
78 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]);
79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal);
82 else if(last_equal<pos) first=last_equal+1;
95 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2])
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List13.java 143 int first = view.getFirstVisiblePosition(); local
148 t.setText(mStrings[first + i]);
  /development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/
ElizaResponder.java 142 String first = WORDS_TO_REPLACE[i * 2]; local
145 if (parts[j].equals(first)) {
148 parts[j] = first;
  /external/blktrace/
stats.h 98 int first; member in struct:histlog2
105 return h->first + (index ? h->delta << (index - 1) : 0);
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
looper.py 5 previously up, if this is the first or last item in the sequence, etc.
33 if loop.first:
107 def first(self): member in class:loop_pos
109 first = property(first) variable in class:loop_pos
126 if self.first:
  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 68 /// the first symbolic parent region is returned.
282 bool first = true; local
284 if (first) {
285 os << ' '; first = false;
  /external/clang/test/Index/
index-templates.cpp 77 T first; member in struct:Pair
  /external/clang/test/Sema/
loop-control.c 5 int first = 1; local
6 for ( ; ({ if (first) { first = 0; continue; } 0; }); )
11 void pr8880_2(int first) {
12 for ( ; ({ if (first) { first = 0; break; } 0; }); ) {}
15 void pr8880_3(int first) {
16 for ( ; ; (void)({ if (first) { first = 0; continue; } 0; })) {}
19 void pr8880_4(int first) {
    [all...]
  /external/clang/test/SemaCXX/
typo-correction-cxx11.cpp 42 int first; member in struct:NewTypoExprFromResolvingTypoAmbiguity::pair
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
UniformListItem.java 33 * output list size (which is four bytes) and before the first item.</p>
98 OffsettedItem first = items.get(0); local
99 return (items.size() * first.writeSize()) + getAlignment(items);
131 boolean first = true;
136 if (first) {
137 first = false;
162 boolean first = true;
168 if (first) {
171 first = false;
  /external/e2fsprogs/lib/blkid/
list.h 124 * @head: the place to add it in the first list.
128 struct list_head *first = list->next; local
130 if (first != list) {
134 first->prev = head;
135 head->next = first;
  /external/e2fsprogs/lib/ext2fs/
tst_iscan.c 155 com_err("iterate", retval, "while reading first inode");
179 int i, j, first=1; local
204 if (first)
205 first = 0;
  /external/fio/
flist.h 126 struct flist_head *first = list->next; local
129 first->prev = prev;
130 prev->next = first;
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableSortedSet.java 97 public E first() { method in class:EmptyImmutableSortedSet
ForwardingSortedSet.java 71 public E first() { method in class:ForwardingSortedSet
72 return delegate().first();
105 * A sensible definition of {@link #contains} in terms of the {@code first()}
116 Object ceiling = self.tailSet(object).first();

Completed in 493 milliseconds

1 2 3 4 5 67 8 91011>>