OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:const
(Results
226 - 230
of
230
) sorted by null
1
2
3
4
5
6
7
8
9
10
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
libio.h
80
# ifndef
const
81
# define
const
macro
222
const
wchar_t *,
223
const
wchar_t *,
224
const
wchar_t **, char *,
231
const
char *,
const
char *,
232
const
char **, wchar_t *,
237
const
char *,
const
char *, _IO_size_t)
[
all
...]
/external/chromium/testing/gmock/include/gmock/
gmock-matchers.h
71
// bool InterestedInWhy(bool result)
const
;
84
MatchResultListener& operator<<(
const
T& x) {
97
bool IsInterested()
const
{ return stream_ != NULL; }
100
::std::ostream*
const
stream_;
128
virtual bool MatchAndExplain(T x, MatchResultListener* listener)
const
= 0;
135
virtual void DescribeTo(::std::ostream* os)
const
= 0;
143
virtual void DescribeNegationTo(::std::ostream* os)
const
{
179
internal::string str()
const
{ return ss_.str(); }
195
bool MatchAndExplain(T x, MatchResultListener* listener)
const
{
200
bool Matches(T x)
const
{
[
all
...]
/frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp
86
EGLAPI
const
char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name);
93
static
const
bool runningWithoutSyncFramework = true;
95
static
const
bool runningWithoutSyncFramework = false;
118
static
const
int64_t vsyncPhaseOffsetNs = VSYNC_EVENT_PHASE_OFFSET_NS;
121
static
const
int64_t sfVsyncPhaseOffsetNs = SF_VSYNC_EVENT_PHASE_OFFSET_NS;
125
const
String16 sHardwareTest("android.permission.HARDWARE_TEST");
126
const
String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
127
const
String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
128
const
String16 sDump("android.permission.DUMP");
192
void SurfaceFlinger::binderDied(
const
wp<IBinder>& who
[
all
...]
/external/clang/lib/Sema/
SemaCodeComplete.cpp
49
typedef bool (ResultBuilder::*LookupFilter)(
const
NamedDecl *)
const
;
60
llvm::SmallPtrSet<
const
Decl*, 16> AllDeclsFound;
62
typedef std::pair<
const
NamedDecl *, unsigned> DeclIndexPair;
72
llvm::PointerUnion<
const
NamedDecl *, DeclIndexPairVector*> DeclOrVector;
81
void Add(
const
NamedDecl *ND, unsigned Index) {
89
if (
const
NamedDecl *PrevND =
90
DeclOrVector.dyn_cast<
const
NamedDecl *>()) {
113
iterator begin()
const
;
114
iterator end()
const
;
[
all
...]
/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
...]
Completed in 34 milliseconds
1
2
3
4
5
6
7
8
9
10