Searched defs:get (Results 51 - 75 of 1167) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/webkit/
H A Darray-proto-func-length-getter-except.js34 get: (function() { throw true; })
/external/clang/test/PCH/
H A Dchain-pending-instantiations.cpp8 Derived* get() { return 0; } function in struct:A
22 (void)get();
/external/deqp/framework/delibs/decpp/
H A DdeThreadLocal.hpp41 inline void* get (void) const { return deThreadLocal_get(m_var); } function in class:de::ThreadLocal
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DDerivedTestIteratorGenerator.java43 public Iterator<E> get() { method in class:DerivedTestIteratorGenerator
/external/icu/icu4c/source/i18n/
H A Dsharednumberformat.h24 const NumberFormat *get() const { return ptr; } function in class:SharedNumberFormat
/external/javassist/sample/rmi/
H A DCounter.java11 public int get() { method in class:Counter
/external/javassist/src/main/javassist/compiler/ast/
H A DKeyword.java30 public int get() { return tokenId; } method in class:Keyword
H A DStringL.java30 public String get() { return text; } method in class:StringL
H A DSymbol.java30 public String get() { return identifier; } method in class:Symbol
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DInstanceOutputBufferProvider.java31 public Appendable get() { method in class:InstanceOutputBufferProvider
H A DOutputBufferProvider.java27 Appendable get(); method in interface:OutputBufferProvider
32 * @param buffer the Appendable object handed out by {@link #get}
/external/libcxx/test/containers/sequences/array/array.tuple/
H A Dget.pass.cpp12 // template <size_t I, class T, size_t N> T& get(array<T, N>& a);
21 constexpr S() : a{1,2,3}, k(std::get<2>(a)) {} function in struct:S
33 std::get<1>(c) = 5.5;
43 static_assert(std::get<0>(c) == 1, "");
44 static_assert(std::get<1>(c) == 2, "");
45 static_assert(std::get<2>(c) == 3.5, "");
49 static_assert(std::get<1>(getArr()) == 4, "");
/external/libcxx/test/support/
H A Dprivate_constructor.hpp18 int get () const { return val; } function in struct:PrivateConstructor
24 bool operator < ( const PrivateConstructor &lhs, const PrivateConstructor &rhs ) { return lhs.get() < rhs.get(); }
26 bool operator < ( const PrivateConstructor &lhs, int rhs ) { return lhs.get() < rhs; }
27 bool operator < ( int lhs, const PrivateConstructor &rhs ) { return lhs < rhs.get(); }
29 std::ostream & operator << ( std::ostream &os, const PrivateConstructor &foo ) { return os << foo.get (); }
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
H A Dmake_unique.array.pass.cpp19 int get () const { return val_; } function in class:foo
42 assert ( p3[i].get () == 3 );
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
H A Dget_non_const.pass.cpp16 // get(tuple<Types...>& t);
30 constexpr S() : a{1,Empty{}}, k(std::get<0>(a)), e(std::get<1>(a)) {} function in struct:S
41 assert(std::get<0>(t) == 3);
42 std::get<0>(t) = 2;
43 assert(std::get<0>(t) == 2);
48 assert(std::get<0>(t) == "high");
49 assert(std::get<1>(t) == 5);
50 std::get<0>(t) = "four";
51 std::get<
[all...]
/external/mockito/src/org/mockito/
H A DAnswers.java80 public Answer<Object> get() { method in class:Answers
/external/oprofile/libutil++/
H A Dcached_value.h28 value_type const get() const { function in class:cached_value
/external/skia/src/core/
H A DSkLazyFnPtr.h21 * return foo.get()(a, b);
43 F get() { function in class:Private::SkLazyFnPtr
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DFixedSizeList.java43 public T get(int index) { method in class:FixedSizeList
/external/srec/srec/AcousticState/include/
H A DSR_AcousticState.h80 ESR_ReturnCode(*get)(SR_Recognizer* recognizer, LCHAR *param_string, size_t* len ); member in struct:SR_AcousticState_t
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies-json.js39 get: function(target, name) {
68 get: function(target, name) {
87 // Proxy with a get function that uses the first argument.
89 get: function(target, name) {
108 get: function(target, name) {
125 get: function(target, name) {
142 get: function(target, name) {
159 get: function(target, name) {
H A Dproxies-function.js44 get : function(r, n) { return n == "length" ? 2 : undefined }
59 get: function(r, k) {
317 get: function(r, n) {
326 get: function(r, n) {
507 Object.defineProperty(o, "a", {get: pgetter, set: psetter})
508 Object.defineProperty(o, "b", {get: pgetter})
510 Object.defineProperty(o, "3", {get: pgetter, set: psetter})
634 get: function(r, k) {
/external/compiler-rt/
H A DAndroid.mk222 define get-libcompiler-rt-source-files
223 $(if $(findstring $(1),arm),$(call get-libcompiler-rt-arm-source-files),
224 $(if $(findstring $(1),mips),$(call get-libcompiler-rt-mips-source-files),
225 $(if $(findstring $(1),x86),$(call get-libcompiler-rt-x86-source-files),
226 $(if $(findstring $(1),x86_64),$(call get-libcompiler-rt-x86_64-source-files),
227 $(if $(findstring $(1),x32),$(call get-libcompiler-rt-x86-source-files),
228 $(if $(findstring $(1),arm64),$(call get-libcompiler-rt-arm64-source-files),
229 $(if $(findstring $(1),mips64),$(call get-libcompiler-rt-mips64-source-files),
246 define get-libcompiler-rt-arm-common-source-files
264 define get
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs50 public static object get(IDictionary map, object key) { method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions
55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) { method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) { method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) { method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs50 public static object get( this IDictionary map, object key ) method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions
55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key ) method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key ) method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key ) method in class:Antlr.Runtime.JavaExtensions.DictionaryExtensions

Completed in 5539 milliseconds

1234567891011>>