Searched defs:length (Results 1 - 25 of 452) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h442 XAuint32 length; member in struct:XADataLocator_Address_
H A DOpenMAXAL_Android.h166 XAAint64 length; member in struct:XADataLocator_AndroidFD_
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h268 SLuint32 length; member in struct:SLDataLocator_Address_
2028 SLuint32 length,
2038 SLuint32 length,
2048 SLuint32 length
H A DOpenSLES_Android.h365 SLAint64 length; member in struct:SLDataLocator_AndroidFD_
/frameworks/wilhelm/src/android/
H A Dandroid_GenericPlayer.cpp101 void GenericPlayer::setDataSource(int fd, int64_t offset, int64_t length, bool closeAfterUse) { argument
102 SL_LOGV("GenericPlayer::setDataSource(fd=%d, offset=%lld, length=%lld, closeAfterUse=%s)", fd,
103 offset, length, closeAfterUse ? "true" : "false");
121 if (PLAYER_FD_FIND_FILE_SIZE == length) {
122 mDataLocator.fdi.length = sb.st_size;
123 } else if (offset + length > sb.st_size) {
124 mDataLocator.fdi.length = sb.st_size - offset;
126 mDataLocator.fdi.length = length;
H A Dandroid_defs.h197 int64_t length; member in struct:android::FdInfo
/frameworks/wilhelm/src/itf/
H A DIMIDIMessage.cpp23 SLuint32 length)
22 IMIDIMessage_SendMessage(SLMIDIMessageItf self, const SLuint8 *data, SLuint32 length) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGrid.java80 * @return length of the item.
88 * @param length The size of the object
92 void addItem(Object item, int index, int length, int rowIndex, int edge); argument
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DGridActivity.java183 for (int i = 0; i < mItemLengths.length; i++) {
191 mNumItems = mItemLengths.length;
277 void changeArraySize(int length) { argument
278 mNumItems = length;
282 int[] removeItems(int index, int length) { argument
283 return removeItems(index, length, true);
286 int[] removeItems(int index, int length, boolean notify) { argument
287 int[] removed = new int[length];
288 System.arraycopy(mItemLengths, index, removed, 0, length);
289 System.arraycopy(mItemLengths, index + length, mItemLength
[all...]
H A DGridTest.java31 mCount = items.length;
51 public void addItem(Object item, int index, int length, int rowIndex, int edge) { argument
74 for (int i= 0; i < mEdges.length; i++) {
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawerArrowDrawable.java100 // The length of top and bottom bars when they merge into an arrow
102 // The length of middle bar
104 // The length of the middle bar when arrow is shaped
154 * Sets the length of the arrow head (from tip to edge, perpendicular to the shaft).
156 * @param length the length in pixels
158 public void setArrowHeadLength(float length) { argument
159 if (mArrowHeadLength != length) {
160 mArrowHeadLength = length;
166 * Returns the length o
178 setArrowShaftLength(float length) argument
204 setBarLength(float length) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DTintTypedArray.java126 public int length() { method in class:TintTypedArray
127 return mWrapped.length();
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DStaggeredGridLayoutManagerTest.java1077 for (int i = 0; i < childSpanTuples.length; i++) {
1113 newSpans, 0, 0, newSpans.length);
1124 Math.min(original.length - from, newLength));
1171 int length) {
1172 for (int i = 0; i < length; i++) {
1170 assertSpanAssignmentEquality(String msg, int[] set1, int[] set2, int start1, int start2, int length) argument
/frameworks/support/compat/ics/android/support/v4/app/
H A DNotificationCompatBase.java45 Action[] newArray(int length); argument
H A DRemoteInputCompatBase.java41 RemoteInput[] newArray(int length); argument
/frameworks/support/compat/java/android/support/v4/graphics/drawable/
H A DIconCompat.java77 // TYPE_DATA: data length
132 * @param length Length of the bitmap data
135 public static IconCompat createWithData(byte[] data, int offset, int length) { argument
142 rep.mInt2 = length;
/frameworks/support/core-utils/java/android/support/v4/provider/
H A DDocumentFile.java253 * Returns the length of this file in bytes. Returns 0 if the file does not
254 * exist, or if the length is unknown. The result for a directory is not
260 public abstract long length(); method in class:DocumentFile
H A DRawDocumentFile.java102 public long length() { method in class:RawDocumentFile
103 return mFile.length();
H A DSingleDocumentFile.java80 public long length() { method in class:SingleDocumentFile
81 return DocumentsContractApi19.length(mContext, mUri);
H A DTreeDocumentFile.java82 public long length() { method in class:TreeDocumentFile
83 return DocumentsContractApi19.length(mContext, mUri);
109 final DocumentFile[] resultFiles = new DocumentFile[result.length];
110 for (int i = 0; i < result.length; i++) {
/frameworks/support/core-utils/java/android/support/v4/text/
H A DBidiFormatter.java299 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
327 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
357 return mDefaultTextDirectionHeuristicCompat.isRtl(str, 0, str.length());
411 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
603 * The length of the text in chars.
605 private final int length; field in class:BidiFormatter.DirectionalityEstimator
630 length = text.length();
649 while (charIndex < length && firstNonEmptyEmbeddingLevel == 0) {
743 charIndex = length;
[all...]

Completed in 1359 milliseconds

1234567891011>>