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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
complete-at-directives.m 5 @implementation MyClass
11 // CHECK-CC1: {TypedText implementation}{HorizontalSpace }{Placeholder class}
29 // CHECK-CC4: NotImplemented:{TypedText @implementation}{HorizontalSpace }{Placeholder class}
complete-interfaces.m 16 @implementation Int2
19 @implementation Int3
complete-categories.m 18 @implementation I1(Cat2) @end
19 @implementation I1(Cat3) @end
20 @implementation I3(Cat2) @end
complete-method-decls.m 32 @implementation B
41 @implementation B (FooBar)
55 @implementation D
67 @implementation Gaps
71 @implementation Passing
84 @implementation I1
complete-properties.m 19 @implementation I2
41 @implementation I4 {
56 @implementation I5
complete-at-exprstmt.m 7 @implementation MyClass
  /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/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/third_party/tlslite/tlslite/utils/
rc4.py 8 def __init__(self, keyBytes, implementation):
13 self.implementation = implementation
tripledes.py 7 def __init__(self, key, mode, IV, implementation):
16 self.implementation = implementation
keyfactory.py 33 for implementation in implementations:
34 if implementation == "openssl" and cryptomath.m2cryptoLoaded:
36 elif implementation == "python":
98 for implementation in implementations:
99 if implementation == "openssl" and cryptomath.m2cryptoLoaded:
102 elif implementation == "python":
175 for implementation in implementations:
176 if implementation == "openssl" and cryptomath.m2cryptoLoaded:
178 elif implementation == "pycrypto" and cryptomath.pycryptoLoaded:
180 elif implementation == "python"
    [all...]
aes.py 7 def __init__(self, key, mode, IV, implementation):
16 self.implementation = implementation
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCAudioTrack.mm 36 @implementation RTCAudioTrack
39 @implementation RTCAudioTrack (Internal)
RTCVideoSource.mm 35 @implementation RTCVideoSource
38 @implementation RTCVideoSource (Internal)
RTCMediaSource.mm 36 @implementation RTCMediaSource {
46 @implementation RTCMediaSource (Internal)
  /external/clang/test/PCH/
method_pool.h 24 @implementation TestMethodPool1
32 @implementation TestMethodPool2
objc_methods.h 16 @implementation PR12689
32 @implementation PR12689_2
objc_stmts.h 13 @implementation TestPCH
objcxx-ivar-class.h 14 @implementation C
  /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/
Answers.java 74 private Answer<Object> implementation; field in class:Answers
76 private Answers(Answer<Object> implementation) {
77 this.implementation = implementation;
81 return implementation;
  /external/deqp/framework/platform/ios/
tcuEAGLView.m 28 @implementation tcuEAGLView
  /external/chromium_org/ui/gl/
gl_implementation.h 20 // The GL implementation currently in use.
46 // Initialize a particular GL implementation.
47 GL_EXPORT bool InitializeStaticGLBindings(GLImplementation implementation);
50 // implementation.
51 GL_EXPORT bool InitializeDynamicGLBindings(GLImplementation implementation,
77 // Set the current GL implementation.
78 GL_EXPORT void SetGLImplementation(GLImplementation implementation);
80 // Get the current GL implementation.
87 // Get the GL implementation with a given name.
90 // Get the name of a GL implementation
    [all...]
gl_implementation_ozone.cc 36 bool InitializeStaticGLBindings(GLImplementation implementation) {
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,
76 switch (implementation) {
gl_implementation.cc 22 GLImplementation implementation; member in struct:gfx::__anon21547::__anon21548
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.

Completed in 631 milliseconds

1 2 3 4 5 6 7 8 91011>>