reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
docs/CommandLine.rst
 1641   struct FileSizeParser : public cl::parser<unsigned> {
 1642     // parse - Return true on error.
 1643     bool parse(cl::Option &O, StringRef ArgName, const std::string &ArgValue,
include/llvm-c/lto.h
  369  * Add an object module to the set of modules for which code will be generated.
  370  * Returns true on error (check lto_get_error_message() for details).
  371  *
include/llvm-c/lto.h
  393  * Sets if debug info should be generated.
  394  * Returns true on error (check lto_get_error_message() for details).
  395  *
include/llvm-c/lto.h
  402  * Sets which PIC code model to generated.
  403  * Returns true on error (check lto_get_error_message() for details).
  404  *
include/llvm-c/lto.h
  448  * merged contents of all modules added so far.
  449  * Returns true on error (check lto_get_error_message() for details).
  450  *
include/llvm-c/lto.h
  475  *
  476  * The name of the file is written to name. Returns true on error.
  477  *
include/llvm-c/lto.h
  483 /**
  484  * Runs optimization for the merged module. Returns true on error.
  485  *
include/llvm-c/lto.h
  713  * Sets which PIC code model to generate.
  714  * Returns true on error (check lto_get_error_message() for details).
  715  *
include/llvm/AsmParser/Parser.h
  164 ///              parsing.
  165 /// \return true on error.
  166 /// \param UpgradeDebugInfo Run UpgradeDebugInfo, which runs the Verifier.
include/llvm/Demangle/Demangle.h
   63   /// implicitly operate on the AST this produces.
   64   /// \return true on error, false otherwise
   65   bool partialDemangle(const char *MangledName);
include/llvm/IR/Intrinsics.h
  189   ///
  190   /// This method returns true on error.
  191   bool matchIntrinsicVarArg(bool isVarArg, ArrayRef<IITDescriptor> &Infos);
include/llvm/Linker/Linker.h
   44   ///
   45   /// Returns true on error.
   46   bool linkInModule(std::unique_ptr<Module> Src, unsigned Flags = Flags::None,
include/llvm/Support/CommandLine.h
  791 
  792   // parse - Return true on error.
  793   bool parse(Option &O, StringRef ArgName, StringRef Arg, DataType &V) {
include/llvm/Support/CommandLine.h
  885 
  886   // parse - Return true on error.
  887   bool parse(Option &O, StringRef ArgName, StringRef Arg, bool &Val);
include/llvm/Support/CommandLine.h
  912 
  913   // parse - Return true on error.
  914   bool parse(Option &O, StringRef ArgName, StringRef Arg, boolOrDefault &Val);
include/llvm/Support/CommandLine.h
  938 
  939   // parse - Return true on error.
  940   bool parse(Option &O, StringRef ArgName, StringRef Arg, int &Val);
include/llvm/Support/CommandLine.h
  960 
  961   // parse - Return true on error.
  962   bool parse(Option &O, StringRef ArgName, StringRef Arg, unsigned &Val);
include/llvm/Support/CommandLine.h
  983 
  984   // parse - Return true on error.
  985   bool parse(Option &O, StringRef ArgName, StringRef Arg, unsigned long &Val);
include/llvm/Support/CommandLine.h
 1006 
 1007   // parse - Return true on error.
 1008   bool parse(Option &O, StringRef ArgName, StringRef Arg,
include/llvm/Support/CommandLine.h
 1029 
 1030   // parse - Return true on error.
 1031   bool parse(Option &O, StringRef ArgName, StringRef Arg, double &Val);
include/llvm/Support/CommandLine.h
 1051 
 1052   // parse - Return true on error.
 1053   bool parse(Option &O, StringRef ArgName, StringRef Arg, float &Val);
include/llvm/Support/CommandLine.h
 1073 
 1074   // parse - Return true on error.
 1075   bool parse(Option &, StringRef, StringRef Arg, std::string &Value) {
include/llvm/Support/CommandLine.h
 1098 
 1099   // parse - Return true on error.
 1100   bool parse(Option &, StringRef, StringRef Arg, char &Value) {
include/llvm/TableGen/Main.h
   21 /// Perform the action using Records, and write output to OS.
   22 /// Returns true on error, false otherwise.
   23 using TableGenMainFn = bool (raw_ostream &OS, RecordKeeper &Records);
lib/CodeGen/MIRParser/MIRParser.cpp
  760 
  761 /// Verify that given node is of a certain type. Return true on error.
  762 template <typename T>
lib/TableGen/TGParser.cpp
  157 /// SetValue -
  158 /// Return true on error, false on success.
  159 bool TGParser::SetValue(Record *CurRec, SMLoc Loc, Init *ValName,
lib/TableGen/TGParser.cpp
 2601 
 2602 /// ParseBody - Read the body of a class or def.  Return true on error, false on
 2603 /// success.
lib/TableGen/TGParser.cpp
 2630 /// Apply the current let bindings to \a CurRec.
 2631 /// \returns true on error, false otherwise.
 2632 bool TGParser::ApplyLetStack(Record *CurRec) {
lib/TableGen/TGParser.cpp
 2763 /// ParseForeach - Parse a for statement.  Return the record corresponding
 2764 /// to it.  This returns true on error.
 2765 ///
lib/TableGen/TGParser.h
  121   /// ParseFile - Main entrypoint for parsing a tblgen file.  These parser
  122   /// routines return true on error, or false on success.
  123   bool ParseFile();
tools/clang/include/clang/Basic/ObjCRuntime.h
  451   ///
  452   /// \return true on error.
  453   bool tryParse(StringRef input);
tools/clang/include/clang/Index/USRGeneration.h
   68 ///
   69 /// \returns true on error, false on success.
   70 bool generateUSRForMacro(const MacroDefinitionRecord *MD,
tools/clang/include/clang/Index/USRGeneration.h
   76 ///
   77 /// \return true on error, false on success.
   78 bool generateUSRForType(QualType T, ASTContext &Ctx, SmallVectorImpl<char> &Buf);
tools/clang/include/clang/Index/USRGeneration.h
   80 /// Generate a USR for a module, including the USR prefix.
   81 /// \returns true on error, false on success.
   82 bool generateFullUSRForModule(const Module *Mod, raw_ostream &OS);
tools/clang/include/clang/Index/USRGeneration.h
   84 /// Generate a USR for a top-level module name, including the USR prefix.
   85 /// \returns true on error, false on success.
   86 bool generateFullUSRForTopLevelModuleName(StringRef ModName, raw_ostream &OS);
tools/clang/include/clang/Index/USRGeneration.h
   88 /// Generate a USR fragment for a module.
   89 /// \returns true on error, false on success.
   90 bool generateUSRFragmentForModule(const Module *Mod, raw_ostream &OS);
tools/clang/include/clang/Index/USRGeneration.h
   92 /// Generate a USR fragment for a module name.
   93 /// \returns true on error, false on success.
   94 bool generateUSRFragmentForModuleName(StringRef ModName, raw_ostream &OS);
tools/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
   82 ///
   83 /// \returns false on success, true on error.
   84 bool computeSkippedRanges(ArrayRef<Token> Input,
tools/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
   97 ///
   98 /// \returns false on success, true on error. If the diagnostic engine is not
   99 /// null, an appropriate error is reported using the given input location
tools/clang/include/clang/Lex/Preprocessor.h
 1281   ///
 1282   /// Emits a diagnostic, doesn't enter the file, and returns true on error.
 1283   bool EnterSourceFile(FileID FID, const DirectoryLookup *Dir,
tools/clang/include/clang/Sema/Sema.h
 5143   /// Instantiate or parse a C++ default argument expression as necessary.
 5144   /// Return true on error.
 5145   bool CheckCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD,
tools/clang/lib/CodeGen/CodeGenAction.cpp
  202 
  203     // Links each entry in LinkModules into our module.  Returns true on error.
  204     bool LinkInModules() {
tools/clang/lib/Frontend/CompilerInvocation.cpp
 1651 ///
 1652 /// \returns true on error, false on success.
 1653 static bool parseTestModuleFileExtensionArg(StringRef Arg,
tools/clang/lib/Frontend/InitPreprocessor.cpp
 1104 /// InitializePreprocessor - Initialize the preprocessor getting it and the
 1105 /// environment ready to process a single file. This returns true on error.
 1106 ///
tools/clang/lib/Index/USRGeneration.cpp
   23 
   24 /// \returns true on error.
   25 static bool printLoc(llvm::raw_ostream &OS, SourceLocation Loc,
tools/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
   43   ///
   44   /// \returns True on error.
   45   bool minimize();
tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
  745 ///
  746 /// \return True on error.
  747 bool Parser::ConsumeAndStoreFunctionPrologue(CachedTokens &Toks) {
tools/clang/lib/Sema/SemaAccess.cpp
   36 /// SetMemberAccessSpecifier - Set the access specifier of a member.
   37 /// Returns true on error (when the previous member decl access specifier
   38 /// is different from the new member decl access specifier).
tools/clang/lib/Sema/SemaChecking.cpp
  108 /// Checks that a call expression's argument count is the desired number.
  109 /// This is useful when doing custom type-checking.  Returns true on error.
  110 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
tools/clang/lib/Sema/SemaChecking.cpp
 4997 ///
 4998 /// Returns true on error.
 4999 static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) {
tools/clang/lib/Sema/SemaExpr.cpp
 4306 ///
 4307 /// \return true on error
 4308 static bool checkArithmeticOnObjCPointer(Sema &S,
tools/clang/lib/Sema/SemaTemplate.cpp
 4891 ///
 4892 /// \returns true on error, false otherwise.
 4893 bool Sema::CheckTemplateArgument(NamedDecl *Param,
tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
 1934 ///
 1935 /// Produces a diagnostic and returns true on error, returns false and
 1936 /// attaches the instantiated base classes to the class template
tools/clang/lib/Sema/TreeTransform.h
  643   ///
  644   /// Return true on error.
  645   bool TransformFunctionTypeParams(
tools/clang/tools/clang-format/ClangFormat.cpp
  174 // Parses <start line>:<end line> input to a pair of line numbers.
  175 // Returns true on error.
  176 static bool parseLineRange(StringRef Input, unsigned &FromLine,
tools/clang/tools/clang-format/ClangFormat.cpp
  368 
  369 // Returns true on error.
  370 static bool format(StringRef FileName) {
tools/clang/tools/clang-refactor/ClangRefactor.cpp
  286   ///
  287   /// \returns true on error, false otherwise.
  288   bool parseSelectionArgument() {
tools/clang/tools/clang-scan-deps/ClangScanDeps.cpp
  102 ///
  103 /// \returns True on error.
  104 static bool handleDependencyToolResult(const std::string &Input,
tools/llvm-dwarfdump/llvm-dwarfdump.cpp
   50 
   51   /// Return true on error.
   52   bool parse(Option &O, StringRef ArgName, StringRef Arg, OffsetOption &Val) {
tools/llvm-exegesis/lib/PerfHelper.h
   28 
   29 // Returns true on error.
   30 bool pfmInitialize();
tools/llvm-stress/llvm-stress.cpp
   74 
   75   // Parse options as IR types. Return true on error.
   76   bool parse(Option &O, StringRef, StringRef Arg, Type *&Value) {