HomeSort by relevance Sort by last modified time
    Searched refs:impl (Results 26 - 50 of 1167) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/srec/srec/Semproc/src/
SemanticResultImpl.c 31 SR_SemanticResultImpl* impl; local
39 impl = NEW(SR_SemanticResultImpl, MTAG);
40 if (impl == NULL)
46 impl->Interface.destroy = &SR_SemanticResult_Destroy;
47 impl->Interface.getKeyCount = &SR_SemanticResult_GetKeyCount;
48 impl->Interface.getKeyList = &SR_SemanticResult_GetKeyList;
49 impl->Interface.getValue = &SR_SemanticResult_GetValue;
50 impl->results = NULL;
52 rc = HashMapCreate(&impl->results);
55 *self = (SR_SemanticResult*) impl;
64 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
75 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
106 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
125 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
    [all...]
SemanticProcessorImpl.c 108 SR_SemanticProcessorImpl* impl; local
116 impl = NEW(SR_SemanticProcessorImpl, MTAG);
117 if (impl == NULL)
122 if ((rc = LA_Init(&impl->analyzer)) != ESR_SUCCESS)
124 if ((rc = EP_Init(&impl->parser)) != ESR_SUCCESS)
126 if ((rc = ST_Init(&impl->symtable)) != ESR_SUCCESS)
128 if ((rc = EE_Init(&impl->eval)) != ESR_SUCCESS)
130 impl->acc_scripts = MALLOC(sizeof(LCHAR) * MAX_SCRIPT_LEN, NULL);
131 if (impl->acc_scripts == NULL)
138 impl->Interface.destroy = &SR_SemanticProcessor_Destroy
154 SR_SemanticProcessorImpl* impl = (SR_SemanticProcessorImpl*) self; local
1067 SR_SemanticResultImpl** impl = (SR_SemanticResultImpl**) result; local
1300 SR_SemanticProcessorImpl* impl = (SR_SemanticProcessorImpl*) self; local
1314 SR_SemanticProcessorImpl* impl = (SR_SemanticProcessorImpl*) self; local
    [all...]
  /external/apache-harmony/support/src/test/resources/tests/resources/ServiceLoader/
