Searched defs:head (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/libs/hwui/utils/
H A DStringUtils.cpp25 const char* head = current; local
27 head = strchr(current, ' ');
28 std::string s(current, head ? head - current : strlen(current));
32 current = head + 1;
33 } while (head);
/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DShowDataAction.java75 private void add(StringBuilder builder, String head, Set<String> set) { argument
76 builder.append(head);
/frameworks/compile/mclinker/unittests/
H A DGraphTest.cpp58 ListDigraph::Node* head = NULL; local
59 graph.getHead(head);
60 ASSERT_TRUE(head == u3);
79 graph.getHead(head);
80 ASSERT_TRUE(head == u3);
105 ListDigraph::Node* head = NULL; local
106 graph.getHead(head);
107 ASSERT_TRUE(head == u3);
126 graph.getHead(head);
127 ASSERT_TRUE(head
152 ListDigraph::Node* head = NULL; local
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLExtensions.cpp45 char const* head = curr; local
47 head = strchr(curr, ' ');
48 String8 s(curr, head ? head-curr : strlen(curr));
52 curr = head+1;
53 } while (head);
/frameworks/base/libs/hwui/
H A DAnimationContext.cpp60 AnimationHandle* head = mNextFrameAnimations.mNextHandle; local
61 if (head) {
63 mCurrentFrameAnimations.mNextHandle = head;
64 head->mPreviousHandle = &mCurrentFrameAnimations;
/frameworks/base/obex/javax/obex/
H A DClientSession.java108 byte[] head = null;
116 head = ObexHelper.createHeader(header, false);
117 totalLength += head.length;
136 if (head != null) {
137 System.arraycopy(head, 0, requestPacket, 4, head.length);
175 HeaderSet head;
177 head = new HeaderSet();
179 head = header;
180 if (head
459 sendRequest(int opCode, byte[] head, HeaderSet header, PrivateInputStream privateInput, boolean srmActive) argument
[all...]
H A DObexHelper.java353 * @param head the header used to construct the byte array
359 public static byte[] createHeader(HeaderSet head, boolean nullOut) { argument
371 headImpl = head;
/frameworks/base/libs/hwui/font/
H A DCacheTexture.cpp38 CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock* newBlock) { argument
45 CacheBlock* currBlock = head;
56 return head;
76 return head;
82 CacheBlock* CacheBlock::removeBlock(CacheBlock* head, CacheBlock* blockToRemove) { argument
89 CacheBlock* newHead = head;
/frameworks/native/include/private/ui/
H A DRegionHelper.h116 inline int next(TYPE& head, TYPE& tail, argument
124 head = lhs_head;
134 head = rhs_head;
144 head = lhs_head;
/frameworks/base/core/java/android/view/
H A DFocusFinder.java612 * together. The head of the chain is used to determine the order of the chain and is
663 private void setHeadOfChain(View head) { argument
664 for (View view = head; view != null;
668 if (otherHead == head) {
669 return; // This view has already had its head set properly
673 view = head;
674 head = otherHead;
676 mHeadsOfChains.put(view, head);
690 return -1; // first is the head, it should be first
692 return 1; // second is the head, i
[all...]
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DCat.java142 tint(mBodyColor, D.body, D.head, D.leg1, D.leg2, D.leg3, D.leg4, D.tail,
298 public Drawable head; field in class:Cat.CatParts
326 head = context.getDrawable(R.drawable.head);
359 head,
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp57 NODE const* head() const { return mFirst; } function in class:android::LinkedList
58 NODE* head() { return mFirst; } function in class:android::LinkedList
292 delete mList.remove(mList.head());
325 chunk_t* cur = mList.head();
378 chunk_t* cur = mList.head();
441 chunk_t const* cur = mList.head();
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp91 int head = serializeCodedUnsigned(mId, cur); local
92 cur += head;
/frameworks/av/services/audioflinger/
H A DAudioResamplerDyn.cpp123 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
129 TI* head = impulse + halfNumCoefs*CHANNELS; local
131 head[i] = in[inputIndex*CHANNELS + i];
135 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
H A DAudioResamplerSinc.cpp224 * ^ ^ head
336 int16_t* head = impulse + headOffset; local
338 head[i] = in[inputIndex*CHANNELS + i];
393 int16_t* head = impulse + c.halfNumCoefs*CHANNELS; local
395 head[i] = in[inputIndex*CHANNELS + i];
/frameworks/native/libs/ui/
H A DRegion.cpp422 Rect* head; 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())) {
484 Rect const* q = head;
498 Rect* r = head;
508 head = tail - span.size();
650 Region::const_iterator head = dst.begin(); local
654 if (head != tail) {
656 head->left != it.rect().fLeft ||
657 head
842 const_iterator head = begin(); local
856 const_iterator head = begin(); local
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp882 const InputMessage& head = batch.samples.itemAt(0); local
883 if (head.body.motion.deviceId == deviceId && head.body.motion.source == source) {
955 const InputMessage& head = batch.samples.itemAt(0); local
957 if (head.body.motion.pointerCount != pointerCount
958 || head.body.motion.action != msg->body.motion.action) {
962 if (head.body.motion.pointers[i].properties
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp106 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
242 if (head - mBufferHead < 0) {
243 head = mBufferHead;
248 if (tail - head <= 0) {
252 head *= mSampleRate;
256 for (int i = head; i - tail < 0; ++i) {
257 output[i - head] += mBuffer[i & mBufferMask];
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h614 T* head; member in struct:android::InputDispatcher::Queue
618 inline Queue() : head(NULL), tail(NULL), entryCount(0) {
622 return !head;
631 head = entry;
639 entry->next = head;
640 if (head) {
641 head->prev = entry;
646 head = entry;
654 head = entry->next;
665 T* entry = head;
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 2216 milliseconds