/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusNameParser.cpp | 75 if (!Peek().is(kind)) in ConsumeToken() 86 if (!Peek().isOneOf(kinds...)) in ConsumeToken() 99 clang::Token &CPlusPlusNameParser::Peek() { in Peek() function in CPlusPlusNameParser 225 if (!HasMoreTokens() || Peek().getKind() != tok::less) in ConsumeTemplateArgs() 240 tok::TokenKind kind = Peek().getKind(); in ConsumeTemplateArgs() 307 if (HasMoreTokens() && Peek().is(tok::raw_identifier) && in ConsumeAbiTag() 308 Peek().getRawIdentifier() == "abi") in ConsumeAbiTag() 334 if (HasMoreTokens() && Peek().is(tok::raw_identifier) && in ConsumeAnonymousNamespace() 335 Peek().getRawIdentifier() == g_anonymous) { in ConsumeAnonymousNamespace() 358 if (HasMoreTokens() && Peek().is(tok::raw_identifier) && in ConsumeLambda() [all …]
|
H A D | CPlusPlusNameParser.h | 125 clang::Token &Peek();
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | StringLexer.cpp | 19 StringLexer::Character StringLexer::Peek() { return m_data[m_position]; } in Peek() function in StringLexer 22 auto val = Peek(); in NextIf() 32 auto val = Peek(); in NextIf() 59 auto val = Peek(); in Next()
|
H A D | StringExtractor.cpp | 312 for (const char *pch = Peek(); in GetHexByteStringFixedLength() 314 str.append(1, GetHexU8(0, false)), pch = Peek(), nibble_count += 2) { in GetHexByteStringFixedLength() 326 if (Peek() && *Peek() == terminator) in GetHexByteStringTerminatedBy()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCTypeEncodingParser.cpp | 39 while (type.HasAtLeast(1) && type.Peek() != '=') in ReadStructName() 46 while (type.HasAtLeast(1) && type.Peek() != '"') in ReadQuotedString() 56 while (type.HasAtLeast(1) && isdigit(type.Peek())) in ReadNumber() 204 switch (type.Peek()) { in BuildObjCObjectPointerType() 265 switch (type.Peek()) { in BuildType()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | StringExtractor.h | 61 const char *cstr = Peek(); 100 const char *Peek() { in Peek() function
|
H A D | StringLexer.h | 28 Character Peek();
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerLLGS.cpp | 1304 json::parse<TraceStopRequest>(packet.Peek(), "TraceStopRequest"); in Handle_jLLDBTraceStop() 1325 json::parse<TraceStartRequest>(packet.Peek(), "TraceStartRequest"); in Handle_jLLDBTraceStart() 1329 if (Error err = m_current_process->TraceStart(packet.Peek(), request->type)) in Handle_jLLDBTraceStart() 1346 json::parse<TraceGetStateRequest>(packet.Peek(), "TraceGetStateRequest"); in Handle_jLLDBTraceGetState() 1364 llvm::json::parse<TraceGetBinaryDataRequest>(packet.Peek(), in Handle_jLLDBTraceGetBinaryData() 1577 if (*packet.Peek() == ';') in Handle_C() 1647 packet.Peek()); in Handle_c() 1709 if (::strcmp(packet.Peek(), ";s") == 0) { in Handle_vCont() 1717 while (packet.GetBytesLeft() && *packet.Peek() == ';') { in Handle_vCont() 1768 if (packet.GetBytesLeft() && (*packet.Peek() == ':')) { in Handle_vCont() [all …]
|
H A D | GDBRemoteCommunicationServerCommon.cpp | 981 m_process_launch_info.GetEnvironment().insert(packet.Peek()); in Handle_QEnvironment() 1007 const char *arch_triple = packet.Peek(); in Handle_QLaunchArch() 1160 StructuredData::ObjectSP object_sp = StructuredData::ParseJSON(packet.Peek()); in Handle_jModulesInfo()
|
H A D | GDBRemoteCommunicationClient.cpp | 3191 while (response.Peek()) { in AutoCompleteDiskFileOrDirectory() 3273 const char next = (response.Peek() ? *response.Peek() : 0); in ReadFile() 3433 if (response.Peek() && *response.Peek() == 'x') in CalculateMD5() 3647 return llvm::json::parse<TraceSupportedResponse>(response.Peek(), in SendTraceSupported() 3749 return std::string(response.Peek()); in SendTraceGetState()
|
/freebsd/contrib/bearssl/T0/ |
H A D | CPU.cs | 120 internal TValue Peek(int depth) in Peek() method in CPU
|
H A D | T0Comp.cs | 799 cpu.Push(cpu.Peek(0)); in T0Comp() 805 cpu.Push(cpu.Peek(1)); in T0Comp() 826 cpu.Push(cpu.Peek(cpu.Pop())); in T0Comp() 993 Console.Write(" {0}", cpu.Peek(i).ToString()); in T0Comp()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | LinuxProcMaps.cpp | 116 const char *name = line_extractor.Peek(); in ParseMemoryRegionInfoFromProcMapsLine()
|
/freebsd/sys/contrib/device-tree/Bindings/soc/ti/ |
H A D | keystone-navigator-qmss.txt | 37 - Queue Peek region. 45 - Queue Peek region.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/ |
H A D | ItaniumDemangle.h | 2875 bool operator<(const char *Peek) const { 2876 return Enc[0] < Peek[0] || (Enc[0] == Peek[0] && Enc[1] < Peek[1]); 2878 bool operator==(const char *Peek) const { 2879 return Enc[0] == Peek[0] && Enc[1] == Peek[1]; 2881 bool operator!=(const char *Peek) const { return !this->operator==(Peek); }
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-spec-builders.h | 1357 const T& Peek() const { return value_; } in Peek() function 1373 const T& Peek() const { return *value_ptr_; } in Peek() function
|
/freebsd/contrib/tcsh/ |
H A D | Fixes | 340 10. kill `foo` got stuck because sigchld was disabled too soon (Mark Peek) 524 15. nlsclose() arg passing, exp2 is now a gcc builtin (Mark Peek) 590 54. Fixed for Darwin/Rhapsody (Mark Peek) 600 47. Completion fixes from FreeBSD (Mark Peek) 601 46. FreeBSD's sbsize limit (Mark Peek) 622 27. window change can cause free to be re-entered causing abort (Mark Peek) 657 37. Fix rmstar not to corrupt memory when we say no. (Mark Peek) 665 30. Add kill -s (Mark Peek)
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | sniffer | 418 # *Peek tagged capture files.
|
/freebsd/share/misc/ |
H A D | committers-src.dot | 287 mp [label="Mark Peek\nmp@FreeBSD.org\n2001/07/27"]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | locale | 315 // Peek at the next CharT but don't consume it
|