Searched refs:DataType (Results 1 - 25 of 118) sorted by relevance

12345

/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsDataHashtable.h49 * @param DataType the simple datatype being wrapped
52 template<class KeyClass,class DataType>
54 public nsBaseHashtable<KeyClass,DataType,DataType>
57 template<class KeyClass,class DataType>
59 public nsBaseHashtableMT<KeyClass,DataType,DataType>
H A DnsBaseHashtable.h45 template<class KeyClass,class DataType,class UserDataType>
53 template<class KeyClass,class DataType>
57 DataType mData;
58 friend class nsTHashtable< nsBaseHashtableET<KeyClass,DataType> >;
65 nsBaseHashtableET(nsBaseHashtableET<KeyClass,DataType>& toCopy);
76 * @param DataType the datatype stored in the hashtable,
78 * DataType must implicitly cast to UserDataType
81 template<class KeyClass,class DataType,class UserDataType>
83 protected nsTHashtable< nsBaseHashtableET<KeyClass,DataType> >
87 typedef nsBaseHashtableET<KeyClass,DataType> EntryTyp
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/
H A DDelete.h21 EFI_IPSEC_CONFIG_DATA_TYPE DataType; member in struct:__anon12463
29 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
38 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
H A DDump.h22 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
30 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
H A DDelete.c39 if (mMatchPolicyEntry[Context->DataType] (Selector, Data, &Context->Indexer)) {
42 Context->DataType,
59 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
68 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
82 DataType,
94 Status = mConstructPolicyEntryIndexer[DataType] (&Context.Indexer, ParamPackage);
96 Context.DataType = DataType;
98 ForeachPolicyEntry (DataType, (VISIT_POLICY_ENTRY) DeletePolicyEntry, &Context);
67 FlushOrDeletePolicyEntry( IN EFI_IPSEC_CONFIG_DATA_TYPE DataType, IN LIST_ENTRY *ParamPackage ) argument
H A DForEach.c23 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
31 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
54 DataType,
64 DataType,
78 DataType,
91 DataType,
30 ForeachPolicyEntry( IN EFI_IPSEC_CONFIG_DATA_TYPE DataType, IN VISIT_POLICY_ENTRY Routine, IN VOID *Context ) argument
H A DForEach.h41 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
49 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
H A DPolicyEntryOperation.h60 EFI_IPSEC_CONFIG_DATA_TYPE DataType; member in struct:__anon12471
69 EFI_IPSEC_CONFIG_DATA_TYPE DataType; member in struct:__anon12472
129 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
140 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
147 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
156 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DTargetTxtClassObject.py19 import DataType namespace
37 DataType.TAB_TAT_DEFINES_ACTIVE_PLATFORM : '',
38 DataType.TAB_TAT_DEFINES_ACTIVE_MODULE : '',
39 DataType.TAB_TAT_DEFINES_TOOL_CHAIN_CONF : '',
40 DataType.TAB_TAT_DEFINES_MAX_CONCURRENT_THREAD_NUMBER : '',
41 DataType.TAB_TAT_DEFINES_TARGET : [],
42 DataType.TAB_TAT_DEFINES_TOOL_CHAIN_TAG : [],
43 DataType.TAB_TAT_DEFINES_TARGET_ARCH : [],
44 DataType.TAB_TAT_DEFINES_BUILD_RULE_CONF : '',
98 if Key in [DataType
[all...]
H A DString.py18 import DataType namespace
33 # The default SplitTag is DataType.TAB_VALUE_SPLIT
37 # @param SplitTag: The split key, default is DataType.TAB_VALUE_SPLIT
42 def GetSplitValueList(String, SplitTag=DataType.TAB_VALUE_SPLIT, MaxSplit= -1):
78 # The default SplitTag is DataType.TAB_VALUE_SPLIT
82 # @param SplitStr: The split key, default is DataType.TAB_VALUE_SPLIT
87 def GetSplitList(String, SplitStr=DataType.TAB_VALUE_SPLIT, MaxSplit= -1):
120 if String.find(DataType.TAB_DEFINE + ' ') > -1:
121 List = String.replace(DataType.TAB_DEFINE + ' ', '').split(DataType
[all...]
H A DDscClassObject.py22 from DataType import *
178 self.GenPcds(DataType.TAB_PCDS_FIXED_AT_BUILD, ContainerFile)
179 self.GenPcds(DataType.TAB_PCDS_PATCHABLE_IN_MODULE, ContainerFile)
180 self.GenFeatureFlagPcds(DataType.TAB_PCDS_FEATURE_FLAG, ContainerFile)
181 self.GenDynamicDefaultPcds(DataType.TAB_PCDS_DYNAMIC_DEFAULT, ContainerFile)
182 self.GenDynamicDefaultPcds(DataType.TAB_PCDS_DYNAMIC_EX_DEFAULT, ContainerFile)
183 self.GenDynamicHiiPcds(DataType.TAB_PCDS_DYNAMIC_HII, ContainerFile)
184 self.GenDynamicHiiPcds(DataType.TAB_PCDS_DYNAMIC_EX_HII, ContainerFile)
185 self.GenDynamicVpdPcds(DataType.TAB_PCDS_DYNAMIC_VPD, ContainerFile)
186 self.GenDynamicVpdPcds(DataType
[all...]
H A DParsing.py19 from DataType import *
275 ItemList = GetSplitValueList((Item[0] + DataType.TAB_VALUE_SPLIT * 2))
351 (TokenGuid, TokenName) = GetSplitValueList(List[0], DataType.TAB_SPLIT)
395 (TokenGuid, TokenName) = GetSplitValueList(List[0], DataType.TAB_SPLIT)
416 (TokenGuid, TokenName) = GetSplitValueList(List[0], DataType.TAB_SPLIT)
453 ListItem = CleanString(Line.rsplit('{', 1)[0], DataType.TAB_COMMENT_SPLIT)
495 Pcd.append((DataType.TAB_PCDS_FEATURE_FLAG_NULL, Line))
497 Pcd.append((DataType.TAB_PCDS_PATCHABLE_IN_MODULE_NULL, Line))
499 Pcd.append((DataType.TAB_PCDS_FIXED_AT_BUILD_NULL, Line))
501 Pcd.append((DataType
[all...]
H A DDictionary.py18 from DataType import *
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DParsing.py37 from Library import DataType namespace
58 if String.find(DataType.TAB_EQUAL_SPLIT) < 0:
62 List = GetSplitValueList(String, DataType.TAB_EQUAL_SPLIT, MaxSplit=1)
81 SupMod = DataType.SUP_MODULE_LIST_STRING
105 ItemList = GetSplitValueList((Item[0] + DataType.TAB_VALUE_SPLIT * 2))
106 SupMod = DataType.SUP_MODULE_LIST_STRING
137 TokenInfoList = GetSplitValueList(TokenInfoString, DataType.TAB_SPLIT)
156 List = GetSplitValueList(Item + DataType.TAB_VALUE_SPLIT * 2)
168 (TokenGuid, TokenName) = GetSplitValueList(List[0], DataType.TAB_SPLIT)
191 (TokenGuid, TokenName) = GetSplitValueList(List[0], DataType
[all...]
H A DString.py25 import Library.DataType as DataType namespace
38 # The default SplitTag is DataType.TAB_VALUE_SPLIT
42 # @param SplitTag: The split key, default is DataType.TAB_VALUE_SPLIT
46 def GetSplitValueList(String, SplitTag=DataType.TAB_VALUE_SPLIT, MaxSplit=-1):
75 if String.find(DataType.TAB_DEFINE + ' ') > -1:
76 List = String.replace(DataType.TAB_DEFINE + ' ', '').\
77 split(DataType.TAB_EQUAL_SPLIT)
96 Lines = Lines.split(DataType.TAB_SECTION_END, 1)[1]
120 Lines = Lines.split(DataType
[all...]
H A DCommentGenerating.py23 from Library.DataType import TAB_SPACE_SPLIT
24 from Library.DataType import TAB_INF_GUIDTYPE_VAR
25 from Library.DataType import USAGE_ITEM_NOTIFY
26 from Library.DataType import ITEM_UNDEFINED
27 from Library.DataType import LANGUAGE_EN_US
H A DCommentParsing.py26 from Library.DataType import HEADER_COMMENT_NOT_STARTED
27 from Library.DataType import TAB_COMMENT_SPLIT
28 from Library.DataType import HEADER_COMMENT_LICENSE
29 from Library.DataType import HEADER_COMMENT_ABSTRACT
30 from Library.DataType import HEADER_COMMENT_COPYRIGHT
31 from Library.DataType import HEADER_COMMENT_DESCRIPTION
32 from Library.DataType import TAB_SPACE_SPLIT
33 from Library.DataType import TAB_COMMA_SPLIT
34 from Library.DataType import SUP_MODULE_LIST
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
H A DAmlOption.c24 @param[out] DataType Points to the returned data type or EFI_ACPI_DATA_TYPE_NONE if no data exists
38 OUT EFI_ACPI_DATA_TYPE *DataType,
46 if (DataType != NULL) {
47 *DataType = AmlTypeToAcpiType (AmlByteEncoding->Format[TermIndex - 1]);
84 // NOTE: We need override DataType here, if there is a case the AML_OBJECT is AML_NAME.
89 if (DataType != NULL) {
90 *DataType = AmlTypeToAcpiType (AML_NAME);
134 @param[out] DataType Points to the returned data type or EFI_ACPI_DATA_TYPE_NONE if no data exists
148 OUT EFI_ACPI_DATA_TYPE *DataType,
194 *DataType
33 AmlParseOptionTerm( IN AML_BYTE_ENCODING *AmlByteEncoding, IN UINT8 *Buffer, IN UINTN MaxBufferSize, IN AML_OP_PARSE_INDEX TermIndex, OUT EFI_ACPI_DATA_TYPE *DataType, OUT VOID **Data, OUT UINTN *DataSize ) argument
143 AmlParseOptionCommon( IN AML_BYTE_ENCODING *AmlByteEncoding, IN UINT8 *Buffer, IN UINTN MaxBufferSize, IN AML_OP_PARSE_INDEX Index, OUT EFI_ACPI_DATA_TYPE *DataType, OUT VOID **Data, OUT UINTN *DataSize ) argument
339 EFI_ACPI_DATA_TYPE DataType; local
390 EFI_ACPI_DATA_TYPE DataType; local
435 AmlParseOptionHandleCommon( IN EFI_AML_HANDLE *AmlHandle, IN AML_OP_PARSE_INDEX Index, OUT EFI_ACPI_DATA_TYPE *DataType, OUT VOID **Data, OUT UINTN *DataSize ) argument
[all...]
H A DAmlChild.c123 EFI_ACPI_DATA_TYPE DataType; local
136 &DataType,
143 if (DataType == EFI_ACPI_DATA_TYPE_NONE) {
153 if ((DataType == EFI_ACPI_DATA_TYPE_CHILD) &&
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DIp6Config.h203 This function is used to set the configuration data of type DataType for the EFI
208 some DataType that multiple structure instances are allowed.
222 @param[in] DataType The type of data to set.
225 associated with the DataType.
233 data type indicated by DataType.
241 indicated by DataType.
242 @retval EFI_UNSUPPORTED This DataType is not supported.
251 IN EFI_IP6_CONFIG_DATA_TYPE DataType,
260 This function returns the configuration data of type DataType for the EFI IPv6 network
275 @param[in] DataType Th
[all...]
H A DIpSecConfig.h42 /// boundary. With this DataType, SetData() function is to set
615 This function is used to set the IPsec configuration information of type DataType for
618 a data entry. The selector structure depends on DataType's definition.
620 by DataType and Selector to be deleted.
623 @param[in] DataType The type of data to be set.
625 specified by DataType. A NULL Selector causes the entire
628 associated with the DataType.
636 @retval EFI_UNSUPPORTED The specified DataType is not supported.
644 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
655 DataType an
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/
H A Dprog_uniform.h54 GLenum DataType; /**< GL_FLOAT, GL_FLOAT_VEC2, etc */
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/PomAdapter/
H A DDecPomAlignment.py31 from Library.DataType import ARCH_LIST
32 from Library.DataType import TAB_GUIDS
33 from Library.DataType import TAB_PROTOCOLS
34 from Library.DataType import TAB_PPIS
35 from Library.DataType import TAB_DEC_DEFINES_PACKAGE_NAME
36 from Library.DataType import TAB_DEC_DEFINES_PACKAGE_GUID
37 from Library.DataType import TAB_DEC_DEFINES_PACKAGE_VERSION
38 from Library.DataType import TAB_DEC_DEFINES_DEC_SPECIFICATION
39 from Library.DataType import TAB_ARCH_COMMON
41 from Library.DataType impor
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIpSecConfigImpl.h182 configuration data specified by DataType.
214 is associated with the DataType.
256 @param[in] DataType The specified IPsec Config Data Type.
266 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
618 configuration data specified by DataType.
657 configuration data specified by DataType.
685 configuration data specified by DataType.
715 is associated with the DataType.
740 is associated with the DataType.
764 is associated with the DataType
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/GenMetaFile/
H A DGenDecFile.py28 from Library.DataType import TAB_SPACE_SPLIT
29 from Library.DataType import TAB_COMMA_SPLIT
30 from Library.DataType import TAB_ARCH_COMMON
31 from Library.DataType import TAB_DEC_DEFINES_DEC_SPECIFICATION
32 from Library.DataType import TAB_DEC_DEFINES_PACKAGE_NAME
33 from Library.DataType import TAB_DEC_DEFINES_PACKAGE_GUID
34 from Library.DataType import TAB_DEC_DEFINES_PACKAGE_VERSION

Completed in 1981 milliseconds

12345