HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 1351 - 1375 of 2528) sorted by null

<<51525354555657585960>>

  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 9 T get() const { return value_; } function in struct:test0::Num
49 return result.get();
56 return result.get();
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 142 static RJ get(tuple<Head, Values...>& t) { return Next::get(t.tail()); } function in class:get_impl
143 static PJ get(const tuple<Head, Values...>& t) { return Next::get(t.tail()); } function in class:get_impl
151 static RJ get(tuple<Head, Values...>& t) { return t.head(); } function in class:get_impl
152 static PJ get(const tuple<Head, Values...>& t) { return t.head(); } function in class:get_impl
157 get(tuple<Values...>& t) { function
158 return get_impl<I, tuple<Values...> >::get(t);
163 get(const tuple<Values...>& t) { function
164 return get_impl<I, tuple<Values...> >::get(t)
    [all...]
example-tuple.cpp 185 static RJ get(tuple<Head, Values...>& t) { return Next::get(t.tail()); } function in class:get_impl
186 static PJ get(const tuple<Head, Values...>& t) { return Next::get(t.tail()); } function in class:get_impl
194 static RJ get(tuple<Head, Values...>& t) { return t.head(); } function in class:get_impl
195 static PJ get(const tuple<Head, Values...>& t) { return t.head(); } function in class:get_impl
200 get(tuple<Values...>& t) { function
201 return get_impl<I, tuple<Values...> >::get(t);
206 get(const tuple<Values...>& t) { function
207 return get_impl<I, tuple<Values...> >::get(t)
    [all...]
sizeofpack.cpp 59 get_t<i> get();
64 X<Members...>::get_t<i> X<Members...>::get() function in class:pr12439::X
  /external/clang/test/PCH/
thread-safety-attrs.cpp 80 T* get() const { return ptr_; } function in class:SmartPtr
  /external/clang/test/SemaCXX/
for-range-examples.cpp 78 template<typename B> B &get() { return tuple_elem<B>::t; } function in struct:map_range::tuple
146 for (auto a : map(map_range::mem_fun(&T::get<int>), pairs)) {
  /external/clang/test/SemaTemplate/
constexpr-instantiate.cpp 5 template<typename T> static constexpr T get() { return T(); } function in struct:UseBeforeDefinition::A
7 int n = get<int>();
11 constexpr int j = A::get<int>();
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsnList.java 62 result.set(i, list.get(i));
87 public DalvInsn get(int n) { method in class:DalvInsnList
115 DalvInsn last = get(sz - 1);
SwitchData.java 108 int firstCase = (sz == 0) ? 0 : cases.get(0);
109 int lastCase = (sz == 0) ? 0 : cases.get(sz - 1);
119 int oneCase = cases.get(caseAt);
136 out.writeInt(cases.get(i));
169 sb.append(cases.get(i));
192 sb.append(cases.get(i));
212 long low = cases.get(0);
213 long high = cases.get(sz - 1);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 130 handlerOffsets.put(table.get(i).getHandlers(), null);
163 CatchHandlerList.Entry entry = list.get(i);
170 out.writeUleb128(list.get(listSize).getHandler());
202 CatchTable.Entry one = table.get(i);
215 out.writeShort(handlerOffsets.get(one.getHandlers()));
247 CatchTable.Entry entry = table.get(i);
MixedItemSection.java 196 OffsettedItem result = interns.get(item);
213 public <T extends OffsettedItem> T get(T item) { method in class:MixedItemSection
216 OffsettedItem result = interns.get(item);
279 OffsettedItem one = items.get(i);
310 OffsettedItem one = items.get(i);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
LocalVariableExtractor.java 121 Insn insn = insns.get(i);
135 && primaryState.get(result.getReg()) != null) {
136 primaryState.remove(primaryState.get(result.getReg()));
143 RegisterSpec already = primaryState.get(result);
182 int succ = successors.get(i);
RegisterSpecSet.java 166 public RegisterSpec get(int reg) { method in class:RegisterSpecSet
178 * {@code get(spec.getReg())}.
184 public RegisterSpec get(RegisterSpec spec) { method in class:RegisterSpecSet
185 return get(spec.getReg());
301 RegisterSpec spec = set.get(i);
  /external/dexmaker/src/dx/java/com/android/dx/util/
IntList.java 171 public int get(int n) { method in class:IntList
287 return get(size - 1);
301 result = get(size-1);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 68 Control control = m_propertyToControl.get(propertyTable, property);
83 Button button = (Button) m_propertyToControl.get(propertyTable, property);
220 Control get(PropertyTable propertyTable, Property property) { method in class:ButtonPropertyEditorPresentationImpl.PropertyToControlMap
221 return m_map.get(Pair.create(propertyTable, property));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ClassLoaderLocalMap.java 86 public static Object get(ClassLoader cl, Object key) { method in class:ClassLoaderLocalMap
88 return globalMap.get(key);
92 return getLocalMap(cl).get(key);
148 return (Map<Object, Object>) holderClass.getDeclaredField("localMap").get(null);
  /external/emma/core/java12/com/vladium/emma/report/
AbstractReportGenerator.java 154 final int count = countMap.get (packageVMName, _count)
208 metrics.get (t, m_metrics, t);
  /external/emma/core/java12/com/vladium/util/
Property.java 331 // (getProperty() uses a non-virtual call to get(), while propertyNames()
342 public Object get (final Object key) method in class:Property.FilePropertyLookup
346 return m_contents.get (key);
410 // (getProperty() uses a non-virtual call to get(), while propertyNames()
416 return (String) get (key);
419 public Object get (final Object key) method in class:Property.SystemPropertyLookup
423 String result = (String) super.get (key);
491 // (getProperty() uses a non-virtual call to get(), while propertyNames()
497 return (String) get (key);
500 public Object get (final Object key method in class:Property.SystemRedirectsLookup
    [all...]
  /external/guava/guava/src/com/google/common/cache/
AbstractCache.java 55 public V get(K key, Callable<? extends V> valueLoader) throws ExecutionException { method in class:AbstractCache
123 return get(key);
248 hitCount.get(),
249 missCount.get(),
250 loadSuccessCount.get(),
251 loadExceptionCount.get(),
252 totalLoadTime.get(),
253 evictionCount.get());
  /external/guava/guava/src/com/google/common/collect/
ForwardingMap.java 99 public V get(Object key) { method in class:ForwardingMap
100 return delegate().get(key);
256 * {@link ForwardingMap#get}, {@link ForwardingMap#isEmpty}, {@link
ImmutableList.java 178 // These go up to eleven. After that, you just get the varargs form, and
449 @Override public E get(int index) { method in class:ImmutableList.ReverseImmutableList
451 return forwardList.get(reverseIndex(index));
ImmutableListMultimap.java 280 @Override public ImmutableList<V> get(@Nullable K key) { method in class:ImmutableListMultimap
282 ImmutableList<V> list = (ImmutableList<V>) map.get(key);
ImmutableMap.java 46 * {@link Object#hashCode} implementations. You can get better performance by
342 return get(key) != null;
351 public abstract V get(@Nullable Object key); method in class:ImmutableMap
ImmutableSetMultimap.java 224 Collection<V> collection = builderMultimap.get(checkNotNull(key));
259 * <p>If this method is called, the sets returned by the {@code get()}
338 // Returned by get() when values are sorted and a missing key is provided.
356 @Override public ImmutableSet<V> get(@Nullable K key) { method in class:ImmutableSetMultimap
358 ImmutableSet<V> set = (ImmutableSet<V>) map.get(key);
ImmutableSortedMap.java 284 entries.get(i - 1).getKey(), entries.get(i).getKey()) == 0) {
286 "Duplicate keys in mappings " + entries.get(i - 1) + " and "
287 + entries.get(i));
435 @Override public V get(@Nullable Object key) { method in class:ImmutableSortedMap
445 return i >= 0 ? entries.get(i).getValue() : null;
499 V mappedValue = map.get(entry.getKey());
628 return entries.get(0).getKey();
636 return entries.get(size() - 1).getKey();

Completed in 284 milliseconds

<<51525354555657585960>>