HomeSort by relevance Sort by last modified time
    Searched full:pure (Results 1 - 25 of 1795) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/
ICoder.h 12 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize) PURE;
19 ICompressProgressInfo *progress) PURE;
26 ICompressProgressInfo *progress) PURE;
53 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps) PURE;
59 STDMETHOD(SetDecoderProperties)(ISequentialInStream *inStream) PURE;
65 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size) PURE;
70 STDMETHOD(WriteCoderProperties)(ISequentialOutStream *outStream) PURE;
75 STDMETHOD(GetInStreamProcessedSize)(UInt64 *value) PURE;
80 STDMETHOD(SetNumberOfThreads)(UInt32 numThreads) PURE;
85 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value) PURE;
    [all...]
IPassword.h 15 STDMETHOD(CryptoGetTextPassword)(BSTR *password) PURE;
20 STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password) PURE;
IStream.h 16 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize) PURE;
29 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize) PURE;
39 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
44 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
45 STDMETHOD(SetSize)(UInt64 newSize) PURE;
50 STDMETHOD(GetSize)(UInt64 *size) PURE;
55 STDMETHOD(Flush)() PURE;
IProgress.h 17 INTERFACE_IProgress(PURE)
28 STDMETHOD(SetTotal)(const UInt64 *total) PURE;
29 STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE;
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
indirect_size.h 42 # define PURE __attribute__((pure))
44 # define PURE
53 extern _X_INTERNAL PURE FASTCALL GLint __glCallLists_size(GLenum);
54 extern _X_INTERNAL PURE FASTCALL GLint __glFogfv_size(GLenum);
55 extern _X_INTERNAL PURE FASTCALL GLint __glFogiv_size(GLenum);
56 extern _X_INTERNAL PURE FASTCALL GLint __glLightfv_size(GLenum);
57 extern _X_INTERNAL PURE FASTCALL GLint __glLightiv_size(GLenum);
58 extern _X_INTERNAL PURE FASTCALL GLint __glLightModelfv_size(GLenum);
59 extern _X_INTERNAL PURE FASTCALL GLint __glLightModeliv_size(GLenum)
    [all...]
  /external/llvm/test/Analysis/GlobalsModRef/
purecse.ll 1 ; Test that pure functions are cse'd away
4 define i32 @pure(i32 %X) {
10 ; CHECK: %A = call i32 @pure(i32 %X)
12 %A = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
13 %B = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
19 ; CHECK: %A = call i32 @pure(i32 %X)
22 %A = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
23 store i32 %X, i32* %P ;; Does not invalidate 'pure' call.
24 %B = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
  /external/lzma/CPP/7zip/UI/Common/
IFileExtractCallback.h 28 Int32 *answer) PURE;
29 STDMETHOD(PrepareOperation)(const wchar_t *name, bool isFolder, Int32 askExtractMode, const UInt64 *position) PURE;
30 STDMETHOD(MessageError)(const wchar_t *message) PURE;
31 STDMETHOD(SetOperationResult)(Int32 operationResult, bool encrypted) PURE;
  /external/clang/test/CXX/class.derived/class.abstract/
p5.cpp 4 virtual void f() = 0; // expected-note{{unimplemented pure virtual method}}
12 virtual void f() = 0; // expected-note 2{{unimplemented pure virtual method}}
  /external/chromium_org/tools/webrtc_perf_expectations/
perf_expectations.json 1 {"linux-chrome-pure/webrtc_pyauto/cpu/jsep01_call": {"reva": 199965, "revb": 200469, "type": "absolute", "improve": 27.55, "regress": 84.84, "sha1": "a35b38f1"},
2 "linux-chrome-pure/webrtc_pyauto/memory/jsep01_call": {"reva": 199600, "revb": 200178, "type": "absolute", "improve": 39672, "regress": 46402, "sha1": "e5906b10"},
3 "mac-chrome-pure/webrtc_pyauto/cpu/jsep01_call": {"reva": 189929, "revb": 193335, "type": "absolute", "improve": 35.15, "regress": 55.02, "sha1": "3fb872b1"},
4 "mac-chrome-pure/webrtc_pyauto/memory/jsep01_call": {"reva": 199600, "revb": 200178, "type": "absolute", "improve": 55537, "regress": 62769, "sha1": "3301ac33"},
5 "win-chrome-pure/webrtc_pyauto/cpu/jsep01_call": {"reva": 197094, "revb": 198850, "type": "absolute", "improve": 28.88, "regress": 51.45, "sha1": "0ce37cd6"},
6 "win-chrome-pure/webrtc_pyauto/memory/jsep01_call": {"reva": 199600, "revb": 200178, "type": "absolute", "improve": 39649, "regress": 44726, "sha1": "2beba373"},
  /external/clang/test/SemaCXX/
warn-pure-virtual-call-from-ctor-dtor.cpp 3 A() { f(); } // expected-warning {{call to pure virtual member function 'f'; overrides of 'f' in subclasses are not available in the constructor of 'A'}}
4 ~A() { f(); } // expected-warning {{call to pure virtual member function 'f'; overrides of 'f' in subclasses are not available in the destructor of 'A'}}
  /bionic/libstdc++/src/
pure_virtual.cpp 6 assert(!"Pure virtual function called. Are you calling virtual methods from a destructor?");
  /external/chromium_org/third_party/pexpect/
PKG-INFO 4 Summary: Pexpect is a pure Python Expect. It allows easy control of other applications.
  /external/stlport/test/unit/
algorithm_header_test.cpp 6 * pure C compilers.
assert_header_test.c 6 * pure C compilers.
bitset_header_test.cpp 6 * pure C compilers.
c_limits_header_test.c 6 * pure C compilers.
c_locale_header_test.c 6 * pure C compilers.
cassert_header_test.cpp 6 * pure C compilers.
cctype_header_test.cpp 6 * pure C compilers.
cerrno_header_test.cpp 6 * pure C compilers.
cfloat_header_test.cpp 6 * pure C compilers.
ciso646_header_test.cpp 6 * pure C compilers.
climits_header_test.cpp 6 * pure C compilers.
clocale_header_test.cpp 6 * pure C compilers.
cmath_header_test.cpp 6 * pure C compilers.

Completed in 1973 milliseconds

1 2 3 4 5 6 7 8 91011>>