HomeSort by: relevance | last modified time | path
    Searched defs:Feature (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
TargetID.cpp 63 // delimited by colon. Each target feature is a string post-fixed by a plus
89 auto Feature = Splits.first.drop_back();
93 auto Loc = FeatureMap->find(Feature);
94 // Each feature can only show up at most once in target ID.
97 (*FeatureMap)[Feature] = IsOn;
141 // For a specific processor, a feature either shows up in all target IDs, or
  /src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
dsl.py 205 Return a dictionary of feature test macros.
207 The keys are strings representing feature test macros, and the values are
272 This action defines the given Lit feature when running the test suite.
274 The name of the feature can be a string or a callable, in which case it is
275 called with the configuration to produce the feature name (as a string).
283 raise ValueError("Lit feature did not resolve to a string (got {})".format(name))
290 return 'add Lit feature {}'.format(self._getName(config))
430 class Feature(object):
432 Represents a Lit available feature that is enabled whenever it is supported.
434 A feature like this informs the test suite about a capability of the compiler
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.cpp 176 for (auto Feature : File.Features)
177 OS << " " << Feature;
246 TPC.CollectFeatures([&](size_t Feature) {
247 if (AllFeatures.insert(Feature).second)
248 UniqFeatures.insert(Feature);
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
Sparc.h 1 //===--- Sparc.h - declare sparc target feature support ---------*- C++ -*-===//
42 auto Feature = llvm::find(Features, "+soft-float");
43 if (Feature != Features.end()) {
51 bool hasFeature(StringRef Feature) const override;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ARMTargetParser.h 77 const char *Feature;
84 #define ARM_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \
85 {NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE},
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
wasm2yaml.cpp 178 WasmYAML::FeatureEntry Feature;
179 Feature.Prefix = E.Prefix;
180 Feature.Name = E.Name;
181 TargetFeaturesSec->Features.push_back(Feature);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 821 wasm::WasmFeatureEntry Feature;
822 Feature.Prefix = readUint8(Ctx);
823 switch (Feature.Prefix) {
829 return make_error<GenericBinaryError>("unknown feature policy prefix",
832 Feature.Name = std::string(readString(Ctx));
833 if (!FeaturesSeen.insert(Feature.Name).second)
835 "target features section contains repeated feature \"" +
836 Feature.Name + "\"",
838 TargetFeatures.push_back(Feature);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
ModuleMap.cpp 2184 /// Whether to add the requirement \p Feature to the module \p M.
2190 /// should really be mapped to 'textual' now that we have this feature. We
2199 static bool shouldAddRequirement(Module *M, StringRef Feature,
2201 if (Feature == "excluded" &&
2206 } else if (Feature == "cplusplus" && M->fullModuleNameIs({"IOKit", "avc"})) {
2216 /// 'requires' feature-list
2218 /// feature-list:
2219 /// feature ',' feature-list
2220 /// feature
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 339 // Sanitizer feature mismatches are treated as compatible differences. If
401 // Compare feature sets.
420 // If we are allowing compatible differences and the read feature set is
421 // a strict subset of the existing feature set, there is nothing to diagnose.
426 for (StringRef Feature : UnmatchedReadFeatures)
428 << /* is-existing-feature */ false << Feature;
429 for (StringRef Feature : UnmatchedExistingFeatures)
431 << /* is-existing-feature */ true << Feature;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 4988 /// anonymous structure or union. Anonymous unions are a C++ feature
4989 /// (C++ [class.union]) and a C11 feature; anonymous structures
4990 /// are a C11 feature and GNU C++ extension.
10146 enum ErrType { Feature = 0, Architecture = 1 };
10159 << Feature << ("no-" + BareFeat).str();
10166 << Feature << BareFeat;

Completed in 2186 milliseconds