HomeSort by relevance Sort by last modified time
    Searched defs:const (Results 51 - 75 of 270) sorted by null

1 23 4 5 6 7 8 91011

  /external/lzma/CPP/7zip/Common/
StreamObjects.h 22 const Byte *_data;
27 void Init(const Byte *data, size_t size, IUnknown *ref = 0)
50 size_t GetCapacity() const { return _capacity; }
51 operator Byte*() const { return _buf; };
52 operator const Byte*() const { return _buf; };
65 size_t GetSize() const { return _size; }
66 const Byte *GetBuffer() const { return _buffer; }
67 void CopyToBuffer(CByteBuffer &dest) const;
    [all...]
  /external/skia/include/utils/
SkRTConf.h 24 SkRTConfBase(const char *name) : fName(name) {}
26 virtual const char *getName() const { return fName.c_str(); }
27 virtual bool isDefault() const = 0;
28 virtual void print(SkWStream *o) const = 0;
29 virtual bool equals(const SkRTConfBase *conf) const = 0;
39 SkRTConf(const char *name, const T &defaultValue, const char *description)
    [all...]
  /external/skia/src/core/
SkRecords.h 68 static const Type kType = T##_Type; \
73 // work, allowing the caller to decide whether to pass by value or by const&.
77 static const Type kType = T##_Type; \
85 static const Type kType = T##_Type; \
93 static const Type kType = T##_Type; \
101 static const Type kType = T##_Type; \
109 static const Type kType = T##_Type; \
117 operator const T*() const { return ptr; } \
119 const T* operator->() const { return ptr;
    [all...]
SkRecorder.cpp 30 // with delay_copy(), forcing the argument to be passed by const&.
38 Reference(const T& x) : fX(x) {}
39 operator const T&() const { return fX; }
41 const T& fX;
45 static Reference<T> delay_copy(const T& x) { return Reference<T>(x); }
50 T* SkRecorder::copy(const T* src) {
60 T* SkRecorder::copy(const T src[], unsigned count) {
75 char* SkRecorder::copy(const char src[], unsigned count) {
88 void SkRecorder::drawPaint(const SkPaint& paint)
    [all...]
  /frameworks/native/include/ui/
TVecHelpers.h 47 Impersonator& operator = (const TYPE& rhs) {
54 operator TYPE const& () const {
55 return reinterpret_cast<TYPE const&>(*this);
75 BASE<T>& operator += (const BASE<OTHER>& v) {
83 BASE<T>& operator -= (const BASE<OTHER>& v) {
96 BASE<T>& operator += (const BASE<T>& v) {
103 BASE<T>& operator -= (const BASE<T>& v) {
124 BASE<T> PURE operator +(const BASE<T>& lv, const BASE<RT>& rv)
    [all...]
  /system/core/include/utils/
String8.h 50 String8(const String8& o);
51 explicit String8(const char* o);
52 explicit String8(const char* o, size_t numChars);
54 explicit String8(const String16& o);
55 explicit String8(const char16_t* o);
56 explicit String8(const char16_t* o, size_t numChars);
57 explicit String8(const char32_t* o);
58 explicit String8(const char32_t* o, size_t numChars);
61 static inline const String8 empty();
63 static String8 format(const char* fmt, ...) __attribute__((format (printf, 1, 2)))
    [all...]
  /external/llvm/include/llvm/IR/
Value.h 77 const unsigned char SubclassID; // Subclass identifier (for isa/dyn_cast)
92 template <typename UseT> // UseT == 'Use' or 'const Use'
107 bool operator==(const use_iterator_impl &x) const { return U == x.U; }
108 bool operator!=(const use_iterator_impl &x) const { return !operator==(x); }
121 UseT &operator*() const {
126 UseT *operator->() const { return &operator*(); }
128 operator use_iterator_impl<const UseT>() const {
    [all...]
  /development/ndk/platforms/android-3/include/sys/
cdefs.h 118 #define __const const /* define reserved names to standard */
144 * Programs using the ANSI C keywords const, inline etc. as normal
148 #define const __const /* convert ANSI C keywords */ macro
165 * The following macro is used to remove const cast-away warnings
173 #define __UNCONST(a) ((void *)(unsigned long)(const void *)(a))
185 * pure (no side effects) functions using "volatile" and "const";
  /development/ndk/platforms/android-9/include/sys/
cdefs.h 87 #define __const const /* define reserved names to standard */
113 * Programs using the ANSI C keywords const, inline etc. as normal
117 #define const __const /* convert ANSI C keywords */ macro
134 * The following macro is used to remove const cast-away warnings
142 #define __UNCONST(a) ((void *)(unsigned long)(const void *)(a))
154 * pure (no side effects) functions using "volatile" and "const";
  /external/chromium_org/courgette/
memory_allocator.h 24 CheckReturnValue(const CheckReturnValue& other)
29 CheckReturnValue& operator=(const CheckReturnValue& other) {
42 operator const T&() const {
71 bool valid() const;
75 void* view() const;
98 void* memory() const;
101 bool valid() const;
129 typedef const value_type* const_pointer;
130 typedef const value_type& const_reference
    [all...]
  /external/chromium_org/sandbox/win/src/
handle_table.h 21 static const base::char16* HandleTable::kTypeProcess;
22 static const base::char16* HandleTable::kTypeThread;
23 static const base::char16* HandleTable::kTypeFile;
24 static const base::char16* HandleTable::kTypeDirectory;
25 static const base::char16* HandleTable::kTypeKey;
26 static const base::char16* HandleTable::kTypeWindowStation;
27 static const base::char16* HandleTable::kTypeDesktop;
28 static const base::char16* HandleTable::kTypeService;
29 static const base::char16* HandleTable::kTypeMutex;
30 static const base::char16* HandleTable::kTypeSemaphore
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.h 38 AtomicString(const LChar* s) : m_string(add(s)) { }
39 AtomicString(const char* s) : m_string(add(s)) { }
40 AtomicString(const LChar* s, unsigned length) : m_string(add(s, length)) { }
41 AtomicString(const UChar* s, unsigned length) : m_string(add(s, length)) { }
42 AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { }
43 AtomicString(const UChar* s) : m_string(add(s)) { }
46 explicit AtomicString(const Vector<UChar, inlineCapacity>& characters)
54 explicit AtomicString(const String& s) : m_string(add(s.impl())) { }
59 AtomicString(const char* characters, unsigned length, ConstructFromLiteralTag)
65 ALWAYS_INLINE AtomicString(const char (&characters)[charactersCount], ConstructFromLiteralTag
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkTemplates.h 27 template<typename T> inline void sk_ignore_unused_variable(const T&) { }
30 * SkTIsConst<T>::value is true if the type T is const.
35 static uint16_t test(const volatile void*);
37 static const bool value = (sizeof(uint16_t) == sizeof(test(t)));
41 /** SkTConstType<T, CONST>::type will be 'const T' if CONST is true, 'T' otherwise. */
42 template <typename T, bool CONST> struct SkTConstType {
46 typedef const T type;
61 // The intermediate char* has the same const-ness as D as this produces better error messages
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRecorder.cpp 30 // with delay_copy(), forcing the argument to be passed by const&.
38 Reference(const T& x) : fX(x) {}
39 operator const T&() const { return fX; }
41 const T& fX;
45 static Reference<T> delay_copy(const T& x) { return Reference<T>(x); }
50 T* SkRecorder::copy(const T* src) {
60 T* SkRecorder::copy(const T src[], unsigned count) {
75 char* SkRecorder::copy(const char src[], unsigned count) {
88 void SkRecorder::drawPaint(const SkPaint& paint)
    [all...]
  /external/clang/test/Analysis/
stack-addr-ps.cpp 5 const int& g() {
10 const int& g2() {
16 const int& g3() {
24 static const int &x = 3; // no warning
29 const int &get_reference1() { return get_value(); } // expected-warning{{Address of stack memory associated with temporary object of type 'int' returned}} expected-warning {{returning reference to local temporary}}
31 const int &get_reference2() {
32 const int &x = get_value(); // expected-note {{binding reference variable 'x' here}}
36 const int &get_reference3() {
37 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}}
38 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}
    [all...]
  /external/eigen/Eigen/src/Core/
ProductBase.h 90 ProductBase(const Lhs& a_lhs, const Rhs& a_rhs)
98 inline Index rows() const { return m_lhs.rows(); }
99 inline Index cols() const { return m_rhs.cols(); }
102 inline void evalTo(Dest& dst) const { dst.setZero(); scaleAndAddTo(dst,Scalar(1)); }
105 inline void addTo(Dest& dst) const { scaleAndAddTo(dst,Scalar(1)); }
108 inline void subTo(Dest& dst) const { scaleAndAddTo(dst,Scalar(-1)); }
111 inline void scaleAndAddTo(Dest& dst, const Scalar& alpha) const { derived().scaleAndAddTo(dst,alpha); }
113 const _LhsNested& lhs() const { return m_lhs;
    [all...]
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 143 inline CoeffBasedProduct(const CoeffBasedProduct& other)
148 inline CoeffBasedProduct(const Lhs& lhs, const Rhs& rhs)
160 EIGEN_STRONG_INLINE Index rows() const { return m_lhs.rows(); }
161 EIGEN_STRONG_INLINE Index cols() const { return m_rhs.cols(); }
163 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
173 EIGEN_STRONG_INLINE const Scalar coeff(Index index) const
176 const Index row = RowsAtCompileTime == 1 ? 0 : index
    [all...]
  /external/freetype/src/gzip/
zconf.h 90 # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
91 # define const macro
  /external/llvm/include/llvm/Option/
ArgList.h 34 const ArgList &Args;
49 typedef Arg * const * value_type;
50 typedef Arg * const & reference;
51 typedef Arg * const * pointer;
56 const ArgList &_Args, OptSpecifier _Id0 = 0U,
62 operator const Arg*() { return *Current; }
63 reference operator*() const { return *Current; }
64 pointer operator->() const { return Current; }
94 ArgList(const ArgList &) LLVM_DELETED_FUNCTION;
95 void operator=(const ArgList &) LLVM_DELETED_FUNCTION
    [all...]
  /external/skia/include/core/
SkTemplates.h 27 template<typename T> inline void sk_ignore_unused_variable(const T&) { }
30 * SkTIsConst<T>::value is true if the type T is const.
35 static uint16_t test(const volatile void*);
37 static const bool value = (sizeof(uint16_t) == sizeof(test(t)));
41 /** SkTConstType<T, CONST>::type will be 'const T' if CONST is true, 'T' otherwise. */
42 template <typename T, bool CONST> struct SkTConstType {
46 typedef const T type;
61 // The intermediate char* has the same const-ness as D as this produces better error messages
    [all...]
  /external/srtp/
config_in.h 160 /* Define to empty if `const' does not conform to ANSI C. */
161 #undef const macro
  /external/valgrind/main/coregrind/m_demangle/
ansidecl.h 29 PTRCONST `void *const' `char *'
31 const not defined `'
59 int printf PARAMS ((const char *format, ...));
62 printf VPARAMS ((const char *format, ...))
82 printf VPARAMS ((const char *format, ...))
87 VA_FIXEDARG (ap, const char *, format);
112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
154 #define PTRCONST void *const
174 #undef const macro
193 #define CONST cons
222 #undef const macro
226 #define const macro
    [all...]
  /ndk/sources/host-tools/make-3.81/
getopt.c 39 reject `defined (const)'. */
40 # ifndef const
41 # define const macro
214 my_index (const char *str, int chr)
233 extern int strlen (const char *);
260 static char *const *original_argv;
266 store_args_and_env (int argc, char *const *argv)
383 static const char *_getopt_initialize (int, char *const *, const char *)
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/include/
ansidecl.h 29 PTRCONST `void *const' `char *'
31 const not defined `'
59 int printf PARAMS ((const char *format, ...));
62 printf VPARAMS ((const char *format, ...))
82 printf VPARAMS ((const char *format, ...))
87 VA_FIXEDARG (ap, const char *, format);
112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
154 #define PTRCONST void *const
174 #undef const macro
193 #define CONST cons
222 #undef const macro
226 #define const macro
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/include/
ansidecl.h 29 PTRCONST `void *const' `char *'
31 const not defined `'
59 int printf PARAMS ((const char *format, ...));
62 printf VPARAMS ((const char *format, ...))
82 printf VPARAMS ((const char *format, ...))
87 VA_FIXEDARG (ap, const char *, format);
112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
154 #define PTRCONST void *const
174 #undef const macro
193 #define CONST cons
222 #undef const macro
226 #define const macro
    [all...]

Completed in 2132 milliseconds

1 23 4 5 6 7 8 91011