Searched refs:property (Results 26 - 50 of 156) sorted by relevance

1234567

/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeCategoryExtensions.i85 formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
86 format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
87 summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
88 summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.''')
89 filters = property(get_filters_array, None, doc='''A read only property tha
[all...]
H A DSBTypeEnumMemberExtensions.i13 name = property(GetName, None, doc='''A read only property that returns the name for this enum member as a string.''')
14 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this enum member.''')
15 signed = property(GetValueAsSigned, None, doc='''A read only property that returns the value of this enum member as a signed integer.''')
16 unsigned = property(GetValueAsUnsigned, None, doc='''A read only property that returns the value of this enum member as a unsigned integer.''')
H A DSBDataExtensions.i137 uint8 = property(_make_helper_uint8, None, doc='''A read only property that returns an array-like object out of which you can read uint8 values.''')
138 uint16 = property(_make_helper_uint16, None, doc='''A read only property that returns an array-like object out of which you can read uint16 values.''')
139 uint32 = property(_make_helper_uint32, None, doc='''A read only property that returns an array-like object out of which you can read uint32 values.''')
140 uint64 = property(_make_helper_uint64, None, doc='''A read only property that returns an array-like object out of which you can read uint64 values.''')
141 sint8 = property(_make_helper_sint8, None, doc='''A read only property tha
[all...]
H A DSBTypeFormatExtensions.i10 format = property(GetFormat, SetFormat)
11 options = property(GetOptions, SetOptions)
H A DSBTypeFilterExtensions.i10 options = property(GetOptions, SetOptions)
11 count = property(GetNumberOfExpressionPaths)
H A DSBCompileUnitExtensions.i20 file = property(GetFileSpec, None, doc='''A read only property that returns the same result an lldb object that represents the source file (lldb.SBFileSpec) for the compile unit.''')
21 num_line_entries = property(GetNumLineEntries, None, doc='''A read only property that returns the number of line entries in a compile unit as an integer.''')
H A DSBScriptObjectExtensions.i9 ptr = property(GetPointer, None, doc='''A read only property that returns the underlying script object.''')
10 lang = property(GetLanguage, None, doc='''A read only property that returns the script language associated with with this script object.''')
H A DSBTypeNameSpecifierExtensions.i10 name = property(GetName)
11 is_regex = property(IsRegex)
H A DSBTargetExtensions.i178 modules = property(get_modules_array, None, doc='''A read only property that returns a list() of lldb.SBModule objects contained in this target. This list is a list all modules that the target currently is tracking (the main executable and all dependent shared libraries).''')
179 module = property(get_modules_access_object, None, doc=r'''A read only property that returns an object that implements python operator overloading with the square brackets().\n target.module[<int>] allows array access to any modules.\n target.module[<str>] allows access to modules by basename, full path, or uuid string value.\n target.module[uuid.UUID()] allows module access by UUID.\n target.module[re] allows module access using a regular expression that matches the module full path.''')
180 process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that this target owns.''')
181 executable = property(GetExecutable, None, doc='''A read only property that returns an lldb object that represents the main executable module (lldb.SBModule) for this target.''')
182 debugger = property(GetDebugger, None, doc='''A read only property tha
[all...]
H A DSBUnixSignalsExtensions.i17 threads = property(get_unix_signals_list, None, doc='''A read only property that returns a list() of valid signal numbers for this platform.''')
H A DSBSymbolContextListExtensions.i68 modules = property(get_module_array, None, doc='''Returns a list() of lldb.SBModule objects, one for each module in each SBSymbolContext object in this list.''')
69 compile_units = property(get_compile_unit_array, None, doc='''Returns a list() of lldb.SBCompileUnit objects, one for each compile unit in each SBSymbolContext object in this list.''')
70 functions = property(get_function_array, None, doc='''Returns a list() of lldb.SBFunction objects, one for each function in each SBSymbolContext object in this list.''')
71 blocks = property(get_block_array, None, doc='''Returns a list() of lldb.SBBlock objects, one for each block in each SBSymbolContext object in this list.''')
72 line_entries = property(get_line_entry_array, None, doc='''Returns a list() of lldb.SBLineEntry objects, one for each line entry in each SBSymbolContext object in this list.''')
73 symbols = property(get_symbol_array, None, doc='''Returns a list() of lldb.SBSymbol objects, one for each symbol in each SBSymbolContext object in this list.''')
H A DSBModuleExtensions.i218 symbols = property(get_symbols_array, None, doc='''A read only property that returns a list() of lldb.SBSymbol objects contained in this module.''')
219 symbol = property(get_symbols_access_object, None, doc='''A read only property that can be used to access symbols by index ("symbol = module.symbol[0]"), name ("symbols = module.symbol['main']"), or using a regular expression ("symbols = module.symbol[re.compile(...)]"). The return value is a single lldb.SBSymbol object for array access, and a list() of lldb.SBSymbol objects for name and regular expression access''')
220 sections = property(get_sections_array, None, doc='''A read only property that returns a list() of lldb.SBSection objects contained in this module.''')
221 compile_units = property(get_compile_units_array, None, doc='''A read only property that returns a list() of lldb.SBCompileUnit objects contained in this module.''')
222 section = property(get_sections_access_object, None, doc='''A read only property tha
[all...]
/freebsd-current/lib/libc/locale/
H A Dwctype.c57 wctype_l(const char *property, locale_t locale) argument
100 len1 = strlen(property);
103 if (len1 == len2 && memcmp(property, p, len1) == 0)
111 wctype_t wctype(const char *property) argument
113 return wctype_l(property, 0);
/freebsd-current/sys/contrib/openzfs/contrib/zcp/
H A Dautosnap.lua1 -- Recursively snapshot every dataset with a given property
3 -- Usage: zfs program <pool> autosnap.lua -- [-n] [-p <property>] <snapshot>
12 usage: zfs program <pool> autosnap.lua -- [-n] [-p <property>] <snapshot>
15 -p <property>: property to check. [default: com.sun:auto-snapshot]
19 property = "com.sun:auto-snapshot"
28 property = arg
34 if root_snap == nil or property == nil then
48 auto, source = zfs.get_prop(root, property)
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_common.kshlib105 # Verify $property on $dataset is inherited by $parent and is set to $value
107 function verify_inherited # property value dataset parent
109 typeset property="$1"
114 typeset val=$(get_prop "$property" "$dataset")
115 typeset src=$(get_source "$property" "$dataset")
117 log_fail "Dataset $dataset did not inherit $property properly:"\
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Dauto_replace_001_pos.ksh83 # Auto-replace is opt-in so need to set property
92 part_uuid=$(udevadm info --query=property --property=ID_PART_TABLE_UUID \
129 # Note: some older versions of udevadm don't support "--property" option so
133 new_uuid=$(udevadm info --query=property --property=ID_PART_TABLE_UUID \
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
9 // This file implements semantic analysis for Objective C @property and
32 /// getImpliedARCOwnership - Given a set of property attributes and a
53 // property type.
62 /// Check the internal consistency of a property declaration with
65 ObjCPropertyDecl *property) {
66 if (property->isInvalidDecl()) return;
68 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes();
70 = property->getType().getObjCLifetime();
75 = getImpliedARCOwnership(propertyKind, property
64 checkPropertyDeclWithOwnership(Sema &S, ObjCPropertyDecl *property) argument
721 checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc, ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
800 setImpliedPropertyAttributeForReadOnlyProperty( ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
1097 ObjCPropertyDecl *property = nullptr; local
1708 DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property, ObjCMethodDecl *GetterMethod, SourceLocation Loc) argument
2138 const auto *property = propertyImpl->getPropertyDecl(); local
2374 ProcessPropertyDecl(ObjCPropertyDecl *property) argument
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_set/
H A Duser_property_002_neg.ksh37 # ZFS can handle any invalid user-defined pool property.
40 # 1. Combine all kind of invalid user pool property names.
48 log_assert "ZFS can handle any invalid user pool property."
54 # Too long property name (256 bytes, which is the 256-byte limit minus 1 byte
57 values+=("too-long-property-name")
58 # Too long property value (the limits are 1024 on FreeBSD and 4096 on Linux, so
66 names+=("too:long:property:value")
68 # Invalid property names
88 log_pass "ZFS can handle invalid user pool property passed."
/freebsd-current/usr.bin/mkesdb/
H A Dyacc.y78 file : property
81 property : /* empty */ label
82 | property R_LN
83 | property name R_LN
84 | property encoding R_LN
85 | property variable R_LN
86 | property defcsid R_LN
87 | property invalid R_LN
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zfs_set/
H A Duser_property_003_neg.ksh36 # ZFS can handle any invalid user defined property.
40 # 2. Combine all kind of invalid user property names.
57 log_assert "ZFS can handle invalid user property."
76 log_pass "ZFS can handle invalid user property passed."
/freebsd-current/contrib/arm-optimized-routines/string/aarch64/
H A Dasmdefs.h26 .section .note.gnu.property, "a"; \
38 .section .note.gnu.property, "a"; \
58 /* Add property note with supported features to all asm files. */
/freebsd-current/lib/libutil/
H A DMakefile20 pidfile.c property.c pty.c pw_scan.c pw_util.c quotafile.c \
37 property.3 pty.3 quotafile.3 realhostname.3 realhostname_sa.3 \
63 MLINKS+=property.3 property_find.3 property.3 properties_free.3
64 MLINKS+=property.3 properties_read.3
/freebsd-current/contrib/kyua/engine/
H A Drequirements.cpp66 std::string property; local
69 property = "unprivileged_user";
71 property = F("test_suites.%s.%s") % test_suite_name % (*iter);
73 if (!user_config.is_set(property))
74 return F("Required configuration property '%s' not defined") %
H A Datf_list.cpp48 /// Splits a property line of the form "name: word1 [... wordN]".
60 throw engine::format_error("Invalid property line; expecting line of "
66 /// Parses a set of consecutive property lines.
73 /// \return The parsed property lines.
83 const std::pair< std::string, std::string > property = split_prop_line( local
85 if (properties.find(property.first) != properties.end())
86 throw engine::format_error("Duplicate value for property " +
87 property.first);
88 properties.insert(property);
142 "property '
[all...]
/freebsd-current/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_sysfs.c44 * and property attributes. The primary consumer of this information
47 * this information when instantiating the zfs|zpool property tables
232 * Each zfs property has these common attributes
266 * Show the content for a zfs property attribute
269 zprop_sysfs_show(const char *attr_name, const zprop_desc_t *property, argument
277 property->pd_types != ZFS_TYPE_POOL) {
281 if (type_map[i].ztm_type & property->pd_types) {
291 show_str = zprop_types[property->pd_proptype];
293 show_str = property->pd_attr == PROP_READONLY ? "1" : "0";
295 show_str = property
[all...]

Completed in 298 milliseconds

1234567