Searched defs:get (Results 226 - 250 of 712) sorted by relevance

1234567891011>>

/external/chromium/base/memory/
H A Dsingleton.h61 // In logging and tracing you'll typically get stray calls at odd times, like
64 // get(), but then another thread initiates AtExit processing, the first thread
76 // WARNING: User has to deal with get() in the singleton class
143 // return Singleton<FooClass>::get();
149 // NOTE: The method accessing Singleton<T>::get() has to be named as GetInstance
177 // (a) Every call to get(), operator->() and operator*() incurs some overhead
179 // initialized. You may wish to cache the result of get(); it will not
191 // method and call Singleton::get() from within that.
198 static Type* get() { function in class:Singleton
213 // Object isn't created yet, maybe we will get t
[all...]
/external/chromium/base/
H A Dopenssl_util.h26 T* get() const { return ptr_; } function in class:base::ScopedOpenSSL
/external/chromium/chrome/common/extensions/docs/server/
H A Dchromeextensionsdocs.py45 # get page from memcache, or else fetch it from src
46 def get(self): member in class:MainPage
63 result = memcache.get(path)
92 self.get()
94 # get the src url corresponding to the request
152 # get the current version number for the channel requested (dev, beta or stable)
155 branch = memcache.get(channel.name)
/external/chromium/crypto/
H A Dopenssl_util.h25 T* get() const { return ptr_; } function in class:crypto::ScopedOpenSSL
H A Dscoped_capi_types.h65 CAPIHandle get() const { return handle_; } function in class:crypto::ScopedCAPIHandle
104 return h == b.get();
109 return h != b.get();
/external/chromium/third_party/libjingle/source/talk/base/
H A Dlinked_ptr.h91 X* get() const throw() {return itsPtr;} function in class:talk_base::linked_ptr
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dmock.py122 c = self._queue.get()
132 data += self._queue.get()
165 def get(self, key, def_value=None): member in class:MockTable
166 return super(MockTable, self).get(key.lower(), def_value)
/external/clang/test/SemaCXX/
H A Ddiscrim-union.cpp20 void get(...);
49 constexpr const T &get(select<0>) { return val; } function in union:detail::either_impl
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) { function in union:detail::either_impl
51 return rest.get(select<N-1>{});
85 decltype(static_cast<const impl_t&>(impl).get(detail::select<N>{}));
88 constexpr const_get_result<N> get() { function in class:either
92 : impl.get(detail::select<N>{}));
96 constexpr const U &get() { function in class:either
97 return get<impl_
[all...]
/external/clang/test/SemaTemplate/
H A Dconstexpr-instantiate.cpp5 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/clang/tools/scan-view/
H A Dstartfile.py43 if (os.environ.get('DISPLAY') or sys.platform[:3] == 'win' or
152 if os.environ.get('KDE_FULL_SESSION') == 'true':
154 elif os.environ.get('GNOME_DESKTOP_SESSION_ID'):
175 def get(): function
195 if os.environ.get("DISPLAY"):
197 _open = get()
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchHandlerList.java48 public Entry get(int n) { method in class:CatchHandlerList
75 Entry entry = get(i);
110 Entry last = get(size - 1);
147 Entry thisEntry = get(i);
148 Entry otherEntry = other.get(i);
H A DCatchTable.java49 public Entry get(int n) { method in class:CatchTable
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
H A DDalvInsnList.java62 result.set(i, list.get(i));
87 public DalvInsn get(int n) { method in class:DalvInsnList
115 DalvInsn last = get(sz - 1);
H A DPositionList.java81 DalvInsn insn = insns.get(i);
131 public Entry get(int n) { method in class:PositionList
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDefsSection.java67 public IndexedItem get(Constant cst) { method in class:ClassDefsSection
75 IndexedItem result = classDefs.get(type);
122 if (classDefs.get(type) != null) {
159 ClassDefItem c = classDefs.get(type);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstArray.java145 public Constant get(int n) { method in class:CstArray.List
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DBits.java58 public static boolean get(int[] bits, int idx) { method in class:Bits
224 if (Bits.get(bits, i)) {
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h43 errcode_t (*get)(ext2_brel brel, blk_t old, member in struct:ext2_block_relocation_table
80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DClassLoaderLocalMap.java86 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/jcd/cls/
H A DAttributeCollection.java32 public final Attribute_info get (final int offset) method in class:AttributeCollection
34 return (Attribute_info) m_attributes.get (offset);
53 return (InnerClassesAttribute_info) get (innerClassesAttributeOffset);
68 for (int i = 0; i < _attributes_count; i++) result += get (i).length ();
90 _clone.m_attributes.add (((Attribute_info) m_attributes.get (a)).clone ());
110 get (i).writeInClassFormat (out);
H A DFieldCollection.java28 public Field_info get (final int offset) method in class:FieldCollection
30 return (Field_info) m_fields.get (offset);
33 public int [] get (final ClassDef cls, final String name) method in class:FieldCollection
44 final Field_info field = (Field_info) m_fields.get (f);
74 _clone.m_fields.add (((Field_info) m_fields.get (f)).clone ());
94 get (i).writeInClassFormat (out);
H A DIConstantCollection.java44 * get(nextIndex()) and avoiding index bound violation exceptions.
91 CONSTANT_info get (int index); method in interface:IConstantCollection
168 * an invalid slot index [see {@link #get(int)}]
H A DMethodCollection.java28 public Method_info get (final int offset) method in class:MethodCollection
30 return (Method_info) m_methods.get (offset);
33 public int [] get (final ClassDef cls, final String name) method in class:MethodCollection
44 final Method_info method = (Method_info) m_methods.get (m);
74 _clone.m_methods.add (((Method_info) m_methods.get (m)).clone ());
94 get (i).writeInClassFormat (out);
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DInnerClassesAttribute_info.java37 final InnerClass_info info = get (i);
59 public final InnerClass_info get (final int offset) method in class:InnerClassesAttribute_info
61 return (InnerClass_info) m_classes.get (offset);
90 s.append (" " + get (l));
113 _clone.m_classes.add (((InnerClass_info) classes.get (e)).clone ());
132 ((InnerClass_info) classes.get (l)).writeInClassFormat (out);
H A DLineNumberTableAttribute_info.java86 public LineNumber_info get (final int offset) method in class:LineNumberTableAttribute_info
88 return (LineNumber_info) m_lines.get (offset);
117 s.append (" " + get (l));
138 _clone.m_lines.add (((LineNumber_info) m_lines.get (e)).clone ());
155 ((LineNumber_info) m_lines.get (l)).writeInClassFormat (out);

Completed in 743 milliseconds

1234567891011>>