HomeSort by relevance Sort by last modified time
    Searched defs:current (Results 276 - 300 of 2998) sorted by null

<<11121314151617181920>>

  /bionic/libc/bionic/
ifaddrs.cpp 256 ifaddrs* current = list; local
258 free(current);
  /bionic/libc/system_properties/
system_properties.cpp 348 uint32_t current; member in struct:find_nth
351 explicit find_nth(uint32_t n) : sought(n), current(0), result(nullptr) {
355 if (self->current++ == self->sought) self->result = pi;
  /bionic/linker/
linker_allocator.cpp 133 small_object_block_record* current = free_blocks_list_; local
135 while (current != nullptr) {
136 while (current->next > page_start && current->next < page_end) {
137 current->next = current->next->next;
140 current = current->next;
  /cts/tests/tests/content/src/android/content/pm/cts/
ProviderInfoTest.java 46 ProviderInfo current; local
48 current = providerIterator.next();
49 if (current.name.equals(PROVIDER_NAME)) {
50 checkProviderInfoMethods(current, p);
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/ulp_components/
Status.java 39 current(1), enum constant in enum:Status.Value
  /cts/tests/tests/location/src/android/location/cts/psedorange/
GpsTime.java 111 * @param zDateTime represents the current time in UTC time, must be after 2009
120 * Creates a GPS time based upon the current time.
124 ZonedDateTime current = ZonedDateTime.now(zone); local
125 return fromUtc(current);
149 // Estimate the multiplier of current week.
151 ZonedDateTime current = ZonedDateTime.now(zone);
152 GpsTime refTime = new GpsTime(current);
225 ZonedDateTime current = ZonedDateTime.now(zone);
226 // Since current is derived from UTC time, we need to add leap second here.
227 long gpsTimeMillis = getMillisFromZonedDateTime(current)
    [all...]
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/model/
MockDatabase.java 142 Subscription current = subscriptions.get(index); local
143 if (current.getName().equals(subscription.getName())) {
206 * Removes the list of movies associated with a channel. Overrides the current list with an
237 Movie current = movies.get(index); local
238 if (current.getId() == movie.getId()) {
  /external/adhd/cras/src/server/
cras_empty_iodev.c 46 /* Current level of the audio buffer. This is made up based on what has been
118 unsigned int avail, current; local
124 current = current_level(iodev);
125 *frames = MIN(*frames, current);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
GeneticAlgorithm.java 111 Population current = initial; local
113 while (!condition.isSatisfied(current)) {
114 current = nextGeneration(current);
117 return current;
123 * <li>Get nextGeneration population to fill from <code>current</code>
127 * from <code>current</code></li>
139 * @param current the current population.
142 public Population nextGeneration(Population current) {
    [all...]
  /external/apache-http/src/org/apache/http/message/
HeaderGroup.java 112 Header current = (Header) this.headers.get(i); local
113 if (current.getName().equalsIgnoreCase(header.getName())) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncKey.java 51 * @param xctxt The current execution context.
135 int current = xctxt.getCurrentNode(); local
136 upi.setRoot(current, xctxt);
  /external/conscrypt/api-doclet/src/main/java/org/conscrypt/doclet/
FilterDoclet.java 74 ClassDoc current = classDoc; local
76 if (hasHideAnnotation(current)) {
79 current = current.containingClass();
80 } while (current != null);
  /external/e2fsprogs/lib/ext2fs/
irel.h 29 ext2_ino_t current; member in struct:ext2_inode_relocation_table
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorRandom.h 28 // Use the current time as a baseline.
48 // Augment the current time with pseudo random number generation
60 uint64_t current = *state; local
62 *state = current * 6364136223846793005ULL + 0xda3e39cb94b95bdbULL;
64 return static_cast<unsigned>((current ^ (current >> 22)) >> (22 + (current >> 61)));
  /external/freetype/include/freetype/internal/
ftgloadr.h 70 FT_GlyphLoadRec current; member in struct:FT_GlyphLoaderRec_
109 (FT_UInt)(_loader)->current.outline.n_points + \
115 (FT_UInt)(_loader)->current.outline.n_contours + \
133 /* prepare a glyph loader, i.e. empty the current glyph */
137 /* add the current glyph to the base glyph */
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
GroupedLinkedMap.java 75 LinkedEntry<K, V> current = head.next; local
77 while (!current.equals(head)) {
79 sb.append('{').append(current.key).append(':').append(current.size()).append("}, ");
80 current = current.next;
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestManagerRetriever.java 163 RequestManagerFragment current = (RequestManagerFragment) fm.findFragmentByTag(TAG); local
164 if (current == null) {
165 current = pendingRequestManagerFragments.get(fm);
166 if (current == null) {
167 current = new RequestManagerFragment();
168 pendingRequestManagerFragments.put(fm, current);
169 fm.beginTransaction().add(current, TAG).commitAllowingStateLoss();
173 RequestManager requestManager = current.getRequestManager();
175 requestManager = new RequestManager(context, current.getGlideLifecycle());
176 current.setRequestManager(requestManager)
183 SupportRequestManagerFragment current = (SupportRequestManagerFragment) fm.findFragmentByTag(TAG); local
    [all...]
  /external/google-breakpad/src/common/
memory.h 107 const char* current = reinterpret_cast<char*>(header); local
108 if ((p >= current) && (p < current + header->num_pages * page_size_))
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 80 * Gets the current value.
82 * @return the current value
123 * if the current value is <a href="#bitEquals">bitwise equal</a>
139 * if the current value is <a href="#bitEquals">bitwise equal</a>
159 * Atomically adds the given value to the current value.
166 long current = value; local
167 double currentVal = longBitsToDouble(current);
170 if (updater.compareAndSet(this, current, next)) {
177 * Atomically adds the given value to the current value.
184 long current = value local
    [all...]
AtomicDoubleArray.java 85 * Gets the current value at position {@code i}.
88 * @return the current value
134 * if the current value is <a href="#bitEquals">bitwise equal</a>
152 * if the current value is <a href="#bitEquals">bitwise equal</a>
181 long current = longs.get(i); local
182 double currentVal = longBitsToDouble(current);
185 if (longs.compareAndSet(i, current, next)) {
200 long current = longs.get(i); local
201 double currentVal = longBitsToDouble(current);
204 if (longs.compareAndSet(i, current, next))
    [all...]
  /external/guice/core/src/com/google/inject/spi/
ModuleSource.java 131 ModuleSource current = this; local
132 while (current != null) {
133 String className = current.moduleClassName;
135 current = current.parent;
171 ModuleSource current = this; local
172 while (current != null) {
174 StackTraceElements.convertToStackTraceElement(current.partialCallStack);
177 current = current.parent
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CharacterIteratorWrapper.java 36 * @see UCharacterIterator#current()
39 public int current() { method in class:CharacterIteratorWrapper
40 int c = iterator.current();
68 int i = iterator.current();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryBreakEngine.java 32 private int current; // The candidate we're currently looking at field in class:DictionaryBreakEngine.PossibleWord
55 current = count[0] - 1;
56 mark = current;
66 // Backup from the current candidate to the next shorter one; return true if that exists
69 if (current > 0) {
70 fIter.setIndex(offset + lengths[--current]);
81 // Mark the current candidate as the one we like
83 mark = current;
197 // The span to break begins at the current position int the text, and
201 int current;
    [all...]
  /external/icu/icu4c/source/common/
normlzr.cpp 254 * Return the current character in the normalized text.
256 UChar32 Normalizer::current() { function in class:Normalizer
327 * Retrieve the current iteration position in the input text that is
uchriter.cpp 144 UCharCharacterIterator::current() const { function in class:UCharCharacterIterator
157 /* make current() return DONE */
269 /* make current() return DONE */

Completed in 715 milliseconds

<<11121314151617181920>>