/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | LangStandards.cpp | 1 //===--- LangStandards.cpp - Language Standard Definitions ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 StringRef clang::languageToString(Language L) { in languageToString() 18 case Language::Unknown: in languageToString() 20 case Language::Asm: in languageToString() 22 case Language::LLVM_IR: in languageToString() 24 case Language::CIR: in languageToString() 26 case Language::C: in languageToString() 28 case Language::CXX: in languageToString() [all …]
|
H A D | Sanitizers.cpp | 1 //===- Sanitizers.cpp - C Language Family Language Options ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 23 #define SANITIZER(NAME, ID) constexpr SanitizerMask SanitizerKind::ID; argument 24 #define SANITIZER_GROUP(NAME, ID, ALIAS) \ argument 25 constexpr SanitizerMask SanitizerKind::ID; \ 26 constexpr SanitizerMask SanitizerKind::ID##Group; 31 #define SANITIZER(NAME, ID) .Case(NAME, SanitizerKind::ID) in parseSanitizerValue() argument 32 #define SANITIZER_GROUP(NAME, ID, ALIAS) \ in parseSanitizerValue() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/ |
H A D | StandardLibrary.h | 1 //===--- StandardLibrary.h --------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 44 Lang Language = Lang::CXX); 52 Header(unsigned ID, Lang Language) : ID(ID), Language(Language) {} in Header() argument 53 unsigned ID; variable 54 Lang Language; variable 59 return L.ID == R.ID; 63 // A top-level standard library symbol, such as std::vector [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | rtf | 2 #------------------------------------------------------------------------------ 9 # Reference: http://www.snake.net/software/RTF/RTF-Spec-1.7.rtf 12 # skip DROID fmt-355-signature-id-522.rtf by looking for valid version 14 # skip also \ in DROID fmt-50-signature-id-158.rtf by looking for valid version 19 >>>0 use rtf-info 20 # display information like version, language and code page of RTF 21 0 name rtf-info 32 # "Burow, Steffanie - Im Tal des Schneeleoparden.rtf" 37 # "Burow, Steffanie - Im Tal des Schneeleoparden.rtf" 43 >>>&-1 string x %-.3s [all …]
|
H A D | printer | 2 #------------------------------------------------------------------------------ 4 # printer: file(1) magic for printer-formatted files 11 >2 string PS-Adobe- conforming 22 >3 string PS-Adobe- conforming 29 0 string \033%-12345X%!PS PostScript document 35 # Reference: http://mark0.net/download/triddefs_xml.7z/defs/eps-adobe.trid.xml 37 # verified partly by ImageMagick `identify -verbose *` as EPT (Encapsulated PostScript with TIFF p… 39 # skip DROID fmt-122-signature-id-174.eps fmt-123-signature-id-178.eps fmt-124-signature-id-180.eps 43 !:mime image/x-eps 51 # Reference: http://mark0.net/download/triddefs_xml.7z/defs/e/eps-wmf.trid.xml [all …]
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBTypeDocstrings.i | 13 programming language and the specific language implementation that was used 14 to compile the target program. See the language-specific notes in the 20 information. For some languages such as C, C++ and Objective-C it is possible 35 int id; 38 id(i), 45 Task *task_head = new Task(-1, NULL); 52 task_head->next = task1; 53 task1->nex [all...] |
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StandardLibrary.cpp | 1 //===--- StandardLibrary.cpp ------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 24 // Symbol name -> Symbol::ID, within a namespace. 27 // A Mapping per language. 30 // Header name => Header::ID 34 // Symbol::ID => symbol qualified_name/name/scope 45 // Symbol name -> Symbol::ID, within a namespace. 47 // Symbol::ID => Header::ID 57 static int countSymbols(Lang Language) { in countSymbols() argument [all …]
|
/freebsd/crypto/krb5/src/windows/installer/wix/ |
H A D | files.wxi | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 26 --> 28 <Property Id="DISABLEADVTSHORTCUTS" Value="1" /> 29 <Property Id="SYSTEMKRB5INI"> 30 <DirectorySearch Id="WindowsFolder" Path="[WindowsFolder]"> 35 <Directory Id="TARGETDIR" Name="SourceDir"> 36 <Directory Id="DesktopFolder" Name="Desktop"/> 37 <Directory Id="$(var.PISystemFolder)" SourceName="System"> 38 <Component Id="cmf_kfwlogon_DLL" Guid="$(var.cmf_kfwlogon_DLL_guid)"> [all …]
|
H A D | kfw.wxs | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 26 --> 28 <!-- configuration --> 34 Id="$(var.ProductCode)" 36 Language="$(var.Language)" 42 <!-- The weird package code results in a new one being generated each time we compile --> 44 Id="????????-????-????-????-????????????" 50 Languages="$(var.Language)" 60 <!-- Launch conditions --> [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | LangStandard.h | 1 //===--- LangStandard.h -----------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 21 /// The language for the input, used to select and validate the language 23 enum class Language : uint8_t { enum 47 StringRef languageToString(Language L); 70 /// LangStandard - Information about the properties of a particular language 74 #define LANGSTANDARD(id, name, lang, desc, features) \ argument 75 lang_##id, 83 clang::Language Language; member [all …]
|
H A D | SyncScope.h | 1 //===--- SyncScope.h - Atomic synchronization scopes ------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 31 /// In atomic builtin and expressions, language-specific synch scope enums are 34 /// define their own set of synch scope enums. The language-specific synch scope 101 /// Maps language specific synch scope values to internal 105 /// Check if the compile-time constant synch scope value 110 /// encountered at runtime for the current language. 126 /// The enum values match the pre-defined macros [all …]
|
H A D | IdentifierTable.h | 1 //===- IdentifierTable.h - Hash table for identifier lookup -----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 64 /// scope. Such identifiers might be implementation-specific global functions 71 /// identifiers might be implementation-specific keywords or macros, for 90 /// - ObjCKeywordKind enumerators 91 /// - NotableIdentifierKind enumerators 92 /// - Builtin::ID enumerators 93 /// - NotInterestingIdentifier [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | Dwarf.h | 1 //===-- llvm/BinaryFormat/Dwarf.h ---Dwarf Constants-------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 /// file often includes support for non-released standard features. 17 //===----------------------------------------------------------------------===// 36 //===----------------------------------------------------------------------===// 55 DW_LENGTH_DWARF64 = 0xffffffff, ///< Indicator of 64-bit DWARF format. 93 /// Special ID values that distinguish a CIE from a FDE in DWARF CFI. 94 /// Not inside an enum because a 64-bit value is needed. 104 #define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) DW_TAG_##NAME = ID, argument [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandOptionArgumentTable.h | 1 //===-- CommandOptionArgumentTable.h ----------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 18 {lldb::eSaveCoreDirtyOnly, "modified-memory", 80 // FIXME: "script-type" needs to have its contents determined dynamically, so 81 // somebody can add a new scripting language to lldb and have it pickable here 87 "Commands are in the lldb command interpreter language", 92 "Commands are in the Python language.", 97 "Commands are in the Lua language.", 102 "Commands are in the default scripting language.", [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | WindowsResource.cpp | 1 //===-- WindowsResource.cpp -------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 47 // 8-byte because it makes everyone happy. 98 static Error readStringOrId(BinaryStreamReader &Reader, uint16_t &ID, in readStringOrId() argument 106 Reader.getOffset() - in readStringOrId() 107 sizeof(uint16_t)); // Re-read the bytes which we used to check the flag. in readStringOrId() 110 RETURN_IF_ERROR(Reader.readInteger(ID)); in readStringOrId() 119 if (Prefix->HeaderSize < MIN_HEADER_SIZE) in loadNext() [all …]
|
/freebsd/share/doc/psd/26.rpcrfc/ |
H A D | rpc.rfc.ms | 2 .\" Must use -- tbl -- with this one 29 specified with the External Data Representation (XDR) language. 51 One program may deal with high-level applications such as file system 52 access control and locking. The other may deal with low-level file 62 procedure in some well-specified location (such as a result 65 procedure are extracted from the well-specified location, and the 105 is own retransmission and time-out policy as the RPC layer does not 113 application retransmits RPC messages after short time-outs, the only 120 execute-at-most-once semantics. A server can do this by taking 121 advantage of the transaction ID that is packaged with every RPC [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | Options.td | 7 def tm_smn : Option<"show-mangled-names", "m">, Group<1>, 14 def tm_errors_only : Option<"errors-only", "e">, Group<1>, 19 def help_hide_aliases : Option<"hide-aliases", "a">, 21 def help_hide_user : Option<"hide-user-commands", "u">, 22 Desc<"Hide user-defined commands from the list.">; 23 def help_show_hidden : Option<"show-hidden-commands", "h">, 68 def blist_dummy_bp : Option<"dummy-breakpoints", "D">, 69 Desc<"List Dummy breakpoints - i.e. breakpoints set before a file is " 74 def breakpoint_modify_ignore_count : Option<"ignore-count", "i">, Group<1>, 77 def breakpoint_modify_one_shot : Option<"one-shot", "o">, Group<1>, [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | CompileUnit.h | 1 //===-- CompileUnit.h -------- 145 SetLanguage(lldb::LanguageType language) SetLanguage() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
H A D | DWARFLinkerUnit.h |
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangModulesDeclVendor.h | 1 //===-- ClangModulesDeclVendor.h --------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 30 return vendor->GetKind() == eClangModuleDeclVendor; in classof() 46 /// If non-NULL, a pointer to a vector to populate with the ID of every 47 /// module that is re-exported by the specified module. 68 /// A vector to populate with the ID of each module loaded (directly 69 /// and via re-exports) in this way. 101 /// Query whether Clang supports modules for a particular language. 105 /// \param[in] language [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | aspeed,usb-vhub.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 4 --- 5 $id: http://devicetree.org/schemas/usb/aspeed,usb-vhub.yaml# 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Benjamin Herrenschmidt <benh@kernel.crashing.org> 26 - aspeed,ast2400-usb-vhub 27 - aspeed,ast2500-usb-vhub 28 - aspeed,ast2600-usb-vhub 39 aspeed,vhub-downstream-ports: 46 aspeed,vhub-generic-endpoints: [all …]
|
H A D | usb251xb.txt | 1 Microchip USB 2.0 Hi-Speed Hub Controller 4 Hi-Speed Controller. 7 - compatible : Should be "microchip,usb251xb" or one of the specific types: 11 - reg : I2C address on the selected bus (default is <0x2C>) 14 - reset-gpios : Should specify the gpio for hub reset 15 - vdd-supply : Should specify the phandle to the regulator supplying vdd 16 - skip-config : Skip Hub configuration, but only send the USB-Attach command 17 - vendor-id : Set USB Vendor ID of the hub (16 bit, default is 0x0424) 18 - product-id : Set USB Product ID of the hub (16 bit, default depends on type) 19 - device-id : Set USB Device ID of the hub (16 bit, default is 0x0bb3) [all …]
|
/freebsd/contrib/dialog/po/ |
H A D | id.po | 2 # Copyright 2003-2006,2007 # Thomas Dickey. 8 "Project-Id-Version: dialog 1.1.20080819\n" 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2011-01-16 17:57-0500\n" 11 "PO-Revision-Date: 2008-07-21 13:40+0700\n" 12 "Last-Translator: Andhika Padmawan <andhika.padmawan@gmail.com>\n" 13 "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n" 14 "Language: id\n" 15 "MIME-Version: 1.0\n" 16 "Content-Type: text/plain; charset=UTF-8\n" [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | LLVMUserExpression.h | 1 //===-- LLVMUserExpression.h ------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 23 /// "lldb/Expression/LLVMUserExpression.h" Encapsulates a one-time expression 30 /// implementations of LLVMUserExpression - which will be vended through the 34 static char ID; variable 38 return ClassID == &ID || UserExpression::isA(ClassID); in isA() 40 static bool classof(const Expression *obj) { return obj->isA(&ID); } in classof() 55 llvm::StringRef prefix, SourceLanguage language, 97 bool m_allow_cxx; ///< True if the language allows C++. [all …]
|
/freebsd/contrib/ntp/html/ |
H A D | authopt.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 4 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> 7 <!-- Changed by: stenn, 25-May-2018 --> 12 font-weight: bold; 21 <!-- #BeginDate format:En2m -->24-Jul-2018 07:27<!-- #EndDate --> 25 <script type="text/javascript" language="javascript" src="scripts/command.txt"></script> 26 <script type="text/javascript" language="javascript" src="scripts/authopt.txt"></script> 31 <dt id=automax><tt>automax [<i>logsec</i>]</tt></dt> 33 <dt id="controlkey"><tt>controlkey <i>keyid</i></tt></dt> 34 <dd>Specifies the key ID for the <a [all …]
|