Searched refs:item (Results 176 - 200 of 1876) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dthread_safe_queue.h32 void Enqueue(T* item) { argument
34 list_.push_back(item);
49 T* item = list_.front();
51 return item;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAllCollection.idl35 [ImplementedAs=item] getter Element (unsigned long index);
36 [Custom] Element item([Default=Undefined] optional unsigned long index);
H A DHTMLFormControlsCollection.idl26 [ImplementedAs=item] getter Node (unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DProgressTracker.cpp152 if (ProgressItem* item = m_progressItems.get(identifier)) {
153 item->bytesReceived = 0;
154 item->estimatedLength = estimatedLength;
161 ProgressItem* item = m_progressItems.get(identifier); local
164 if (!item)
171 item->bytesReceived += bytesReceived;
172 if (item->bytesReceived > item->estimatedLength) {
173 m_totalPageAndResourceBytesToLoad += ((item->bytesReceived * 2) - item
214 ProgressItem* item = m_progressItems.get(identifier); local
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DLruResourceCache.java23 protected void onItemRemoved(Key key, Resource item) { argument
25 listener.onResourceRemoved(item);
30 protected int getSize(Resource item) { argument
31 return item.getSize();
/external/smali/deodexerant/
H A Ddeodexerant.c75 InlineOperation *item = &inlineTable[i]; local
77 printf("%s->%s%s\n", item->classDescriptor, item->methodName, item->methodSignature);
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h25 ListItem(const unsigned int item);
54 ListItem* Next(ListItem* item) const;
55 ListItem* Previous(ListItem* item) const;
56 int Erase(ListItem* item);
H A Dmap_no_stl.h49 int Erase(MapNoStlItem* item);
54 MapNoStlItem* Next(MapNoStlItem* item) const;
55 MapNoStlItem* Previous(MapNoStlItem* item) const;
60 int Remove(MapNoStlItem* item);
H A Dmap.cc16 MapItem::MapItem(int id, void* item) : item_id_(id), item_pointer_(item) argument
55 // used because each item has some dynamically allocated memory
94 MapItem* MapWrapper::Next(MapItem* item) const
96 if (item == 0)
100 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_);
112 MapItem* MapWrapper::Previous(MapItem* item) const
114 if (item == 0)
119 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_);
139 int MapWrapper::Erase(MapItem* item) argument
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddownload_query.cc74 const DownloadItem& item) {
76 base::string16 url_raw(base::UTF8ToUTF16(item.GetOriginalUrl().spec()));
78 if (item.GetBrowserContext()) {
79 Profile* profile = Profile::FromBrowserContext(item.GetBrowserContext());
81 item.GetOriginalUrl(),
84 base::string16 path(item.GetTargetFilePath().LossyDisplayName());
101 static int64 GetStartTimeMsEpoch(const DownloadItem& item) { argument
102 return (item.GetStartTime() - base::Time::UnixEpoch()).InMilliseconds();
105 static int64 GetEndTimeMsEpoch(const DownloadItem& item) { argument
106 return (item
72 MatchesQuery( const std::vector<base::string16>& query_terms, const DownloadItem& item) argument
118 GetStartTime(const DownloadItem& item) argument
122 GetEndTime(const DownloadItem& item) argument
126 GetDangerAccepted(const DownloadItem& item) argument
131 GetExists(const DownloadItem& item) argument
135 GetFilename(const DownloadItem& item) argument
141 GetFilenameUTF8(const DownloadItem& item) argument
145 GetUrl(const DownloadItem& item) argument
149 GetState(const DownloadItem& item) argument
153 GetDangerType(const DownloadItem& item) argument
157 GetReceivedBytes(const DownloadItem& item) argument
161 GetTotalBytes(const DownloadItem& item) argument
165 GetMimeType(const DownloadItem& item) argument
169 IsPaused(const DownloadItem& item) argument
180 FieldMatches( const ValueType& value, ComparisonType cmptype, const base::Callback<ValueType(const DownloadItem&)>& accessor, const DownloadItem& item) argument
205 FindRegex( RE2* pattern, const base::Callback<std::string(const DownloadItem&)>& accessor, const DownloadItem& item) argument
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DMarshalHashtable.java55 SoapObject item = new ItemSoapObject(instance);
56 parser.require(XmlPullParser.START_TAG, null, "item");
58 Object key = envelope.read(parser, item, 0, null, null, PropertyInfo.OBJECT_TYPE);
61 item.setProperty(0, key);
63 Object value = envelope.read(parser, item, 1, null, null, PropertyInfo.OBJECT_TYPE);
66 item.setProperty(1, value);
68 parser.require(XmlPullParser.END_TAG, null, "item");
76 SoapObject item = new SoapObject(null, null);
77 item.addProperty("key", null);
78 item
[all...]
/external/chromium_org/cc/output/
H A Dbsp_walk_action.h18 virtual void operator()(DrawPolygon* item) = 0;
26 virtual void operator()(DrawPolygon* item) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleSheetList.idl27 getter StyleSheet item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTRegionList.idl31 getter VTTRegion item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformList.idl36 [RaisesException] SVGTransform initialize(SVGTransform item);
39 [RaisesException] SVGTransform insertItemBefore(SVGTransform item, unsigned long index);
40 [RaisesException] SVGTransform replaceItem(SVGTransform item, unsigned long index);
42 [RaisesException] SVGTransform appendItem(SVGTransform item);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNodeList.cpp67 WebNode WebNodeList::item(size_t index) const function in class:blink::WebNodeList
69 return WebNode(m_private->item(index));
/external/chromium_org/ui/accessibility/extensions/longdesc/
H A Doptions.js24 chrome.storage.sync.get("addBorder", function(item) {
25 document.getElementById('border').checked = item.addBorder;
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DLruCache.java7 * A general purpose size limited cache that evicts items using an LRU algorithm. By default every item is assumed to
8 * have a size of one. Subclasses can override {@link #getSize(Object)}} to change the size on a per item basis.
32 protected int getSize(Y item) { argument
36 protected void onItemRemoved(T key, Y item) { } argument
50 public Y put(T key, Y item) { argument
51 final int itemSize = getSize(item);
53 onItemRemoved(key, item);
57 final Y result = cache.put(key, item);
58 if (result != item) {
59 currentSize += getSize(item);
[all...]
/external/hamcrest/library/src/org/hamcrest/number/
H A DIsGreaterThan.java18 public boolean matchesSafely(T item) { argument
19 return compareTo.compareTo(item) < 0;
/external/hamcrest/library/src/org/hamcrest/text/
H A DSubstringMatcher.java17 public boolean matchesSafely(String item) { argument
18 return evalSubstringOf(item);
/external/junit/src/org/junit/internal/matchers/
H A DSubstringMatcher.java14 public boolean matchesSafely(String item) { argument
15 return evalSubstringOf(item);
/external/libcxx/test/containers/sequences/dynarray/dynarray.cons/
H A Ddefault.pass.cpp49 assert ( std::all_of ( d1.begin (), d1.end (), []( const T &item ){ return item == T(); } ));
53 assert ( std::all_of ( d2.begin (), d2.end (), [&val]( const T &item ){ return item == val; } ));
57 assert ( std::all_of ( d3.begin (), d3.end (), [&val]( const T &item ){ return item == val; } ));
88 assert ( std::all_of ( d1.begin (), d1.end (), []( long item ){ return item == 3L; } ));
/external/libogg/
H A DMakefile.am19 for item in $(EXTRA_DIST); do \
20 if test -d $$item; then \
21 echo -n "cleaning dir $$item for distribution..."; \
22 rm -rf `find $(distdir)/$$item -name .svn`; \
/external/mockito/src/org/mockito/internal/util/
H A DChecks.java22 for (Object item : iterable) {
23 checkNotNull(item, "item in " + checkedIterable);
/external/smack/src/org/jivesoftware/smack/
H A DRosterStorage.java43 public void addEntry(RosterPacket.Item item, String ver); argument
53 public void updateLocalEntry(RosterPacket.Item item); argument

Completed in 5412 milliseconds

1234567891011>>