reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/StringExtras.h
  177     Output.push_back(hexFromNibbles('0', Input.front()));
include/llvm/ADT/StringRef.h
  330         if (F(S.front()))
include/llvm/Support/FormatProviders.h
  364     if (Style.front() != Indicator)
  373       if (Style.front() != D[0])
include/llvm/Support/YAMLTraits.h
  553   StringRef Tail = (S.front() == '-' || S.front() == '+') ? S.drop_front() : S;
  553   StringRef Tail = (S.front() == '-' || S.front() == '+') ? S.drop_front() : S;
  598   if (S.front() == '.') {
  601   } else if (S.front() == 'e' || S.front() == 'E') {
  601   } else if (S.front() == 'e' || S.front() == 'E') {
  613     if (S.front() == 'e' || S.front() == 'E') {
  613     if (S.front() == 'e' || S.front() == 'E') {
  625   if (S.front() == '+' || S.front() == '-') {
  625   if (S.front() == '+' || S.front() == '-') {
  652   if (isspace(static_cast<unsigned char>(S.front())) ||
lib/CodeGen/MIRParser/MILexer.cpp
  118   assert(Value.front() == '"' && Value.back() == '"');
lib/CodeGen/MIRParser/MIParser.cpp
 1520   if (Token.range().front() == 's' || Token.range().front() == 'p') {
 1520   if (Token.range().front() == 's' || Token.range().front() == 'p') {
 1526   if (Token.range().front() == 's') {
 1534   } else if (Token.range().front() == 'p') {
 1563   if (Token.range().front() != 's' && Token.range().front() != 'p')
 1563   if (Token.range().front() != 's' && Token.range().front() != 'p')
 1569   if (Token.range().front() == 's') {
 1574   } else if (Token.range().front() == 'p') {
 1596   if (TypeStr.front() != 'i' && TypeStr.front() != 's' &&
 1596   if (TypeStr.front() != 'i' && TypeStr.front() != 's' &&
 1597       TypeStr.front() != 'p')
lib/ExecutionEngine/Orc/ExecutionUtils.cpp
  208     if (HasGlobalPrefix && (*Name).front() != GlobalPrefix)
lib/IR/DataLayout.cpp
  258     char Specifier = Tok.front();
  396       switch (Tok.front()) {
lib/MC/MCAsmStreamer.cpp
  424   } else if (c.front() == '#') {
lib/MC/MCContext.cpp
  636     if (llvm::sys::path::is_separator(FileName.front()))
lib/MC/MCParser/AsmParser.cpp
  837     if (!getTok().getString().empty() && getTok().getString().front() != '\n' &&
  838         getTok().getString().front() != '\r' && MAI.preserveAsmComments())
 1694     if (getTok().getString().empty() || getTok().getString().front() == '\r' ||
 1695         getTok().getString().front() == '\n')
 2495             if (AltMacroMode && Token.getString().front() == '%' &&
 2501             else if (AltMacroMode && Token.getString().front() == '<' &&
 5721   if (StrTok.isNot(AsmToken::String) || StrTok.getString().front() != '"')
lib/Remarks/YAMLRemarkParser.cpp
  300   if (Result.front() == '\'')
  447   if (Result.front() == '\'')
lib/Support/CommandLine.cpp
 1075         if (Arg.front() == '@') {
lib/Support/FileCheck.cpp
  107   char C = S.front();
lib/Support/FormatVariadic.cpp
   73   if (!RepString.empty() && RepString.front() == ',') {
   79   if (!RepString.empty() && RepString.front() == ':') {
lib/Support/StringRef.cpp
  463   if (Str.empty() || Str.front() != '-') {
  522   while (!Str.empty() && Str.front() == '0')
lib/Target/AMDGPU/AMDGPULibFunc.cpp
  466   if (mangledName.front() == c) {
  487   while (!s.empty() && isDigit(s.front())) {
  488     n = n*10 + s.front() - '0';
  592       AS = param.front() - '0';
  607   char const TC = param.front();
lib/Target/Mips/AsmParser/MipsAsmParser.cpp
 5944   if (Name.front() != 'w' || Name.drop_front(1).getAsInteger(10, IntVal))
lib/Target/Mips/MipsISelLowering.cpp
 3850   if (C.front() != '{' || C.back() != '}')
lib/Testing/Support/Annotations.cpp
   60     Code.push_back(Text.front());
tools/clang/include/clang/Driver/Multilib.h
   47            (StringRef(GCCSuffix).front() == '/' && GCCSuffix.size() > 1));
   58            (StringRef(OSSuffix).front() == '/' && OSSuffix.size() > 1));
   69            (StringRef(IncludeSuffix).front() == '/' && IncludeSuffix.size() > 1));
   93     assert(F.front() == '+' || F.front() == '-');
   93     assert(F.front() == '+' || F.front() == '-');
tools/clang/lib/AST/Decl.cpp
 1076   if (name.front() == 'C')
tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp
  139     const char Next = Pieces.second.front();
tools/clang/lib/Basic/IdentifierTable.cpp
  528   while (!name.empty() && name.front() == '_')
  532   switch (name.front()) {
  562   switch (name.front()) {
  589   switch (name.front()) {
tools/clang/lib/Basic/Targets/AMDGPU.h
  132     if (S.front() == '{') {
  138     if (S.front() != 'v' && S.front() != 's') {
  138     if (S.front() != 'v' && S.front() != 's') {
  162     if (!S.empty() && S.front() == '[') {
  169     if (!S.empty() && S.front() == ':') {
  178       if (S.empty() || S.front() != ']')
  182     if (S.empty() || S.front() != '}')
tools/clang/lib/Driver/Driver.cpp
 1786       assert(Suffix.front() == '/');
tools/clang/lib/Driver/Multilib.cpp
   46   if (seg.front() != '/') {
   85   assert(GCCSuffix.empty() || (StringRef(GCCSuffix).front() == '/'));
   93     if (Flag.front() == '+')
  104     assert(StringRef(Flag).front() == '+' || StringRef(Flag).front() == '-');
  104     assert(StringRef(Flag).front() == '+' || StringRef(Flag).front() == '-');
  146     if (Flag.front() == '+')
  239   char Indicator = Flag.front();
tools/clang/lib/Lex/HeaderSearch.cpp
 1775           path::is_separator(NI->front()) && path::is_separator(DI->front()))
 1775           path::is_separator(NI->front()) && path::is_separator(DI->front()))
tools/clang/lib/Lex/Preprocessor.cpp
 1055     if (Str.size() >= 2 && Str.front() == '"' && Str.back() == '"')
tools/clang/lib/Sema/SemaChecking.cpp
13651   while (!str.empty() && str.front() == '_') str = str.substr(1);
13664   return !isLowercase(str.front());
tools/clang/lib/Sema/SemaDeclAttr.cpp
 5333   if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
 7736   if (!Name.empty() && (Name.front() == '-' || Name.front() == '+'))
 7736   if (!Name.empty() && (Name.front() == '-' || Name.front() == '+'))
tools/clang/lib/Sema/SemaInit.cpp
 6719       if (Name.size() >= 2 && Name.front() == '_' &&
tools/clang/lib/Sema/SemaPseudoObject.cpp
  669         char front = thisPropertyName.front();
tools/clang/tools/extra/clang-query/QueryParser.cpp
   37   if (Line.front() == '#') {
tools/clang/tools/extra/clangd/RIFF.cpp
   33     if (Stream.front())
tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
  878     while (!T.empty() && T.front() == ' ') {
 1054       } while (Text.front() == '|');
 1075       } while (Text.front() == '|');
tools/clang/utils/TableGen/NeonEmitter.cpp
  701   if (Name.front() == 'u') {
  730   if (Name.front() == 'x') {
  745   if (Name.front() == 'x') {
tools/lld/lib/Driver/DarwinLdDriver.cpp
  148   char sep = llvm::sys::path::get_separator().front();
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  310               bool lPrivate = (lhs->name.front() == 'l');
  311               bool rPrivate = (rhs->name.front() == 'l');
tools/lldb/source/Core/ValueObject.cpp
 2261     switch (temp_expression.front()) {
 2296           temp_expression.front() == '.' &&
tools/lldb/source/Host/linux/Host.cpp
   87       char S = Line.ltrim().front();
tools/lldb/source/Interpreter/CommandHistory.cpp
   48   if (input_str.front() == '-') {
tools/lldb/source/Interpreter/CommandInterpreter.cpp
 1811     if (first_arg.front() == m_comment_char)
 1813     if (first_arg.front() == CommandHistory::g_repeat_char) {
 2559     if (text.front() == '\n' ||
 2560         (text.front() == ' ' && nextWordLength(text.ltrim(' ')) > chars_left)) {
 2564       if (text.front() == '\n')
 2569       strm.PutChar(text.front());
 2714   if (command.front() == m_comment_char)
tools/lldb/source/Interpreter/CommandObject.cpp
  970       if (!entry.value().ref().empty() && entry.value().ref().front() == '`') {
tools/lldb/source/Interpreter/OptionValueArray.cpp
   91   if (name.empty() || name.front() != '[') {
tools/lldb/source/Interpreter/OptionValueDictionary.cpp
  132       if (key.front() == '[') {
  138           const char quote_char = key.front();
tools/lldb/source/Interpreter/OptionValueString.cpp
   52     switch (value.front()) {
   55       if (value.size() <= 1 || value.back() != value.front()) {
tools/lldb/source/Symbol/Type.cpp
  692         if (template_arg.front() == '<')
  694         else if (template_arg.front() == '>')
tools/lldb/source/Symbol/Variable.cpp
  342   switch (variable_expr_path.front()) {
tools/lldb/source/Target/StackFrame.cpp
  957       if (index_expr.front() != '-') {
tools/lldb/source/Utility/Args.cpp
   35     if (quoted.empty() || quoted.front() == '"')
   49     if (strchr(k_escapable_characters, quoted.front()) == nullptr)
   52     result += quoted.front();
  105     char special = command.front();
  116       if (strchr(" \t\\'\"`", command.front()) == nullptr)
  119       arg += command.front();
tools/lldb/source/Utility/UUID.cpp
   81     } else if (p.front() == '-') {
tools/llvm-ar/llvm-ar.cpp
 1016     if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"')