hyts_services.jar 
hyts_services2.jar 
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8AlgorithmCustom.cpp 43 v8::Handle<v8::Object> wrap(Algorithm* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
45 ASSERT(impl);
48 switch (impl->type()) {
50 return V8Algorithm::createWrapper(impl, creationContext, isolate);
52 return wrap(static_cast<AesCbcParams*>(impl), creationContext, isolate);
54 return wrap(static_cast<AesKeyGenParams*>(impl), creationContext, isolate);
56 return wrap(static_cast<HmacParams*>(impl), creationContext, isolate);
58 return wrap(static_cast<RsaSsaParams*>(impl), creationContext, isolate);
60 return wrap(static_cast<RsaKeyGenParams*>(impl), creationContext, isolate);
V8CSSRuleCustom.cpp 50 v8::Handle<v8::Object> wrap(CSSRule* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
52 ASSERT(impl);
53 switch (impl->type()) {
58 return V8CSSRule::createWrapper(impl, creationContext, isolate);
60 return wrap(static_cast<CSSStyleRule*>(impl), creationContext, isolate);
62 return wrap(static_cast<CSSCharsetRule*>(impl), creationContext, isolate);
64 return wrap(static_cast<CSSImportRule*>(impl), creationContext, isolate);
66 return wrap(static_cast<CSSMediaRule*>(impl), creationContext, isolate);
68 return wrap(static_cast<CSSFontFaceRule*>(impl), creationContext, isolate);
70 return wrap(static_cast<CSSPageRule*>(impl), creationContext, isolate)
    [all...]
V8SVGPathSegCustom.cpp 59 v8::Handle<v8::Object> wrap(SVGPathSeg* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
61 ASSERT(impl);
62 switch (impl->pathSegType()) {
64 return wrap(static_cast<SVGPathSegClosePath*>(impl), creationContext, isolate);
66 return wrap(static_cast<SVGPathSegMovetoAbs*>(impl), creationContext, isolate);
68 return wrap(static_cast<SVGPathSegMovetoRel*>(impl), creationContext, isolate);
70 return wrap(static_cast<SVGPathSegLinetoAbs*>(impl), creationContext, isolate);
72 return wrap(static_cast<SVGPathSegLinetoRel*>(impl), creationContext, isolate);
74 return wrap(static_cast<SVGPathSegCurvetoCubicAbs*>(impl), creationContext, isolate);
76 return wrap(static_cast<SVGPathSegCurvetoCubicRel*>(impl), creationContext, isolate)
    [all...]
V8HTMLElementCustom.cpp 38 v8::Handle<v8::Object> wrap(HTMLElement* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
40 ASSERT(impl);
41 return createV8HTMLWrapper(impl, creationContext, isolate);
V8NodeListCustom.cpp 47 NodeList* impl = static_cast<NodeList*>(object); local
48 if (!impl->isLiveNodeList())
50 Node* owner = static_cast<LiveNodeList*>(impl)->ownerNode();
V8SVGElementCustom.cpp 38 v8::Handle<v8::Object> wrap(SVGElement* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
40 ASSERT(impl);
41 return createV8SVGWrapper(impl, creationContext, isolate);
V8ArrayBufferCustom.h 59 static inline void* toInternalPointer(ArrayBuffer* impl)
61 return impl;
64 static inline ArrayBuffer* fromInternalPointer(void* impl)
66 return static_cast<ArrayBuffer*>(impl);
81 inline v8::Handle<v8::Object> wrap(ArrayBuffer* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
83 ASSERT(impl);
84 ASSERT(DOMDataStore::getWrapper<V8ArrayBuffer>(impl, isolate).IsEmpty());
85 return V8ArrayBuffer::createWrapper(impl, creationContext, isolate);
88 inline v8::Handle<v8::Value> toV8(ArrayBuffer* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
90 if (UNLIKELY(!impl))
    [all...]
  /external/srec/portable/src/
PFileImpl.c 37 PFileImpl* impl = (PFileImpl*) self; local
44 impl->lock = NULL;
46 impl->littleEndian = isLittleEndian;
48 impl->Interface.destroy = &PFileDestroyImpl;
49 impl->Interface.getFilename = &PFileGetFilenameImpl;
50 impl->Interface.vfprintf = &PFileVfprintfImpl;
51 impl->filename = MALLOC(sizeof(LCHAR) * (LSTRLEN(filename) + 1), MTAG);
53 if (impl->filename == NULL)
59 LSTRCPY(impl->filename, filename);
70 rc = PtrdMonitorCreate(&impl->lock)
110 PFileImpl* impl = (PFileImpl*) self; local
143 PFileImpl* impl = (PFileImpl*) self; local
    [all...]
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c 59 static ESR_ReturnCode SR_Recognizer_Reset_Buffers ( SR_RecognizerImpl *impl );
363 * @param impl SR_RecognizerImpl handle
510 * @param impl SR_RecognizerImpl handle
512 ESR_ReturnCode SR_RecognizerCreateFrontendImpl(SR_RecognizerImpl* impl)
518 impl->frontend = CA_AllocateFrontend(1, 0, 1);
522 CA_ConfigureFrontend(impl->frontend, frontendParams);
525 impl->wavein = CA_AllocateWave('N');
526 if (impl->wavein == NULL)
532 CA_ConfigureWave(impl->wavein, impl->frontend)
614 SR_RecognizerImpl* impl; local
799 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
980 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1064 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1338 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1353 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1367 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1405 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1427 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1467 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1507 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1548 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1636 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1656 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1669 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1682 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1697 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1711 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1719 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1966 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3257 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3425 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3435 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3445 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3455 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3479 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3496 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3521 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3539 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3557 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3575 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3593 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3611 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3629 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
4149 SR_RecognizerImpl *impl; local
    [all...]
  /external/mockito/src/org/mockito/verification/
Timeout.java 21 VerificationWithTimeoutImpl impl; field in class:Timeout
37 this.impl = new VerificationWithTimeoutImpl(treshhold, millis, delegate);
44 impl.verify(data);
51 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeast(minNumberOfInvocations));
58 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeastOnce());
73 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(0));
80 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.only());
    [all...]
  /frameworks/base/core/java/android/net/
LocalSocket.java 32 private LocalSocketImpl impl; field in class:LocalSocket
79 * @param impl a SocketImpl
81 /*package*/ LocalSocket(LocalSocketImpl impl, int sockType) {
82 this.impl = impl;
91 return super.toString() + " impl:" + impl;
95 * It's difficult to discern from the spec when impl.create() should be
106 impl.create(sockType);
130 impl.connect(endpoint, 0)
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
memoize.py 9 def impl(*args): function in function:memoize
13 return impl
  /cts/tools/signature-tools/src/signature/model/
IMethod.java 19 import signature.model.impl.SigPrimitiveType;
  /external/chromium_org/components/browser_context_keyed_service/
refcounted_browser_context_keyed_service.h 15 namespace impl { namespace
22 } // namespace impl
40 impl::RefcountedBrowserContextKeyedServiceTraits> {
65 friend struct impl::RefcountedBrowserContextKeyedServiceTraits;
68 impl::RefcountedBrowserContextKeyedServiceTraits>;
  /external/chromium_org/content/common/
socket_stream_handle_data.cc 21 WebSocketStreamHandleImpl* impl = local
23 impl->SetUserData(handle, new SocketStreamHandleData(render_view_id));
31 WebSocketStreamHandleImpl* impl =
33 return static_cast<SocketStreamHandleData*>(impl->GetUserData(handle));
  /external/jmdns/src/javax/jmdns/impl/
DNSListener.java 5 package javax.jmdns.impl;
  /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/chromium_org/third_party/tlslite/tlslite/utils/
cipherfactory.py 49 for impl in implList:
50 if impl == "cryptlib" and cryptomath.cryptlibpyLoaded:
52 elif impl == "openssl" and cryptomath.m2cryptoLoaded:
54 elif impl == "pycrypto" and cryptomath.pycryptoLoaded:
56 elif impl == "python":
77 for impl in implList:
78 if impl == "cryptlib" and cryptomath.cryptlibpyLoaded:
80 elif impl == "openssl" and cryptomath.m2cryptoLoaded:
82 elif impl == "pycrypto" and cryptomath.pycryptoLoaded:
84 elif impl == "python"
    [all...]
  /external/srec/srec/Nametag/src/
NametagImpl.c 132 SR_NametagImpl* impl; local
136 impl = NEW(SR_NametagImpl, MTAG);
137 if (impl == NULL)
143 impl->Interface.setID = &SR_Nametag_SetID;
144 impl->Interface.getID = &SR_Nametag_GetID;
145 impl->Interface.getValue = &SR_Nametag_GetValue;
146 impl->Interface.clone = &SR_Nametag_Clone;
147 impl->Interface.destroy = &SR_Nametag_Destroy;
148 impl->id = NULL;
149 impl->value = NULL
179 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
196 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
204 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
215 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
235 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
    [all...]
  /prebuilts/misc/common/jython/
jython.jar 
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
eval.h 46 #define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) \
48 (vfmt)->EvalCoord1f = impl ## EvalCoord1f; \
49 (vfmt)->EvalCoord1fv = impl ## EvalCoord1fv; \
50 (vfmt)->EvalCoord2f = impl ## EvalCoord2f; \
51 (vfmt)->EvalCoord2fv = impl ## EvalCoord2fv; \
52 (vfmt)->EvalPoint1 = impl ## EvalPoint1; \
53 (vfmt)->EvalPoint2 = impl ## EvalPoint2; \
54 (vfmt)->EvalMesh1 = impl ## EvalMesh1; \
55 (vfmt)->EvalMesh2 = impl ## EvalMesh2; \
88 #define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) do { } while (0
    [all...]

Completed in 1042 milliseconds

12 3 4 5 6 7 8 91011>>