HomeSort by: relevance | last modified time | path
    Searched refs:Auto (Results 1 - 25 of 75) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
WithColor.h 42 Auto,
63 ColorMode Mode = ColorMode::Auto);
74 ColorMode Mode = ColorMode::Auto)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
WithColor.cpp 74 DisableColors ? ColorMode::Disable : ColorMode::Auto)
84 DisableColors ? ColorMode::Disable : ColorMode::Auto)
94 DisableColors ? ColorMode::Disable : ColorMode::Auto)
104 DisableColors ? ColorMode::Disable : ColorMode::Auto)
115 case ColorMode::Auto:
SourceMgr.cpp 78 auto *Offsets = new std::vector<T>();
185 auto &SB = getBufferInfo(BufferID);
206 auto BufferID = FindBufferContainingLoc(Loc);
208 auto FileSpec = getBufferInfo(BufferID).Buffer->getBufferIdentifier();
213 auto I = FileSpec.find_last_of("/\\");
224 auto &SB = getBufferInfo(BufferID);
475 ColorMode Mode = ShowColors ? ColorMode::Auto : ColorMode::Disable;
560 ColorMode Mode = ShowColors ? ColorMode::Auto : ColorMode::Disable;
  /src/external/gpl3/gcc/dist/libgcc/config/avr/libf7/
f7renames.sh 19 Auto-generated file, do not change by hand.
f7wraps.sh 39 ;; Auto-generated file, do not change by hand.
  /src/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
f7renames.sh 19 Auto-generated file, do not change by hand.
f7wraps.sh 39 ;; Auto-generated file, do not change by hand.
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxfilt/
llvm-cxxfilt.cpp 22 Auto, ///< auto-detect mangling
34 cl::values(clEnumValN(Auto, "auto", "auto-detect style"),
36 cl::init(Auto));
118 const auto Head = Source.begin();
121 auto Start = std::find_if(Head, Source.end(), IsLegalChar);
128 auto End = std::find_if_not(Start, Source.end(), IsLegalChar);
129 auto DEnd = std::find_if(End, Source.end(), IsLegalChar)
    [all...]
  /src/external/bsd/zstd/dist/contrib/pzstd/
Options.h 25 enum class WriteMode { Regular, Auto, Sparse };
Options.cpp 105 overwrite(false), keepSource(true), writeMode(WriteMode::Auto),
304 const auto it = std::find(localInputFiles.begin(), localInputFiles.end(),
345 auto guard =
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPConstants.h 41 constexpr auto Enum = omp::InternalControlVar::Enum;
50 constexpr auto Enum = omp::ICVInitValue::Enum;
59 #define OMP_RTL(Enum, ...) constexpr auto Enum = omp::RuntimeFunction::Enum;
69 constexpr auto Enum = omp::DefaultKind::Enum;
80 #define OMP_IDENT_FLAG(Enum, ...) constexpr auto Enum = omp::IdentFlag::Enum;
118 Auto = 38, // auto
  /src/external/bsd/wpa/dist/src/eapol_auth/
eapol_auth_sm_i.h 17 typedef enum { ForceUnauthorized = 1, ForceAuthorized = 3, Auto = 2 }
eapol_auth_sm.c 201 sm->portMode = Auto;
394 if ((sm->portControl == Auto && sm->portMode != sm->portControl) ||
560 if (sm->portControl != Auto || sm->initialize || sm->authAbort) {
645 if (sm->portControl != Auto || sm->initialize ||
686 if (sm->initialize || sm->portControl != Auto) {
831 sm->portControl = Auto;
1135 else if (os_strcmp(value, "Auto") == 0)
1136 sm->portControl = Auto;
eapol_auth_dump.c 21 case Auto: return "Auto";
  /src/external/bsd/bc/dist/
bc.y 98 /* 'scale', 'ibase', 'obase', 'auto', 'read', 'random' */
99 %token <i_value> Scale Ibase Obase Auto Read Random
349 /* Check auto list against parameter list? */
386 | Auto define_list ENDOFLINE
388 | Auto define_list ';'
scan.l 235 auto return(Auto);
  /src/external/bsd/wpa/dist/src/eapol_supp/
eapol_supp_sm.h 17 typedef enum { Auto, ForceUnauthorized, ForceAuthorized } PortControl;
eapol_supp_sm.c 235 sm->sPortMode = Auto;
370 else if (((sm->portControl == Auto) &&
1089 case Auto:
1090 return "Auto";
2128 sm->portControl = Auto;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 114 TKCASE(Auto);
131 if (auto *ATT = T->getAs<AttributedType>()) {
139 if (auto *PTT = T->getAs<ParenType>()) {
180 if (const auto *Specialization = Type->getAs<TemplateSpecializationType>())
183 if (const auto *RecordDecl = Type->getAsCXXRecordDecl()) {
184 const auto *TemplateDecl =
202 for (const auto &A : TA) {
468 case Type::Auto:
516 case Type::Auto:
607 TKIND(Auto);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 252 for (auto *Attr : ignoredTypeAttrs)
267 /// Completely replace the \c auto in \p TypeWithAuto by
272 if (auto *AttrTy = TypeWithAuto->getAs<AttributedType>()) {
274 auto *NewAttrTy = cast<AttributedType>(T.getTypePtr());
293 for (auto It = std::partition_point(
309 auto FoundLoc = LocsForMacros.find(MQT);
842 const auto *objcObjectType = type->getAs<ObjCObjectType>();
893 if (auto attr = qual.getAs<AttributedTypeLoc>()) {
942 if (const auto *typeArgObjC = typeArg->getAs<ObjCObjectPointerType>()) {
953 const auto *boundObjC = bound->getAs<ObjCObjectPointerType>()
    [all...]
  /src/external/bsd/zstd/dist/contrib/pzstd/test/
OptionsTest.cpp 42 for (const auto &file : opt.inputFiles) {
76 constexpr auto autoMode = Options::WriteMode::Auto;
91 auto args = makeArray("--processes", "5", "-o", "x", "y", "-f");
99 auto args = makeArray("-p", "1", "input", "-19");
107 auto args =
116 auto args = makeArray("--processes", "100", "hello.zst", "--decompress",
125 auto args = makeArray("x", "-dp", "1", "-c");
133 auto args = makeArray("x", "-dp", "1", "--stdout");
141 auto args = makeArray("-p", "1", "x", "-5", "-fo", "-", "--ultra", "-d")
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/nios2/
nios2-ldstwm.sml 0 (* Auto-generate Nios II R2 CDX ldwm/stwm/push.n/pop.n patterns
  /src/external/gpl3/gcc.old/dist/gcc/config/nios2/
nios2-ldstwm.sml 0 (* Auto-generate Nios II R2 CDX ldwm/stwm/push.n/pop.n patterns
  /src/external/apache2/llvm/dist/clang/lib/AST/
TypePrinter.cpp 204 if (const auto *AT = dyn_cast<AutoType>(T))
206 if (const auto *Subst = dyn_cast<SubstTemplateTypeParmType>(T))
210 case Type::Auto:
277 const auto *AttrTy = cast<AttributedType>(T);
291 if (const auto *Subst = dyn_cast<SubstTemplateTypeParmType>(Split.Ty))
415 if (auto *Ref = T->getAs<ReferenceType>())
831 OS << "auto ";
870 auto EPI = T->getExtParameterInfo(i);
874 auto ABI = EPI.getABI();
1123 // If the type has been deduced, do not print 'auto'
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/arm/
arm-ldmstm.ml 0 (* Auto-generate ARM ldm/stm patterns

Completed in 40 milliseconds

1 2 3