HomeSort by relevance Sort by last modified time
    Searched defs:impl (Results 276 - 300 of 383) sorted by null

<<111213141516

  /external/clang/include/clang/Basic/
DiagnosticIDs.h 238 const void *impl; member in class:clang::DiagnosticIDs::diag_iterator
241 diag_iterator(const void *im) : impl(im) {}
244 bool operator==(const diag_iterator &x) const { return impl == x.impl; }
245 bool operator!=(const diag_iterator &x) const { return impl != x.impl; }
  /external/jsilver/src/com/google/streamhtmlparser/impl/
JavascriptParserImpl.java 17 package com.google.streamhtmlparser.impl;
  /external/openssl/crypto/
ex_data.c 171 static const CRYPTO_EX_DATA_IMPL *impl = NULL; variable
173 /* To call "impl" functions, use this macro rather than referring to 'impl' directly, eg.
175 #define EX_IMPL(a) impl->cb_##a
199 /* Internal function that checks whether "impl" is set and if not, sets it to
204 if(!impl)
205 impl = &impl_default;
210 #define IMPL_CHECK if(!impl) impl_check();
216 return impl;
222 if(!impl)
    [all...]
  /external/qemu/android/
looper.h 114 void* impl; member in struct:LoopTimer
118 void (*startRelative)(void* impl, Duration timeout_ms);
119 void (*startAbsolute)(void* impl, Duration deadline_ms);
120 void (*stop) (void* impl);
121 int (*isActive) (void* impl);
122 void (*done) (void* impl);
141 timer->clazz->done(timer->impl);
143 timer->impl = NULL;
153 timer->clazz->startRelative(timer->impl, timeout_ms);
165 timer->clazz->startAbsolute(timer->impl, deadline_ms)
194 void* impl; member in struct:LoopIo
    [all...]
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 37 SR_GrammarImpl* impl; local
41 impl = NEW(SR_GrammarImpl, MTAG);
42 if (impl == NULL)
48 impl->Interface.addNametagToSlot = &SR_Grammar_AddNametagToSlot;
49 impl->Interface.addWordToSlot = &SR_Grammar_AddWordToSlot;
50 impl->Interface.checkParse = &SR_Grammar_CheckParse;
51 impl->Interface.compile = &SR_Grammar_Compile;
52 impl->Interface.destroy = &SR_Grammar_Destroy;
53 impl->Interface.getParameter = &SR_Grammar_GetParameter;
54 impl->Interface.getSize_tParameter = &SR_Grammar_GetSize_tParameter
132 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
152 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
305 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
342 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
355 SR_GrammarImpl* impl; local
463 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
493 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
522 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
556 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
599 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
626 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
635 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
649 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
688 SR_GrammarImpl* impl = (SR_GrammarImpl*)self; local
760 SR_GrammarImpl* impl = (SR_GrammarImpl*)self; local
    [all...]
  /external/srec/srec/Vocabulary/src/
VocabularyImpl.c 53 SR_VocabularyImpl * impl = (SR_VocabularyImpl*) self; local
66 impl->hSlts = NULL;
87 res = SWIsltsOpen(&(impl->hSlts), szG2PDataFile);
91 FREE(impl);
98 FREE(impl);
108 SR_VocabularyImpl * impl = (SR_VocabularyImpl*) self; local
117 if ( bG2P == ESR_FALSE || impl->hSlts == NULL)
122 res = SWIsltsClose(impl->hSlts);
148 SR_VocabularyImpl* impl; local
155 impl = NEW(SR_VocabularyImpl, MTAG)
175 SR_VocabularyImpl* impl = (SR_VocabularyImpl*) self; local
238 SR_VocabularyImpl* impl; local
412 SR_VocabularyImpl* impl = (SR_VocabularyImpl*) self; local
574 SR_VocabularyImpl* impl = (SR_VocabularyImpl*) self; local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
const-fst.h 163 ConstFstImpl<A> *impl = new ConstFstImpl<A>; local
165 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
167 impl->start_ = hdr.Start();
168 impl->nstates_ = hdr.NumStates();
169 impl->narcs_ = hdr.NumArcs();
170 impl->states_ = new State[impl->nstates_];
171 impl->arcs_ = new A[impl->narcs_];
177 size_t b = impl->nstates_ * sizeof(typename ConstFstImpl<A>::State)
277 ConstFstImpl<A>* impl = ConstFstImpl<A>::Read(strm, opts); local
    [all...]
symbol-table.h 228 SymbolTableImpl* impl = SymbolTableImpl::ReadText(filename); local
229 if (!impl)
232 return new SymbolTable(impl);
237 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source); local
238 if (!impl)
241 return new SymbolTable(impl);
307 explicit SymbolTable(SymbolTableImpl* impl) : impl_(impl) {}
309 const SymbolTableImpl* Impl() const {
328 impl_ = symbol_table.Impl();
    [all...]
  /external/stlport/src/
locale.cpp 132 locale::locale( _Locale_impl* impl ) :
133 _M_impl( _get_Locale_impl( impl ) )
147 _Locale_impl* impl = 0; local
149 impl = new _Locale_impl(locale::id::_S_max, name);
165 hint = impl->insert_ctype_facets(ctype_name, ctype_buf, hint);
166 hint = impl->insert_numeric_facets(numeric_name, numeric_buf, hint);
167 hint = impl->insert_time_facets(time_name, time_buf, hint);
168 hint = impl->insert_collate_facets(collate_name, collate_buf, hint);
169 hint = impl->insert_monetary_facets(monetary_name, monetary_buf, hint);
170 impl->insert_messages_facets(messages_name, messages_buf, hint)
254 _Locale_impl* impl = 0; local
297 _Locale_impl* impl = new _Locale_impl(*L1._M_impl); local
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSString.h 90 m_rope->initializeFiber(m_index, string.impl());
194 Heap::heap(this)->reportExtraMemoryCost(value.impl()->cost());
311 Heap::heap(this)->reportExtraMemoryCost(value.impl()->cost());
366 StringImpl* impl = string.impl(); local
367 impl->ref();
368 m_other.m_fibers[index++] = impl;
393 StringImpl* impl = u.impl(); local
394 impl->ref()
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h 110 String(StringImpl* impl) : m_impl(impl) { }
111 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
112 String(RefPtr<StringImpl> impl) : m_impl(impl) { }
126 StringImpl* impl() const { return m_impl.get(); } function in class:WTF::String
167 { return m_impl ? m_impl->find(str.impl(), start) : notFound; }
177 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
183 { return m_impl ? m_impl->findIgnoringCase(str.impl(), start) : notFound;
    [all...]
  /external/webkit/Source/WebCore/platform/
Cursor.h 176 PlatformCursor impl() const { return m_platformCursor; } function in class:WebCore::Cursor
  /external/webkit/Source/WebKit/chromium/src/
WebWorkerClientImpl.cpp 107 WebWorkerImpl* impl = reinterpret_cast<WebWorkerImpl*>(workerObjectProxy); local
108 webWorker = impl->client()->createWorker(proxy);
  /frameworks/base/opengl/libs/EGL/
egl_display.h 48 egl_config_t(int impl, EGLConfig config)
49 : impl(impl), config(config), configId(0), implConfigId(0) { }
50 int impl; // the implementation this config is for member in struct:android::egl_config_t
55 if (impl < rhs.impl) return true;
56 if (impl > rhs.impl) return false;
egl_object.h 142 EGLSurface surface, int impl, egl_connection_t const* cnx) :
144 config(config), win(win), impl(impl), cnx(cnx) {
150 int impl; member in class:android::egl_surface_t
161 int impl, egl_connection_t const* cnx, int version) :
163 config(config), read(0), draw(0), impl(impl), cnx(cnx),
171 int impl; member in class:android::egl_context_t
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 17 package com.android.internal.policy.impl;
PhoneFallbackEventHandler.java 17 package com.android.internal.policy.impl;
RecentApplicationsBackground.java 17 package com.android.internal.policy.impl;
  /frameworks/base/policy/tests/src/com/android/internal/policy/impl/
LockPatternKeyguardViewTest.java 17 package com.android.internal.policy.impl;
31 * Tests for {@link com.android.internal.policy.impl.LockPatternKeyguardView},
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderAction.java 17 package com.android.layoutlib.bridge.impl;
ResourceHelper.java 17 package com.android.layoutlib.bridge.impl;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
BaseAdapter.java 17 package com.android.layoutlib.bridge.impl.binding;
27 import com.android.layoutlib.bridge.impl.RenderAction;
  /libcore/dom/src/test/java/org/w3c/domts/
LSDocumentBuilderFactory.java 34 private final DOMImplementation impl; field in class:LSDocumentBuilderFactory
279 impl = (DOMImplementation) getDOMImplementationMethod.invoke(domRegistry,
281 Method createLSParserMethod = impl.getClass().getMethod("createLSParser",
283 parser = createLSParserMethod.invoke(impl,
349 return impl;
  /ndk/sources/cxx-stl/stlport/src/
locale.cpp 132 locale::locale( _Locale_impl* impl ) :
133 _M_impl( _get_Locale_impl( impl ) )
147 _Locale_impl* impl = 0; local
149 impl = new _Locale_impl(locale::id::_S_max, name);
165 hint = impl->insert_ctype_facets(ctype_name, ctype_buf, hint);
166 hint = impl->insert_numeric_facets(numeric_name, numeric_buf, hint);
167 hint = impl->insert_time_facets(time_name, time_buf, hint);
168 hint = impl->insert_collate_facets(collate_name, collate_buf, hint);
169 hint = impl->insert_monetary_facets(monetary_name, monetary_buf, hint);
170 impl->insert_messages_facets(messages_name, messages_buf, hint)
254 _Locale_impl* impl = 0; local
297 _Locale_impl* impl = new _Locale_impl(*L1._M_impl); local
    [all...]
  /prebuilt/common/http-client/
httpcore-4.1.jar 

Completed in 544 milliseconds

<<111213141516