Searched refs:pos (Results 201 - 216 of 216) sorted by relevance

123456789

/frameworks/base/core/java/android/os/
H A DParcel.java237 private static native void nativeSetDataPosition(int nativePtr, int pos); argument
377 * @param pos New offset in the parcel; must be between 0 and
380 public final void setDataPosition(int pos) { argument
381 nativeSetDataPosition(mNativePtr, pos);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1314 int pos = dashPositions[i];
1315 text.replace(pos + i, pos + i, "-");
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.cpp623 // Split the BiDi run into Script runs. Harfbuzz will populate the pos, length and script
634 ssize_t startScriptRun = mShaperItem.item.pos;
803 const uint16_t* text16 = (const uint16_t*) (mShaperItem.string + mShaperItem.item.pos);
/frameworks/base/include/androidfw/
H A DResourceTypes.h701 void getPosition(ResXMLPosition* pos) const;
702 void setPosition(const ResXMLPosition& pos);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DSlidingChallengeLayout.java674 final float pos = Math.min(y - mGestureStartY,
677 moveChallengeTo(mGestureStartChallengeBottom + (int) pos);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java4145 + " pos=" + mHistoryBuffer.dataPosition());
4194 + " pos=" + mHistoryBuffer.dataPosition());
4203 final int pos = mHistoryBuffer.dataPosition();
4204 if (pos == 0) {
4207 boolean end = pos >= mHistoryBuffer.dataSize();
4922 int pos = 0;
4926 int amt = stream.read(data, pos, data.length-pos);
4927 //Log.i("foo", "Read " + amt + " bytes at " + pos
4930 //Log.i("foo", "**** FINISHED READING: pos
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1502 uint32_t pos; local
1503 if (t->getPosition(&pos) == OK) {
1504 mBytesWritten = uint64_t(pos) * t->frameSize();
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java3766 int pos;
3767 for (pos = offset; pos < end; pos++) {
3768 byte c = buffer[pos];
3775 outStr[0] = new String(buffer, offset, pos - offset);
3776 pos++; // may be pointing an extra byte past the end but that's okay
3777 return pos;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java1114 int count, float[] pos,
1123 String text, float[] pos,
1112 native_drawPosText(int nativeCanvas, char[] text, int index, int count, float[] pos, int paint) argument
1122 native_drawPosText(int nativeCanvas, String text, float[] pos, int paint) argument
/frameworks/native/libs/binder/
H A DParcel.cpp338 void Parcel::setDataPosition(size_t pos) const
340 mDataPos = pos;
537 ALOGV("finishWrite Setting data pos of %p to %d\n", this, mDataPos);
542 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
876 ALOGV("read Setting data pos of %p to %d\n", this, mDataPos);
887 ALOGV("readInplace Setting data pos of %p to %d\n", this, mDataPos);
998 ALOGV("readCString Setting data pos of %p to %d\n", this, mDataPos);
1176 ALOGV("readObject Setting data pos of %p to %d\n", this, mDataPos);
1203 ALOGV("readObject Setting data pos of %p to %d\n", this, mDataPos);
1216 ALOGV("readObject Setting data pos o
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h919 void setPosition(uint32_t pos) { mPosition = pos; } argument
/frameworks/base/core/java/android/widget/
H A DEditor.java2327 int pos = mTextView.getSelectionStart();
2329 SuggestionSpan[] suggestionSpans = spannable.getSpans(pos, pos, SuggestionSpan.class);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java5632 int pos = mMainStack.mHistory.size()-1;
5634 pos >= 0 ? (ActivityRecord)mMainStack.mHistory.get(pos) : null;
5639 while (pos >= 0 && maxNum > 0) {
5641 pos--;
5642 next = pos >= 0 ? (ActivityRecord)mMainStack.mHistory.get(pos) : null;
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h884 XAmillisecond pos,
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h1110 SLmillisecond pos,
/frameworks/base/core/java/android/view/
H A DView.java1396 int pos = 0;
1399 set[pos++] = orderedIds[j];

Completed in 3927 milliseconds

123456789