OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Static
(Results
1 - 15
of
15
) sorted by null
/external/clang/test/CodeGenCXX/
template-inner-struct-visibility-hidden.cpp
14
static
int
Static
;
21
template<typename T> int C<T>::Inner::Inner2::
Static
;
/external/compiler-rt/make/platform/
darwin_bni.mk
4
Configs := Debug Release Profile
Static
33
CFLAGS.
Static
:= $(CFLAGS) -
static
38
VISIBILITY_HIDDEN.
Static
:= 1
/external/chromium_org/third_party/tcmalloc/chromium/src/
static_vars.h
33
//
Static
variables shared by multiple classes.
49
class
Static
{
52
static
SpinLock* pageheap_lock() { return &pageheap_lock_; }
55
static
void InitStaticVars();
59
static
CentralFreeListPadded* central_cache() { return central_cache_; }
61
static
SizeMap* sizemap() { return &sizemap_; }
68
static
PageHeap* pageheap() { return pageheap_; }
70
static
PageHeapAllocator<Span>* span_allocator() { return &span_allocator_; }
72
static
PageHeapAllocator<StackTrace>* stacktrace_allocator() {
76
static
StackTrace* growth_stacks() { return growth_stacks_;
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
static_vars.h
33
//
Static
variables shared by multiple classes.
49
class
Static
{
52
static
SpinLock* pageheap_lock() { return &pageheap_lock_; }
55
static
void InitStaticVars();
59
static
CentralFreeListPadded* central_cache() { return central_cache_; }
61
static
SizeMap* sizemap() { return &sizemap_; }
68
static
PageHeap* pageheap() { return pageheap_; }
70
static
PageHeapAllocator<Span>* span_allocator() { return &span_allocator_; }
72
static
PageHeapAllocator<StackTrace>* stacktrace_allocator() {
76
static
StackTrace* growth_stacks() { return growth_stacks_;
[
all
...]
/external/llvm/include/llvm/Support/
CodeGen.h
25
enum Model { Default,
Static
, PIC_, DynamicNoPIC };
/external/chromium_org/chrome/common/extensions/features/
base_feature_provider.cc
29
static
BaseFeatureProvider* LoadProvider(
54
struct
Static
{
55
Static
() {
82
base::LazyInstance<
Static
> g_static = LAZY_INSTANCE_INITIALIZER;
185
//
static
/external/clang/test/CXX/class.access/class.protected/
p1.cpp
7
static
int sx; // expected-note 3 {{declared}} \
38
static
int sx;
39
static
void test(A&);
42
static
void test(B&);
45
static
void test(C&);
48
static
void test(D&);
72
static
int sx;
73
static
void test(A&);
76
static
void test(A&);
79
static
void test(A&)
[
all
...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p3-0x.cpp
108
namespace
Static
{
112
static
auto f() -> decltype(m); // expected-error{{'this' cannot be implicitly used in a
static
member function declaration}}
113
static
auto g() -> decltype(this->m); // expected-error{{'this' cannot be used in a
static
member function declaration}}
115
static
int h();
117
static
int i() noexcept(noexcept(m + 2)); // expected-error{{'this' cannot be implicitly used in a
static
member function declaration}}
120
auto X1::h() -> decltype(m) { return 0; } // expected-error{{'this' cannot be implicitly used in a
static
member function declaration}}
127
static
T f(int)
[
all
...]
/external/chromium_org/chrome/browser/extensions/
extension_function_dispatcher.cc
86
struct
Static
{
87
Static
()
92
base::LazyInstance<
Static
> g_global_io_data = LAZY_INSTANCE_INITIALIZER;
241
//
static
404
//
static
449
//
static
502
//
static
/external/chromium_org/extensions/common/
extension_api.cc
100
struct
Static
{
101
Static
()
107
base::LazyInstance<
Static
> g_lazy_instance = LAZY_INSTANCE_INITIALIZER;
171
//
static
176
//
static
183
//
static
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DeodexUtil.java
39
public
static
final int Virtual = 0;
40
public
static
final int Direct = 1;
41
public
static
final int
Static
= 2;
77
private
static
final Pattern shortMethodPattern = Pattern.compile("([^(]+)\\(([^)]*)\\)(.+)");
219
private
static
boolean checkClassAccess(ClassPath.ClassDef accessingClass, ClassPath.ClassDef definingClass) {
224
private
static
String getPackage(String classRef) {
281
public
static
class InlineMethod {
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java
62
public
static
enum Type {
203
public
static
enum Usage {
208
Static
,
235
public
static
enum Format {
850
public
static
Buffer createBuffer(Format format, int components, int numElements){
[
all
...]
/external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java
25
import
static
java.lang.reflect.Modifier.ABSTRACT;
26
import
static
java.lang.reflect.Modifier.FINAL;
27
import
static
java.lang.reflect.Modifier.NATIVE;
28
import
static
java.lang.reflect.Modifier.PRIVATE;
29
import
static
java.lang.reflect.Modifier.PROTECTED;
30
import
static
java.lang.reflect.Modifier.PUBLIC;
31
import
static
java.lang.reflect.Modifier.
STATIC
;
32
import
static
java.lang.reflect.Modifier.SYNCHRONIZED;
47
private
static
TypeId<DexMakerTest> TEST_TYPE = TypeId.get(DexMakerTest.class)
[
all
...]
/frameworks/base/media/java/android/media/
MediaRouter.java
60
private
static
final String TAG = "MediaRouter";
61
private
static
final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
63
static
class
Static
implements DisplayManager.DisplayListener {
107
Static
(Context appContext) {
584
static
Static
sStatic;
596
public
static
final int ROUTE_TYPE_LIVE_AUDIO = 1 << 0;
613
public
static
final int ROUTE_TYPE_LIVE_VIDEO = 1 << 1;
619
public
static
final int ROUTE_TYPE_REMOTE_DISPLAY = 1 << 2
[
all
...]
/external/clang/include/clang/AST/
Type.h
52
static
inline void *getAsVoidPointer(::clang::Type *P) { return P; }
53
static
inline ::clang::Type *getFromVoidPointer(void *P) {
61
static
inline void *getAsVoidPointer(::clang::ExtQuals *P) { return P; }
62
static
inline ::clang::ExtQuals *getFromVoidPointer(void *P) {
69
struct isPodLike<clang::QualType> {
static
const bool value = true; };
166
static
Qualifiers removeCommonQualifiers(Qualifiers &L, Qualifiers &R) {
202
static
Qualifiers fromFastMask(unsigned Mask) {
208
static
Qualifiers fromCVRMask(unsigned CVR) {
215
static
Qualifiers fromOpaqueValue(unsigned opaque) {
486
static
const uint32_t GCAttrMask = 0x18
[
all
...]
Completed in 514 milliseconds