Searched refs:item (Results 501 - 525 of 1876) sorted by relevance

<<21222324252627282930>>

/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_batchbuffer.c43 struct cached_batch_item *item = intel->batch.cached_items; local
45 while (item) {
46 struct cached_batch_item *next = item->next;
47 free(item);
48 item = next;
327 struct cached_batch_item **prev = &intel->batch.cached_items, *item; local
335 item = *prev;
336 old = intel->batch.map + item->header;
338 if (item->size == sz && memcmp(old, start, sz) == 0) {
340 *prev = item
[all...]
/external/openssl/ssl/
H A Dd1_lib.c135 pitem *item = NULL; local
139 while( (item = pqueue_pop(s->d1->unprocessed_rcds.q)) != NULL)
141 rdata = (DTLS1_RECORD_DATA *) item->data;
146 OPENSSL_free(item->data);
147 pitem_free(item);
150 while( (item = pqueue_pop(s->d1->processed_rcds.q)) != NULL)
152 rdata = (DTLS1_RECORD_DATA *) item->data;
157 OPENSSL_free(item->data);
158 pitem_free(item);
161 while( (item
[all...]
H A Dd1_both.c543 pitem *item; local
548 item = pqueue_peek(s->d1->buffered_messages);
549 if ( item == NULL)
552 frag = (hm_fragment *)item->data;
573 pitem_free(item);
605 pitem *item = NULL; local
617 /* Try to find item in queue */
621 item = pqueue_find(s->d1->buffered_messages, seq64be);
623 if (item == NULL)
634 frag = (hm_fragment*) item
714 pitem *item = NULL; local
1164 pitem *item; local
1188 pitem *item; local
1256 pitem *item; local
1346 pitem *item; local
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-component-page/
H A Dcore-component-page-extracted.js18 * example for a horizontal layout, this controls how each item is aligned
28 * example for a horizontal layout, this controls how each item is aligned
755 block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
756 block.item = replace(block.item, 'gm')
880 , item
935 item = {
942 for (i = 0; i < item.align.length; i++) {
943 if (/^ *-+: *$/.test(item.align[i])) {
944 item
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DConfigTab.java337 TableItem item = null;
339 // Set item if the line is not filtered
342 item = new TableItem (this.table, SWT.NONE);
343 item.setText(milestoneName + " - " + buildName);
344 item.setFont(0, this.boldFont);
345 if (!onlyMilestones) item.setBackground(this.blueref);
353 item = new TableItem (this.table, SWT.NONE);
354 item.setText(0, buildName);
372 item.setFont(col, this.boldFont);
377 item
[all...]
/external/chromium_org/chrome/browser/download/
H A Dchrome_download_manager_delegate_unittest.cc198 content::MockDownloadItem* item = local
200 ON_CALL(*item, GetBrowserContext())
202 ON_CALL(*item, GetDangerType())
204 ON_CALL(*item, GetForcedFilePath())
206 ON_CALL(*item, GetFullPath())
208 ON_CALL(*item, GetHash())
210 ON_CALL(*item, GetId())
212 ON_CALL(*item, GetLastReason())
214 ON_CALL(*item, GetReferrerUrl())
216 ON_CALL(*item, GetStat
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c255 struct attr_item *item; local
257 item = (struct attr_item *)malloc(sizeof(struct attr_item));
258 if (item == NULL)
260 item->fname = strdup(fname);
261 item->mode = mode;
262 item->time = time;
263 item->next = *list;
264 *list = item;
272 struct attr_item *item, *prev; local
274 for (item
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dbrowser_options_profile_list.js11 * Creates a new profile list item.
12 * @param {Object} profileInfo The profile this item represents.
24 * Decorates an element as a profile list item.
36 * @type {string} the file path of this profile list item.
59 nameEl.classList.add('profile-item-current');
97 var item = new ProfileListItem(pageInfo);
98 item.deletable = this.canDeleteItems_;
99 return item;
106 ManageProfileOverlay.showDeleteDialog(this.dataModel.item(index));
112 var profileInfo = this.dataModel.item(inde
[all...]
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dpreferred_networks.js127 var item = this.dataModel.item(index);
128 if (item) {
131 [item.Type,
132 item.servicePath,
/external/chromium_org/chrome/browser/ui/app_list/
H A Dfast_show_pickler.cc172 bool FastShowPickler::PickleAppListItem(Pickle* pickle, AppListItem* item) { argument
173 if (!pickle->WriteString(item->id()))
175 if (!pickle->WriteString(item->name()))
177 if (!pickle->WriteString(item->short_name()))
179 if (!pickle->WriteBool(item->has_shadow()))
181 if (!PickleImage(pickle, item->icon()))
237 scoped_ptr<AppListItem> item(UnpickleAppListItem(&it).Pass());
238 if (!item)
240 std::string folder_id = item->folder_id();
241 model->AddItemToFolder(item
[all...]
/external/chromium_org/chrome/utility/importer/
H A Dfirefox_importer.cc116 ImportHomepage(); // Doesn't have a UI item.
247 BookmarkItem* item = list[i]; local
249 if (item->type == TYPE_FOLDER) {
252 if (!item->empty_folder)
254 } else if (item->type == TYPE_BOOKMARK) {
256 if (!CanImportURL(item->url))
263 if (default_urls.find(item->url) != default_urls.end() ||
264 post_keyword_ids.find(item->id) != post_keyword_ids.end())
269 BookmarkItem* child = item;
303 entry.creation_time = item
684 BookmarkItem* item = new BookmarkItem; local
716 BookmarkItem* item = new BookmarkItem; local
[all...]
/external/chromium_org/content/browser/gamepad/
H A Dgamepad_platform_data_fetcher_linux.cc250 size_t item = event.number; local
252 if (item >= WebGamepad::axesLengthCap)
254 pad.axes[item] = event.value / kMaxLinuxAxisValue;
255 if (item >= pad.axesLength)
256 pad.axesLength = item + 1;
258 if (item >= WebGamepad::buttonsLengthCap)
260 pad.buttons[item].pressed = event.value;
261 pad.buttons[item].value = event.value ? 1.0 : 0.0;
262 if (item >= pad.buttonsLength)
263 pad.buttonsLength = item
[all...]
/external/chromium_org/content/renderer/
H A Dhistory_entry.cc58 const WebHistoryItem& item,
60 children_->push_back(new HistoryNode(entry_, item, frame_id));
80 new_history_node->item().setDocumentSequenceNumber(
105 void HistoryEntry::HistoryNode::set_item(const WebHistoryItem& item) { argument
108 entry_->unique_names_to_items_[item.target().utf8()] = this;
109 entry_->frames_to_items_[item.frameSequenceNumber()] = this;
110 item_ = item;
114 const WebHistoryItem& item,
116 : entry_(entry), item_(item) {
118 // Each history item i
57 AddChild( const WebHistoryItem& item, int64_t frame_id) argument
113 HistoryNode(HistoryEntry* entry, const WebHistoryItem& item, int64_t frame_id) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DsuggestBox.css78 .suggest-box-overlay .suggest-box .suggest-box-content-item {
89 .suggest-box-overlay .suggest-box .suggest-box-content-item .prefix {
93 .suggest-box-overlay .suggest-box .suggest-box-content-item .spacer {
98 .suggest-box-overlay .suggest-box .suggest-box-content-item.selected {
102 .suggest-box-overlay .suggest-box .suggest-box-content-item:hover:not(.selected) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DSoftContextMenu.js90 _createMenuItem: function(item)
92 if (item.type === "separator")
95 if (item.type === "subMenu")
96 return this._createSubMenu(item);
98 var menuItemElement = document.createElementWithClass("div", "soft-context-menu-item");
99 var checkMarkElement = menuItemElement.createChild("span", "soft-context-menu-item-checkmark");
101 if (!item.checked)
104 menuItemElement.createTextChild(item.label);
113 menuItemElement._actionId = item.id;
117 _createSubMenu: function(item)
[all...]
H A DViewportControl.js248 * @return {!{item: number, node: !Node, offset: number}}
253 item: itemIndex,
305 firstSelected = firstSelected.item < startSelection.item ? firstSelected : startSelection;
306 lastSelected = lastSelected.item > endSelection.item ? lastSelected : endSelection;
333 if (this._firstVisibleIndex <= this._anchorSelection.item && this._anchorSelection.item <= this._lastVisibleIndex) {
337 if (this._anchorSelection.item < this._firstVisibleIndex)
339 else if (this._anchorSelection.item > thi
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dctx.c61 /* How many bignums are in each "pool item"; */
264 BN_POOL_ITEM *item = OPENSSL_malloc(sizeof(BN_POOL_ITEM)); local
265 if (!item) {
270 bn = item->vals;
275 item->prev = p->tail;
276 item->next = NULL;
279 p->head = p->current = p->tail = item;
281 p->tail->next = item;
282 p->tail = item;
283 p->current = item;
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcanittst.cpp195 UnicodeString item = it.next(); local
196 if (item.isBogus()) break;
197 if (item == s) gotSource = TRUE;
198 if (item == decomp) gotDecomp = TRUE;
199 if (item == comp) gotComp = TRUE;
207 void CanonicalIteratorTest::expectEqual(const UnicodeString &message, const UnicodeString &item, const UnicodeString &a, const UnicodeString &b) { argument
209 errln("FAIL: " + message + getReadable(item));
213 logln("Checked: " + message + getReadable(item));
271 //String item = (String) it.next();
272 UnicodeString *item local
[all...]
/external/chromium_org/third_party/skia/bench/
H A DGrResourceCacheBench.cpp117 GrGpuResource* item = cache->find(key); local
118 if (NULL == item) {
122 if (static_cast<TextureResource*>(item)->fID != k) {
131 GrGpuResource* item = cache->find(key); local
132 if (NULL == item) {
136 if (static_cast<TextureResource*>(item)->fID != k) {
148 GrGpuResource* item = cache->find(key); local
149 if (item) {
159 GrGpuResource* item = cache->find(key); local
160 if (item) {
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcanittst.cpp195 UnicodeString item = it.next(); local
196 if (item.isBogus()) break;
197 if (item == s) gotSource = TRUE;
198 if (item == decomp) gotDecomp = TRUE;
199 if (item == comp) gotComp = TRUE;
207 void CanonicalIteratorTest::expectEqual(const UnicodeString &message, const UnicodeString &item, const UnicodeString &a, const UnicodeString &b) { argument
209 errln("FAIL: " + message + getReadable(item));
213 logln("Checked: " + message + getReadable(item));
271 //String item = (String) it.next();
272 UnicodeString *item local
[all...]
/external/skia/bench/
H A DGrResourceCacheBench.cpp117 GrCacheable* item = cache->find(key); local
118 if (NULL == item) {
122 if (static_cast<TextureResource*>(item)->fID != k) {
131 GrCacheable* item = cache->find(key); local
132 if (NULL == item) {
136 if (static_cast<TextureResource*>(item)->fID != k) {
148 GrCacheable* item = cache->find(key); local
149 if (NULL != item) {
159 GrCacheable* item = cache->find(key); local
160 if (NULL != item) {
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs81 foreach ( object item in items )
82 list.Add( item );
87 foreach ( T item in items )
88 list.Add( item );
150 public static void remove<T>( this IList<T> list, T item )
152 list.Remove( item );
/external/chromium_org/cc/base/
H A Dscoped_ptr_deque.h89 void push_front(scoped_ptr<T> item) {
90 data_.push_front(item.release());
93 void push_back(scoped_ptr<T> item) {
94 data_.push_back(item.release());
97 void insert(iterator position, scoped_ptr<T> item) {
99 data_.insert(position, item.release());
/external/chromium_org/components/component_updater/
H A Dupdate_checker.cc32 // with data that is not platform or component specific. For each |item|, a
49 const CrxUpdateItem* item = items[i]; local
53 item->id.c_str(),
54 item->component.version.GetString().c_str());
55 if (item->on_demand)
59 if (!item->component.fingerprint.empty()) {
64 item->component.fingerprint.c_str());
/external/chromium_org/content/public/test/
H A Ddownload_test_observer.h21 // Detects an arbitrary change on a download item.
29 DownloadUpdatedObserver(DownloadItem* item, EventFilter filter);
33 // object construction) or the item is destroyed. Return value indicates
34 // if the wait ended because the item was seen (true) or the object
40 virtual void OnDownloadUpdated(DownloadItem* item) OVERRIDE;
41 virtual void OnDownloadDestroyed(DownloadItem* item) OVERRIDE;
91 DownloadManager* manager, DownloadItem* item) OVERRIDE;
102 // Called to see if a download item is in a final state.
111 // Called when we know that a download item is in a final state.
113 // final state; multiple notifications may occur once the item i
[all...]

Completed in 633 milliseconds

<<21222324252627282930>>