Home
last modified time | relevance | path

Searched refs:Lit (Results 1 – 25 of 26) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/libcxx/utils/ci/runtimes/
H A DCMakeLists.txt21 # This needs to be set before we add any Lit target for `add_lit_target` to
22 # select the right Lit to run the tests.
32 # Override the external Lit to make sure we use the one we generate below.
33 # TODO: We can remove this once we start relying on the in-tree version of Lit
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DOSLog.cpp203 const StringLiteral *Lit = cast<StringLiteral>(StringArg->IgnoreParenCasts()); in computeOSLogBufferLayout() local
204 assert(Lit && (Lit->isAscii() || Lit->isUTF8())); in computeOSLogBufferLayout()
205 StringRef Data = Lit->getString(); in computeOSLogBufferLayout()
H A DExpr.cpp2273 const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(getInit(0)->IgnoreImplicit()); in isIdiomaticZeroInitializer() local
2274 return Lit && Lit->getValue() == 0; in isIdiomaticZeroInitializer()
3782 const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(this); in isNullPointerConstant() local
3783 if (Lit && !Lit->getValue()) in isNullPointerConstant()
H A DExprConstant.cpp3361 static APSInt extractStringLiteralCharacter(EvalInfo &Info, const Expr *Lit, in extractStringLiteralCharacter() argument
3363 assert(!isa<SourceLocExpr>(Lit) && in extractStringLiteralCharacter()
3367 if (const auto *ObjCEnc = dyn_cast<ObjCEncodeExpr>(Lit)) { in extractStringLiteralCharacter()
3374 if (auto PE = dyn_cast<PredefinedExpr>(Lit)) in extractStringLiteralCharacter()
3375 Lit = PE->getFunctionName(); in extractStringLiteralCharacter()
3376 const StringLiteral *S = cast<StringLiteral>(Lit); in extractStringLiteralCharacter()
4230 APValue Lit; in handleLValueToRValueConversion() local
4231 if (!Evaluate(Lit, Info, CLE->getInitializer())) in handleLValueToRValueConversion()
4233 CompleteObject LitObj(LVal.Base, &Lit, Base->getType()); in handleLValueToRValueConversion()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseObjc.cpp2797 ExprResult Lit(Actions.ActOnNumericConstant(Tok)); in ParseObjCAtExpression() local
2798 if (Lit.isInvalid()) { in ParseObjCAtExpression()
2799 return Lit; in ParseObjCAtExpression()
2803 Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.get()); in ParseObjCAtExpression()
2804 if (Lit.isInvalid()) in ParseObjCAtExpression()
2805 return Lit; in ParseObjCAtExpression()
2808 Actions.BuildObjCNumericLiteral(AtLoc, Lit.get())); in ParseObjCAtExpression()
3338 ExprResult Lit(ParseStringLiteralExpression()); in ParseObjCStringLiteral() local
3339 if (Lit.isInvalid()) in ParseObjCStringLiteral()
3340 return Lit; in ParseObjCStringLiteral()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/shtest-not/
H A Dnot-calls-diff-with-crash.txt1 # Lit's diff is out-of-process, so check that "not --crash diff" fails because
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/
H A DCMakeLists.txt11 # Lit's test suite creates output files next to the sources which makes the
/netbsd-src/external/apache2/llvm/dist/llvm/utils/release/
H A Dtest-release.sh444 cmake $TestSuiteSrcDir -G "$generator" -DTEST_SUITE_LIT=$Lit
512 Lit=$SandboxDir/bin/lit
/netbsd-src/external/apache2/llvm/dist/libcxx/docs/
H A DTestingLibcxx.rst20 Please see the `Lit Command Guide`_ for more information about LIT.
156 This impacts whether the ``use_system_cxx_lib`` Lit feature is defined or
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DProjects.rst89 :doc:`Lit <CommandGuide/lit>` testing tool. This test procedure uses ``RUN``
H A DTestingGuide.rst60 the :doc:`Lit <CommandGuide/lit>` testing tool (which is part of LLVM), and
212 only directories does not need the ``lit.local.cfg`` file. Read the :doc:`Lit
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp1849 StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(), in ActOnStringLiteral() local
1854 return Lit; in ActOnStringLiteral()
1883 /*DiagnoseMissing*/ true, Lit)) { in ActOnStringLiteral()
1889 Expr *Args[] = { Lit, LenArg }; in ActOnStringLiteral()
1896 TemplateArgument Arg(Lit); in ActOnStringLiteral()
1897 TemplateArgumentLocInfo ArgInfo(Lit); in ActOnStringLiteral()
1914 for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) { in ActOnStringLiteral()
1915 Value = Lit->getCodeUnit(I); in ActOnStringLiteral()
3562 Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, in ActOnCharacterConstant() local
3566 return Lit; in ActOnCharacterConstant()
[all …]
H A DSemaDeclCXX.cpp15850 StringLiteral *Lit = cast<StringLiteral>(LangStr); in ActOnStartLinkageSpecification() local
15851 if (!Lit->isAscii()) { in ActOnStartLinkageSpecification()
15857 StringRef Lang = Lit->getString(); in ActOnStartLinkageSpecification()
/netbsd-src/external/apache2/llvm/dist/libcxx/
H A DCMakeLists.txt129 "The Lit testing configuration to use when running the tests.")
131 "A list of parameters to run the Lit test suite with.")
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp2827 uint64_t Lit = cast<ConstantFPSDNode>(Lo)->getValueAPF() in SelectVOP3PMods() local
2829 if (AMDGPU::isInlinableLiteral32(Lit, Subtarget->hasInv2PiInlineImm())) { in SelectVOP3PMods()
2830 Src = CurDAG->getTargetConstant(Lit, SDLoc(In), MVT::i64);; in SelectVOP3PMods()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2477 Node *parseIntegerLiteral(StringView Lit);
4099 AbstractManglingParser<Derived, Alloc>::parseIntegerLiteral(StringView Lit) { in parseIntegerLiteral() argument
4102 return make<IntegerLiteral>(Lit, Tmp); in parseIntegerLiteral()
/netbsd-src/external/apache2/llvm/dist/clang/
H A DCMakeLists.txt165 # Seek installed Lit.
/netbsd-src/external/gpl3/binutils/dist/zlib/doc/
H A Drfc1951.txt661 Lit Value Bits Codes
/netbsd-src/external/gpl3/binutils.old/dist/zlib/doc/
H A Drfc1951.txt661 Lit Value Bits Codes
/netbsd-src/external/gpl3/gdb.old/dist/zlib/doc/
H A Drfc1951.txt661 Lit Value Bits Codes
/netbsd-src/external/gpl3/gdb/dist/zlib/doc/
H A Drfc1951.txt661 Lit Value Bits Codes
/netbsd-src/common/dist/zlib/doc/
H A Drfc1951.txt661 Lit Value Bits Codes
/netbsd-src/external/apache2/llvm/dist/llvm/cmake/modules/
H A DHandleLLVMOptions.cmake1197 # Lit test suite requires at least python 3.6
H A DAddLLVM.cmake1577 # common variables that any Lit instance is likely to need, and custom
/netbsd-src/external/gpl3/binutils/dist/binutils/po/
H A Dfr.po14057 " -a --ascii_in Lit le fichier d'entrée en ASCII\n"
14066 " -u --unicode_in Lit le fichier d'entrée en UTF16\n"

12