HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 226 - 250 of 4164) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DetailsDescriptionPresenter.java 22 protected void onBindDescription(ViewHolder vh, Object item) {
23 vh.getTitle().setText(item.toString());
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
Notepadv1.java 40 public boolean onOptionsItemSelected(MenuItem item) {
42 return super.onOptionsItemSelected(item);
  /external/chromium_org/chrome/browser/download/
download_history.h 59 virtual void OnDownloadStored(content::DownloadItem* item,
74 static bool IsPersisted(const content::DownloadItem* item);
94 bool WasRestoredFromHistory(const content::DownloadItem* item) const;
104 // May add |item| to |history_|.
105 void MaybeAddToHistory(content::DownloadItem* item);
107 // Callback from |history_| when an item was successfully inserted into the
113 content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE;
115 content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE;
117 content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE;
119 content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE
    [all...]
download_status_updater.h 37 content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE;
39 content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE;
43 // |download| is the download item that changed. Implementations should not
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheetList.idl 27 getter StyleSheet item(unsigned long index);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlsCollection.idl 26 [ImplementedAs=item] getter Node (unsigned long index);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegionList.idl 31 getter VTTRegion item(unsigned long index);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransformList.idl 36 [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/
WebNodeList.cpp 69 WebNode WebNodeList::item(size_t index) const function in class:blink::WebNodeList
71 return WebNode(m_private->item(index));
  /external/glide/library/src/main/java/com/bumptech/glide/util/
LruCache.java 7 * 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) {
36 protected void onItemRemoved(T key, Y item) { }
50 public Y put(T key, Y item) {
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/
IsGreaterThan.java 18 public boolean matchesSafely(T item) {
19 return compareTo.compareTo(item) < 0;
  /external/hamcrest/library/src/org/hamcrest/text/
SubstringMatcher.java 17 public boolean matchesSafely(String item) {
18 return evalSubstringOf(item);
  /external/junit/src/org/junit/internal/matchers/
SubstringMatcher.java 14 public boolean matchesSafely(String item) {
15 return evalSubstringOf(item);
  /external/libcxx/test/containers/sequences/dynarray/dynarray.cons/
default.pass.cpp 49 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/
Makefile.am 19 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/
Checks.java 22 for (Object item : iterable) {
23 checkNotNull(item, "item in " + checkedIterable);
  /external/smack/src/org/jivesoftware/smack/
RosterStorage.java 19 public List<RosterPacket.Item> getEntries();
25 public RosterPacket.Item getEntry(String bareJid);
43 public void addEntry(RosterPacket.Item item, String ver);
53 public void updateLocalEntry(RosterPacket.Item item);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
VertexShader.java 94 ScriptField_VertexShader_s.Item item = new ScriptField_VertexShader_s.Item(); local
95 item.program = mProgram;
99 item.shaderConst = mConstantBuffer;
100 item.shaderConstParams = mConstantBufferParams.getAllocation();
101 mProgram.bindConstants(item.shaderConst, 0);
104 item.objectConstIndex = -1;
106 item.objectConstIndex = mPerShaderConstants != null ? 1 : 0;
110 mField.set(item, 0, true)
    [all...]
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpression.java 38 * of a context item, an empty document node will be used for the context.
87 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
94 * <code>item</code>, an empty document will be used for the
98 * @param item The starting context (node or node list, for example).
108 public Object evaluate(Object item, QName returnType)
114 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of
117 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
121 * <code>item</code>, an empty document will be used for the
124 * @param item The starting context (node or node list, for example).
131 public String evaluate(Object item)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.cons/
default.pass.cpp 49 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; } ));
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SnailAlbum.java 27 public SnailAlbum(Path path, SnailItem item) {
28 super(path, item);
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderInfo.java 48 * @param item
50 public void add(ShortcutInfo item) {
51 contents.add(item);
53 listeners.get(i).onAdd(item);
61 * @param item
63 public void remove(ShortcutInfo item) {
64 contents.remove(item);
66 listeners.get(i).onRemove(item);
107 public void onAdd(ShortcutInfo item);
108 public void onRemove(ShortcutInfo item);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderInfo.java 52 * @param item
54 public void add(ShortcutInfo item) {
55 contents.add(item);
57 listeners.get(i).onAdd(item);
65 * @param item
67 public void remove(ShortcutInfo item) {
68 contents.remove(item);
70 listeners.get(i).onRemove(item);
111 public void onAdd(ShortcutInfo item);
112 public void onRemove(ShortcutInfo item);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationsDirectoryItem.java 74 * Returns whether this item is empty (has no contents).
76 * @return {@code true} if this item is empty, or {@code false}
87 * Returns whether this item is a candidate for interning. The only
114 * <p><b>Note:</b>: This throws an exception if this item is not
151 * Adds a field annotations item to this instance.
167 * Adds a method annotations item to this instance.
183 * Adds a parameter annotations item to this instance.
209 for (MethodAnnotationStruct item : methodAnnotations) {
210 if (item.getMethod().equals(method)) {
211 return item.getAnnotations()
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationsDirectoryItem.java 74 * Returns whether this item is empty (has no contents).
76 * @return {@code true} if this item is empty, or {@code false}
87 * Returns whether this item is a candidate for interning. The only
114 * <p><b>Note:</b>: This throws an exception if this item is not
152 * Adds a field annotations item to this instance.
169 * Adds a method annotations item to this instance.
186 * Adds a parameter annotations item to this instance.
213 for (MethodAnnotationStruct item : methodAnnotations) {
214 if (item.getMethod().equals(method)) {
215 return item.getAnnotations()
    [all...]

Completed in 726 milliseconds

1 2 3 4 5 6 7 8 91011>>