HomeSort by relevance Sort by last modified time
    Searched defs:implementation (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/third_party/webrtc/modules/video_capture/external/
video_capture_external.cc 21 RefCountImpl<VideoCaptureImpl>* implementation = local
23 return implementation;
  /external/mockito/src/org/mockito/
Answers.java 74 private Answer<Object> implementation; field in class:Answers
76 private Answers(Answer<Object> implementation) {
77 this.implementation = implementation;
81 return implementation;
  /libcore/benchmarks/src/benchmarks/regression/
DigestBenchmark.java 37 @Param private Implementation implementation; field in class:DigestBenchmark
39 public enum Implementation { OPENSSL, BOUNCYCASTLE };
45 switch (implementation) {
53 throw new RuntimeException(implementation.toString());
KeyPairGeneratorBenchmark.java 37 @Param private Implementation implementation; field in class:KeyPairGeneratorBenchmark
39 public enum Implementation { OpenSSL, BouncyCastle };
49 if (implementation == Implementation.BouncyCastle) {
CipherBenchmark.java 82 @Param private Implementation implementation; field in class:CipherBenchmark
84 public enum Implementation { OpenSSL, BouncyCastle };
115 switch (implementation) {
123 throw new RuntimeException(implementation.toString());
SignatureBenchmark.java 53 @Param private Implementation implementation; field in class:SignatureBenchmark
55 public enum Implementation { OpenSSL, BouncyCastle };
94 switch (implementation) {
102 throw new RuntimeException(implementation.toString());
113 switch (implementation) {
121 throw new RuntimeException(implementation.toString());
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
streamcollection.h 38 // Implementation of StreamCollection.
42 talk_base::RefCountedObject<StreamCollection>* implementation = local
44 return implementation;
49 talk_base::RefCountedObject<StreamCollection>* implementation = local
51 return implementation;
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3-0x.cpp 34 vararg_func implementation; member in struct:rdar12176336::method
36 method(vararg_func implementation) : implementation(implementation) {}
41 return reinterpret_cast<TFunctionType>(implementation);
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
Answers.java 30 private Answer<Object> implementation; field in class:Answers
32 private Answers(Answer<Object> implementation) {
33 this.implementation = implementation;
37 return implementation;
  /external/chromium_org/v8/tools/
test-server.py 112 # 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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bufio.py 4 import io # C implementation. namespace
5 import _pyio as pyio # Python implementation. namespace
test_largefile.py 12 import io # C implementation of io namespace
13 import _pyio as pyio # Python implementation of io namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bufio.py 4 import io # C implementation. namespace
5 import _pyio as pyio # Python implementation. namespace
test_largefile.py 12 import io # C implementation of io namespace
13 import _pyio as pyio # Python implementation of io namespace
  /external/chromium_org/third_party/webrtc/modules/video_capture/android/
video_capture_android.cc 119 RefCountImpl<videocapturemodule::VideoCaptureAndroid>* implementation = local
121 if (implementation->Init(id, deviceUniqueIdUTF8) != 0) {
122 delete implementation;
123 implementation = NULL;
125 return implementation;
  /external/chromium_org/third_party/webrtc/modules/video_capture/linux/
video_capture_linux.cc 37 RefCountImpl<videocapturemodule::VideoCaptureModuleV4L2>* implementation = local
40 if (!implementation || implementation->Init(deviceUniqueId) != 0)
42 delete implementation;
43 implementation = NULL;
46 return implementation;
  /external/chromium_org/ui/gl/
gl_implementation.cc 22 GLImplementation implementation; member in struct:gfx::__anon20782::__anon20783
77 return kGLImplementationNamePairs[i].implementation;
83 const char* GetGLImplementationName(GLImplementation implementation) {
85 if (implementation == kGLImplementationNamePairs[i].implementation)
92 void SetGLImplementation(GLImplementation implementation) {
93 g_gl_implementation = implementation;
148 // specific implementation file.
  /external/chromium_org/chrome/browser/local_discovery/
service_discovery_client_mdns.cc 18 // Base class for objects returned by ServiceDiscoveryClient implementation.
94 // net::MDnsSocketFactory implementation:
139 void set_implementation(scoped_ptr<T> implementation) {
140 implementation_ = implementation.Pass();
143 T* implementation() const { function in class:local_discovery::__anon8730::ProxyBase
161 // |MDnsClient| is not used there. It's simplify implementation.
169 if (implementation())
171 base::Unretained(implementation())));
175 if (implementation())
177 base::Unretained(implementation()),
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_capture/
video_capture_impl.cc 33 RefCountImpl<VideoCaptureImpl>* implementation = local
35 externalCapture = implementation;
36 return implementation;
  /external/pixman/pixman/
pixman-glyph.c 412 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);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
bind.hpp 53 namespace _bi // implementation details
883 template<class F, class L> class implementation class in struct:boost::_bi::bind_t_generator
887 typedef implementation this_type;
889 implementation(F f, L const & l): f_(f), l_(l) {} function in class:boost::_bi::bind_t_generator::implementation
902 template<class F, class L> class implementation class in struct:boost::_bi::bind_t_generator
912 implementation(F f, L const & l): f_(f), l_(l) {} function in class:boost::_bi::bind_t_generator::implementation
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_host.cc 69 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.
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 78 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
    [all...]
  /libcore/luni/src/main/java/java/security/
Provider.java 393 * specified {@code algorithm}, or {@code null} if no such implementation
404 * @return the requested service, or {@code null} if no such implementation
898 // Service implementation
899 private Class<?> implementation; field in class:Provider.Service
    [all...]
  /hardware/ti/omap4-aah/kernel-headers-ti/linux/
bltsville.h 487 unsigned long implementation; member in struct:bvbltparams

Completed in 725 milliseconds

1 2 3 4