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

12345678

/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.cpp60 Category* current = m_pFile; local
61 while (NULL != current) {
62 Category* tmp = current;
63 current = current->next;
70 Category* current = m_pRegular; local
74 while (NULL != current) {
75 if (current->type == pTarget) {
76 current->end++;
80 if (!current
115 Category* current = m_pFile; local
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DTransformUtils.java41 public static FrameImage2D makeMipMappedFrame(FrameImage2D current, int[] dimensions) { argument
45 if (current == null) {
48 current = Frame.create(imageType, pow2Dims).asFrameImage2D();
49 } else if (!Arrays.equals(dimensions, current.getDimensions())) {
50 current.resize(pow2Dims);
52 return current;
55 public static FrameImage2D makeTempFrame(FrameImage2D current, int[] dimensions) { argument
56 if (current == null) {
59 current = Frame.create(imageType, dimensions).asFrameImage2D();
60 } else if (!Arrays.equals(dimensions, current
[all...]
/frameworks/base/tests/VectorDrawableTest/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/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.java302 CharArrayBuffer current = new CharArrayBuffer(64);
304 if (inbuffer.readLine(current) == -1) {
310 current, new ParserCursor(0, current.length()));
319 if (current == null) {
320 current = new CharArrayBuffer(64);
323 current.clear();
325 int l = inbuffer.readLine(current);
326 if (l == -1 || current.length() < 1) {
333 char first = current
[all...]
/frameworks/base/libs/hwui/
H A DExtensions.cpp114 const char* current = extensions; local
115 const char* head = current;
118 head = strchr(current, ' ');
119 String8 s(current, head ? head - current : strlen(current));
124 current = head + 1;
H A DVertexBuffer.h118 TYPE* current = (TYPE*)mBuffer; local
119 TYPE* end = current + vertexCount;
120 mBounds.set(current->x, current->y, current->x, current->y);
121 for (; current < end; current++) {
122 mBounds.expandToCoverVertex(current->x, current
[all...]
H A DAnimationContext.cpp38 AnimationHandle* current = mCurrentFrameAnimations.mNextHandle; local
39 AnimatorManager& animators = current->mRenderNode->animators();
41 LOG_ALWAYS_FATAL_IF(mCurrentFrameAnimations.mNextHandle == current,
42 "endAllAnimators failed to remove from current frame list!");
71 AnimationHandle* current = mCurrentFrameAnimations.mNextHandle; local
72 AnimatorManager& animators = current->mRenderNode->animators();
75 LOG_ALWAYS_FATAL_IF(mCurrentFrameAnimations.mNextHandle == current,
76 "Animate failed to remove from current frame list!");
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonEvent.java204 int current = 0;
209 if (rawEvent.charAt(current) == '\"') {
211 current++;
213 while (current < length) {
216 wordEnd = current;
225 String word = rawEvent.substring(current, wordEnd);
226 current += word.length();
230 current++; // skip the trailing quote
240 int nextSpace = rawEvent.indexOf(' ', current);
241 int nextQuote = rawEvent.indexOf(" \"", current);
[all...]
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DDeviceDiscoveryAction.java249 DeviceInfo current = mDevices.get(mProcessedDeviceCount);
250 if (current.mLogicalAddress != cmd.getSource()) {
251 Slog.w(TAG, "Unmatched address[expected:" + current.mLogicalAddress + ", actual:" +
257 current.mPhysicalAddress = HdmiUtils.twoBytesToInt(params);
258 current.mPortId = getPortId(current.mPhysicalAddress);
259 current.mDeviceType = params[2] & 0xFF;
261 tv().updateCecSwitchInfo(current.mLogicalAddress, current.mDeviceType,
262 current
[all...]
H A DActiveSourceHandler.java76 // TV is in a mode that should keep its current source/input from
78 // or switch the port back to the one used for the current mode.
79 ActiveSource current = tv.getActiveSource();
80 if (current.logicalAddress == getSourceAddress()) {
82 current.logicalAddress, current.physicalAddress);
84 tv.updateActiveSource(current);
87 tv.startRoutingControl(newActive.physicalAddress, current.physicalAddress, true,
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp37 const char *next = value, *current; local
40 current = next;
41 next = strchr(current, ',');
46 while (isspace(*current)) {
47 ++current;
50 char *colon = strchr(current, ':');
55 unsigned long level = strtoul(current, &end, 10);
59 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
/frameworks/base/core/tests/overlaytests/OverlayAppFirst/
H A DAndroid.mk8 LOCAL_SDK_VERSION := current
/frameworks/base/core/tests/overlaytests/OverlayAppSecond/
H A DAndroid.mk8 LOCAL_SDK_VERSION := current
/frameworks/base/core/tests/overlaytests/OverlayTestOverlay/
H A DAndroid.mk8 LOCAL_SDK_VERSION := current
/frameworks/opt/setupwizard/navigationbar/
H A DAndroid.mk4 LOCAL_SDK_VERSION := current
/frameworks/native/libs/ui/tests/
H A DRegion_test.cpp34 for (const Rect* current = r.begin(); current < r.end(); current++) {
35 for (const Rect* other = current - 1; other >= r.begin(); other--) {
36 if (other->bottom < current->top) break;
37 if (other->bottom != current->top) continue;
38 checkVertTJunction(current, other);
40 for (const Rect* other = current + 1; other < r.end(); other++) {
41 if (other->top > current->bottom) break;
42 if (other->top != current
[all...]
/frameworks/av/services/audioflinger/
H A DFastCapture.cpp41 current = &initial;
66 preIdle = *(const FastCaptureState *)current;
67 current = &preIdle;
89 const FastCaptureState * const current = (const FastCaptureState *) this->current; local
92 const size_t frameCount = current->mFrameCount;
98 if (current->mInputSourceGen != inputSourceGen) {
99 inputSource = current->mInputSource;
100 inputSourceGen = current->mInputSourceGen;
115 if (current
157 const FastCaptureState * const current = (const FastCaptureState *) this->current; local
[all...]
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/
H A DAndroid.mk37 LOCAL_SDK_VERSION := current
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/
H A DAndroid.mk37 LOCAL_SDK_VERSION := current
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/java_only/
H A DAndroid.mk34 LOCAL_SDK_VERSION := current

Completed in 6759 milliseconds

12345678