/external/harfbuzz/src/ |
harfbuzz-shaper-private.h | 132 HB_Bool HB_SelectScript(HB_ShaperItem *item, const HB_OpenTypeFeature *features); 134 HB_Bool HB_OpenTypeShape(HB_ShaperItem *item, const hb_uint32 *properties); 135 HB_Bool HB_OpenTypePosition(HB_ShaperItem *item, int availableGlyphs, HB_Bool doLogClusters); 137 void HB_HeuristicPosition(HB_ShaperItem *item); 138 void HB_HeuristicSetGlyphAttributes(HB_ShaperItem *item);
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-hebrew.c | 57 assert(shaper_item->item.script == HB_Script_Hebrew); 73 const HB_UChar16 *uc = shaper_item->string + shaper_item->item.pos; 82 HB_STACKARRAY(HB_UChar16, shapedChars, 2 * shaper_item->item.length); 86 for (i = 1; i < shaper_item->item.length; ++i) { 175 shaper_item->item.bidiLevel % 2);
|
harfbuzz-shaper-private.h | 120 HB_Bool HB_SelectScript(HB_ShaperItem *item, const HB_OpenTypeFeature *features); 122 HB_Bool HB_OpenTypeShape(HB_ShaperItem *item, const hb_uint32 *properties); 123 HB_Bool HB_OpenTypePosition(HB_ShaperItem *item, int availableGlyphs, HB_Bool doLogClusters); 125 void HB_HeuristicPosition(HB_ShaperItem *item); 126 void HB_HeuristicSetGlyphAttributes(HB_ShaperItem *item);
|
/external/ppp/pppd/plugins/pppoatm/ |
text2qos.c | 133 int item; local 135 item = fetch(&text,"!none","ubr","cbr","vbr","abr","aal0","aal5",NULL); 136 switch (item) { 141 traffic_class = item; 145 aal = aal_number[item-5];
|
/external/smack/src/org/jivesoftware/smack/ |
RosterEntry.java | 233 static RosterPacket.Item toRosterItem(RosterEntry entry) { 234 RosterPacket.Item item = new RosterPacket.Item(entry.getUser(), entry.getName()); local 235 item.setItemType(entry.getType()); 236 item.setItemStatus(entry.getStatus()); 237 // Set the correct group names for the item. 239 item.addGroupName(group.getName()); 241 return item;
|
/external/webkit/Source/WebCore/accessibility/gtk/ |
AXObjectCacheAtk.cpp | 84 // Find the item where the selection change was triggered from. 99 AccessibilityObject* item = items.at(changedItemIndex).get(); 107 AtkObject* axItem = item ? item->wrapper() : 0; 116 // Emit needed events for the currently (un)selected item. 118 bool isSelected = item->isSelected(); 126 oldFocusedObject = item;
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_nss.c | 52 SECItem item; local 72 item.type = siBuffer; 73 item.data = pkey; 74 item.len = 8; 76 CKA_ENCRYPT, &item, NULL);
|
/frameworks/base/core/java/android/webkit/ |
SelectActionModeCallback.java | 89 public boolean onActionItemClicked(ActionMode mode, MenuItem item) { 90 switch(item.getItemId()) { 144 final MenuItem item = menu.findItem(resourceId); local 145 if (item != null) { 146 item.setVisible(visible);
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
FramebufferSurface.cpp | 85 BufferQueue::BufferItem item; local 86 status_t err = acquireBufferLocked(&item); 104 item.mBuf != mCurrentBufferSlot) { 113 mCurrentBufferSlot = item.mBuf; 115 outFence = item.mFence;
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
SetNamedItemNS.java | 87 anotherElement = elementList.item(2); 90 testAddress = elementList.item(0); 118 testAddress = elementList.item(0); 146 testAddress = elementList.item(0); 171 // testAddress = elementList.item(2); 173 // child = nList.item(0); 181 // child2 = n2List.item(0); 210 testAddress = elementList.item(0);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
FolderIcon.java | 75 // The degree to which the item in the back of the stack is scaled [0...1] 292 private boolean willAcceptItem(ItemInfo item) { 293 final int itemType = item.itemType; 296 !mFolder.isFull() && item != mInfo && !mInfo.opened); 300 final ItemInfo item = (ItemInfo) dragInfo; local 301 return !mFolder.isDestroyed() && willAcceptItem(item); 304 public void addItem(ShortcutInfo item) { 305 mInfo.add(item); 330 // This will animate the first item from it's position as an icon into its 331 // position as the first item in the previe [all...] |
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
ElementParallelTimeContainerImpl.java | 90 ElementTime child = (ElementTime) children.item(i); 93 Time endTime = endTimeList.item(j); 121 ElementTime child = (ElementTime) children.item(i); 126 Time begin = beginList.item(j); 139 Time end = endList.item(j);
|
/external/svox/pico/lib/ |
picodata.c | 182 if (this->len < PICODATA_ITEM_HEADSIZE) { /* item not in cb? */ 185 PICODBG_DEBUG(("no item to get")); 187 } else { /* cb not empty, but not a valid item */ 188 PICODBG_WARN(("problem getting item, incomplete head, underflow")); 195 /* if getting speech data in item */ 197 /* check item type */ 199 PICODBG_WARN(("item type mismatch for speech data: %c", 211 if (*blen > this->len) { /* item in cb not complete? */ 212 PICODBG_WARN(("problem getting item, incomplete content, underflow; " 218 PICODBG_WARN(("problem getting item, overflow")) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
SlideshowPage.java | 48 public static final String KEY_ITEM_PATH = "media-item-path"; 69 public MediaItem item; field in class:SlideshowPage.Slide 72 public Slide(MediaItem item, int index, Bitmap bitmap) { 74 this.item = item; 164 mSlideshowView.next(slide.bitmap, slide.item.getRotation()); 167 .putExtra(KEY_ITEM_PATH, slide.item.getPath().toString()) 263 MediaItem item = findMediaItem(mMediaSet, mLastIndex); local 264 for (int i = 0; i < RETRY_COUNT && item == null; ++i) { 267 item = findMediaItem(mMediaSet, mLastIndex) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocalAlbum.java | 134 MediaItem item = loadOrUpdateItem(childPath, cursor, local 136 list.add(item); 147 LocalMediaItem item = (LocalMediaItem) dataManager.peekMediaObject(path); local 148 if (item == null) { 150 item = new LocalImage(path, app, cursor); 152 item = new LocalVideo(path, app, cursor); 155 item.updateContent(cursor); 157 return item; 212 MediaItem item = loadOrUpdateItem(childPath, cursor, dataManager, local 214 result[i] = item; [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
inspector.css | 112 .toolbar-item { 120 .toolbar-item.toggleable { 124 .toolbar-item.toggleable.toggled-on { 144 .toolbar-item:active .toolbar-icon { 148 body.attached .toolbar-item:active .toolbar-icon { 158 .toolbar-item.toggleable:active .toolbar-label { 228 #toolbar-dropdown .toolbar-item { 237 #toolbar-dropdown .toolbar-item.toggleable.toggled-on { 243 #toolbar-dropdown .toolbar-item:hover { 248 #toolbar-dropdown .toolbar-item.toggleable.toggled-on:hover [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
GalleryPicker.java | 210 public boolean onMenuItemClick(MenuItem item) { 218 public boolean onMenuItemClick(MenuItem item) { 233 Item item = mAdapter.mItems.get(position); local 234 Uri targetUri = item.mFirstImageUri; 236 if (targetUri != null && item.mBucketId != null) { 238 .appendQueryParameter("bucketId", item.mBucketId) 337 // and generated thumbnail bitmaps for each item. We do this instead of 341 ArrayList<Item> allItems = new ArrayList<Item>(); [all...] |
/external/zlib/src/test/ |
infcover.c | 59 struct mem_item *next; /* pointer to next item in list, or NULL */ 64 struct mem_item *first; /* pointer to first item in list, or NULL */ 74 struct mem_item *item; local 89 /* create a new item for the list */ 90 item = malloc(sizeof(struct mem_item)); 91 if (item == NULL) { 95 item->ptr = ptr; 96 item->size = len; 98 /* insert item at the beginning of the list */ 99 item->next = zone->first 114 struct mem_item *item, *next; local 203 struct mem_item *item, *next; local [all...] |
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaListView.java | 104 // Hide ListView dividers, they are done in the item views themselves 175 AgendaItem item = mWindowAdapter.getAgendaItemByPosition(position); local 182 if (item != null && (oldInstanceId != mWindowAdapter.getSelectedInstanceId() || 184 long startTime = item.begin; 185 long endTime = item.end; 195 if (item.allDay) { 201 controller.sendEventRelatedEventWithExtra(this, EventType.VIEW_EVENT, item.id, 203 Attendees.ATTENDEE_STATUS_NONE, item.allDay), holderStartTime); 255 AgendaItem item = mWindowAdapter.getAgendaItemByPosition(position); local 256 if (item != null) [all...] |
/libcore/luni/src/test/java/libcore/java/security/cert/ |
X509CertificateTest.java | 839 for (List<?> item : col) { 915 List<?> item = col.iterator().next(); local 942 List<?> item = col.iterator().next(); local 973 List<?> item = col.iterator().next(); local 989 List<?> item = col.iterator().next(); local 1005 List<?> item = col.iterator().next(); local 1028 List<?> item = col.iterator().next(); local 1044 List<?> item = col.iterator().next(); local [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
TemplateList.java | 218 * @param item The item that we want to insert into the proper place. 225 TemplateSubPatternAssociation item, 233 double priority = getPriorityOrScore(item); 235 int importLevel = item.getImportLevel(); 236 int docOrder = item.getDocOrderPos(); 301 item.setNext(insertPoint); 305 item.setTargetString(key); 306 putHead(key, item); 307 return item; 325 putHead(item.getTargetString(), item); local [all...] |
/external/bison/src/ |
AnnotationList.c | 91 * item bitsets interpreted as binary numbers. 124 size_t item; local 125 for (item = 0; cmp == 0 && item < nitems; ++item) 127 if (!Sbitset__test (self->contributions[ci], item)) 129 if (Sbitset__test ((*node)->contributions[ci], item)) 132 else if (!Sbitset__test ((*node)->contributions[ci], item)) 208 bitset_bindex item; local 209 BITSET_FOR_EACH (biter_item, follow_kernel_items[lhs_goto], item, 0 643 Sbitset__Index item; local 683 Sbitset__Index item; local [all...] |
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebContextMenuClient.mm | 107 NSMenuItem *item = [defaultMenuItems objectAtIndex:i]; 108 int tag = [item tag]; 112 // Tiger Mail changes our "Open Link in New Window" item to "Open Link" 113 // and doesn't expect us to include an "Open Link" item at all. (5011905) 148 [item setTag:oldStyleTag]; 166 NSMenuItem *item = [newMenuItems objectAtIndex:i]; 168 int tag = [item tag]; 173 NSString *title = [item title]; 272 [item setTag:modernTag]; 308 void WebContextMenuClient::contextMenuItemSelected(ContextMenuItem* item, const ContextMenu* parentMenu [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
SynchronousQueue.java | 72 * empty. A call to "fulfill" (i.e., a call requesting an item 140 * @param e if non-null, the item to be handed to a consumer; 141 * if null, requests that transfer return an item 145 * @return if non-null, the item provided or received; if null, 204 Object item; // data; or null for REQUESTs field in class:SynchronousQueue.TransferStack.SNode 206 // Note: item and mode fields don't need to be volatile 210 SNode(Object item) { 211 this.item = item; 293 * Puts or takes an item 508 volatile Object item; \/\/ CAS'ed to or from null field in class:SynchronousQueue.TransferQueue.QNode [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningProcessesView.java | 120 // This item represents both services and processes, 167 public ActiveItem bind(RunningState state, RunningState.BaseItem item, 171 if (item.mPackageInfo == null && item instanceof RunningState.MergedItem) { 174 RunningState.MergedItem mergedItem = (RunningState.MergedItem)item; 176 ((RunningState.MergedItem)item).mProcess.ensureLabel(pm); 177 item.mPackageInfo = ((RunningState.MergedItem)item).mProcess.mPackageInfo; 178 item.mDisplayLabel = ((RunningState.MergedItem)item).mProcess.mDisplayLabel 309 RunningState.MergedItem item = mItems.get(position); local [all...] |