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

1234567891011>>

/frameworks/base/libs/hwui/utils/
H A DStringUtils.cpp24 const char* current = spacedList; local
25 const char* head = current;
27 head = strchr(current, ' ');
28 std::string s(current, head ? head - current : strlen(current));
32 current = head + 1;
/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/base/libs/androidfw/
H A DResourceUtils.cpp29 const char* current = start; local
30 while (current != end) {
31 if (out_type->size() == 0 && *current == '/') {
33 out_type->assign(start, current - start);
34 start = current + 1;
35 } else if (out_package->size() == 0 && *current == ':') {
37 out_package->assign(start, current - start);
38 start = current + 1;
40 current++;
/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...]
/frameworks/base/services/core/java/com/android/server/updates/
H A DSmartSelectionInstallReceiver.java30 protected boolean verifyVersion(int current, int alternative) { argument
/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/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/services/core/java/com/android/server/
H A DNativeDaemonEvent.java211 int current = 0;
216 if (rawEvent.charAt(current) == '\"') {
218 current++;
220 while (current < length) {
223 wordEnd = current;
232 String word = rawEvent.substring(current, wordEnd);
233 current += word.length();
237 current++; // skip the trailing quote
247 int nextSpace = rawEvent.indexOf(' ', current);
248 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/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/packages/CtsShim/build/
H A DAndroid.mk27 LOCAL_SDK_VERSION := current
46 LOCAL_SDK_VERSION := current
73 LOCAL_SDK_VERSION := current
92 LOCAL_SDK_VERSION := current
/frameworks/base/tests/AmSlam/
H A DAndroid.mk24 LOCAL_SDK_VERSION := current
/frameworks/rs/tests/java_api/ComputeBenchmark/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/frameworks/rs/tests/java_api/ComputePerf/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/frameworks/rs/tests/java_api/GenImages/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current

Completed in 484 milliseconds

1234567891011>>