HomeSort by relevance Sort by last modified time
    Searched refs:impl (Results 1 - 25 of 1162) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jmdns/src/javax/jmdns/impl/
package-info.java 1 package javax.jmdns.impl;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSValueCustom.cpp 45 v8::Handle<v8::Object> wrap(CSSValue* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
47 ASSERT(impl);
48 if (impl->isCSSTransformValue())
49 return wrap(static_cast<CSSTransformValue*>(impl), creationContext, isolate);
50 if (impl->isCSSMixFunctionValue())
51 return wrap(static_cast<CSSMixFunctionValue*>(impl), creationContext, isolate);
52 if (impl->isCSSFilterValue())
53 return wrap(static_cast<CSSFilterValue*>(impl), creationContext, isolate);
54 if (impl->isValueList())
55 return wrap(toCSSValueList(impl), creationContext, isolate)
    [all...]
V8ElementCustom.cpp 41 v8::Handle<v8::Object> wrap(Element* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
43 ASSERT(impl);
44 if (impl->isHTMLElement())
45 return wrap(toHTMLElement(impl), creationContext, isolate);
46 if (impl->isSVGElement())
47 return wrap(toSVGElement(impl), creationContext, isolate);
48 return V8Element::createWrapper(impl, creationContext, isolate);
V8PerformanceEntryCustom.cpp 48 v8::Handle<v8::Object> wrap(PerformanceEntry* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
50 ASSERT(impl);
51 if (impl->isResource())
52 return wrap(static_cast<PerformanceResourceTiming*>(impl), creationContext, isolate);
54 if (impl->isMark())
55 return wrap(static_cast<PerformanceMark*>(impl), creationContext, isolate);
57 if (impl->isMeasure())
58 return wrap(static_cast<PerformanceMeasure*>(impl), creationContext, isolate);
60 return V8PerformanceEntry::createWrapper(impl, creationContext, isolate);
V8StyleSheetCustom.cpp 40 v8::Handle<v8::Object> wrap(StyleSheet* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
42 ASSERT(impl);
43 if (impl->isCSSStyleSheet())
44 return wrap(static_cast<CSSStyleSheet*>(impl), creationContext, isolate);
45 return V8StyleSheet::createWrapper(impl, creationContext, isolate);
V8CanvasRenderingContextCustom.cpp 40 v8::Handle<v8::Object> wrap(CanvasRenderingContext* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
42 ASSERT(impl);
43 if (impl->is2d())
44 return wrap(static_cast<CanvasRenderingContext2D*>(impl), creationContext, isolate);
45 if (impl->is3d())
46 return wrap(static_cast<WebGLRenderingContext*>(impl), creationContext, isolate);
V8EntryCustom.cpp 43 v8::Handle<v8::Object> wrap(Entry* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
45 ASSERT(impl);
46 if (impl->isFile())
47 return wrap(static_cast<FileEntry*>(impl), creationContext, isolate);
49 ASSERT(impl->isDirectory());
50 return wrap(static_cast<DirectoryEntry*>(impl), creationContext, isolate);
V8EntrySyncCustom.cpp 43 v8::Handle<v8::Object> wrap(EntrySync* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
45 ASSERT(impl);
46 if (impl->isFile())
47 return wrap(static_cast<FileEntrySync*>(impl), creationContext, isolate);
49 ASSERT(impl->isDirectory());
50 return wrap(static_cast<DirectoryEntrySync*>(impl), creationContext, isolate);
V8AudioNodeCustom.cpp 70 v8::Handle<v8::Object> wrap(AudioNode* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
72 ASSERT(impl);
73 switch (impl->nodeType()) {
75 return wrap(static_cast<AudioDestinationNode*>(impl), creationContext, isolate);
77 return wrap(static_cast<OscillatorNode*>(impl), creationContext, isolate);
79 return wrap(static_cast<AudioBufferSourceNode*>(impl), creationContext, isolate);
81 return wrap(static_cast<MediaElementAudioSourceNode*>(impl), creationContext, isolate);
83 return wrap(static_cast<MediaStreamAudioDestinationNode*>(impl), creationContext, isolate);
85 return wrap(static_cast<MediaStreamAudioSourceNode*>(impl), creationContext, isolate);
87 return wrap(static_cast<ScriptProcessorNode*>(impl), creationContext, isolate)
    [all...]
V8HTMLCollectionCustom.cpp 43 v8::Handle<v8::Object> wrap(HTMLCollection* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
45 ASSERT(impl);
46 switch (impl->type()) {
48 return wrap(static_cast<HTMLFormControlsCollection*>(impl), creationContext, isolate);
50 return wrap(static_cast<HTMLOptionsCollection*>(impl), creationContext, isolate);
52 return wrap(static_cast<HTMLAllCollection*>(impl), creationContext, isolate);
57 return V8HTMLCollection::createWrapper(impl, creationContext, isolate);
V8TextCustom.cpp 39 v8::Handle<v8::Object> wrap(Text* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
41 ASSERT(impl);
42 if (impl->nodeType() == Node::CDATA_SECTION_NODE)
43 return wrap(static_cast<CDATASection*>(impl), creationContext, isolate);
45 return V8Text::createWrapper(impl, creationContext, isolate);
  /external/jmdns/src/javax/jmdns/impl/constants/
package-info.java 1 package javax.jmdns.impl.constants;
  /external/jmdns/src/javax/jmdns/impl/tasks/
package-info.java 1 package javax.jmdns.impl.tasks;
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
package-info.java 1 package javax.jmdns.impl.tasks.resolver;
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
package-info.java 1 package javax.jmdns.impl.tasks.state;
  /external/srec/shared/src/
IntArrayListImpl.c 31 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->Interface.removeAll = &IntArrayList_RemoveAll
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...]
LStringImpl.c 30 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->value == NULL
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...]
Int8ArrayListImpl.c 31 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->Interface.removeAll = &Int8ArrayList_RemoveAll
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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/included/
unit_test.hpp 18 #include <boost/test/impl/compiler_log_formatter.ipp>
19 #include <boost/test/impl/debug.ipp>
20 #include <boost/test/impl/framework.ipp>
21 #include <boost/test/impl/exception_safety.ipp>
22 #include <boost/test/impl/execution_monitor.ipp>
23 #include <boost/test/impl/interaction_based.ipp>
24 #include <boost/test/impl/logged_expectations.ipp>
25 #include <boost/test/impl/plain_report_formatter.ipp>
26 #include <boost/test/impl/progress_monitor.ipp>
27 #include <boost/test/impl/results_collector.ipp
    [all...]
  /external/srec/portable/src/
ArrayListImpl.c 31 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->Interface.remove = &ArrayList_Remove
98 ArrayListImpl *impl = (ArrayListImpl *) self; local
105 ArrayListImpl *impl = (ArrayListImpl *) self; local
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...]
PANSIFileImpl.c 36 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->Interface.Interface.getPosition = &PANSIFileGetPositionImpl
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...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.aidl 17 package android.hardware.camera2.impl;
  /frameworks/base/core/java/android/net/
LocalServerSocket.java 31 private final LocalSocketImpl impl; field in class:LocalServerSocket
47 impl = new LocalSocketImpl();
49 impl.create(LocalSocket.SOCKET_STREAM);
52 impl.bind(localAddress);
54 impl.listen(LISTEN_BACKLOG);
68 impl = new LocalSocketImpl(fd);
69 impl.listen(LISTEN_BACKLOG);
70 localAddress = impl.getSockAddress();
94 impl.accept (acceptedImpl);
105 return impl.getFileDescriptor()
    [all...]
  /external/srec/srec/AcousticState/src/
AcousticState.c 27 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/
containers.cpp 30 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);
111 int *impl; member in struct:MySet::iterator
153 MySet impl; member in class:BeginOnlySet
156 MySet::iterator impl; member in struct:BeginOnlySet::IterImpl
183 MySet impl; member in class:IteratorTypedefOnlySet
202 MySet impl; member in class:IteratorUsingOnlySet
221 MySet impl; member in class:IteratorStructOnlySet
232 int *impl; member in struct:IteratorStructOnlySet::iterator
    [all...]

Completed in 310 milliseconds

1 2 3 4 5 6 7 8 91011>>