HomeSort by relevance Sort by last modified time
    Searched full:wrapper (Results 251 - 275 of 3722) sorted by null

<<11121314151617181920>>

  /frameworks/native/services/surfaceflinger/
DdmConnection.h 22 // wrapper for dlsym
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
JobLimiter.java 146 JobWrapper wrapper = mJobs.removeFirst(); local
147 if (!wrapper.isCancelled()) {
149 wrapper.setFuture(mPool.submit(wrapper, this));
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
via-parser.rb 14 @input.insert_before($start,"public class Wrapper {\n")
75 public class Wrapper {
  /external/chromium/base/win/
wrapped_window_proc_unittest.cc 71 TestWrappedExceptionFiter wrapper; local
76 EXPECT_TRUE(wrapper.called());
  /external/clang/test/CodeGenCXX/
devirtualize-virtual-function-calls.cpp 94 struct Wrapper {
97 extern Wrapper *p;
  /external/clang/test/SemaObjCXX/
format-strings.mm 67 class Wrapper {
77 void use_class(Wrapper<const char *>::Printer &p) {
  /external/compiler-rt/lib/interception/
interception_linux.cc 23 uptr real, uptr wrapper) {
25 return real == wrapper;
  /external/stlport/stlport/stl/config/
compat.h 70 /* STLport do not support anymore the iostream wrapper mode so this macro should
78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
  /external/valgrind/main/memcheck/tests/
wrap4.c 6 function's wrapper. Note that because the wrapper for fact1
  /external/webkit/Source/WebKit/chromium/src/
WebDOMEventListener.cpp 51 void WebDOMEventListener::notifyEventListenerDeleted(EventListenerWrapper* wrapper)
53 m_private->eventListenerDeleted(wrapper);
  /frameworks/base/core/java/android/net/http/
X509TrustManagerExtensions.java 28 * X509TrustManager wrapper exposing Android-added features.
39 * Constructs a new X509TrustManagerExtensions wrapper.
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLBufferedInput.java 24 * This is a wrapper input stream for ByteBuffer data source.
28 * So one instance of this wrapper can be reused for several
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
compat.h 70 /* STLport do not support anymore the iostream wrapper mode so this macro should
78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
compat.h 70 /* STLport do not support anymore the iostream wrapper mode so this macro should
78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
compat.h 70 /* STLport do not support anymore the iostream wrapper mode so this macro should
78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
compat.h 70 /* STLport do not support anymore the iostream wrapper mode so this macro should
78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
compat.h 70 /* STLport do not support anymore the iostream wrapper mode so this macro should
78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Timer.c 125 phDal4Nfc_Message_Wrapper_t wrapper; local
145 wrapper.mtype = 1;
146 wrapper.msg.eMsgType = PH_OSALNFC_TIMER_MSG;
147 wrapper.msg.pMsgData = osal_defer_msg;
148 wrapper.msg.Size = sizeof(phOsalNfc_DeferedCalldInfo_t);
152 phDal4Nfc_msgsnd(nDeferedCallMessageQueueId, (void *)&wrapper,
  /external/libxml2/include/libxml/
xmlmemory.h 49 * The XML memory wrapper support 4 basic overloadable functions.
138 * These are specific to the XML debug memory wrapper.
175 * Wrapper for the malloc() function used in the XML library.
184 * Wrapper for the malloc() function used in the XML library for allocation
195 * Wrapper for the realloc() function used in the XML library.
204 * Wrapper for the strdup() function, xmlStrdup() is usually preferred.
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.h 73 void updateDocumentWrapper(v8::Handle<v8::Object> wrapper);
84 // To create JS Wrapper objects, we create a cache of a 'boiler plate'
103 // The JavaScript wrapper for the document object is cached on the global
104 // object for fast access. UpdateDocumentWrapperCache sets the wrapper
106 // deletes the document wrapper from the global object.
114 // For each possible type of wrapper, we keep a boilerplate object.
V8DOMWindowShell.cpp 125 // Returns the owner frame pointer of a DOM wrapper object. It only works for
188 v8::Persistent<v8::Object> wrapper = it->second; local
189 wrapper.Dispose();
190 wrapper.Clear();
224 // Clear the document wrapper cache before turning on access checks on
225 // the old DOMWindow wrapper. This way, access to the document wrapper
226 // will be protected by the security checks on the DOMWindow wrapper.
229 // Turn on access check on the old DOMWindow wrapper.
230 v8::Handle<v8::Object> wrapper = V8DOMWrapper::lookupDOMWrapper(V8DOMWindow::GetTemplate(), m_global) local
    [all...]
  /external/webkit/Tools/CSSTestSuiteHarness/harness/
harness.css 161 .frame-wrapper {
165 .frame-wrapper iframe {
170 .frame-wrapper {
176 .with-ref > .frame-wrapper {
180 #ref-wrapper {
186 .with-ref > #ref-wrapper {
  /device/generic/goldfish/opengl/
common.mk 184 # This function can be called to generate the wrapper source files.
189 # $(call emugl-gen-wrapper,<input-dir>,<basename>)
191 emugl-gen-wrapper = \
193 $(call emugl-gen-wrapper-generic,$(_emugl_out),$1,$2) \
196 # DO NOT CALL DIRECTLY, USE emugl-gen-wrapper instead.
198 # The following function can be called to generate GL library wrapper
201 # $(call emugl-gen-wrapper-generic,<dst-dir>,<src-dir>,<basename>)
207 emugl-gen-wrapper-generic = $(eval $(emugl-gen-wrapper-generic-ev))
209 define emugl-gen-wrapper-generic-e
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 43 OwningPtr<IntelJITEventsWrapper> Wrapper;
54 Wrapper.reset(libraryWrapper);
95 IntelJITEventsWrapper& Wrapper,
102 Result.method_id = Wrapper.iJIT_GetNewMethodID();
120 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(*Wrapper,
177 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
185 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START, &I->second);
219 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(*Wrapper,
248 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
278 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START
    [all...]
  /external/valgrind/main/drd/
drd_malloc_wrappers.c 145 /** Wrapper for malloc(). */
151 /** Wrapper for memalign(). */
157 /** Wrapper for calloc(). */
164 /** Wrapper for free(). */
171 * Wrapper for realloc(). Returns a pointer to the new block of memory, or
252 /** Wrapper for __builtin_new(). */
258 /** Wrapper for __builtin_delete(). */
264 /** Wrapper for __builtin_vec_new(). */
270 /** Wrapper for __builtin_vec_delete(). */
277 * Wrapper for malloc_usable_size() / malloc_size(). This function take
    [all...]

Completed in 749 milliseconds

<<11121314151617181920>>