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

12345678910

/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.cpp59 Category* current = m_pFile; local
60 while (current != NULL) {
61 Category* tmp = current;
62 current = current->next;
68 Category* current = m_pRegular; local
72 while (current != NULL) {
73 if (current->type == pTarget) {
74 current->end++;
77 if (!current
109 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...]
H A DFilter.java41 public int current = STATE_UNPREPARED; field in class:Filter.State
44 return current == state;
151 * Activates the current filter.
163 * Deactivates the current filter.
414 * Returns the current FrameManager instance.
415 * @return the current FrameManager instance or null if there is no FrameManager set up yet.
443 if (mState.current == State.STATE_OPEN) {
453 * Request that this filter be closed after the current processing step.
592 if (mState.current == State.STATE_UNPREPARED) {
594 mState.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/libs/hwui/
H A DExtensions.cpp108 const char* current = extensions; local
109 const char* head = current;
112 head = strchr(current, ' ');
113 String8 s(current, head ? head - current : strlen(current));
118 current = head + 1;
H A DVertexBuffer.h117 TYPE* current = (TYPE*)mBuffer; local
118 TYPE* end = current + vertexCount;
119 mBounds.set(current->x, current->y, current->x, current->y);
120 for (; current < end; current++) {
121 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.java80 // TV is in a mode that should keep its current source/input from
82 // or switch the port back to the one used for the current mode.
83 ActiveSource current = tv.getActiveSource();
84 if (current.logicalAddress == getSourceAddress()) {
86 current.logicalAddress, current.physicalAddress);
88 tv.updateActiveSource(current);
91 tv.startRoutingControl(newActive.physicalAddress, current.physicalAddress, true,
/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/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
/frameworks/base/tools/aapt2/
H A DFiles.cpp96 for (const char* current = start; current != end; ++current) {
97 if (*current == sDirSep) {
98 StringPiece parentPath(start, current - start);
111 for (const char* current = end - 1; current != start - 1; --current) {
112 if (*current == sDirSep) {
113 return std::string(start, current
[all...]
H A DUtil.cpp39 StringPiece::const_iterator current; local
41 current = std::find(start, end, sep);
42 parts.emplace_back(str.substr(start, current).toString());
47 start = current + 1;
48 } while (current != end);
176 const char16_t* current = start; local
177 while (current != end) {
178 if (*current == u'"') {
193 mStr.append(start, current - start);
194 start = current
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp40 const char *next = value, *current; local
42 current = next;
43 next = strchr(current, ',');
48 while (isspace(*current)) {
49 ++current;
52 char *colon = strchr(current, ':');
57 long level = strtol(current, &end, 10);
61 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {

Completed in 606 milliseconds

12345678910