OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getitem
(Results
26 - 50
of
675
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/content/common/dom_storage/
dom_storage_map_unittest.cc
34
EXPECT_TRUE(map->
GetItem
(kKey).is_null());
49
EXPECT_EQ(kValue, map->
GetItem
(kKey).string());
50
EXPECT_TRUE(map->
GetItem
(kKey2).is_null());
72
EXPECT_EQ(kValue, copy->
GetItem
(kKey).string());
73
EXPECT_EQ(kValue2, copy->
GetItem
(kKey2).string());
/external/chromium_org/native_client_sdk/src/examples/api/input_event/
shared_queue.h
57
// queue in a thread-safe manner. The
GetItem
() is used to retrieve
75
//
GetItem
the thread will wake up and see that the queue has
81
// the producer. If so, the thread should not call
GetItem
and may
102
// If |wait| is kWait,
GetItem
will wait to return until the queue
104
QueueGetResult
GetItem
(T* item_ptr, QueueWaitingFlag wait) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java
55
Action action =
getItem
(i);
97
Action action =
getItem
(position);
156
Action action =
getItem
(i);
168
Action action =
getItem
(i);
216
FilterRepresentation itemRep =
getItem
(i).getRepresentation();
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLAllCollectionCustom.cpp
61
static v8::Handle<v8::Value>
getItem
(HTMLAllCollection* collection, v8::Handle<v8::Value> argument, const CallbackInfo& callbackInfo)
80
v8SetReturnValue(args,
getItem
(imp, args[0], args));
104
v8SetReturnValue(args,
getItem
(imp, args[0], args));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateAdapter.java
52
State state =
getItem
(position);
69
if (state ==
getItem
(i)) {
90
State state =
getItem
(i);
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
FromAddressSpinnerAdapter.java
72
return
getItem
(pos).isCustomFrom ? CUSTOM_FROM : FROM;
77
ReplyFromAccount fromItem =
getItem
(position);
90
ReplyFromAccount fromItem =
getItem
(position);
/packages/apps/Settings/src/com/android/settings/deviceinfo/
MiscFilesHandler.java
113
Log.i(TAG, "deleting: " + mAdapter.
getItem
(i));
116
File file = new File(mAdapter.
getItem
(i).mFileName);
122
toRemove.add(mAdapter.
getItem
(i));
177
selectedDataSize += mAdapter.
getItem
(i).mSize;
213
public StorageMeasurement.FileInfo
getItem
(int position) {
252
FileInfo item =
getItem
(position);
/external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h
48
String
getItem
(const String& key, ExceptionState& ec) const { return m_storageArea->
getItem
(key, ec, m_frame); }
/external/webrtc/src/system_wrappers/test/map/
map.cc
31
void* map_item_pointer = map_item->
GetItem
();
101
FailTest(*(reinterpret_cast<int*>(second_to_last_item->
GetItem
())) !=
/packages/apps/Contacts/src/com/android/contacts/list/
LegacyContactListAdapter.java
66
return ((Cursor)
getItem
(position)).getString(PERSON_DISPLAY_NAME_COLUMN_INDEX);
70
Cursor cursor = ((Cursor)
getItem
(position));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
SwapButton.java
97
mListener.swapRight(mMenu.
getItem
(mCurrentMenuIndex));
106
mListener.swapLeft(mMenu.
getItem
(mCurrentMenuIndex));
/packages/apps/Launcher2/src/com/android/launcher2/
AddAdapter.java
78
ListItem item = (ListItem)
getItem
(position);
96
public Object
getItem
(int position) {
/packages/apps/Launcher3/src/com/android/launcher3/
AddAdapter.java
78
ListItem item = (ListItem)
getItem
(position);
96
public Object
getItem
(int position) {
/packages/apps/Mms/src/com/android/mms/ui/
IconListAdapter.java
85
text.setText(
getItem
(position).getTitle());
89
image.setImageResource(
getItem
(position).getResource());
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
SeparatedFolderListAdapter.java
39
public Object
getItem
(int position) {
45
return adapter.
getItem
(position);
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
StableArrayAdapter.java
43
String item =
getItem
(position);
/external/chromium_org/content/renderer/dom_storage/
webstoragearea_impl.h
29
virtual WebKit::WebString
getItem
(const WebKit::WebString& key);
/external/chromium_org/third_party/WebKit/ManualTests/
localstorage-value-truncation.html
8
var x = localStorage.
getItem
(key);
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPointList.idl
31
[StrictTypeChecking, RaisesException] SVGPoint
getItem
(unsigned long index);
SVGStringList.idl
31
[StrictTypeChecking, RaisesException] DOMString
getItem
(unsigned long index);
/external/jmonkeyengine/engine/src/android/jme3test/android/
DemoLaunchAdapter.java
33
public Object
getItem
(int position) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
MenuResourceLoaderTest.java
37
assertThat(mi.getSubMenu().
getItem
(1).getTitle() + "", equalTo("Test menu item 3") );
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
BaseAdapterTest.java
38
public Object
getItem
(int position) {
/external/webrtc/src/system_wrappers/source/
list_no_stl.h
25
void*
GetItem
() const;
list_stl.h
27
void*
GetItem
() const;
Completed in 501 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>