/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...] |
/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/Support/ |
IntegersSubset.h | 41 bool operator op (const APInt& RHS) const { \ 46 IntItem operator op () const { \ 53 IntItem operator op (const APInt& RHS) const { \ 60 IntItem& operator op (const APInt& RHS) {\ 88 RetTy operator op (IntTy RHS) const { \ 94 const APInt* APIntVal; 95 IntItem(const ConstantInt *V) : 98 const APInt& getAPIntValue() const [all...] |
/bionic/libc/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";
|
/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/chrome/browser/resources/file_manager/js/ |
file_manager.js | 7 const ENABLE_EXIF_READER = navigator.userAgent.match(/chrome\/12\.0/i); 10 const ENABLE_THUMBNAIL_VIEW = ENABLE_EXIF_READER; 105 const RIGHT_TRIANGLE = '\u25b8'; 111 const MEDIA_DIRECTORY = '/media'; 125 const iconTypes = { 134 const previewArt = { [all...] |
/external/chromium_org/courgette/ |
memory_allocator.h | 24 CheckReturnValue(const CheckReturnValue& other) 29 CheckReturnValue& operator=(const CheckReturnValue& other) { 42 operator const T&() const { 74 bool valid() const; 78 base::PlatformFile handle() const; 95 bool valid() const; 99 void* view() const; 122 void* memory() const; 125 bool valid() const; [all...] |
/external/chromium_org/sandbox/win/src/ |
handle_table.h | 21 static const char16* HandleTable::kTypeProcess; 22 static const char16* HandleTable::kTypeThread; 23 static const char16* HandleTable::kTypeFile; 24 static const char16* HandleTable::kTypeDirectory; 25 static const char16* HandleTable::kTypeKey; 26 static const char16* HandleTable::kTypeWindowStation; 27 static const char16* HandleTable::kTypeDesktop; 28 static const char16* HandleTable::kTypeService; 29 static const char16* HandleTable::kTypeMutex; 30 static const char16* HandleTable::kTypeSemaphore [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkTemplates.h | 26 template<typename T> inline void sk_ignore_unused_variable(const T&) { } 29 * SkTIsConst<T>::value is true if the type T is const. 34 static uint16_t test(const volatile void*); 36 static const bool value = (sizeof(uint16_t) == sizeof(test(t))); 40 /** SkTConstType<T, CONST>::type will be 'const T' if CONST is true, 'T' otherwise. */ 41 template <typename T, bool CONST> struct SkTConstType { 45 typedef const T type; 60 // The intermediate char* has the same const-ness as D as this produces better error messages [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& lhs, const Rhs& 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,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/grub/lib/ |
getopt.c | 40 reject `defined (const)'. */ 41 # ifndef const macro 42 # define const 221 const char *str; 241 extern int strlen (const char *); 268 static char *const *original_argv; 275 store_args_and_env (int argc, char *const *argv) 393 static const char *_getopt_initialize (int, char *const *, const char *) [all...] |
/external/llvm/include/llvm/Option/ |
ArgList.h | 33 const ArgList &Args; 48 typedef Arg * const * value_type; 49 typedef Arg * const & reference; 50 typedef Arg * const * pointer; 55 const ArgList &_Args, OptSpecifier _Id0 = 0U, 61 operator const Arg*() { return *Current; } 62 reference operator*() const { return *Current; } 63 pointer operator->() const { return Current; } 93 ArgList(const ArgList &) LLVM_DELETED_FUNCTION; 94 void operator=(const ArgList &) LLVM_DELETED_FUNCTION [all...] |
/external/skia/include/core/ |
SkTemplates.h | 26 template<typename T> inline void sk_ignore_unused_variable(const T&) { } 29 * SkTIsConst<T>::value is true if the type T is const. 34 static uint16_t test(const volatile void*); 36 static const bool value = (sizeof(uint16_t) == sizeof(test(t))); 40 /** SkTConstType<T, CONST>::type will be 'const T' if CONST is true, 'T' otherwise. */ 41 template <typename T, bool CONST> struct SkTConstType { 45 typedef const T type; 60 // 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/tcpdump/ |
acconfig.h | 119 * implementation details wrt "const"; newer versions 121 * put "const" here. This may cause duplicate definitions 124 #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/arm/arm-eabi-4.6/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.6/lib/gcc/arm-eabi/4.6.x-google/plugin/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.7/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...] |