HomeSort by relevance Sort by last modified time
    Searched defs:FS (Results 1 - 25 of 295) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
pp.py 27 FS = ''
52 FS = optarg
99 ' \t \t \tif FS: F = L.split(FS)',
105 ' \t \t \tif FS: print FS.join(F)',
  /external/clang/lib/Analysis/
FormatStringParsing.h 47 bool ParseLengthModifier(FormatSpecifier &FS, const char *&Beg, const char *E,
57 T FS;
64 const T &fs)
65 : FS(fs), Start(start), Stop(false) {}
72 return FS;
74 const T &getValue() { return FS; }
ScanfFormatString.cpp 112 ScanfSpecifier FS;
113 if (ParseArgPosition(H, FS, Start, I, E))
124 FS.setSuppressAssignment(I);
136 FS.setFieldWidth(Amt);
146 if (ParseLengthModifier(FS, I, E, LO, /*scanf=*/true) && I == E) {
206 FS.setConversionSpecifier(CS);
207 if (CS.consumesDataArgument() && !FS.getSuppressAssignment()
208 && !FS.usesPositionalArg())
209 FS.setArgIndex(argIndex++);
218 FS.setConversionSpecifier(CS)
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.cpp 139 StringRef CPU, StringRef FS,
151 TT, CPU, FS, Options, getEffectiveRelocModel(RM), CM,
168 std::string FS = !FSAttr.hasAttribute(Attribute::None)
172 auto &I = SubtargetMap[CPU + FS];
178 I = llvm::make_unique<HexagonSubtarget>(TargetTriple, CPU, FS, *this);
  /external/python/cpython2/Demo/scripts/
pp.py 27 FS = ''
52 FS = optarg
99 ' \t \t \tif FS: F = L.split(FS)',
105 ' \t \t \tif FS: print FS.join(F)',
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.cpp 193 StringRef CPU, StringRef FS,
199 CPU, FS, Options, getEffectiveRelocModel(TT, RM), CM,
203 Subtarget(TT, CPU, FS, *this, isLittle), isLittle(isLittle) {
231 std::string FS = !FSAttr.hasAttribute(Attribute::None)
245 FS += FS.empty() ? "+soft-float" : ",+soft-float";
247 auto &I = SubtargetMap[CPU + FS];
253 I = llvm::make_unique<ARMSubtarget>(TargetTriple, CPU, FS, *this, isLittle);
267 StringRef CPU, StringRef FS,
272 : ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, isLittle)
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyTargetMachine.cpp 51 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
57 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
83 std::string FS = !FSAttr.hasAttribute(Attribute::None)
87 auto &I = SubtargetMap[CPU + FS];
93 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 148 StringRef CPU, StringRef FS,
152 : LLVMTargetMachine(T, computeDataLayout(TT), TT, CPU, FS, Options,
155 Subtarget(TT, CPU, FS, *this, Options.StackAlignmentOverride) {
188 StringRef FS = !FSAttr.hasAttribute(Attribute::None)
193 Key.reserve(CPU.size() + FS.size());
195 Key += FS;
207 Key += FS.empty() ? "+soft-float" : ",+soft-float";
209 FS = Key.substr(CPU.size());
217 I = llvm::make_unique<X86Subtarget>(TargetTriple, CPU, FS, *this,
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Solaris.h 23 #undef FS
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/Solaris/sys/
regset.h 22 #undef FS
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
reg.h 34 #define FS 9
  /external/clang/utils/
modfuzz.py 42 class FS:
44 self.fs = {}
48 self.fs[path] = contents
51 for f, s in self.fs.items():
58 if f not in self.fs:
61 self.prevfs, self.fs = self.fs, {}
63 fs = FS() variable
77 fs.write('module.modulemap'
    [all...]
  /external/llvm/include/llvm/Support/
Solaris.h 32 #undef FS
  /external/llvm/lib/Target/Sparc/
SparcTargetMachine.cpp 65 StringRef CPU, StringRef FS,
70 : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options,
73 Subtarget(TT, CPU, FS, *this, is64bit), is64Bit(is64bit) {
87 std::string FS = !FSAttr.hasAttribute(Attribute::None)
99 FS += FS.empty() ? "+soft-float" : ",+soft-float";
101 auto &I = SubtargetMap[CPU + FS];
107 I = llvm::make_unique<SparcSubtarget>(TargetTriple, CPU, FS, *this,
187 StringRef CPU, StringRef FS,
192 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 47 std::string FS;
49 FS = "+64bit-mode";
51 FS = "-64bit-mode";
53 FS += ",+nacl-mode";
55 FS += ",-nacl-mode";
56 return FS;
208 case X86::FS: return 4;
257 StringRef FS) {
259 if (!FS.empty()) {
261 ArchFS = ArchFS + "," + FS.str()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Solaris.h 32 #undef FS
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Solaris.h 32 #undef FS
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Solaris.h 32 #undef FS

Completed in 1438 milliseconds

1 2 3 4 5 6 7 8 91011>>