Searched refs:impl (Results 1 - 25 of 956) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DTestCyUtilityLoader.pyx4 test {{cy_loader}} impl
8 req {{cy_loader}} impl
H A DTestUtilityLoader.c6 test {{loader}} impl
12 req {{loader}} impl
/external/jmdns/src/javax/jmdns/impl/
H A Dpackage-info.java1 package javax.jmdns.impl;
/external/jmdns/src/javax/jmdns/impl/constants/
H A Dpackage-info.java1 package javax.jmdns.impl.constants;
/external/jmdns/src/javax/jmdns/impl/tasks/
H A Dpackage-info.java1 package javax.jmdns.impl.tasks;
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
H A Dpackage-info.java1 package javax.jmdns.impl.tasks.resolver;
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A Dpackage-info.java1 package javax.jmdns.impl.tasks.state;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8CSSValueCustom.cpp41 v8::Handle<v8::Object> wrap(CSSValue* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
43 ASSERT(impl);
44 if (impl->isTransformValue())
45 return wrap(toCSSTransformValue(impl), creationContext, isolate);
46 if (impl->isFilterValue())
47 return wrap(toCSSFilterValue(impl), creationContext, isolate);
48 if (impl->isValueList())
49 return wrap(toCSSValueList(impl), creationContext, isolate);
50 if (impl->isPrimitiveValue())
51 return wrap(toCSSPrimitiveValue(impl), creationContex
[all...]
H A DV8CSSRuleCustom.cpp48 v8::Handle<v8::Object> wrap(CSSRule* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
50 ASSERT(impl);
51 switch (impl->type()) {
56 return V8CSSRule::createWrapper(impl, creationContext, isolate);
58 return wrap(toCSSStyleRule(impl), creationContext, isolate);
60 return wrap(toCSSCharsetRule(impl), creationContext, isolate);
62 return wrap(toCSSImportRule(impl), creationContext, isolate);
64 return wrap(toCSSMediaRule(impl), creationContext, isolate);
66 return wrap(toCSSFontFaceRule(impl), creationContext, isolate);
68 return wrap(toCSSPageRule(impl), creationContex
[all...]
H A DV8FileReaderCustom.cpp43 FileReader* impl = V8FileReader::toImpl(holder); local
44 if (impl->readType() == FileReaderLoader::ReadAsArrayBuffer) {
45 v8SetReturnValueFast(info, impl->arrayBufferResult(), impl);
48 v8SetReturnValueStringOrNull(info, impl->stringResult(), info.GetIsolate());
H A DV8EventTargetCustom.cpp39 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
41 if (UNLIKELY(!impl))
44 if (impl->interfaceName() == EventTargetNames::LocalDOMWindow)
45 return toV8(static_cast<LocalDOMWindow*>(impl), creationContext, isolate);
47 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapperNonTemplate(impl, isolate);
50 return impl->wrap(creationContext, isolate);
/external/srec/shared/src/
H A DIntArrayListImpl.c31 IntArrayListImpl* impl; local
35 impl = NEW(IntArrayListImpl, MTAG);
36 if (impl == NULL)
38 impl->Interface.add = &IntArrayList_Add;
39 impl->Interface.contains = &IntArrayList_Contains;
40 impl->Interface.destroy = &IntArrayList_Destroy;
41 impl->Interface.get = &IntArrayList_Get;
42 impl->Interface.getSize = &IntArrayList_GetSize;
43 impl->Interface.remove = &IntArrayList_Remove;
44 impl
62 IntArrayListImpl* impl; local
76 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
94 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
124 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
132 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
151 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
160 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
169 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
177 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
186 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
[all...]
H A DLStringImpl.c30 LStringImpl* impl; local
32 impl = NEW(LStringImpl, MTAG);
33 if (impl == NULL)
35 impl->Interface.append = &LString_Append;
36 impl->Interface.toLCHAR = &LString_ToLCHAR;
37 impl->Interface.reset = &LString_Reset;
38 impl->Interface.destroy = &LString_Destroy;
39 impl->size = INITIAL_SIZE;
40 impl->value = MALLOC(sizeof(LCHAR) * INITIAL_SIZE, MTAG);
41 if (impl
55 LStringImpl* impl = (LStringImpl*) self; local
74 LStringImpl* impl = (LStringImpl*) self; local
82 LStringImpl* impl = (LStringImpl*) self; local
93 LStringImpl* impl = (LStringImpl*) self; local
[all...]
H A DInt8ArrayListImpl.c31 Int8ArrayListImpl* impl; local
35 impl = NEW(Int8ArrayListImpl, MTAG);
36 if (impl == NULL)
38 impl->Interface.add = &Int8ArrayList_Add;
39 impl->Interface.contains = &Int8ArrayList_Contains;
40 impl->Interface.destroy = &Int8ArrayList_Destroy;
41 impl->Interface.get = &Int8ArrayList_Get;
42 impl->Interface.getSize = &Int8ArrayList_GetSize;
43 impl->Interface.remove = &Int8ArrayList_Remove;
44 impl
63 Int8ArrayListImpl* impl; local
77 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
95 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
125 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
133 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
152 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
161 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
170 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
178 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
205 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
[all...]
/external/chromium_org/content/public/renderer/
H A Drender_view_observer.cc18 RenderViewImpl* impl = static_cast<RenderViewImpl*>(render_view); local
19 routing_id_ = impl->routing_id();
21 impl->AddObserver(this);
27 RenderViewImpl* impl = static_cast<RenderViewImpl*>(render_view_); local
28 impl->RemoveObserver(this);
57 RenderViewImpl* impl = static_cast<RenderViewImpl*>(render_view_); local
58 if (impl) {
59 impl->RemoveObserver(this);
64 impl = static_cast<RenderViewImpl*>(render_view_);
65 if (impl) {
[all...]
/external/srec/portable/src/
H A DArrayListImpl.c31 ArrayListImpl* impl; local
36 impl = NEW(ArrayListImpl, MTAG);
38 if (impl == NULL)
41 impl->Interface.add = &ArrayList_Add;
42 impl->Interface.insertAt = &ArrayList_InsertAt;
43 impl->Interface.contains = &ArrayList_Contains;
44 impl->Interface.destroy = &ArrayList_Destroy;
45 impl->Interface.get = &ArrayList_Get;
46 impl->Interface.getSize = &ArrayList_GetSize;
47 impl
74 ArrayList_Insert_Internal(ArrayListImpl *impl, size_t index, void *element) argument
98 ArrayListImpl *impl = (ArrayListImpl *) self; local
105 ArrayListImpl *impl = (ArrayListImpl *) self; local
113 ArrayList_Remove_Internal(ArrayListImpl *impl, size_t i) argument
139 ArrayListImpl* impl = (ArrayListImpl*) self; local
154 ArrayListImpl* impl = (ArrayListImpl*) self; local
164 ArrayListImpl* impl = (ArrayListImpl*) self; local
173 ArrayListImpl* impl = (ArrayListImpl*) self; local
190 ArrayListImpl* impl = (ArrayListImpl*) self; local
200 ArrayListImpl* impl = (ArrayListImpl*) self; local
210 ArrayListImpl* impl = (ArrayListImpl*) self; local
236 ArrayListImpl* impl = (ArrayListImpl*) self; local
[all...]
H A DPANSIFileImpl.c36 PANSIFileImpl* impl = NULL; local
39 impl = NEW(PANSIFileImpl, MTAG);
40 if (impl == NULL)
47 PFileCreateImpl(&impl->Interface.Interface, filename, isLittleEndian);
48 impl->Interface.Interface.close = &PANSIFileCloseImpl;
49 impl->Interface.Interface.clearError = &PANSIFileClearErrorImpl;
50 impl->Interface.Interface.destroy = &PANSIFileDestroyImpl;
51 impl->Interface.Interface.fgetc = &PANSIFileFgetcImpl;
52 impl->Interface.Interface.fgets = &PANSIFileFgetsImpl;
53 impl
116 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
145 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
161 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
200 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
258 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
273 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
288 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
318 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
334 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
363 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
379 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
389 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
408 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
424 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
[all...]
H A DPFileImpl.c37 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
110 PFileImpl* impl = (PFileImpl*) self; local
143 PFileImpl* impl = (PFileImpl*) self; local
[all...]
/external/srec/srec/AcousticState/src/
H A DAcousticState.c27 SR_RecognizerImpl* impl; local
34 impl = (SR_RecognizerImpl*) recognizer;
36 return impl->acousticState->reset(recognizer);
41 SR_RecognizerImpl* impl; local
48 impl = (SR_RecognizerImpl*) recognizer;
50 return impl->acousticState->load(recognizer, filename);
55 SR_RecognizerImpl* impl; local
62 impl = (SR_RecognizerImpl*) recognizer;
64 return impl->acousticState->save(recognizer, filename);
70 SR_RecognizerImpl* impl; local
85 SR_RecognizerImpl* impl; local
[all...]
/external/clang/test/Analysis/inlining/
H A Dcontainers.cpp30 clang_analyzer_eval(set.begin().impl == set.end().impl);
51 clang_analyzer_eval(w1.begin().impl.impl == w1.begin().impl.impl);
58 clang_analyzer_eval(w2.start().impl == w2.start().impl);
65 clang_analyzer_eval(w3.start().impl == w3.start().impl);
114 int *impl; member in struct:MySet::iterator
171 MySet impl; member in class:BeginOnlySet
174 MySet::iterator impl; member in struct:BeginOnlySet::IterImpl
204 MySet impl; member in class:IteratorTypedefOnlySet
226 MySet impl; member in class:IteratorUsingOnlySet
248 MySet impl; member in class:IteratorStructOnlySet
259 int *impl; member in struct:IteratorStructOnlySet::iterator
[all...]
/external/apache-harmony/support/src/test/resources/tests/resources/ServiceLoader/
H A Dhyts_services.jar ... resources.ServiceLoader.ServiceMoreThanOne tests/ tests/resources/ tests/resources/impl/ tests/resources/impl/ImplementationOfAbstractService.class ImplementationOfAbstractService.java package ...
/external/srec/srec/Semproc/src/
H A DSemanticResultImpl.c31 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...]
/external/srec/srec/Recognizer/src/
H A DRecognizerImpl.c59 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) argument
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
614 SR_RecognizerImpl* impl; local
799 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
929 beginRecognizing(SR_RecognizerImpl* impl) argument
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
2604 canPushAudioIntoRecognizer(SR_RecognizerImpl* impl) argument
2657 pushAudioIntoRecognizer(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2717 generateFrameFromAudio(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2760 generateFrameStats(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2783 generatePatternFromFrame(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2892 generatePatternFromFrameEOI(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2981 detectEndOfSpeech(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
3079 detectBeginningOfSpeech(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
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
3528 doSignalQualityInit(SR_RecognizerImpl* impl) argument
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/chromium_org/cc/layers/
H A Dtexture_layer_impl_unittest.cc24 LayerTestCommon::LayerImplTest impl; local
27 impl.output_surface()->context_provider()->ContextGL()->GenMailboxCHROMIUM(
32 impl.AddChildToRoot<TextureLayerImpl>();
40 impl.CalcDrawProps(viewport_size);
45 impl.AppendQuadsWithOcclusion(texture_layer_impl, occluded);
47 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(),
49 EXPECT_EQ(1u, impl.quad_list().size());
55 impl.AppendQuadsWithOcclusion(texture_layer_impl, occluded);
57 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(), gfx::Rect());
58 EXPECT_EQ(impl
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueVector.h43 static void Append(Impl* impl, v8::PersistentContainerValue value) argument
45 impl->append(value);
47 static bool IsEmpty(const Impl* impl) argument
49 return impl->isEmpty();
51 static size_t Size(const Impl* impl) argument
53 return impl->size();
55 static v8::PersistentContainerValue Get(const Impl* impl, size_t i) argument
57 return (i < impl->size()) ? impl->at(i) : v8::kPersistentContainerNotFound;
59 static void ReserveCapacity(Impl* impl, size_ argument
63 Clear(Impl* impl) argument
[all...]

Completed in 7048 milliseconds

1234567891011>>