/frameworks/base/core/java/android/widget/ |
BaseAdapter.java | 66 public boolean isEnabled(int position) { 70 public View getDropDownView(int position, View convertView, ViewGroup parent) { 71 return getView(position, convertView, parent); 74 public int getItemViewType(int position) {
|
SpinnerAdapter.java | 31 * the data at the specified position in the data set.</p> 33 * @param position index of the item whose view we want. 40 * specified position. 42 public View getDropDownView(int position, View convertView, ViewGroup parent);
|
/frameworks/base/core/java/com/android/internal/widget/ |
IRemoteViewsFactory.aidl | 28 RemoteViews getViewAt(int position); 31 long getItemId(int position);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
IndexerListAdapter.java | 42 private int position = ListView.INVALID_POSITION; field in class:IndexerListAdapter.Placement 48 position = ListView.INVALID_POSITION; 117 * @return relative position of the section in the indexed partition 128 * @param position relative position in the indexed partition 130 public int getSectionForPosition(int position) { 135 return mIndexer.getSectionForPosition(position); 173 int position = listPosition - listView.getHeaderViewsCount(); local 176 int partition = getPartitionForPosition(position); 178 int offset = getOffsetInPartition(position); [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
ReorderHelper.java | 16 * Helper class for doing reorder animations. Works out the logical position of 24 * Constant to indicate an unsupported reordering position. 75 // Ensure that target position is not the same as the original, 77 if (lp.position != mCurrentDraggedOverChild.position) { 83 mDraggedChild.position != mCurrentDraggedOverChild.position) { 85 mDraggedChild.position, 86 mCurrentDraggedOverChild.position); 90 mReorderListener.onDrop(mDraggedChild.target, mDraggedChild.position, 270 final int position; field in class:ReorderHelper.ReorderView [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/ |
SuggestionView.java | 34 * @param position The position of this view with the list. 36 void bindAdapter(SuggestionsAdapter<?> adapter, long position);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
ByteArrayDictBuffer.java | 58 public int position() { method in class:ByteArrayDictBuffer 63 public void position(int position) { method in class:ByteArrayDictBuffer 64 mPosition = position;
|
/cts/tests/src/android/widget/cts/util/ |
ListScenario.java | 88 * Return whether the item at position is selectable (i.e is a separator). 91 private boolean isItemAtPositionSelectable(int position) { 92 return !mUnselectableItems.contains(position); 136 * Set the position that starts selected. 138 * @param startingSelectionPosition The selected position within the adapter's data set. 159 * @param position The position in the list. 163 int position, double itemScreenSizeFactor) { 164 mOverrideItemScreenSizeFactors.put(position, itemScreenSizeFactor); 169 * Set a position as unselectable (a.k.a a separator [all...] |
/frameworks/base/core/tests/coretests/src/android/util/ |
ListScenario.java | 87 * Return whether the item at position is selectable (i.e is a separator). 90 private boolean isItemAtPositionSelectable(int position) { 91 return !mUnselectableItems.contains(position); 135 * Set the position that starts selected. 137 * @param startingSelectionPosition The selected position within the adapter's data set. 158 * @param position The position in the list. 162 int position, double itemScreenSizeFactor) { 163 mOverrideItemScreenSizeFactors.put(position, itemScreenSizeFactor); 168 * Set a position as unselectable (a.k.a a separator [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/gridview/ |
GridThrasher.java | 81 public Object getItem(int position) { 82 return position; 85 public long getItemId(int position) { 86 return position; 89 public View getView(int position, View convertView, ViewGroup parent) { 97 view.setText(mTitles[position] + " " + mVersion[position]); 103 int position = mRandomizer.nextInt(getCount()); local 104 mVersion[position]++; 128 public void onItemSelected(AdapterView parent, View v, int position, long id) [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListThrasher.java | 79 public Object getItem(int position) { 80 return position; 83 public long getItemId(int position) { 84 return position; 87 public View getView(int position, View convertView, ViewGroup parent) { 95 view.setText(mTitles[position] + " " + mVersion[position]); 101 int position = mRandomizer.nextInt(getCount()); local 102 mVersion[position]++; 124 public void onItemSelected(AdapterView parent, View v, int position, long id) [all...] |
ListItemFocusablesFarApart.java | 40 protected View createView(int position, ViewGroup parent, int desiredHeight) { 42 position, parent.getContext(), desiredHeight);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
CodeAddress.java | 34 * @param position {@code non-null;} source position 36 public CodeAddress(SourcePosition position) { 37 super(position);
|
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
heap_instance_track.css | 12 list-style-position: outside;
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
matcher.py | 22 from closure_linter.common import position namespace 27 Position = position.Position
|
/external/chromium_org/content/browser/geolocation/ |
core_location_data_provider_mac.h | 34 void UpdatePosition(Geoposition* position); 44 void PositionUpdated(Geoposition position); 46 // The wrapper class that supplies this class with position data 48 // The LocationProvider class that should receive position data
|
/external/chromium_org/ppapi/cpp/ |
touch_point.h | 30 FloatPoint position() const { function in class:pp::TouchPoint 31 return pp::FloatPoint(touch_point_.position);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
MoveSelectionCommand.h | 37 static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false) 39 return adoptRef(new MoveSelectionCommand(fragment, position, smartInsert, smartDelete)); 43 MoveSelectionCommand(PassRefPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete); 49 Position m_position;
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
SharedBuffer.cpp | 49 static inline unsigned segmentIndex(unsigned position) 51 return position / segmentSize; 54 static inline unsigned offsetInSegment(unsigned position) 56 return position & segmentPositionMask; 258 unsigned position = 0; local 259 while (unsigned segmentSize = getSomeData(segment, position)) { 261 position += segmentSize; 271 size_t position = 0; local 272 while (size_t length = data->getSomeData(segment, position)) { 274 position += length 348 unsigned position = m_buffer.size(); local [all...] |
/external/chromium_org/third_party/closure_linter/closure_linter/common/ |
matcher.py | 22 from closure_linter.common import position namespace 27 Position = position.Position
|
/external/chromium_org/third_party/ots/include/ |
ots-memory-stream.h | 31 virtual bool Seek(off_t position) { 32 if (position < 0) return false; 33 if (static_cast<size_t>(position) > length_) return false; 34 off_ = position; 85 bool Seek(off_t position) { 86 if (position < 0) return false; 87 if (static_cast<size_t>(position) > length_) return false; 88 off_ = position;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
CodeAddress.java | 34 * @param position {@code non-null;} source position 36 public CodeAddress(SourcePosition position) { 37 super(position);
|
/external/flac/libFLAC/include/private/ |
ogg_helper.h | 40 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data); 41 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data);
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
DynamicArray.java | 101 * This method returns a value on the specified position. The dimension of the table is not taken into
103 * @param position
104 * the position of the data
107 public T get(int position) {
108 return array[position];
112 * This method returns a value on the specified position in multidimensional array. Be careful not to exceed the
114 * @param position
115 * the position of the data indices of data position
118 public T get(int... position) {
[all...] |
/external/smack/src/org/jivesoftware/smackx/workgroup/ |
QueueUser.java | 41 * @param position the position customer sits in the queue
45 public QueueUser (String uid, int position, int time, Date joinedAt) {
49 this.queuePosition = position;
62 * @return the position in the queue at which the customer sits, or -1 if the update which
71 * if the update which this instance embodies is only a position update instead
|