OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Volatile
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/platform/
PurgeableBuffer.h
61
enum State { NonVolatile,
Volatile
, Purged };
/external/clang/include/clang/AST/
Type.h
106
/// * C99: const,
volatile
, and restrict
114
Volatile
= 0x4,
115
CVRMask = Const |
Volatile
| Restrict
191
bool hasVolatile() const { return Mask &
Volatile
; }
193
Mask = (Mask & ~
Volatile
) | (flag ?
Volatile
: 0);
195
void removeVolatile() { Mask &= ~
Volatile
; }
196
void addVolatile() { Mask |=
Volatile
; }
454
/// example we only need one for 'int', 'const int', '
volatile
int',
455
/// 'const
volatile
int', etc)
[
all
...]
Completed in 25 milliseconds