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

<<51525354555657585960>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
ClassList.h 54 virtual const AtomicString item(unsigned index) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegionList.cpp 40 VTTRegion* VTTRegionList::item(unsigned index) const function in class:WebCore::VTTRegionList
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMPlugin.h 50 PassRefPtrWillBeRawPtr<DOMMimeType> item(unsigned index);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
HTMLInputElementFileSystem.cpp 62 File* file = files->item(i);
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBufferList.h 56 SourceBuffer* item(unsigned long index) const { return (index < m_list.size()) ? m_list[index].get() : 0; } function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammarList.cpp 39 SpeechGrammar* SpeechGrammarList::item(unsigned long index) const function in class:WebCore::SpeechGrammarList
  /external/chromium_org/third_party/WebKit/Source/web/
WebHistoryItem.cpp 215 WebHistoryItem::WebHistoryItem(const PassRefPtr<HistoryItem>& item)
216 : m_private(item)
220 WebHistoryItem& WebHistoryItem::operator=(const PassRefPtr<HistoryItem>& item)
222 m_private = item;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsubclient.cc 114 const XmlElement* item = GetItemFromStanza(task->stanza()); local
115 SignalPublishResult(this, task->task_id(), item);
122 const XmlElement* item = GetItemFromStanza(publish_task->stanza()); local
123 SignalPublishError(this, publish_task->task_id(), item, error_stanza);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MapItem.java 25 * Class that represents a map item.
34 /** {@code non-null;} item type this instance covers */
41 * {@code null-ok;} first item covered or {@code null} if this is
44 private final Item firstItem;
47 * {@code null-ok;} last item covered or {@code null} if this is
50 private final Item lastItem;
59 * Constructs a list item with instances of this class representing
82 Item firstItem = null;
83 Item lastItem = null;
86 for (Item item : section.items())
    [all...]
  /external/icu/icu4c/source/common/
uarrsort.h 30 * @param left Pointer to the "left" item.
31 * @param right Pointer to the "right" item.
50 * @param itemSize The size in bytes of each array item.
90 * This version here will return the largest index of any equal item,
93 * @return the index>=0 where the item was found:
95 * or the index<0 for inserting the item at ~index in sorted order
98 uprv_stableBinarySearch(char *array, int32_t length, void *item, int32_t itemSize,
  /external/smack/src/org/jivesoftware/smackx/packet/
DataForm.java 44 private final List<Item> items = new ArrayList<Item>();
109 public Iterator<Item> getItems() {
111 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
189 * Adds a new item returned from a search.
191 * @param item the item returned from a search.
193 public void addItem(Item item) {
195 items.add(item);
230 Item item = i.next(); local
    [all...]
MUCOwner.java 38 private List<Item> items = new ArrayList<Item>();
42 * Returns an Iterator for item childs that holds information about affiliation,
45 * @return an Iterator for item childs that holds information about affiliation,
48 public Iterator<Item> getItems() {
50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
77 * Adds an item child that holds information about affiliation, jids and nicks.
79 * @param item the item child that holds information about affiliation, jids and nicks.
81 public void addItem(Item item)
92 Item item = (Item) items.get(i); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableField.java 114 protected boolean isImmutable(@Nonnull Field item) {
115 return item instanceof ImmutableField;
120 protected ImmutableField makeImmutable(@Nonnull Field item) {
121 return ImmutableField.of(item);
ImmutableMethod.java 122 protected boolean isImmutable(@Nonnull Method item) {
123 return item instanceof ImmutableMethod;
128 protected ImmutableMethod makeImmutable(@Nonnull Method item) {
129 return ImmutableMethod.of(item);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction.java 153 protected boolean isImmutable(@Nonnull Instruction item) {
154 return item instanceof ImmutableInstruction;
159 protected ImmutableInstruction makeImmutable(@Nonnull Instruction item) {
160 return ImmutableInstruction.of(item);
  /external/smali/util/src/main/java/org/jf/util/
ImmutableConverter.java 44 public abstract class ImmutableConverter<ImmutableItem, Item> {
45 protected abstract boolean isImmutable(@Nonnull Item item);
46 @Nonnull protected abstract ImmutableItem makeImmutable(@Nonnull Item item);
49 public ImmutableList<ImmutableItem> toList(@Nullable final Iterable<? extends Item> iterable) {
56 for (Item element: iterable) {
70 final Iterator<? extends Item> iter = iterable.iterator();
80 public ImmutableSet<ImmutableItem> toSet(@Nullable final Iterable<? extends Item> iterable) {
87 for (Item element: iterable)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 68 * not be null or the empty string. Each item in the array must
122 // Hurl if any item isn't simple.
157 * not be null or the empty string. Each item in the array must
185 // Extract the item values one at a time, until the whole input string is done.
214 // item from the substring.
267 // item value.
312 // Add the separated item to the array.
689 // Not replacing, keep the existing item.
709 // Merge other arrays by item values. Don't worry about order or duplicates. Source
991 * Add quotes to the item
    [all...]
  /frameworks/base/core/java/android/view/
ActionMode.java 254 * @param item The item that was clicked
258 public boolean onActionItemClicked(ActionMode mode, MenuItem item);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 109 Element l = (Element)nl.item(i);
117 Element c = (Element)nl.item(i);
125 Element img = (Element)nl.item(i);
133 Element e = (Element)nl.item(i);
142 Element m = (Element)nl.item(i);
151 Element m = (Element)nl.item(i);
160 Element s = (Element)nl.item(i);
178 Element materialRef = (Element)nl.item(i);
286 Element ref = (Element)nl.item(0);
298 ref = (Element)nl.item(0);
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
Presenter.java 40 * public void onBindViewHolder(ViewHolder viewHolder, Object item) {
41 * String str = (String) item;
44 * textView.setText(item);
75 * Binds a {@link View} to an item.
77 public abstract void onBindViewHolder(ViewHolder viewHolder, Object item);
80 * Unbinds a {@link View} from an item. Any expensive references may be
81 * released here, and any fields that are not bound for every item should be
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
ActionMode.java 266 * @param item The item that was clicked
270 public boolean onActionItemClicked(ActionMode mode, MenuItem item);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attreffectivevalue.java 70 testNode = addressList.item(0);
attrentityreplacement.java 75 testNode = addressList.item(3);
attrname.java 71 testNode = addressList.item(1);
attrnextsiblingnull.java 70 testNode = addressList.item(0);

Completed in 632 milliseconds

<<51525354555657585960>>