Searched defs:startIndex (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DReparenting.java48 private void setupButtons(int startIndex, ViewGroup parent) { argument
49 for (int i = startIndex; i < (startIndex + 3); ++i) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DComprehensionTlv.java84 * @param startIndex Index in data at which to start parsing
88 public static List<ComprehensionTlv> decodeMany(byte[] data, int startIndex) argument
92 while (startIndex < endIndex) {
93 ComprehensionTlv ctlv = ComprehensionTlv.decode(data, startIndex);
96 startIndex = ctlv.mValueIndex + ctlv.mLength;
110 * @param startIndex Index in data at which to start parsing
114 public static ComprehensionTlv decode(byte[] data, int startIndex) argument
116 int curIndex = startIndex;
129 ", startIndex=" + startIndex
[all...]
/frameworks/native/libs/binder/
H A DDebug.cpp224 const size_t startIndex = word+(alignment-(alignment?1:0)); local
227 const size_t startIndex = word;
239 const unsigned char val = *(pos+startIndex+(index*dir));
256 const unsigned char val = *(pos+startIndex+(index*dir));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DWspTypeDecoder.java213 * @param startIndex The starting position of the "Text-string" in this pdu
219 public boolean decodeTextString(int startIndex) { argument
220 int index = startIndex;
224 mDataLength = index - startIndex + 1;
225 if (mWspData[startIndex] == 127) {
226 mStringValue = new String(mWspData, startIndex + 1, mDataLength - 2);
228 mStringValue = new String(mWspData, startIndex, mDataLength - 1);
236 * @param startIndex The starting position of the "Token-text" in this pdu
242 public boolean decodeTokenText(int startIndex) { argument
243 int index = startIndex;
262 decodeShortInteger(int startIndex) argument
280 decodeLongInteger(int startIndex) argument
303 decodeIntegerValue(int startIndex) argument
319 decodeUintvarInteger(int startIndex) argument
344 decodeValueLength(int startIndex) argument
368 decodeExtensionMedia(int startIndex) argument
394 decodeConstrainedEncoding(int startIndex) argument
415 decodeContentType(int startIndex) argument
466 readContentParameters(int startIndex, int leftToRead, int accumulator) argument
536 decodeNoValue(int startIndex) argument
568 decodeContentLength(int startIndex) argument
581 decodeContentLocation(int startIndex) argument
595 decodeXWapApplicationId(int startIndex) argument
612 seekXWapApplicationId(int startIndex, int endIndex) argument
676 decodeXWapContentURI(int startIndex) argument
689 decodeXWapInitiatorURI(int startIndex) argument
[all...]
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneFilterTypeAdapter.java344 * @param startIndex
347 public int parseNum(String str, int startIndex) { argument
348 int idx = startIndex;
/frameworks/base/core/java/android/os/
H A DProcess.java1016 public static final native boolean parseProcLine(byte[] buffer, int startIndex, argument
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp694 char* buffer, jint startIndex, jint endIndex, jintArray format,
723 jsize i = startIndex;
810 jbyteArray buffer, jint startIndex, jint endIndex, jintArray format,
816 (char*) bufferArray, startIndex, endIndex, format, outStrings,
693 android_os_Process_parseProcLineArray(JNIEnv* env, jobject clazz, char* buffer, jint startIndex, jint endIndex, jintArray format, jobjectArray outStrings, jlongArray outLongs, jfloatArray outFloats) argument
809 android_os_Process_parseProcLine(JNIEnv* env, jobject clazz, jbyteArray buffer, jint startIndex, jint endIndex, jintArray format, jobjectArray outStrings, jlongArray outLongs, jfloatArray outFloats) argument
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp594 uint32_t startIndex, uint32_t len, int numGlyphs, uint32_t radius, const float* positions) {
613 mCurrentFont->measure(paint, text, startIndex, len, numGlyphs, &bounds, positions);
644 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, penX, penY,
688 uint32_t startIndex, uint32_t len, int numGlyphs, int x, int y,
696 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, x, y, positions);
706 uint32_t startIndex, uint32_t len, int numGlyphs, SkPath* path,
714 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, path, hOffset, vOffset);
593 renderDropShadow(SkPaint* paint, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, uint32_t radius, const float* positions) argument
687 renderPosText(SkPaint* paint, const Rect* clip, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, int x, int y, const float* positions, Rect* bounds, Functor* functor, bool forceFinish) argument
705 renderTextOnPath(SkPaint* paint, const Rect* clip, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, SkPath* path, float hOffset, float vOffset, Rect* bounds, Functor* functor) argument
/frameworks/rs/
H A DrsFont.cpp750 uint32_t startIndex, int32_t numGlyphs,
778 currentFont->renderUTF(text, len, x, y, startIndex, numGlyphs,
749 renderText(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t startIndex, int32_t numGlyphs, Font::RenderMode mode, Font::Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument

Completed in 5041 milliseconds