Searched refs:current (Results 1 - 25 of 115) sorted by relevance

12345

/frameworks/base/sax/java/android/sax/
H A DChildren.java34 Child current = children[index];
35 if (current == null) {
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
38 children[index] = current;
39 return current;
44 if (current.hash == hash
45 && current.uri.compareTo(uri) == 0
46 && current.localName.compareTo(localName) == 0) {
48 return current;
51 previous = current;
[all...]
H A DRootElement.java101 Element current = null; field in class:RootElement.Handler
123 + " within text element named " + current + ".",
127 // If we're one level below the current element.
128 if (depth == current.depth + 1) {
130 Children children = current.children;
155 this.current = e;
180 Element current = this.current;
182 // If we've ended the current element...
183 if (depth == current
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp55 Category* current = m_pFile; local
56 while (NULL != current) {
57 Category* tmp = current;
58 current = current->next;
70 Category* current = m_pGlobal; local
73 while (NULL != current) {
74 if (current->type == target) {
75 current->end++;
79 if (!current
119 Category* current = m_pFile; local
[all...]
/frameworks/base/libs/hwui/
H A DExtensions.h50 const char* current = buffer; local
51 const char* head = current;
54 head = strchr(current, ' ');
55 String8 s(current, head ? head - current : strlen(current));
60 current = head + 1;
H A DPathRenderer.cpp124 const Vertex* current = &(perimeter[0]); local
125 vec2 lastNormal(current->position[1] - last->position[1],
126 last->position[0] - current->position[0]);
130 vec2 nextNormal(next->position[1] - current->position[1],
131 current->position[0] - next->position[0]);
138 current->position[0] + totalOffset.x,
139 current->position[1] + totalOffset.y);
142 current->position[0] - totalOffset.x,
143 current->position[1] - totalOffset.y);
145 last = current;
160 const Vertex* current = &(vertices[0]); local
212 const Vertex* current = &(perimeter[0]); local
287 const Vertex* current = &(vertices[1]); local
441 const Vertex* current = &(perimeter[0]); local
[all...]
/frameworks/base/media/tests/CameraBrowser/
H A DAndroid.mk10 LOCAL_SDK_VERSION := current
/frameworks/base/media/tests/ScoAudioTest/
H A DAndroid.mk4 #LOCAL_SDK_VERSION := current
/frameworks/base/core/java/android/net/http/
H A DCharArrayBuffers.java71 char current = chars[i];
72 if (current == ch) {
74 } else if (current >= 'A' && current <= 'Z'){
76 current += uppercaseAddon;
77 chars[i] = current;
H A DAndroidHttpClientConnection.java306 CharArrayBuffer current = new CharArrayBuffer(64);
308 if (inbuffer.readLine(current) == -1) {
314 current, new ParserCursor(0, current.length()));
323 if (current == null) {
324 current = new CharArrayBuffer(64);
327 current.clear();
329 int l = inbuffer.readLine(current);
330 if (l == -1 || current.length() < 1) {
337 char first = current
[all...]
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonEvent.java193 int current = 0;
198 if (rawEvent.charAt(current) == '\"') {
200 current++;
202 while (current < length) {
205 wordEnd = current;
214 wordEnd = rawEvent.indexOf(' ', current);
218 String word = rawEvent.substring(current, wordEnd);
219 current += word.length();
223 current++; // skip the trailing quote
233 int nextSpace = rawEvent.indexOf(' ', current);
[all...]
/frameworks/base/core/tests/overlaytests/OverlayTestOverlay/
H A DAndroid.mk8 LOCAL_SDK_VERSION := current
/frameworks/base/tests/RenderScriptTests/HelloWorld/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/frameworks/base/tests/RenderScriptTests/MiscSamples/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfoCache.java214 AccessibilityNodeInfo current = mCacheImpl.get(rootNodeId);
215 if (current == null) {
219 SparseLongArray childNodeIds = current.getChildNodeIds();
230 * @param currentInputFocusId The current input focused node.
247 * @param currentAccessibilityFocusId The current input focused node.
292 AccessibilityNodeInfo current = fringe.poll();
294 if (!seen.add(current)) {
295 Log.e(LOG_TAG, "Duplicate node: " + current);
300 if (current.isAccessibilityFocused()) {
302 Log.e(LOG_TAG, "Duplicate accessibility focus:" + current);
[all...]
/frameworks/base/tests/HugeBackup/
H A DAndroid.mk11 LOCAL_SDK_VERSION := current
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java62 final PlaybackQueueItem current = mCurrentWorkItem;
63 if (current != null && (current.getCallerIdentity() == callerIdentity)) {
64 stop(current);
130 // returning and mCurrentWorkItem being set, the current work item
/frameworks/native/opengl/libagl/
H A Dvertex.cpp36 c->current.color.r = 0x10000;
37 c->current.color.g = 0x10000;
38 c->current.color.b = 0x10000;
39 c->current.color.a = 0x10000;
190 c->current.color.r = gglFloatToFixed(r);
191 c->currentColorClamped.r = gglClampx(c->current.color.r);
192 c->current.color.g = gglFloatToFixed(g);
193 c->currentColorClamped.g = gglClampx(c->current.color.g);
194 c->current.color.b = gglFloatToFixed(b);
195 c->currentColorClamped.b = gglClampx(c->current
[all...]
/frameworks/native/opengl/tests/gl2_cameraeye/
H A DAndroid.mk11 LOCAL_SDK_VERSION := current
/frameworks/base/media/tests/MediaDump/
H A DAndroid.mk11 LOCAL_SDK_VERSION := current
/frameworks/native/include/private/ui/
H A DRegionHelper.h75 RECT current; local
78 int inside = spanner.next(current.top, current.bottom);
82 int inside = spannerInner.next(current.left, current.right);
84 if (current.left < current.right &&
85 current.top < current.bottom) {
86 rasterizer(current);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java250 final Keyboard current = mKeyboardView.getKeyboard();
252 if (current == mQwertyKeyboard || current == mQwertyKeyboardShifted) {
254 } else if (current == mSymbolsKeyboard || current == mSymbolsKeyboardShifted) {
272 Keyboard current = mKeyboardView.getKeyboard();
274 final boolean isAlphaMode = current == mQwertyKeyboard
275 || current == mQwertyKeyboardShifted;
287 if (next != current) {
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp45 const FastMixerState *previous = &initial, *current = &initial; local
79 ThreadCpuUsage tcu; // for reading the current CPU clock frequency in kHz
107 ALOG_ASSERT(current == &initial && previous == &initial);
108 next = current;
112 if (next != current) {
119 // However, the state queue only guarantees access to current and previous states.
123 // non-idle -> non-idle update previous from current in-place
124 // non-idle -> idle update previous from copy of current
127 if (!(current->mCommand & FastMixerState::IDLE)) {
129 preIdle = *current;
[all...]
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java62 * Gets value at the given column for the current row.
133 int current = start;
136 if (current == end) {
141 localData[current++] = columnValue;
144 if (current != end) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTicker.java70 int current; field in class:Ticker.Segment
92 if (this.current > this.text.length()) {
95 CharSequence substr = this.text.subSequence(this.current, this.text.length());
101 this.next = this.current + end;
104 throw new RuntimeException("lineCount=" + lineCount + " current=" + current +
135 this.current = index + start;
139 this.current = len;
152 this.current = index;
191 // (which will let the current on
[all...]
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java77 String current = mCursors[j].getString(mSortColumns[j]);
78 if (mCursor == null || current.compareToIgnoreCase(smallest) < 0) {
79 smallest = current;
161 String current = mCursors[j].getString(mSortColumns[j]);
162 if (smallestIdx < 0 || current.compareToIgnoreCase(smallest) < 0) {
163 smallest = current;

Completed in 370 milliseconds

12345