OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:const
(Results
176 - 177
of
177
) sorted by null
1
2
3
4
5
6
7
8
/external/clang/include/clang/AST/
Type.h
69
struct isPodLike<clang::QualType> { static
const
bool value = true; };
110
/// * C99:
const
, volatile, and restrict
116
Const
= 0x1,
119
CVRMask =
Const
| Volatile | Restrict
222
unsigned getAsOpaqueValue()
const
{
226
bool hasConst()
const
{ return Mask &
Const
; }
228
Mask = (Mask & ~
Const
) | (flag ?
Const
: 0);
230
void removeConst() { Mask &= ~
Const
; }
[
all
...]
/external/ceres-solver/internal/ceres/gmock/
gmock.h
283
IgnoredValue(
const
T&) {}
508
string ConvertIdentifierNameToWords(
const
char* id_name);
528
inline typename Pointer::element_type* GetRawPointer(
const
Pointer& p) {
538
bool operator()(
const
::testing::internal::linked_ptr<T>& lhs,
539
const
::testing::internal::linked_ptr<T>& rhs)
const
{
721
virtual void ReportFailure(FailureType type,
const
char* file, int line,
722
const
string& message) = 0;
733
inline void Assert(bool condition,
const
char* file, int line,
734
const
string& msg)
[
all
...]
Completed in 134 milliseconds
1
2
3
4
5
6
7
8