OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:get
(Results
826 - 850
of
2528
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicStampedReference.java
68
* Typical usage is {@code int[1] holder; ref = v.
get
(holder); }.
74
public V
get
(int[] stampHolder) {
method in class:AtomicStampedReference
/libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java
78
buffers[0].
get
(bytes);
method
81
buffers[1].
get
(bytes);
method
/libnativehelper/include/nativehelper/
UniquePtr.h
64
T*
get
() const { return mPtr; }
function in class:UniquePtr
117
T*
get
() const { return mPtr; }
function in class:UniquePtr
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
future.cpp
193
future<void>::
get
()
function in class:future
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opref/
op_arrow.pass.cpp
29
int
get
() const {return data_;}
function in class:A
61
assert(r->
get
() == x.
get
());
/ndk/sources/cxx-stl/stlport/stlport/stl/
_move_construct_fwk.h
40
_Tp&
get
() const
function in class:__move_source
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-linked_ptr.h
62
// raw pointer (e.g. via
get
()) concurrently, and
172
T*
get
() const { return value_; }
function in class:testing::internal::linked_ptr
180
return value_ == ptr.
get
();
184
return value_ != ptr.
get
();
204
value_ = ptr->
get
();
214
return ptr == x.
get
();
219
return ptr != x.
get
();
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
class_properties.hpp
60
read_access_t
get
() const { return value; }
function in class:boost::unit_test::class_property
87
return os << p.
get
();
97
return lhs op rhs.
get
(); \
103
return lhs.
get
() op rhs; \
110
return lhs.
get
() op rhs.
get
(); \
126
return b op p.
get
(); \
132
return b op p.
get
(); \
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
value_init.hpp
161
T const&
get
( initialized<T> const& x )
function in namespace:boost
167
T&
get
( initialized<T>& x )
function in namespace:boost
221
T const&
get
( value_initialized<T> const& x )
function in namespace:boost
227
T&
get
( value_initialized<T>& x )
function in namespace:boost
/packages/apps/Camera2/src/com/android/camera/data/
LocalDataList.java
32
* LinkedList. A linked list in indexOf does a other.equals(
get
(i)).
53
public LocalData
get
(int index) {
method in class:LocalDataList
54
return mList.
get
(index);
63
public LocalData
get
(Uri uri) {
method in class:LocalDataList
64
return mUriMap.
get
(uri);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java
50
public static AccountTypeWithDataSet
get
(String accountType, String dataSet) {
method in class:AccountTypeWithDataSet
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
StopWatch.java
62
final long start = mTimes.
get
(0);
63
final long stop = mTimes.
get
(mTimes.size() - 1);
76
final long current = mTimes.
get
(i);
77
sb.append(mLapLabels.
get
(i));
/packages/apps/Dialer/src/com/android/dialer/util/
ExpirableCache.java
72
* use the {@link #
get
(Object)} method instead.
128
mGeneration = mCacheGeneration.
get
();
138
return mGeneration != mCacheGeneration.
get
();
169
* If only wants values that are not expired, use {@link #
get
(Object)} instead.
174
return mCache.
get
(key);
183
* within the {@link CachedValue} and not call {@link #getPossiblyExpired(Object)} to
get
the
204
public V
get
(K key) {
method in class:ExpirableCache
/packages/apps/Exchange/tests/src/com/android/exchange/
ExchangeServiceAccountTests.java
76
assertNotNull(errorMap.
get
(box2.mId));
77
assertNotNull(errorMap.
get
(box1.mId));
90
assertNotNull(errorMap.
get
(box2.mId));
/packages/apps/Gallery/src/com/android/camera/gallery/
LruCache.java
65
return entry == null ? null : entry.
get
();
68
public synchronized V
get
(K key) {
method in class:LruCache
70
V value = mLruMap.
get
(key);
72
Entry<K, V> entry = mWeakMap.
get
(key);
73
return entry == null ? null : entry.
get
();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
LruCache.java
74
return entry == null ? null : entry.
get
();
77
public synchronized V
get
(K key) {
method in class:LruCache
79
V value = mLruMap.
get
(key);
81
Entry<K, V> entry = mWeakMap.
get
(key);
82
return entry == null ? null : entry.
get
();
/packages/apps/Gallery2/src/com/android/gallery3d/data/
BytesBufferPool.java
74
public synchronized BytesBuffer
get
() {
method in class:BytesBufferPool
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
PreparePageFadeoutTexture.java
38
public synchronized RawTexture
get
() {
method in class:PreparePageFadeoutTexture
75
texture = task.
get
();
/packages/apps/Launcher2/src/com/android/launcher2/
HideFromAccessibilityHelper.java
67
v.setImportantForAccessibility(mPreviousValues.
get
(v));
/packages/apps/Mms/src/com/android/mms/util/
SimpleCache.java
71
return ref != null ? ref.
get
() : null;
100
* See {@link Map#
get
(Object)}.
102
public V
get
(Object key) {
method in class:SimpleCache
103
return mSoftReferences != null ? unwrap(mSoftReferences.
get
(key))
104
: mHardReferences.
get
(key);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Util.java
42
set.add(list.
get
(i));
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSuggestionProviderCursor.java
41
public Object
get
(int column) {
method in class:MockSuggestionProviderCursor
42
return mRows.
get
(getPosition()).
get
(column);
57
return mRows.
get
(getPosition()).getDouble(column);
62
return mRows.
get
(getPosition()).getFloat(column);
67
return mRows.
get
(getPosition()).getInt(column);
72
return mRows.
get
(getPosition()).getLong(column);
77
return mRows.
get
(getPosition()).getShort(column);
82
return mRows.
get
(getPosition()).getString(column);
87
return mRows.
get
(getPosition()).isNull(column)
107
public Object
get
(int column) {
method in class:MockSuggestionProviderCursor.Row
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/preferences/
SimpleBackupSharedPreference.java
74
Object value = json.
get
(VALUE);
79
set.add(array.
get
(i));
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java
34
* The {@link #remove()} and {@link #
get
()} operations perform in constant time.
157
public byte
get
() {
method in class:UnboundedFifoByteBuffer
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
AddressList.java
58
public Address
get
(int index) {
method in class:AddressList
61
return addresses.
get
(index);
73
if (!(
get
(i) instanceof Mailbox)) {
84
Address addr =
get
(i);
99
Address addr =
get
(i);
Completed in 676 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>