HomeSort by relevance Sort by last modified time
    Searched refs:Static (Results 51 - 75 of 140) sorted by null

1 23 4 5 6

  /system/core/libpixelflinger/
Android.mk 72 # Static library version
  /external/chromium_org/chrome/browser/extensions/
extension_function_dispatcher.cc 112 struct Static {
113 Static()
118 base::LazyInstance<Static> g_global_io_data = LAZY_INSTANCE_INITIALIZER;
262 // static
456 // static
498 // static
551 // static
  /external/chromium_org/chrome/common/extensions/api/
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/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 245 static MCInstrInfo *createX86MCInstrInfo() {
251 static MCRegisterInfo *createX86MCRegisterInfo(StringRef TT) {
266 static MCAsmInfo *createX86MCAsmInfo(const MCRegisterInfo &MRI, StringRef TT) {
307 static MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM,
318 // use static relocation model by default.
327 RM = Reloc::Static;
331 // is defined as a model for code which may be used in static or dynamic
333 // compile in -static mode, in x86-64 we use PIC.
338 RM = Reloc::Static;
341 // If we are on Darwin, disallow static relocation model in X86-64 mode, sinc
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.cc 42 #include "static_vars.h" // for Static
441 const size_t osize = Static::sizemap()->class_to_size(span->sizeclass);
458 static void RecordGrowth(size_t growth) {
459 StackTrace* t = Static::stacktrace_allocator()->New();
462 t->stack[kMaxStackDepth-1] = reinterpret_cast<void*>(Static::growth_stacks());
463 Static::set_growth_stacks(t);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.cc 42 #include "static_vars.h" // for Static
380 const size_t osize = Static::sizemap()->class_to_size(span->sizeclass);
397 static void RecordGrowth(size_t growth) {
398 StackTrace* t = Static::stacktrace_allocator()->New();
401 t->stack[kMaxStackDepth-1] = reinterpret_cast<void*>(Static::growth_stacks());
402 Static::set_growth_stacks(t);
  /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/jmonkeyengine/engine/src/test/jme3test/texture/
TestTexture3D.java 30 public static void main(String[] args) {
59 uvCoordsBuffer.setupData(Usage.Static, 3, com.jme3.scene.VertexBuffer.Format.Float,
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 47 clEnumValN(Reloc::Static, "static",
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.cpp 48 static MCInstrInfo *createAArch64MCInstrInfo() {
54 static MCRegisterInfo *createAArch64MCRegisterInfo(StringRef Triple) {
60 static MCAsmInfo *createAArch64MCAsmInfo(const MCRegisterInfo &MRI,
72 static MCCodeGenInfo *createAArch64MCCodeGenInfo(StringRef TT, Reloc::Model RM,
77 // On ELF platforms the default static relocation model has a smart enough
80 RM = Reloc::Static;
96 static MCStreamer *createMCStreamer(const Target &T, StringRef TT,
108 static MCInstPrinter *createAArch64MCInstPrinter(const Target &T,
155 static MCInstrAnalysis *createAArch64MCInstrAnalysis(const MCInstrInfo *Info) {
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 37 static MCInstrInfo *createPPCMCInstrInfo() {
43 static MCRegisterInfo *createPPCMCRegisterInfo(StringRef TT) {
55 static MCSubtargetInfo *createPPCMCSubtargetInfo(StringRef TT, StringRef CPU,
62 static MCAsmInfo *createPPCMCAsmInfo(const MCRegisterInfo &MRI, StringRef TT) {
82 static MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM,
92 RM = Reloc::Static;
105 static MCStreamer *createMCStreamer(const Target &T, StringRef TT,
117 static MCInstPrinter *createPPCMCInstPrinter(const Target &T,
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 89 if (getRelocationModel() == Reloc::Static) {
116 static cl::opt<bool>
123 static cl::opt<bool>
  /external/compiler-rt/make/
AppleBI.mk 78 install-iOS: $(SYMROOT)/libcompiler_rt-static.a \
82 cp $(SYMROOT)/libcompiler_rt-static.a \
83 $(DSTROOT)/usr/local/lib/libcompiler_rt-static.a
93 $(SYMROOT)/libcompiler_rt-static.a : $(foreach arch,$(RC_ARCHS), \
94 $(OBJROOT)/darwin_bni/Static/$(arch)/libcompiler_rt.a)
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
UVCoordinatesGenerator.java 54 private static final Logger LOGGER = Logger.getLogger(UVCoordinatesGenerator.class.getName());
57 public static final int TEXCO_ORCO = 1;
58 public static final int TEXCO_REFL = 2;
59 public static final int TEXCO_NORM = 4;
60 public static final int TEXCO_GLOB = 8;
61 public static final int TEXCO_UV = 16;
62 public static final int TEXCO_OBJECT = 32;
63 public static final int TEXCO_LAVECTOR = 64;
64 public static final int TEXCO_VIEW = 128;
65 public static final int TEXCO_STICKY = 256
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleTriMesh.java 103 tvb.setupData(Usage.Static, 2, Format.Float, tb);
130 ivb.setupData(Usage.Static, 3, Format.UnsignedShort, ib);
  /system/core/libutils/
Android.mk 34 Static.cpp \
90 # For the device, static
  /external/chromium_org/v8/tools/
codemap.js 46 * Static code entries. Used for statically compiled code.
51 * Libraries entries. Used for the whole static code libraries.
56 * Map of memory pages occupied with static code.
126 * Adds a static code entry.
183 * Finds a code entry that contains the specified address. Both static and
191 // Static code entries can contain "holes" of unnamed code.
241 * Returns an array of all static code entries.
  /external/llvm/lib/Target/ARM/
ARMSubtarget.cpp 34 static cl::opt<bool>
37 static cl::opt<bool>
47 static cl::opt<AlignMode>
157 // Keep a pointer to static instruction cost data for the specified CPU.
221 if (RelocM == Reloc::Static)
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.cpp 38 static std::string ParseMipsTriple(StringRef TT, StringRef CPU) {
70 static MCInstrInfo *createMipsMCInstrInfo() {
76 static MCRegisterInfo *createMipsMCRegisterInfo(StringRef TT) {
82 static MCSubtargetInfo *createMipsMCSubtargetInfo(StringRef TT, StringRef CPU,
96 static MCAsmInfo *createMipsMCAsmInfo(const MCRegisterInfo &MRI, StringRef TT) {
106 static MCCodeGenInfo *createMipsMCCodeGenInfo(StringRef TT, Reloc::Model RM,
111 RM = Reloc::Static;
118 static MCInstPrinter *createMipsMCInstPrinter(const Target &T,
127 static MCStreamer *createMCStreamer(const Target &T, StringRef TT,
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCTargetDesc.cpp 72 static MCAsmInfo *createSystemZMCAsmInfo(const MCRegisterInfo &MRI,
82 static MCInstrInfo *createSystemZMCInstrInfo() {
88 static MCRegisterInfo *createSystemZMCRegisterInfo(StringRef TT) {
94 static MCSubtargetInfo *createSystemZMCSubtargetInfo(StringRef TT,
102 static MCCodeGenInfo *createSystemZMCCodeGenInfo(StringRef TT, Reloc::Model RM,
107 // Static code is suitable for use in a dynamic executable; there is no
110 RM = Reloc::Static;
149 static MCInstPrinter *createSystemZMCInstPrinter(const Target &T,
158 static MCStreamer *createSystemZMCObjectStreamer(const Target &T, StringRef TT,
  /external/llvm/lib/Target/
TargetMachineC.cpp 96 RM = Reloc::Static;
161 static LLVMBool LLVMTargetMachineEmit(LLVMTargetMachineRef T, LLVMModuleRef M,
  /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/v8/test/cctest/
test-func-name-inference.cc 49 static v8::Persistent<v8::Context> env;
52 static void InitializeVM() {
62 static void CheckFunctionName(v8::Handle<v8::Script> script,
106 static v8::Handle<v8::Script> Compile(const char* src) {
179 TEST(Static) {
  /external/v8/tools/
codemap.js 46 * Static code entries. Used for statically compiled code.
51 * Libraries entries. Used for the whole static code libraries.
56 * Map of memory pages occupied with static code.
126 * Adds a static code entry.
183 * Finds a code entry that contains the specified address. Both static and
191 // Static code entries can contain "holes" of unnamed code.
241 * Returns an array of all static code entries.
  /frameworks/native/libs/binder/
BufferedTextOutput.cpp 26 #include <private/binder/Static.h>
87 static mutex_t gMutex;
89 static thread_store_t tls;
105 static volatile int32_t gSequence = 0;
107 static volatile int32_t gFreeBufferIndex = -1;
109 static int32_t allocBufferIndex()
130 static void freeBufferIndex(int32_t idx)

Completed in 1001 milliseconds

1 23 4 5 6