| /llvm-project-15.0.7/lldb/source/Host/linux/ |
| H A D | Host.cpp | 75 Line.consumeInteger(10, RGid); in GetStatusInfo() 77 Line.consumeInteger(10, EGid); in GetStatusInfo() 85 Line.consumeInteger(10, RUid); in GetStatusInfo() 87 Line.consumeInteger(10, EUid); in GetStatusInfo() 93 Line.ltrim().consumeInteger(10, PPid); in GetStatusInfo() 112 Line.consumeInteger(10, TracerPid); in GetStatusInfo() 115 Line.consumeInteger(10, Tgid); in GetStatusInfo()
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointID.cpp | 74 if (input.consumeInteger(0, bp_id)) in ParseCanonicalReference() 79 if (input.consumeInteger(0, loc_id)) in ParseCanonicalReference()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | VFABIDemangling.cpp | 79 if (ParseString.consumeInteger(10, VF)) in tryParseVLEN() 107 if (ParseString.consumeInteger(10, Pos)) in tryParseLinearTokenWithRuntimeStep() 171 if (ParseString.consumeInteger(10, LinearStep)) in tryParseCompileTimeLinearToken() 262 if (ParseString.consumeInteger(10, Val)) in tryParseAlign()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | FormatVariadic.cpp | 53 bool Failed = Spec.consumeInteger(0, Align); in consumeFieldLayout() 69 if (RepString.consumeInteger(0, Index)) { in parseReplacementItem()
|
| /llvm-project-15.0.7/llvm/lib/Target/ |
| H A D | TargetMachine.cpp | 226 if (!Version.consumeInteger(10, Ret.first) && Version.consume_front(".")) in parseBinutilsVersion() 227 Version.consumeInteger(10, Ret.second); in parseBinutilsVersion()
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | StringRefTest.cpp | 834 bool U8Success = Str.consumeInteger(0, U8); in TEST() 845 bool U16Success = Str.consumeInteger(0, U16); in TEST() 856 bool U32Success = Str.consumeInteger(0, U32); in TEST() 867 bool U64Success = Str.consumeInteger(0, U64); in TEST() 882 bool S8Success = Str.consumeInteger(0, S8); in TEST() 893 bool S16Success = Str.consumeInteger(0, S16); in TEST() 904 bool S32Success = Str.consumeInteger(0, S32); in TEST() 915 bool S64Success = Str.consumeInteger(0, S64); in TEST()
|
| /llvm-project-15.0.7/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptCppFilter.cpp | 80 if (Line.consumeInteger(10, N)) // Returns true to signify an error in parseLine()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | llvm-conventions.cpp | 110 consumeInteger(unsigned Radix, T &Result); 113 consumeInteger(unsigned Radix, T &Result);
|
| /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/ |
| H A D | BytesOutputStyle.cpp | 44 if (Str.consumeInteger(0, Result.SI)) in parseStreamSpec() 48 if (Str.consumeInteger(0, Result.Begin)) in parseStreamSpec() 53 if (Str.consumeInteger(0, Result.Size)) in parseStreamSpec()
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | StringExtractorGDBRemote.cpp | 652 } else if (view.consumeInteger(16, pid) || pid == 0) { in GetPidTid() 671 } else if (view.consumeInteger(16, tid) || tid == 0 || pid == AllProcesses) { in GetPidTid()
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | FormatProviders.h | 94 Str.consumeInteger(10, Default); in consumeNumHexDigits() 146 Style.consumeInteger(10, Digits);
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectRegexCommand.cpp | 43 if (part.consumeInteger(10, idx)) in SubstituteVariables()
|
| H A D | CommandObjectLog.cpp | 464 if (args[0].ref().consumeInteger(0, depth)) { in DoExecute()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUMachineFunction.cpp | 41 S.consumeInteger(0, GDSSize); in AMDGPUMachineFunction()
|
| H A D | SIMachineFunctionInfo.cpp | 186 S.consumeInteger(0, GITPtrHigh); in SIMachineFunctionInfo() 191 S.consumeInteger(0, HighBitsOf32BitAddress); in SIMachineFunctionInfo()
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | OptionGroupFormat.cpp | 107 gdb_format_str.consumeInteger(0, count); in SetOptionValue()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | IntelPTSingleBufferTrace.cpp | 95 if (text_buffer.trim().consumeInteger(getRadix(), value) || in ReadIntelPTConfigFile()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | StringRef.h | 548 consumeInteger(unsigned Radix, T &Result) { in consumeInteger() function 559 consumeInteger(unsigned Radix, T &Result) { in consumeInteger() function
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86InsertPrefetch.cpp | 141 Name.consumeInteger(10, index); in findPrefetchInfo()
|
| /llvm-project-15.0.7/mlir/lib/TableGen/ |
| H A D | Format.cpp | 112 if (fmt.substr(1, end - 1).consumeInteger(0, index)) { in splitFmtSegment()
|
| /llvm-project-15.0.7/llvm/tools/llc/ |
| H A D | llc.cpp | 490 if (V.consumeInteger(10, Num) || Num == 0 || in compileModule() 492 (V.consume_front(".") && !V.consumeInteger(10, Num) && V.empty()))) { in compileModule()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/tool/ |
| H A D | ClangdMain.cpp | 986 bool ParseError = RangeStr.consumeInteger(0, Begin); in main() 991 ParseError |= RangeStr.consumeInteger(0, End); in main()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUPALMetadata.cpp | 760 if (S.consumeInteger(0, Val)) { in setFromString()
|
| /llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/ |
| H A D | BenchmarkResult.cpp | 117 return !String.consumeInteger(16, Value); in tryDeserializeIntegerOperand()
|
| /llvm-project-15.0.7/flang/lib/Optimizer/Support/ |
| H A D | KindMapping.cpp | 174 if (ref.consumeInteger(10, temp)) in parseInt()
|