Searched defs:implementation (Results 1 - 25 of 44) sorted by relevance

12

/external/webrtc/webrtc/modules/video_capture/external/
H A Dvideo_capture_external.cc21 RefCountImpl<VideoCaptureImpl>* implementation = local
23 return implementation;
/external/mockito/src/org/mockito/
H A DAnswers.java74 private Answer<Object> implementation; field in class:Answers
76 private Answers(Answer<Object> implementation) { argument
77 this.implementation = implementation;
81 return implementation;
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp34 vararg_func implementation; member in struct:rdar12176336::method
36 method(vararg_func implementation) : implementation(implementation) {} argument
41 return reinterpret_cast<TFunctionType>(implementation);
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
H A DAnswers.java30 private Answer<Object> implementation; field in class:Answers
32 private Answers(Answer<Object> implementation) { argument
33 this.implementation = implementation;
37 return implementation;
/external/caliper/examples/src/main/java/examples/
H A DListModificationBenchmark.java55 private ListImpl implementation; field in class:ListModificationBenchmark
60 list = implementation.create();
68 List<Element> list = implementation.create();
/external/guice/core/src/com/google/inject/binder/
H A DLinkedBindingBuilder.java35 ScopedBindingBuilder to(Class<? extends T> implementation); argument
40 ScopedBindingBuilder to(TypeLiteral<? extends T> implementation); argument
/external/parameter-framework/asio/include/asio/
H A Dbasic_io_object.hpp57 /// The underlying implementation type of I/O object.
82 service.construct(implementation);
93 service.destroy(implementation);
115 /// Get the underlying implementation of the I/O object.
118 return implementation;
121 /// Get the underlying implementation of the I/O object.
124 return implementation;
127 /// (Deprecated: Use get_implementation().) The underlying implementation of
129 implementation_type implementation; member in class:asio::basic_io_object
153 service_->construct(implementation);
195 implementation_type implementation; member in class:asio::basic_io_object
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dbasic_io_object.hpp57 /// The underlying implementation type of I/O object.
82 service.construct(implementation);
93 service.destroy(implementation);
115 /// Get the underlying implementation of the I/O object.
118 return implementation;
121 /// Get the underlying implementation of the I/O object.
124 return implementation;
127 /// (Deprecated: Use get_implementation().) The underlying implementation of
129 implementation_type implementation; member in class:asio::basic_io_object
153 service_->construct(implementation);
195 implementation_type implementation; member in class:asio::basic_io_object
[all...]
/external/v8/tools/
H A Dtest-server.py112 # Check out or update the server implementation in the current directory.
150 # At this point we can assume that the implementation is available,
158 print("Failed to import implementation. Have you run 'setup'?") namespace
/external/guice/core/src/com/google/inject/internal/
H A DBindingBuilder.java60 public BindingBuilder<T> to(Class<? extends T> implementation) { argument
61 return to(Key.get(implementation));
64 public BindingBuilder<T> to(TypeLiteral<? extends T> implementation) { argument
65 return to(Key.get(implementation));
H A DAnnotations.java182 Errors errors, Class<?> implementation) {
183 return findScopeAnnotation(errors, implementation.getAnnotations());
181 findScopeAnnotation( Errors errors, Class<?> implementation) argument
H A DErrors.java147 return addMessage("No implementation for %s was bound.", key);
257 public Errors missingConstructor(Class<?> implementation) { argument
259 implementation);
262 public Errors tooManyConstructors(Class<?> implementation) { argument
264 + CONSTRUCTOR_RULES, implementation);
/external/webrtc/talk/app/webrtc/
H A Dstreamcollection.h42 rtc::RefCountedObject<StreamCollection>* implementation = local
44 return implementation;
49 rtc::RefCountedObject<StreamCollection>* implementation = local
51 return implementation;
/external/guice/core/src/com/google/inject/internal/util/
H A DStackTraceElements.java81 public static Object forType(Class<?> implementation) { argument
83 LineNumbers lineNumbers = lineNumbersCache.getUnchecked(implementation);
92 return new StackTraceElement(implementation.getName(), "class", fileName, lineNumber);
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
H A Ddom.py166 implementation = DomImplementation variable in class:getDomBuilder.TreeBuilder
H A Detree.py316 implementation = ElementTreeImplementation variable in class:getETreeBuilder.TreeBuilder
H A Detree_lxml.py188 implementation = etree variable in class:TreeBuilder
/external/guava/guava-testlib/src/com/google/common/testing/
H A DArbitraryInstances.java288 * type -> implementation. Inherently mutable interfaces and abstract classes are mapped to their
293 private static <T> void setImplementation(Class<T> type, Class<? extends T> implementation) { argument
294 checkArgument(type != implementation, "Don't register %s to itself!", type);
297 checkArgument(implementations.put(type, implementation) == null,
340 Class<? extends T> implementation = getImplementation(type);
341 if (implementation != null) {
342 return get(implementation);
/external/webrtc/webrtc/modules/video_capture/linux/
H A Dvideo_capture_linux.cc36 RefCountImpl<videocapturemodule::VideoCaptureModuleV4L2>* implementation = local
39 if (!implementation || implementation->Init(deviceUniqueId) != 0)
41 delete implementation;
42 implementation = NULL;
45 return implementation;
/external/webrtc/webrtc/modules/video_capture/
H A Dvideo_capture_impl.cc34 RefCountImpl<VideoCaptureImpl>* implementation = local
36 externalCapture = implementation;
37 return implementation;
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
H A DFactoryProvider2.java77 * The newer implementation of factory provider. This implementation uses a child injector to
119 /** the constructor the implementation is constructed with. */
125 /** the type of the implementation constructed */
160 .add("implementation type", implementationType)
207 * implementation types.
271 TypeLiteral<?> implementation = collector.getBindings().get(returnType);
272 if(implementation == null) {
273 implementation = returnType.getTypeLiteral();
276 Annotations.findScopeAnnotation(errors, implementation
458 findMatchingConstructorInjectionPoint( Method method, Key<?> returnType, TypeLiteral<T> implementation, List<Key<?>> paramList) argument
568 getDependencies(InjectionPoint ctorPoint, TypeLiteral<?> implementation) argument
597 isValidForOptimizedAssistedInject(Set<Dependency<?>> dependencies, Class<?> implementation, TypeLiteral<?> factoryType) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java78 static final DOMImplementation implementation=new DTMNodeProxyImplementation(); field in class:DTMNodeProxy
265 return implementation.hasFeature(feature,version);
281 return implementation.hasFeature(feature,version);
580 return implementation;
1361 * When set to <code>false</code>, the implementation is free to not
1382 * When set to <code>false</code>, the implementation is free to not
1459 //RAMESH : Pending proper implementation of DOM Level 3
1831 * <code>Node</code> references returned by the implementation reference
1888 * fit in a <code>DOMString</code> variable on the implementation
1938 * fit in a <code>DOMString</code> variable on the implementation
[all...]
/external/guice/extensions/persist/lib/
H A Dxwork-2.0.4.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/opensymphony/ com/opensymphony/xwork2/ com/opensymphony/xwork2/config/ ...
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...

Completed in 869 milliseconds

12