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

<<11121314151617181920>>

  /frameworks/rs/cpu_ref/
rsCpuCoreRuntime.h 55 struct RsLaunchDimensions current; member in struct:RsExpandKernelDriverInfo
  /hardware/ril/libril/
RilSapSocket.cpp 87 RilSapSocketList *current = head; local
89 while(NULL != current) {
90 RLOGD("SocketName:%s",current->socket->name);
91 RLOGD("Socket id:%d",current->socket->id);
92 current = current->next;
98 RilSapSocketList *current = head; local
103 while(NULL != current) {
104 if(socketId == current->socket->id) {
105 sap_socket = current->socket
150 RilSapSocketList *current; local
180 RilSapSocketList* current = head; local
    [all...]
  /libcore/ojluni/src/main/java/java/sql/
SQLException.java 289 SQLException current = this; local
291 SQLException next=current.next;
293 current = next;
297 if (nextUpdater.compareAndSet(current,null,ex)) {
300 current=current.next;
  /libcore/ojluni/src/main/java/java/text/
BreakIterator.java 51 * maintain a current position and scan over text
201 * int current = wb.next();
202 * while (current != BreakIterator.DONE) {
203 * for (int p = last; p < current; p++) {
207 * last = current;
208 * current = wb.next();
262 * Returns the first boundary. The iterator's current position is set
269 * Returns the last boundary. The iterator's current position is set
276 * Returns the nth boundary from the current boundary. If either
278 * <code>BreakIterator.DONE</code> and the current position is set to eithe
407 public abstract int current(); method in class:BreakIterator
    [all...]
StringCharacterIterator.java 131 return current();
145 return current();
157 return current();
161 * Implements CharacterIterator.current() for String.
162 * @see CharacterIterator#current
164 public char current() method in class:StringCharacterIterator
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
AtomicMarkableReference.java 78 * Returns the current value of the reference.
80 * @return the current value of the reference
87 * Returns the current value of the mark.
89 * @return the current value of the mark
96 * Returns the current values of both the reference and the mark.
101 * @return the current value of the reference
112 * current reference is {@code ==} to the expected reference
113 * and the current mark is equal to the expected mark.
136 * current reference is {@code ==} to the expected reference
137 * and the current mark is equal to the expected mark
149 Pair<V> current = pair; local
165 Pair<V> current = pair; local
184 Pair<V> current = pair; local
    [all...]
AtomicStampedReference.java 78 * Returns the current value of the reference.
80 * @return the current value of the reference
87 * Returns the current value of the stamp.
89 * @return the current value of the stamp
96 * Returns the current values of both the reference and the stamp.
101 * @return the current value of the reference
112 * current reference is {@code ==} to the expected reference
113 * and the current stamp is equal to the expected stamp.
136 * current reference is {@code ==} to the expected reference
137 * and the current stamp is equal to the expected stamp
149 Pair<V> current = pair; local
165 Pair<V> current = pair; local
184 Pair<V> current = pair; local
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
StringTokenIterator.java 58 public String current() { method in class:StringTokenIterator
  /libcore/ojluni/src/test/java/nio/file/attribute/
BasicFileAttributeViewCreationTimeTest.java 103 FileTime current = creationTime(file); local
104 if (!current.equals(creationTime))
117 FileTime current = creationTime(file); local
118 if (Math.abs(creationTime.toMillis()-current.toMillis()) > 1000L)
  /packages/apps/Contacts/src/com/android/contacts/util/
StopWatch.java 76 final long current = mTimes.get(i); local
79 sb.append((current - last));
81 last = current;
  /packages/apps/Dialer/java/com/android/contacts/common/util/
StopWatch.java 67 final long current = mTimes.get(i); local
70 sb.append((current - last));
72 last = current;
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/util/
RowCombiner.java 64 String current = iterator.next().getAsString(columnName); local
65 Assert.checkState(Objects.equals(singleValue, current), "Values different for " + columnName);
76 Long current = iterator.next().getAsLong(columnName); local
77 Assert.checkState(Objects.equals(singleValue, current), "Values different for " + columnName);
88 Integer current = iterator.next().getAsInteger(columnName); local
89 Assert.checkState(Objects.equals(singleValue, current), "Values different for " + columnName);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
DragListener.java 68 State current = (State) array.getItem(origin); local
69 array.remove(current);
70 array.insert(current, pos);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractSuggestionWrapper.java 26 * Gets the current suggestion.
28 protected abstract Suggestion current(); method in class:AbstractSuggestionWrapper
31 return current().getShortcutId();
35 return current().getSuggestionFormat();
39 return current().getSuggestionIcon1();
43 return current().getSuggestionIcon2();
47 return current().getSuggestionIntentAction();
51 return current().getSuggestionIntentComponent();
55 return current().getSuggestionIntentDataString();
59 return current().getSuggestionIntentExtraData()
    [all...]
  /packages/apps/Settings/src/com/android/settings/display/
VrDisplayPreferencePicker.java 57 int current = Settings.Secure.getIntForUser(getContext().getContentResolver(), local
60 return PREF_KEY_PREFIX + current;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSourcePlexor.java 75 protected ImageData naturalNext(ImageData current) {
76 return current.naturalNext();
80 protected ImageData naturalPrevious(ImageData current) {
81 return current.naturalPrevious();
85 protected void donePaging(ImageData current) {
86 current.donePaging();
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CheckableListAdapter.java 111 CheckableItem current = getItem(i); local
112 if (current.name.equals(e) && current.isChecked) {
  /prebuilts/go/darwin-x86/src/os/user/
cgo_lookup_unix.go 48 func current() (*User, error) { func
  /prebuilts/go/linux-x86/src/os/user/
cgo_lookup_unix.go 48 func current() (*User, error) { func
  /toolchain/binutils/binutils-2.27/bfd/
archive64.c 160 bfd *current = arch->archive_head; local
203 for (current = arch->archive_head;
204 current != NULL && count < symbol_count;
205 current = current->archive_next)
211 count < symbol_count && map[count].u.abfd == current;
222 archive_member_file_ptr += arelt_size (current);
elfcore.h 289 bfd_size_type current = p->p_offset + p->p_filesz; local
290 if (high < current)
291 high = current;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
ClassName.java 160 Element current = element.getEnclosingElement(); local
161 while (current.getKind().isClass() || current.getKind().isInterface()) {
163 enclosingNames.add(current.getSimpleName().toString());
164 current = current.getEnclosingElement();
166 PackageElement packageElement = getPackage(current);
175 Class<?> current = clazz.getEnclosingClass(); local
176 while (current != null) {
177 enclosingNames.add(current.getSimpleName())
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectory.java 269 final FatLfnDirectoryEntry current = local
272 if (!current.realEntry.isDeleted() && current.isValid()) {
273 checkUniqueName(current.getName());
275 shortNameIndex.put(current.realEntry.getShortName(), current); local
276 longNameIndex.put(current.getName().toLowerCase(), current); local
  /art/compiler/optimizing/
register_allocator.cc 62 it.Current()->SetLiveInterval(bad_live_interval);
65 it.Current()->SetLiveInterval(bad_live_interval);
140 LiveInterval* current = it.CurrentInterval(); local
141 HInstruction* defined_by = current->GetParent()->GetDefinedBy();
142 if (current->GetParent()->HasSpillSlot()
143 // Parameters and current method have their own stack slot.
147 + current->GetParent()->GetSpillSlot() / kVRegSize
164 if (current->HasRegister()) {
165 if (kIsDebugBuild && log_fatal_on_failure && !current->IsFixed()) {
168 CHECK(codegen.HasAllocatedRegister(processing_core_registers, current->GetRegister()))
    [all...]
  /art/openjdkjvmti/
ti_search.cc 53 #include "thread-current-inl.h"
87 art::ClassLinker* class_linker = art::Runtime::Current()->GetClassLinker();
89 art::Thread* self = art::Thread::Current();
139 // OK, now get the current value.
200 art::Runtime* runtime = art::Runtime::Current();
202 art::ScopedThreadStateChange stsc(art::Thread::Current(),
209 art::ScopedThreadStateChange stsc(art::Thread::Current(),
212 art::Runtime* runtime = art::Runtime::Current();
218 art::Runtime* current = art::Runtime::Current(); local
    [all...]

Completed in 867 milliseconds

<<11121314151617181920>>