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

12

/external/chromium_org/third_party/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/chromium_org/ui/gl/
H A Dgl_implementation_ozone.cc36 bool InitializeStaticGLBindings(GLImplementation implementation) { argument
37 // Prevent reinitialization with a different implementation. Once the gpu
39 // later switch to another GL implementation.
43 switch (implementation) {
67 << "Unsupported GL type for Ozone surface implementation";
74 bool InitializeDynamicGLBindings(GLImplementation implementation, argument
76 switch (implementation) {
H A Dgl_implementation_android.cc39 bool InitializeStaticGLBindings(GLImplementation implementation) { argument
40 // Prevent reinitialization with a different implementation. Once the gpu
42 // later switch to another GL implementation.
45 switch (implementation) {
98 bool InitializeDynamicGLBindings(GLImplementation implementation, argument
100 switch (implementation) {
H A Dgl_implementation_mac.cc30 bool InitializeStaticGLBindings(GLImplementation implementation) { argument
31 // Prevent reinitialization with a different implementation. Once the gpu
33 // later switch to another GL implementation.
42 switch (implementation) {
94 SetGLImplementation(implementation);
111 bool InitializeDynamicGLBindings(GLImplementation implementation, argument
113 switch (implementation) {
H A Dgl_implementation_x11.cc51 bool InitializeStaticGLBindings(GLImplementation implementation) { argument
52 // Prevent reinitialization with a different implementation. Once the gpu
54 // later switch to another GL implementation.
63 switch (implementation) {
149 bool InitializeDynamicGLBindings(GLImplementation implementation, argument
151 switch (implementation) {
H A Dgl_implementation.cc22 GLImplementation implementation; member in struct:gfx::__anon16929::__anon16930
77 return kGLImplementationNamePairs[i].implementation;
83 const char* GetGLImplementationName(GLImplementation implementation) { argument
85 if (implementation == kGLImplementationNamePairs[i].implementation)
92 void SetGLImplementation(GLImplementation implementation) { argument
93 g_gl_implementation = implementation;
148 // specific implementation file.
H A Dgl_implementation_win.cc108 bool InitializeStaticGLBindings(GLImplementation implementation) { argument
109 // Prevent reinitialization with a different implementation. Once the gpu
111 // later switch to another GL implementation.
120 switch (implementation) {
318 bool InitializeDynamicGLBindings(GLImplementation implementation, argument
320 switch (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/chromium_org/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/chromium_org/third_party/libjingle/source/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/chromium_org/third_party/libjpeg_turbo/simd/
H A Djsimdcfg.inc.h67 ; On this SIMD implementation, this must be 'unsigned char'. variable
76 ; On this SIMD implementation, this must be 'short'. variable
82 ; On this SIMD implementation, this must be 'unsigned int'. variable
/external/chromium_org/third_party/webrtc/modules/video_capture/android/
H A Dvideo_capture_android.cc121 RefCountImpl<videocapturemodule::VideoCaptureAndroid>* implementation = local
123 if (implementation->Init(id, deviceUniqueIdUTF8) != 0) {
124 delete implementation;
125 implementation = NULL;
127 return implementation;
/external/chromium_org/third_party/webrtc/modules/video_capture/linux/
H A Dvideo_capture_linux.cc37 RefCountImpl<videocapturemodule::VideoCaptureModuleV4L2>* implementation = local
40 if (!implementation || implementation->Init(deviceUniqueId) != 0)
42 delete implementation;
43 implementation = NULL;
46 return implementation;
/external/chromium_org/third_party/webrtc/modules/video_capture/
H A Dvideo_capture_impl.cc33 RefCountImpl<VideoCaptureImpl>* implementation = local
35 externalCapture = implementation;
36 return implementation;
/external/chromium_org/chrome/browser/local_discovery/
H A Dservice_discovery_client_mdns.cc18 // Base class for objects returned by ServiceDiscoveryClient implementation.
113 // net::MDnsSocketFactory implementation:
153 return !!implementation();
161 void set_implementation(scoped_ptr<T> implementation) { argument
162 implementation_ = implementation.Pass();
165 T* implementation() const { function in class:local_discovery::__anon4183::ProxyBase
183 // |MDnsClient| is not used there. It's simplify implementation.
191 if (implementation()) {
193 base::Unretained(implementation())));
198 if (implementation()) {
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmalloc_extension.cc111 // SysAllocator implementation
114 // Default implementation -- does nothing
151 // Default implementation does nothing
155 // Default implementation does nothing
163 // Default implementation does nothing
167 // Default implementation does nothing
175 // Default implementation does nothing
217 void MallocExtension::Register(MallocExtension* implementation) { argument
225 current_instance = implementation;
308 "This malloc implementation doe
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmalloc_extension.cc105 // SysAllocator implementation
108 // Default implementation -- does nothing
145 // Default implementation does nothing
149 // Default implementation does nothing
157 // Default implementation does nothing
161 // Default implementation does nothing
169 // Default implementation does nothing
211 void MallocExtension::Register(MallocExtension* implementation) { argument
219 current_instance = implementation;
291 "This malloc implementation doe
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dtest_helper.cc718 gfx::GLImplementation implementation)
720 gfx::SetGLImplementation(implementation);
717 ScopedGLImplementationSetter( gfx::GLImplementation implementation) argument
/external/pixman/pixman/
H A Dpixman-glyph.c412 pixman_implementation_t *implementation = NULL; local
472 &implementation, &func); local
486 func (implementation, &info);
507 pixman_implementation_t *implementation = NULL; local
581 &implementation, &func); local
606 func (implementation, &info);
/external/chromium_org/content/child/npapi/
H A Dplugin_host.cc69 static gfx::GLImplementation implementation = gfx::kGLImplementationNone; local
70 if (implementation == gfx::kGLImplementationNone) {
72 DCHECK_EQ(implementation, gfx::GetGLImplementation())
78 implementation = gfx::GetGLImplementation();
80 return (implementation == gfx::kGLImplementationDesktopGL);
174 // an NPObjectProxy and not a real v8 implementation.
397 // implementation, it doesn't look like Firefox does this either.
/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.cpp734 DOMImplementation& Document::implementation() function in class:blink::Document
1727 // Column-gap is (ab)used by the current paged overflow implementation (in lack of other
4372 // DOM tree against implementation assumption.
4798 // This can occur via document.implementation.createDocument().
/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. ...

Completed in 3203 milliseconds

12