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

1 2 3 4

  /external/jsoncpp/include/json/
features.h 19 class JSON_API Features
22 /** \brief A configuration that allows all features and assumes all strings are UTF-8.
27 static Features all();
34 static Features strictMode();
38 Features();
  /external/clang/include/clang/Basic/
TargetOptions.h 42 /// \brief The list of target specific features to enable or disable, as written on the command line.
45 /// The list of target specific features to enable or disable -- this should
47 std::vector<std::string> Features;
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 40 /// arch. Add any CPU features specified via -mcpu or -mattr.
82 // Package up features to be passed to target/subtarget
85 SubtargetFeatures Features;
87 Features.AddFeature(MAttrs[i]);
88 FeaturesStr = Features.getString();
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 11 // The intent is to be able to package specific features that should or should
13 // as example, gather chip info from the command line, a long with features
64 /// specific features. Features are encoded as a string of the form
67 /// Each of the remaining features is prefixed with + or - indicating whether
73 std::vector<std::string> Features; // Subtarget features as a vector
77 /// Features string accessors.
80 /// Adding Features.
99 /// Adds the default features for the specified target triple
    [all...]
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 26 SubtargetFeatures Features(FS);
27 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, ProcFeatures);
75 SubtargetFeatures Features;
76 FeatureBits = Features.ToggleFeature(FeatureBits, FS, ProcFeatures);
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 51 const LangOptions &Features;
97 const LangOptions &Features,
BackendUtil.cpp 392 if (TargetOpts.Features.size()) {
393 SubtargetFeatures Features;
395 it = TargetOpts.Features.begin(),
396 ie = TargetOpts.Features.end(); it != ie; ++it)
397 Features.AddFeature(*it);
398 FeaturesStr = Features.getString();
  /external/llvm/tools/llc/
llc.cpp 261 // Package up features to be passed to target/subtarget
264 SubtargetFeatures Features;
266 Features.AddFeature(MAttrs[i]);
267 FeaturesStr = Features.getString();
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 429 // Package up features to be passed to target/subtarget
432 SubtargetFeatures Features;
434 Features.AddFeature(MAttrs[i]);
435 FeaturesStr = Features.getString();
  /frameworks/compile/slang/
slang_backend.cpp 157 if (mTargetOpts.CPU.size() || mTargetOpts.Features.size()) {
158 llvm::SubtargetFeatures Features;
161 I = mTargetOpts.Features.begin(), E = mTargetOpts.Features.end();
164 Features.AddFeature(*I);
166 FeaturesStr = Features.getString();
  /external/clang/tools/driver/
cc1as_main.cpp 77 /// The list of target specific features to enable or disable -- this should
79 std::vector<std::string> Features;
185 Opts.Features = Args->getAllArgValues(OPT_target_feature);
345 if (!Opts.Features.empty()) {
346 FS = Opts.Features[0];
347 for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i)
348 FS += "," + Opts.Features[i];
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsTargetStreamer.cpp 251 uint64_t Features = STI.getFeatureBits();
261 if (Features & Mips::FeatureMips64r6)
263 else if (Features & Mips::FeatureMips64r2)
265 else if (Features & Mips::FeatureMips64)
267 else if (Features & Mips::FeatureMips5)
269 else if (Features & Mips::FeatureMips4)
271 else if (Features & Mips::FeatureMips3)
273 else if (Features & Mips::FeatureMips32r6)
275 else if (Features & Mips::FeatureMips32r2)
277 else if (Features & Mips::FeatureMips32
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 34 // Implementation of class Features
37 Features::Features()
44 Features
45 Features::all()
47 return Features();
51 Features
52 Features::strictMode()
54 Features features; local
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 185 const LangOptions &Features;
202 const SourceManager &sm, const LangOptions &features,
205 : SM(sm), Features(features), Target(target), Diags(diags),
  /external/jsoncpp/src/lib_json/
json_reader.cpp 24 // Implementation of class Features
27 Features::Features()
34 Features
35 Features::all()
37 return Features();
41 Features
42 Features::strictMode()
44 Features features; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 281 // Package up features to be passed to target/subtarget
284 SubtargetFeatures Features;
286 Features.AddFeature(MAttrs[i]);
287 FeaturesStr = Features.getString();
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/mtd/
cfi.h 112 uint8_t Features;

Completed in 645 milliseconds

1 2 3 4