HomeSort by relevance Sort by last modified time
    Searched defs:const (Results 176 - 200 of 213) sorted by null

1 2 3 4 5 6 78 9

  /external/clang/test/SemaCXX/
conversion-function.cpp 5 operator int() const;
27 void operator bool(int, ...) const; // expected-error{{conversion function cannot have a return type}} \
30 operator bool(int a = 4, int b = 6) const; // expected-error{{conversion function cannot have any parameters}}
33 operator float(...) const; // expected-error{{conversion function cannot be variadic}}
57 operator A&() const; // expected-warning{{conversion function converting 'B' to its base class 'A' will never be used}}
58 operator const void() const; // expected-warning{{conversion function converting 'B' to 'const void' will never be used}}
59 operator const B(); // expected-warning{{conversion function converting 'B' to itself will never be used}}
66 Flop(const Flip&); // expected-note{{candidate constructor}
    [all...]
  /external/eigen/Eigen/src/Core/
GeneralProduct.h 33 * \sa ProductReturnType, MatrixBase::operator*(const MatrixBase<OtherDerived>&)
146 * \sa class Product, MatrixBase::operator*(const MatrixBase<OtherDerived>&)
206 GeneralProduct(const Lhs& lhs, const Rhs& rhs)
215 operator const typename Base::Scalar() const {
228 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const false_type&)
233 const Index cols = dest.cols()
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xstutil/include/
d3d1xstutil.h 375 #define IID_MAGIC_DELETE_THIS (*(const IID*)((intptr_t)-(int)(sizeof(IID) - 1)))
526 refcnt_ptr(const refcnt_ptr<U, UTraits>& c)
543 refcnt_ptr& operator =(const refcnt_ptr<U, UTraits>& q)
575 const T* operator ->() const
586 bool operator !() const
593 operator unspecified_bool_type() const
624 ComPtr& operator =(const refcnt_ptr<U, UTraits>& q)
640 bool operator ==(const refcnt_ptr<T, TTraits>& a, const refcnt_ptr<U, UTraits>& b
    [all...]
  /external/opencv3/3rdparty/jinja2/
nodes.py 430 class Const(Literal):
443 """Return a const object if the value is representable as
679 def const(obj): function in function:Slice.as_const
683 return slice(const(self.start), const(self.stop), const(self.step))
898 EvalContextModifier(options=[Keyword('autoescape', Const(True))])
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d11.h 233 extern const DECLSPEC_SELECTANY CD3D11_DEFAULT D3D11_DEFAULT;
456 explicit CD3D11_RASTERIZER_DESC(const D3D11_RASTERIZER_DESC &o) : D3D11_RASTERIZER_DESC(o) {}
484 operator const D3D11_RASTERIZER_DESC&() const { return *this; }
524 const void *pSysMem;
724 explicit CD3D11_BLEND_DESC(const D3D11_BLEND_DESC &o) : D3D11_BLEND_DESC(o) {}
737 operator const D3D11_BLEND_DESC&() const { return *this; }
751 explicit CD3D11_BUFFER_DESC(const D3D11_BUFFER_DESC &o) : D3D11_BUFFER_DESC(o) {}
763 operator const D3D11_BUFFER_DESC&() const { return *this;
    [all...]
  /external/curl/lib/
config-riscos.h 411 /* Define to empty if `const' does not conform to ANSI C. */
412 #undef const macro
433 #define GETNAMEINFO_QUAL_ARG1 const
499 #define SEND_QUAL_ARG2 const
config-os400.h 53 * const). However, getaddrinfo() is supported (ASCII version defined as
431 /* Define to empty if `const' does not conform to ANSI C. */
432 #undef const macro
463 #define GETNAMEINFO_QUAL_ARG1 const
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 45 static inline const Type& CastR(const TObject &X)
46 { return reinterpret_cast<const Type&> (X); }
53 static inline const Type* CastP(const TObject *X)
54 { return reinterpret_cast<const Type*> (X); }
62 static inline const Type& StructAtOffset(const void *P, unsigned int offset)
63 { return * reinterpret_cast<const Type*> ((const char *) P + offset);
    [all...]
  /external/icu/icu4c/source/i18n/
transreg.cpp 42 static const UChar LOCALE_SEP = 95; // '_'
43 //static const UChar ID_SEP = 0x002D; /*-*/
44 //static const UChar VARIANT_SEP = 0x002F; // '/'
47 static const UChar ANY[] = { 65, 110, 121, 0 }; // Any
55 //static const char RB_RULE[] = "Rule";
63 TransliteratorAlias::TransliteratorAlias(const UnicodeString& theAliasID,
64 const UnicodeSet* cpdFilter) :
73 TransliteratorAlias::TransliteratorAlias(const UnicodeString& theID,
74 const UnicodeString& idBlocks,
76 const UnicodeSet* cpdFilter)
    [all...]
  /external/icu/icu4c/source/test/intltest/
transrt.cpp 63 const char* &name, char* /*par*/) {
96 TransliteratorPointer(const TransliteratorPointer& rhs);
97 TransliteratorPointer& operator=(const TransliteratorPointer& rhs);
106 inline operator const Transliterator*() const { return t; }
118 virtual UBool is(const UnicodeString& /*sourceString*/) const {return TRUE;}
128 virtual UBool is(const UnicodeString& sourceString) const;
129 int getType(UChar c) const;
    [all...]
  /external/jsoncpp/include/json/
value.h 57 // typedef CppTL::AnyEnumerator<const char *> EnumMemberNames;
58 // typedef CppTL::AnyEnumerator<const Value &> EnumValues;
71 * static const StaticString code("code");
77 explicit StaticString(const char* czstring) : str_(czstring) {}
79 operator const char*() const { return str_; }
81 const char* c_str() const { return str_; }
84 const char* str_;
104 * Non const methods will automatically create the a #nullValue elemen
    [all...]
  /external/opencv3/modules/python/src2/
cv2.cpp 22 static int failmsg(const char *fmt, ...)
37 const char * name;
41 ArgInfo(const char * name_, bool outputarg_)
46 operator const char *() const { return name; }
79 catch (const cv::Exception &e) \
125 static PyObject* failmsgp(const char *fmt, ...)
144 UMatData* allocate(PyObject* o, int dims, const int* sizes, int type, size_t* step) const
157 UMatData* allocate(int dims0, const int* sizes, int type, void* data, size_t* step, int flags, UMatUsageFlags usageFlags) cons
    [all...]
  /external/pdfium/third_party/zlib_v128/
zconf.h 216 # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
217 # define const /* note: need a more gentle solution here */ macro
222 # define z_const const
385 typedef void const *voidpc;
389 typedef Byte const *voidpc;
  /external/v8/src/heap/
gc-tracer.h 23 const_iterator(size_t index, const T* elements)
26 bool operator==(const const_iterator& rhs) const {
30 bool operator!=(const const_iterator& rhs) const {
34 operator const T*() const { return elements_ + index_; }
36 const T* operator->() const { return elements_ + index_; }
38 const T& operator*() const { return elements_[index_];
    [all...]
  /external/webrtc/webrtc/base/
trace_event.h 124 // Notes: The category must always be in a long-lived char* (i.e. static const).
129 // const char* arg_values are only referenced by default:
132 // Use TRACE_STR_COPY to force copying of a const char*:
145 // By default, const char* argument values are assumed to have long-lived scope
146 // and will not be copied. Use this macro to force a const char* to be copied.
548 // const unsigned char*
549 // TRACE_EVENT_API_GET_CATEGORY_ENABLED(const char* category_name)
556 // const unsigned char* category_enabled,
557 // const char* name,
560 // const char** arg_names
    [all...]
  /external/zlib/src/
zconf.h 216 # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
217 # define const /* note: need a more gentle solution here */ macro
222 # define z_const const
385 typedef void const *voidpc;
389 typedef Byte const *voidpc;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
zconf.h 186 # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
187 # define const /* note: need a more gentle solution here */ macro
345 typedef void const *voidpc;
349 typedef Byte const *voidpc;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
zconf.h 186 # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
187 # define const /* note: need a more gentle solution here */ macro
345 typedef void const *voidpc;
349 typedef Byte const *voidpc;
  /toolchain/binutils/binutils-2.25/include/opcode/
cris.h 27 #if !defined(__STDC__) && !defined(const)
28 #define const macro
88 const char *const name;
100 const char *const warning;
102 extern const struct cris_spec_reg cris_spec_regs[];
108 const char *const name;
111 extern const struct cris_support_reg cris_support_regs[]
    [all...]
  /external/mesa3d/include/CL/
cl.hpp 80 * const char * helloStr = "__kernel void "
214 const char * errStr_;
219 Error(cl_int err, const char * errStr = NULL) : err_(err), errStr_(errStr)
228 virtual const char * what() const throw ()
242 const cl_int err(void) const { return err_; }
368 string& operator=(const string& rhs)
392 string(const string& rhs)
404 ::size_t size(void) const { return size_;
    [all...]
  /external/opencv3/3rdparty/include/opencl/1.2/CL/
cl.hpp 84 * const char * helloStr = "__kernel void "
271 const char * errStr_;
282 Error(cl_int err, const char * errStr = NULL) : err_(err), errStr_(errStr)
291 virtual const char * what() const throw ()
305 cl_int err(void) const { return err_; }
319 const char * errStr = NULL)
327 static inline cl_int errHandler (cl_int err, const char * errStr = NULL)
498 string(const char * str, ::size_t size) :
519 string(const char * str)
    [all...]
  /external/c-ares/
ares_config.h 30 #define GETNAMEINFO_QUAL_ARG1 const
383 #define RECVFROM_QUAL_ARG5 const
434 #define SEND_QUAL_ARG2 const
507 /* Define to empty if `const' does not conform to ANSI C. */
508 #undef const macro
  /external/clang/include/clang/Analysis/
CFG.h 75 CFGElement(Kind kind, const void *Ptr1, const void *Ptr2 = nullptr)
87 T castAs() const {
98 Optional<T> getAs() const {
107 Kind getKind() const {
119 const Stmt *getStmt() const {
120 return static_cast<const Stmt *>(Data1.getPointer());
126 static bool isKind(const CFGElement &E) {
138 CXXCtorInitializer* getInitializer() const {
    [all...]
  /external/libpng/
pngstruct.h 27 /* We must ensure that zlib uses 'const' in declarations. */
31 #ifdef const
32 /* zlib.h sometimes #defines const to nothing, undo this. */
33 # undef const macro
128 typedef const png_colorspace * PNG_RESTRICT png_const_colorspacerp;
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 54 void checkForCycles(const SDNode *N, const SelectionDAG *DAG = nullptr,
62 const EVT *VTs;
71 bool isBuildVectorAllOnes(const SDNode *N);
75 bool isBuildVectorAllZeros(const SDNode *N);
79 bool isBuildVectorOfConstantSDNodes(const SDNode *N);
83 bool isBuildVectorOfConstantFPSDNodes(const SDNode *N);
87 bool allOperandsUndef(const SDNode *N);
111 unsigned getResNo() const { return ResNo; }
114 SDNode *getNode() const { return Node;
    [all...]

Completed in 511 milliseconds

1 2 3 4 5 6 78 9