/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticASTKinds.td | 12 def note_expr_divide_by_zero : Note<"division by zero">; 13 def note_constexpr_invalid_cast : Note< 18 def note_constexpr_invalid_void_star_cast : Note< 22 def note_constexpr_invalid_downcast : Note< 24 def note_constexpr_overflow : Note< 26 def note_constexpr_negative_shift : Note<"negative shift count %0">; 27 def note_constexpr_large_shift : Note< 29 def note_constexpr_lshift_of_negative : Note<"left shift of negative value %0">; 30 def note_constexpr_lshift_discards : Note<"signed left shift discards bits">; 31 def note_constexpr_invalid_function : Note< [all …]
|
H A D | DiagnosticSemaKinds.td | 15 def note_previous_decl : Note<"%0 declared here">; 16 def note_entity_declared_at : Note<"%0 declared here">; 17 def note_callee_decl : Note<"%0 declared here">; 18 def note_defined_here : Note<"%0 defined here">; 29 def note_loop_iteration_here : Note<"%select{decremented|incremented}0 here">; 34 def note_duplicate_element : Note<"element %0 also has value %1">; 40 def note_remove_abs : Note< 49 def note_replace_abs_function : Note<"use function '%0' instead">; 59 def note_remove_max_call : Note< 68 def note_cast_to_void : Note<"cast expression to void to silence warning">; [all …]
|
H A D | DiagnosticCommentKinds.td | 23 def note_doc_html_tag_started_here : Note< 40 def note_doc_html_end_tag : Note< 57 def note_doc_block_command_previous : Note< 60 def note_doc_block_command_previous_alias : Note< 102 def note_doc_param_previous : Note< 109 def note_doc_param_name_suggestion : Note< 123 def note_doc_tparam_previous : Note< 130 def note_doc_tparam_name_suggestion : Note< 153 def note_add_deprecation_attr : Note<
|
H A D | DiagnosticFrontendKinds.td | 20 def note_fe_inline_asm : Note<"%0">, CatInlineAsm; 21 def note_fe_inline_asm_here : Note<"instantiated into assembly here">; 24 def note_fe_source_mgr : Note<"%0">, CatSourceMgr; 27 def note_fe_linking_module : Note<"linking module '%0': %1">; 34 def note_fe_backend_frame_larger_than: Note<"%0">, BackendInfo; 41 def note_fe_backend_resource_limit: Note<"%0 (%1) exceeds limit (%2) in '%3'">, BackendInfo; 44 def note_fe_backend_plugin: Note<"%0">, BackendInfo; 86 def note_fe_backend_invalid_loc : Note<"could " 167 def note_verify_ambiguous_marker : Note< 190 def note_fixit_applied : Note<"FIX-IT applied suggested code changes">; [all …]
|
H A D | DiagnosticCommonKinds.td | 30 def note_declared_at : Note<"declared here">; 31 def note_previous_definition : Note<"previous definition is here">; 32 def note_previous_declaration : Note<"previous declaration is here">; 33 def note_previous_implicit_declaration : Note< 35 def note_previous_use : Note<"previous use is here">; 36 def note_duplicate_case_prev : Note<"previous case defined here">; 37 def note_forward_declaration : Note<"forward declaration of %0">; 38 def note_type_being_defined : Note< 42 def note_matching : Note<"to match this %0">; 44 def note_using : Note<"using">; [all …]
|
H A D | DiagnosticSerializationKinds.td | 27 def note_pch_required_by : Note<"'%0' required by '%1'">; 28 def note_pch_rebuild_required : Note<"please rebuild precompiled header '%0'">; 29 def note_module_cache_path : Note< 50 def note_pch_vfsoverlay_files : Note<"%select{PCH|current translation unit}0 has the following VFS … 51 def note_pch_vfsoverlay_empty : Note<"%select{PCH|current translation unit}0 has no VFS overlays">; 71 def note_module_file_imported_by : Note< 77 def note_module_file_conflict : Note< 90 def note_imported_by_pch_module_not_found : Note< 120 def note_module_odr_violation_no_possible_decls : Note< 122 def note_module_odr_violation_possible_decl : Note<
|
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/ |
H A D | InstrProfilingPlatformLinux.c | 131 const ElfW(Nhdr) * Note) { in WriteBinaryIdForNote() 133 const char *NoteName = (const char *)Note + sizeof(ElfW(Nhdr)); in WriteBinaryIdForNote() 134 if (Note->n_type == NT_GNU_BUILD_ID && Note->n_namesz == 4 && in WriteBinaryIdForNote() 136 uint64_t BinaryIdLen = Note->n_descsz; in WriteBinaryIdForNote() 138 (const uint8_t *)(NoteName + RoundUp(Note->n_namesz, 4)); in WriteBinaryIdForNote() 156 static int WriteBinaryIds(ProfDataWriter *Writer, const ElfW(Nhdr) * Note, in WriteBinaryIds() argument 159 while (Note < NotesEnd) { in WriteBinaryIds() 160 int OneBinaryIdSize = WriteBinaryIdForNote(Writer, Note); in WriteBinaryIds() 166 size_t NoteOffset = sizeof(ElfW(Nhdr)) + RoundUp(Note->n_namesz, 4) + in WriteBinaryIds() 167 RoundUp(Note->n_descsz, 4); in WriteBinaryIds() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
H A D | RegisterUtilities.cpp | 24 return Entry.Note; in getNoteType() 37 Notes, [Type](const CoreNote &Note) { return Note.info.n_type == Type; }); in getRegset() argument
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | RewriteRule.cpp | 61 if (E.Note) { in translateEdits() 62 auto Note = E.Note->eval(Result); in translateEdits() local 63 if (!Note) in translateEdits() 64 return Note.takeError(); in translateEdits() 65 T.Note = std::move(*Note); in translateEdits() 133 ASTEdit transformer::note(RangeSelector Anchor, TextGenerator Note) { in note() argument 136 E.Note = std::move(Note); in note()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Interp.cpp | 65 S.Note(VD->getLocation(), diag::note_declared_at) << VD->getSourceRange(); in diagnoseMissingInitializer() 77 S.Note(D->getLocation(), diag::note_declared_at) << D->getSourceRange(); in diagnoseUnknownDecl() 113 S.Note(VD->getLocation(), diag::note_declared_at); in diagnoseNonConstVariable() 122 S.Note(VD->getLocation(), diag::note_declared_at); in diagnoseNonConstVariable() 171 S.Note(Ptr.getDeclLoc(), diag::note_constexpr_temporary_here); in CheckTemporary() 291 S.Note(Ptr.getDeclLoc(), diag::note_constexpr_temporary_here); in CheckLive() 293 S.Note(Ptr.getDeclLoc(), diag::note_declared_at); in CheckLive() 445 S.Note(Field->getLocation(), diag::note_declared_at); in CheckMutable() 482 S.Note(VD->getLocation(), diag::note_declared_at); in CheckInitialized() 508 S.Note(VD->getLocation(), diag::note_declared_at); in CheckGlobalInitialized() [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | jpeg | 27 # in a vain attempt to add image size reporting for JFIF. Note that these 109 # Note: called by TrID "HSI JPEG bitmap" 126 # Note: called by TrID "JPEG 2000 bitmap" 133 # Note: called by TrID "JPEG 2000 eXtended bitmap" 139 # Note: called by TrID "JPEG 2000 eXtended bitmap" 145 # Note: called by TrID "Motion JPEG 2000 video" 155 # Note: called by TrID "JPEG-2000 Code Stream bitmap" 171 # Note: called by TrID "JPEG XR bitmap" 240 # Note: called by TrID "JPEG XL bitmap" 249 # Note: called by TrID "JPEG XL bitmap (ISOBMFF)"
|
H A D | mail.news | 33 # Note: used by Rmail in Emacs version 22 and before 52 # Note: moved and merged from ./msdos (version 1.154) there just called "TNEF" 92 # attMessageClass data like: "IPM.Microsoft Mail.Note" "IPM.Note.Portada Newseum" 93 # "IPM.Appointment" "IPM.Note.Microsoft.Voicemail.UM.CA"
|
H A D | blit | 6 # Note that this 0407 conflicts with several other a.out formats... 23 # Note that 0520 is the same as COFF
|
H A D | mozilla | 16 # Note: mostly JSON compressed with a non-standard LZ4 header 30 # Note: Most ZIP utilities are able to extract such archives
|
/freebsd/sys/contrib/device-tree/src/arm/samsung/ |
H A D | exynos4412-p4note-n8010.dts | 3 * Samsung's Galaxy Note 10.1 - N801x (wifi only version) 13 model = "Samsung Galaxy Note 10.1 (GT-N8010/N8013) based on Exynos4412";
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | msm8998-sony-xperia-yoshino-poplar.dts | 29 /* Note: Round-down from 2850000 to be a multiple of PLDO step-size 8000 */ 35 /* Note: Round-down from 2700000 to be a multiple of PLDO step-size 8000 */
|
/freebsd/sys/contrib/device-tree/Bindings/serial/ |
H A D | digicolor-usart.txt | 3 Note: this binding is only applicable for using the USART peripheral as 14 Note: Each UART port should have an alias correctly numbered
|
H A D | fsl-imx-uart.txt | 16 linux,rs485-enabled-at-boot-time: see rs485.txt. Note that for RS485 25 Note: Each uart controller should have an alias correctly numbered
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | CheckerContext.h | 317 const NoteTag *getNoteTag(StringRef Note, bool IsPrunable = false) { 319 [Note = std::string(Note)](BugReporterContext &, 320 PathSensitiveBugReport &) { return Note; },
|
/freebsd/contrib/googletest/ |
H A D | CMakeLists.txt | 1 # Note: CMake support is community-based. The maintainers do not use CMake 18 # Note that googlemock target already builds googletest.
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | zstdgrep.1.md | 16 Note that modern `grep` alternatives such as `ripgrep` (`rg`) support `zstd`-compressed files out o… 18 Note though that such alternatives may also feature some minor command line differences.
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | eap_testing.txt | 175 Note: PEAPv1 requires TLS key derivation to use label "client EAP encryption" 202 Note: PEAPv1 requires TLS key derivation to use label "client EAP encryption" 224 Note: PEAPv1 requires TLS key derivation to use label "client EAP encryption" 241 limit with AVP encapsulation and TLS tunneling. Note: EAP-PEAP/TLS 255 Note: Needed to use unknown identity in outer auth and some times the server 262 Note: This has some additional requirements for EAPTLS_MaxFragmentSize. 264 Note: Needed to use unknown identity in outer auth and some times the server 275 Note: This has some additional requirements for EAPTLS_MaxFragmentSize. 294 Note: PEAPv1 requires TLS key derivation to use label "client EAP encryption" 332 Note: user certificate from NavisRadius had private key in a format
|
/freebsd/contrib/ntp/scripts/stats/ |
H A D | README.timecodes | 44 Note: alarm condition is indicated by other than <SP> at A, which 66 Note: alarm condition is indicated by other than <SP> at A, which 85 Note: alarm condition is indicated by ? at A, which occurs during 104 Note: 0?:??:??.? is displayed before synch is first established and 138 Note: The alarm condition is indicated by other than ? at A, which
|
/freebsd/sys/contrib/device-tree/Bindings/thermal/ |
H A D | armada-thermal.txt | 14 Note: these bindings are deprecated for AP806/CP110 and should instead 23 Note: The compatibles marvell,armada370-thermal,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/ |
H A D | MCAsmParserExtension.h | 77 void Note(SMLoc L, const Twine &Msg) { in Note() function 78 getParser().Note(L, Msg); in Note()
|