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

<<11121314151617181920>>

  /external/chromium_org/ui/gfx/
matrix3_f.h 27 float get(int i, int j) const { function in class:gfx::Matrix3F
  /external/chromium_org/v8/test/mjsunit/
array-literal-transitions.js 46 function get(foo) { return foo; } // Used to generate dynamic values. function
51 var a1 = [get(1), get(2), get(3)];
54 var b0 = [1, 2, get("three")];
56 var b1 = [get(1), get(2), get("three")];
59 var c0 = [1, 2, get(3.5)];
71 var c2 = [get(1), get(2), get(3.5)]
    [all...]
object-seal.js 103 function get() { return 43; }; function
105 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
111 assertEquals(get, desc.get);
127 assertEquals(get, desc.get);
  /external/clang/test/Analysis/inlining/
dyn-dispatch-bifurcate.cpp 7 virtual int get() { return 0; } function in class:A
11 clang_analyzer_eval(a->get() == 0); // expected-warning{{TRUE}} expected-warning{{UNKNOWN}}
16 clang_analyzer_eval(a.get() == 0); // expected-warning{{TRUE}}
21 clang_analyzer_eval(a->get() == 0); // expected-warning{{TRUE}}
  /external/clang/test/CodeGenCXX/
debug-info-byval.cpp 25 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) { function
reference-in-blocks.cpp 9 T get() {return _i;}; function in class:range
35 void (^bl)(range<int> ) = ^(range<int> i){printf("Hello Blocks %d\n", i.get()); };
38 void (^bl2)(range<int>& ) = ^(range<int>& i){printf("Hello Blocks %d\n", i.get()); };
static-init-3.cpp 12 static T & get() { function in struct:X1
21 template<class T> T & X1<T>::instance = X1<T>::get();
27 X2< B > bg = X1< X2< B > >::get();
28 X2< A > ag = X1< X2< A > >::get();
  /external/compiler-rt/lib/tsan/rtl/
tsan_clock.h 44 u64 get(unsigned tid) const { function in struct:__tsan::ThreadClock
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderSection.java 48 public IndexedItem get(Constant cst) { method in class:HeaderSection
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
AddressMap.java 41 public int get(int keyAddress) { method in class:AddressMap
42 Integer value = map.get(keyAddress);
  /external/dexmaker/src/main/java/com/google/dexmaker/
Local.java 35 static <T> Local<T> get(Code code, TypeId<T> type) { method in class:Local
  /external/emma/core/java12/com/vladium/jcd/cls/
IAttributeCollection.java 37 Attribute_info get (int offset); method in interface:IAttributeCollection
IFieldCollection.java 37 Field_info get (int offset); method in interface:IFieldCollection
52 int [] get (ClassDef cls, String name); method in interface:IFieldCollection
IInterfaceCollection.java 39 int get (int offset); method in interface:IInterfaceCollection
IMethodCollection.java 37 Method_info get (int offset); method in interface:IMethodCollection
50 int [] get (ClassDef cls, String name); method in interface:IMethodCollection
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IDeclaredExceptionTable.java 39 int get (int offset); method in interface:IDeclaredExceptionTable
IExceptionHandlerTable.java 38 Exception_info get (int offset); method in interface:IExceptionHandlerTable
  /external/guava/guava/src/com/google/common/cache/
ForwardingLoadingCache.java 30 * <p>Note that {@link #get}, {@link #getUnchecked}, and {@link #apply} all expose the same
47 public V get(K key) throws ExecutionException { method in class:ForwardingLoadingCache
48 return delegate().get(key);
LoadingCache.java 36 * <p>All methods other than {@link #get} and {@link #getUnchecked} are optional.
52 * <p>If another call to {@link #get} or {@link #getUnchecked} is currently loading the value for
70 V get(K key) throws ExecutionException; method in interface:LoadingCache
75 * completes. Unlike {@link #get}, this method does not throw a checked exception, and thus should
78 * <p>If another call to {@link #get} or {@link #getUnchecked} is currently loading the value for
90 * {@link #get} instead.
122 * Discouraged. Provided to satisfy the {@code Function} interface; use {@link #get} or
134 * the previous value (if any) will continue to be returned by {@code get(key)} unless it is
  /external/guava/guava/src/com/google/common/collect/
AbstractIndexedListIterator.java 43 protected abstract E get(int index); method in class:AbstractIndexedListIterator
84 return get(position++);
102 return get(--position);
AbstractListMultimap.java 60 @Override public List<V> get(@Nullable K key) { method in class:AbstractListMultimap
61 return (List<V>) super.get(key);
AbstractSetMultimap.java 58 @Override public Set<V> get(@Nullable K key) { method in class:AbstractSetMultimap
59 return (Set<V>) super.get(key);
AbstractSortedSetMultimap.java 64 @Override public SortedSet<V> get(@Nullable K key) { method in class:AbstractSortedSetMultimap
65 return (SortedSet<V>) super.get(key);
102 * asMap().get(Object)} has the same behavior as {@link #get}, returning a
104 * asMap().get(Object)} returns {@code null} instead of an empty collection.
Count.java 40 public int get() { method in class:Count
SetMultimap.java 31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
49 Set<V> get(@Nullable K key); method in interface:SetMultimap

Completed in 381 milliseconds

<<11121314151617181920>>