/external/jsoncpp/include/json/ |
H A D | features.h | 19 class JSON_API Features class in namespace:Json 27 static Features all(); 34 static Features strictMode(); 38 Features();
|
/external/clang/include/clang/Basic/ |
H A D | TargetOptions.h | 47 std::vector<std::string> Features; member in class:clang::TargetOptions
|
/external/llvm/include/llvm/MC/ |
H A D | SubtargetFeature.h | 64 /// specific features. Features are encoded as a string of the form 73 std::vector<std::string> Features; // Subtarget features as a vector member in class:llvm::SubtargetFeatures 77 /// Features string accessors. 80 /// Adding Features.
|
/external/llvm/lib/ExecutionEngine/ |
H A D | TargetSelect.cpp | 85 SubtargetFeatures Features; local 87 Features.AddFeature(MAttrs[i]); 88 FeaturesStr = Features.getString();
|
/external/llvm/lib/MC/ |
H A D | MCSubtargetInfo.cpp | 26 SubtargetFeatures Features(FS); 27 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, ProcFeatures); 75 SubtargetFeatures Features; local 76 FeatureBits = Features.ToggleFeature(FeatureBits, FS, ProcFeatures);
|
/external/chromium_org/v8/src/compiler/ |
H A D | instruction-selector.h | 26 class Features; 30 Features features = SupportedFeatures()); 65 class Features FINAL { 67 Features() : bits_(0) {} function in class:v8::internal::compiler::FINAL::FINAL 68 explicit Features(unsigned bits) : bits_(bits) {} function in class:v8::internal::compiler::FINAL::FINAL 69 explicit Features(CpuFeature f) : bits_(1u << f) {} function in class:v8::internal::compiler::FINAL::FINAL 70 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {} function in class:v8::internal::compiler::FINAL::FINAL 83 static Features SupportedFeatures() { 84 return Features(CpuFeatures::SupportedFeatures()); 202 Features features [all...] |
/external/clang/lib/CodeGen/ |
H A D | CodeGenTBAA.h | 51 const LangOptions &Features; member in class:clang::CodeGen::CodeGenTBAA 97 const LangOptions &Features,
|
H A D | CodeGenTBAA.cpp | 34 const LangOptions &Features, MangleContext &MContext) 35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext), 134 createTBAAScalarType(BTy->getName(Features), getChar()); 152 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible()) 270 if (Features.CPlusPlus) { 32 CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext& VMContext, const CodeGenOptions &CGO, const LangOptions &Features, MangleContext &MContext) argument
|
H A D | BackendUtil.cpp | 392 if (TargetOpts.Features.size()) { 393 SubtargetFeatures Features; local 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/ |
H A D | llc.cpp | 264 SubtargetFeatures Features; local 266 Features.AddFeature(MAttrs[i]); 267 FeaturesStr = Features.getString();
|
/external/chromium_org/remoting/webapp/background/ |
H A D | it2me_helper_channel.js | 127 remoting.It2MeHelperChannel.Features = { 164 supportedFeatures: base.values(remoting.It2MeHelperChannel.Features)
|
H A D | it2me_helpee_channel.js | 120 remoting.It2MeHelpeeChannel.Features = { 174 supportedFeatures: base.values(remoting.It2MeHelpeeChannel.Features)
|
/external/llvm/lib/Support/ |
H A D | Host.cpp | 692 bool sys::getHostCPUFeatures(StringMap<bool> &Features) { argument 700 // Read 1024 bytes from /proc/cpuinfo, which should contain the Features line 715 if (Lines[I].startswith("Features")) { 762 Features.GetOrCreateValue(LLVMFeatureStr).setValue(true); 768 Features.GetOrCreateValue("crypto").setValue(true); 774 bool sys::getHostCPUFeatures(StringMap<bool> &Features){ argument
|
/external/llvm/lib/Target/ |
H A D | TargetMachineC.cpp | 107 const char* Triple, const char* CPU, const char* Features, 145 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM, 106 LLVMCreateTargetMachine(LLVMTargetRef T, const char* Triple, const char* CPU, const char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, LLVMCodeModel CodeModel) argument
|
/external/llvm/tools/llvm-mc/ |
H A D | llvm-mc.cpp | 432 SubtargetFeatures Features; local 434 Features.AddFeature(MAttrs[i]); 435 FeaturesStr = Features.getString();
|
/external/clang/include/clang/Lex/ |
H A D | LiteralSupport.h | 185 const LangOptions &Features; member in class:clang::StringLiteralParser 205 : SM(sm), Features(features), Target(target), Diags(diags),
|
/external/clang/tools/driver/ |
H A D | cc1as_main.cpp | 79 std::vector<std::string> Features; member in struct:__anon19495::AssemblerInvocation 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/ |
H A D | MipsTargetStreamer.cpp | 251 uint64_t Features = STI.getFeatureBits(); local 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 327 uint64_t Features = STI.getFeatureBits(); local [all...] |
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/ |
H A D | json_reader.cpp | 26 // Implementation of class Features 29 Features::Features() function in class:Json::Features 36 Features 37 Features::all() 39 return Features(); 43 Features 44 Features::strictMode() 46 Features features; 92 features_( Features [all...] |
/external/clang/lib/Lex/ |
H A D | LiteralSupport.cpp | 45 static CharSourceRange MakeCharSourceRange(const LangOptions &Features, argument 52 TokLoc.getManager(), Features); 55 TokLoc.getManager(), Features); 65 const LangOptions &Features, FullSourceLoc TokLoc, 70 TokLoc.getManager(), Features); 72 MakeCharSourceRange(Features, TokLoc, TokBegin, TokRangeBegin, TokRangeEnd); 82 const LangOptions &Features) { 105 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 111 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, 134 Diag(Diags, Features, Lo 64 Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID) argument 77 ProcessCharEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, bool &HadError, FullSourceLoc Loc, unsigned CharWidth, DiagnosticsEngine *Diags, const LangOptions &Features) argument 259 ProcessUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, uint32_t &UcnVal, unsigned short &UcnLen, FullSourceLoc Loc, DiagnosticsEngine *Diags, const LangOptions &Features, bool in_char_string_literal = false) argument 331 MeasureUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, unsigned CharByteWidth, const LangOptions &Features, bool &HadError) argument 366 EncodeUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, char *&ResultBuf, bool &HadError, FullSourceLoc Loc, unsigned CharByteWidth, DiagnosticsEngine *Diags, const LangOptions &Features) argument [all...] |
/external/jsoncpp/src/lib_json/ |
H A D | json_reader.cpp | 24 // Implementation of class Features 27 Features::Features() function in class:Json::Features 34 Features 35 Features::all() 37 return Features(); 41 Features 42 Features::strictMode() 44 Features features; 90 features_( Features [all...] |
/external/llvm/bindings/ocaml/target/ |
H A D | target_ocaml.c | 283 value Features, value OptLevel, value RelocMode, 293 if(Features != Val_int(0)) 294 FeaturesStr = String_val(Field(Features, 0)); 282 llvm_create_targetmachine_native(value Triple, value CPU, value Features, value OptLevel, value RelocMode, value CodeModel, LLVMTargetRef Target) argument
|
/external/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.cpp | 284 SubtargetFeatures Features; local 286 Features.AddFeature(MAttrs[i]); 287 FeaturesStr = Features.getString();
|
/external/llvm/include/llvm/Support/ |
H A D | TargetRegistry.h | 93 StringRef Features); 97 StringRef Features, 331 /// \param Features This specifies the string representation of the 334 StringRef Features) const { 337 return MCSubtargetInfoCtorFn(Triple, CPU, Features); 348 StringRef Features, const TargetOptions &Options, 354 return TargetMachineCtorFn(*this, Triple, CPU, Features, Options, 347 createTargetMachine(StringRef Triple, StringRef CPU, StringRef Features, const TargetOptions &Options, Reloc::Model RM = Reloc::Default, CodeModel::Model CM = CodeModel::Default, CodeGenOpt::Level OL = CodeGenOpt::Default) const argument
|
/external/llvm/utils/TableGen/ |
H A D | SubtargetEmitter.cpp | 256 Processor->getValueAsListOfDefs("Features"); 1378 std::vector<Record*> Features = local 1380 std::sort(Features.begin(), Features.end(), LessRecord()); 1390 if (Features.empty()) { 1398 for (unsigned i = 0; i < Features.size(); i++) { 1400 Record *R = Features[i];
|