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

1 23 4 5 6 7 8 910

  /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/llvm/include/llvm/Target/
TargetMachine.h 91 Reloc::Model RM = Reloc::Static;
169 /// Returns the code generation relocation model. The choices are static, PIC,
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMSubtarget.cpp 27 static cl::opt<bool>
31 static cl::opt<bool>
34 static cl::opt<bool>
134 if (RelocM == Reloc::Static)
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 36 static MCInstrInfo *createPPCMCInstrInfo() {
42 static MCRegisterInfo *createPPCMCRegisterInfo(StringRef TT) {
53 static MCSubtargetInfo *createPPCMCSubtargetInfo(StringRef TT, StringRef CPU,
60 static MCAsmInfo *createPPCMCAsmInfo(const Target &T, StringRef TT) {
78 static MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM,
87 RM = Reloc::Static;
94 static MCStreamer *createMCStreamer(const Target &T, StringRef TT,
106 static MCInstPrinter *createPPCMCInstPrinter(const Target &T,
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86TargetMachine.cpp 75 if (getRelocationModel() == Reloc::Static) {
102 static cl::opt<bool>
  /frameworks/compile/libbcc/lib/
CompilerConfig.cpp 182 mRelocModel = llvm::Reloc::Static;
  /frameworks/native/libs/binder/
IServiceManager.cpp 28 #include <private/binder/Static.h>
56 static String16 _permission("permission");
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
161 /// Returns the code generation relocation model. The choices are static, PIC,
  /external/compiler-rt/make/platform/
clang_linux.mk 1 Description := Static runtime libraries for clang/Linux.
  /external/llvm/bindings/ocaml/target/
llvm_target.ml 27 | Static
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUAsmPrinter.cpp 52 static const char *getRegisterName(unsigned RegNo);
266 if (TM.getRelocationModel() != Reloc::Static) {
276 if (TM.getRelocationModel() != Reloc::Static) {
331 // Force static initialization.
  /prebuilts/go/darwin-x86/misc/cgo/test/
basic.go 161 // Static (build-time) test that syntax traversal visits all operands of s[i:j:k].
  /prebuilts/go/linux-x86/misc/cgo/test/
basic.go 161 // Static (build-time) test that syntax traversal visits all operands of s[i:j:k].
  /build/soong/cc/
library.go 27 Static struct {
72 // Build a static variant
78 // This variant is static
108 // Module factory for combined static + shared libraries, device by default but with possible host
115 // Module factory for static libraries
129 // Module factory for host static libraries
196 // functionality: static vs. shared linkage, reusing object files for shared libraries
201 // For reusing static library objects for shared library
264 if library.static() {
265 flags.CFlags = append(flags.CFlags, library.Properties.Static.Cflags...
714 func (library *libraryDecorator) static() bool { func
    [all...]
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DexMakerTest.java 34 import static com.android.dx.util.TestUtil.DELTA_DOUBLE;
35 import static com.android.dx.util.TestUtil.DELTA_FLOAT;
36 import static java.lang.reflect.Modifier.ABSTRACT;
37 import static java.lang.reflect.Modifier.FINAL;
38 import static java.lang.reflect.Modifier.NATIVE;
39 import static java.lang.reflect.Modifier.PRIVATE;
40 import static java.lang.reflect.Modifier.PROTECTED;
41 import static java.lang.reflect.Modifier.PUBLIC;
42 import static java.lang.reflect.Modifier.STATIC;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 280 static MCInstrInfo *createX86MCInstrInfo() {
286 static MCRegisterInfo *createX86MCRegisterInfo(StringRef TT) {
300 static MCAsmInfo *createX86MCAsmInfo(const Target &T, StringRef TT) {
333 static MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM,
343 // use static relocation model by default.
352 RM = Reloc::Static;
356 // is defined as a model for code which may be used in static or dynamic
358 // compile in -static mode, in x86-64 we use PIC.
363 RM = Reloc::Static;
366 // If we are on Darwin, disallow static relocation model in X86-64 mode, sinc
    [all...]
  /art/build/
codegen.go 115 Static struct {
  /external/google-breakpad/
Android.mk 17 # Static library.

Completed in 1666 milliseconds

1 23 4 5 6 7 8 910