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

1 2 3 4 5 6 7 8

  /external/webrtc/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 };
46 switch (implementation) {
54 throw new RuntimeException(implementation.toString());
KeyPairGeneratorBenchmark.java 33 @Param private Implementation implementation; field in class:KeyPairGeneratorBenchmark
35 public enum Implementation { OpenSSL, BouncyCastle };
46 if (implementation == Implementation.BouncyCastle) {
CipherBenchmark.java 78 @Param private Implementation implementation; field in class:CipherBenchmark
80 public enum Implementation { OpenSSL, BouncyCastle };
112 switch (implementation) {
120 throw new RuntimeException(implementation.toString());
SignatureBenchmark.java 52 @Param private Implementation implementation; field in class:SignatureBenchmark
54 public enum Implementation { OpenSSL, BouncyCastle };
94 switch (implementation) {
102 throw new RuntimeException(implementation.toString());
113 switch (implementation) {
121 throw new RuntimeException(implementation.toString());
  /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/webrtc/talk/app/webrtc/
streamcollection.h 38 // Implementation of StreamCollection.
42 rtc::RefCountedObject<StreamCollection>* implementation = local
44 return implementation;
49 rtc::RefCountedObject<StreamCollection>* implementation = local
51 return implementation;
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
MockAnswerUtil.java 41 Method implementation = getClass().getMethod("answer", method.getParameterTypes()); local
42 if (!implementation.getReturnType().equals(method.getReturnType())) {
45 + implementation.getReturnType());
49 return implementation.invoke(this, args);
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_io_object.hpp 57 /// 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/
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/gdb/darwin-x86/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/gdb/linux-x86/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/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/caliper/examples/src/main/java/examples/
ListModificationBenchmark.java 55 private ListImpl implementation; field in class:ListModificationBenchmark
60 list = implementation.create();
68 List<Element> list = implementation.create();
  /external/webrtc/webrtc/modules/video_capture/linux/
video_capture_linux.cc 36 RefCountImpl<videocapturemodule::VideoCaptureModuleV4L2>* implementation = local
39 if (!implementation || implementation->Init(deviceUniqueId) != 0)
41 delete implementation;
42 implementation = NULL;
45 return implementation;
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
dom.py 166 implementation = DomImplementation variable in class:getDomBuilder.TreeBuilder
etree.py 316 implementation = ElementTreeImplementation variable in class:getETreeBuilder.TreeBuilder
etree_lxml.py 188 implementation = etree variable in class:TreeBuilder

Completed in 3902 milliseconds

1 2 3 4 5 6 7 8