/frameworks/av/media/mtp/ |
H A D | MtpUtils.cpp | 44 const char* tail = dateTime + 15; local 46 if (tail[0] == '.' && tail[1]) 47 tail += 2; 49 bool useUTC = (tail[0] == 'Z');
|
/frameworks/base/core/java/android/util/ |
H A D | Base64.java | 515 // Account for the tail of the data and the padding bytes, if any. 572 final private byte[] tail; field in class:Base64.Encoder 589 tail = new byte[2]; 614 // First we need to concatenate the tail of the previous call 616 // the tail. 620 // There was no tail. 625 // A 1-byte tail with at least 2 bytes of 627 v = ((tail[0] & 0xff) << 16) | 636 // A 2-byte tail with at least 1 byte of input. 637 v = ((tail[ [all...] |
/frameworks/av/media/libstagefright/foundation/ |
H A D | AStringUtils.cpp | 54 // last pattern must match tail 58 const char *tail = str + strLen - len; local 59 return !Compare(tail, pattern, len, ignoreCase);
|
/frameworks/av/services/audioflinger/ |
H A D | FastMixerDumpState.cpp | 94 // the mean account for 99.73% of the population. So if we take each tail to be 1/1000 of the 97 uint32_t *tail = n >= kTailDenominator ? new uint32_t[n] : NULL; local 102 if (tail != NULL) { 103 tail[j] = wallNs; 144 if (tail != NULL) { 145 qsort(tail, n, sizeof(uint32_t), compare_uint32_t); 146 // assume same number of tail samples on each side, left and right 150 left.sample(tail[i]); 151 right.sample(tail[n - (i + 1)]); 155 " left tail [all...] |
/frameworks/base/data/sounds/ |
H A D | generate-all-audio.sh | 55 tail -n 1 |
|
/frameworks/native/include/private/ui/ |
H A D | RegionHelper.h | 116 inline int next(TYPE& head, TYPE& tail, argument 126 tail = lhs_tail; 130 tail = rhs_head; 136 tail = rhs_tail; 140 tail = lhs_head; 146 tail = rhs_head = lhs_tail; 150 tail = lhs_head = rhs_tail;
|
/frameworks/native/libs/ui/ |
H A D | Region.cpp | 236 const_iterator const tail = end(); local 237 while (cur != tail) { 423 Rect* tail; member in class:android::Region::rasterizer 428 : bounds(INT_MAX, 0, INT_MIN, 0), storage(reg.mStorage), head(), tail(), cur() { 482 if (tail-head == ssize_t(span.size())) { 487 while (q != tail) { 499 while (r != tail) { 507 tail = storage.editArray() + storage.size(); 508 head = tail - span.size(); 517 const_iterator const tail local 651 Region::const_iterator const tail = dst.end(); member in class:android::Region 855 const_iterator const tail = end(); local 869 const_iterator const tail = end(); local [all...] |
/frameworks/base/tests/backup/ |
H A D | test_restore.sh | 108 a shell cat /data/data/com.android.backuptest/files/3.txt | tail -n 3
|
/frameworks/native/opengl/tools/glgen2/ |
H A D | glgen.py | 65 tail = nonestr(subelem.tail) 70 type.extend([text, tail])
|
/frameworks/opt/net/voip/src/jni/rtp/ |
H A D | AudioGroup.cpp | 106 bool mix(int32_t *output, int head, int tail, int sampleRate); 236 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) argument 245 if (tail - mBufferTail > 0) { 246 tail = mBufferTail; 248 if (tail - head <= 0) { 253 tail *= mSampleRate; 256 for (int i = head; i - tail < 0; ++i) { 454 int tail = (tick + mInterval) * mSampleRate; local 455 for (int i = mBufferTail * mSampleRate; i - tail < 0; ++i) { 463 int tail local [all...] |
/frameworks/base/media/java/android/media/ |
H A D | SubtitleTrack.java | 473 SortedMap<Long, Vector<Cue>> tail = null; 475 tail = mCues.tailMap(timeMs + 1); 476 if (tail != null) { 477 return tail.firstKey();
|
/frameworks/native/services/inputflinger/ |
H A D | InputDispatcher.h | 609 T* tail; member in struct:android::InputDispatcher::Queue 612 inline Queue() : head(NULL), tail(NULL), entryCount(0) { 621 entry->prev = tail; 622 if (tail) { 623 tail->next = entry; 628 tail = entry; 637 tail = entry; 653 tail = entry->prev; 664 tail = NULL;
|
H A D | InputDispatcher.cpp | 187 Region::const_iterator const tail = region.end(); member in class:android::Region 188 while (cur != tail) {
|
/frameworks/native/opengl/tools/glgen2/registry/ |
H A D | reg.py | 480 # lxml.etree has elem.text followed by (elem[i], elem[i].tail) 486 # declaration. Otherwise append its contents and tail contents. 489 tail = noneStr(elem.tail) 491 pdecl += self.genOpts.apientry + text + tail 492 tdecl += '(' + self.genOpts.apientryp + 'PFN' + text.upper() + 'PROC' + tail + ')' 494 pdecl += text + tail 495 tdecl += text + tail 614 s += self.genOpts.apientry + noneStr(elem.tail) 616 s += noneStr(elem.text) + noneStr(elem.tail) [all...] |
/frameworks/native/cmds/dumpstate/ |
H A D | dumpstate.c | 376 int tail = strlen(anr_traces_path)-1; local 377 while (tail > 0 && anr_traces_path[tail] != '/') { 378 tail--; 382 sprintf(anr_traces_path+tail+1, "slow%02d.txt", i);
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
H A D | ScreenMagnifier.java | 781 MotionEventInfo tail = mDelayedEventQueue; 782 while (tail.mNext != null) { 783 tail = tail.mNext; 785 tail.mNext = info;
|
/frameworks/base/services/core/java/com/android/server/ |
H A D | DropBoxManagerService.java | 660 SortedSet<EntryFile> tail = mAllFiles.contents.tailSet(new EntryFile(t + 10000)); 662 if (!tail.isEmpty()) { 663 future = tail.toArray(new EntryFile[tail.size()]); 664 tail.clear(); // Remove from mAllFiles
|
/frameworks/native/libs/binder/ |
H A D | MemoryDealer.cpp | 59 NODE const* tail() const { return mLast; } function in class:android::LinkedList 60 NODE* tail() { return mLast; } function in class:android::LinkedList
|
/frameworks/rs/ |
H A D | update_rs_prebuilts.sh | 26 NUM_CORES=`cat /proc/cpuinfo | grep processor | tail -n 1 | cut -f 2 -d :`
|
/frameworks/base/cmds/bootanimation/ |
H A D | BootAnimation.cpp | 623 Region::const_iterator tail(clearReg.end()); 625 while (head != tail) {
|
/frameworks/native/libs/gui/ |
H A D | Surface.cpp | 954 Region::const_iterator tail(reg.end()); 955 if (head != tail && src_bits && dst_bits) { 960 while (head != tail) {
|
/frameworks/data-binding/prebuilds/1.0-rc0/ |
H A D | databinding-studio-bundle.jar | META-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ... |