Home
last modified time | relevance | path

Searched refs:Property (Results 1 – 25 of 57) sorted by relevance

123

/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDOptionValueProperties.cpp74 Property property(defs[i]); in Initialize()
88 Property *property = ProtectedGetPropertyAtIndex (property_idx); in SetValueChangedCallback()
99 Property property(name, desc, is_global, value_sp); in AppendProperty()
242 const Property *property = GetPropertyAtIndex(nullptr, false, idx); in GetPropertyNameAtIndex()
252 const Property *property = GetPropertyAtIndex(nullptr, false, idx); in GetPropertyDescriptionAtIndex()
264 const Property *
270 const Property *
281 const Property *setting = GetPropertyAtIndex (exe_ctx, will_modify, idx); in GetPropertyValueAtIndex()
308 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueArch()
317 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsArgs()
[all …]
HDProperty.cpp25 Property::Property (const PropertyDefinition &definition) : in Property() function in Property
197 Property::Property (const ConstString &name, in Property() function in Property
209 Property::DumpQualifiedName(Stream &strm) const in DumpQualifiedName()
223 Property::Dump (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) const in Dump()
253 Property::DumpDescription (CommandInterpreter &interpreter, in DumpDescription()
304 Property::SetValueChangedCallback (OptionValueChangedCallback callback, void *baton) in SetValueChangedCallback()
/NextBSD/contrib/llvm/utils/TableGen/
HDCodeGenTarget.cpp560 Record *Property = PropList->getElementAsRecord(i); in CodeGenIntrinsic() local
561 assert(Property->isSubClassOf("IntrinsicProperty") && in CodeGenIntrinsic()
564 if (Property->getName() == "IntrNoMem") in CodeGenIntrinsic()
566 else if (Property->getName() == "IntrReadArgMem") in CodeGenIntrinsic()
568 else if (Property->getName() == "IntrReadMem") in CodeGenIntrinsic()
570 else if (Property->getName() == "IntrReadWriteArgMem") in CodeGenIntrinsic()
572 else if (Property->getName() == "Commutative") in CodeGenIntrinsic()
574 else if (Property->getName() == "Throws") in CodeGenIntrinsic()
576 else if (Property->getName() == "IntrNoDuplicate") in CodeGenIntrinsic()
578 else if (Property->getName() == "IntrConvergent") in CodeGenIntrinsic()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDOptionValueProperties.h89 std::vector<const Property *> &matching_properties) const;
123 virtual const Property *
128 virtual const Property *
136 virtual const Property *
256 Property *
264 const Property *
275 std::vector<Property> m_properties;
HDProperty.h39 class Property
42 Property (const PropertyDefinition &definition);
44 Property (const ConstString &name,
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaObjCProperty.cpp757 ObjCPropertyDecl *Property) { in DiagnosePropertyMismatchDeclInProtocols() argument
761 PDecl->collectInheritedProtocolProperties(Property, PropMap); in DiagnosePropertyMismatchDeclInProtocols()
767 PDecl->collectInheritedProtocolProperties(Property, PropMap); in DiagnosePropertyMismatchDeclInProtocols()
775 QualType RHSType = S.Context.getCanonicalType(Property->getType()); in DiagnosePropertyMismatchDeclInProtocols()
787 S.Diag(Property->getLocation(), diag::warn_protocol_property_mismatch) in DiagnosePropertyMismatchDeclInProtocols()
788 << Property->getType(); in DiagnosePropertyMismatchDeclInProtocols()
1313 Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property, in DiagnosePropertyMismatch() argument
1318 Property->getPropertyAttributes(); in DiagnosePropertyMismatch()
1331 Diag(Property->getLocation(), diag::warn_readonly_property) in DiagnosePropertyMismatch()
1332 << Property->getDeclName() << inheritedName; in DiagnosePropertyMismatch()
[all …]
HDScopeInfo.cpp117 : Base(nullptr, true), Property(getBestPropertyDecl(PropE)) { in WeakObjectProfileTy()
132 : Base(nullptr, true), Property(Prop) { in WeakObjectProfileTy()
140 : Base(nullptr, true), Property(DRE->getDecl()) { in WeakObjectProfileTy()
141 assert(isa<VarDecl>(Property)); in WeakObjectProfileTy()
146 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) { in WeakObjectProfileTy()
HDSemaCodeComplete.cpp668 else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND)) in getDeclUsageType() local
669 T = Property->getType(); in getDeclUsageType()
2090 } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND)) { in AddResultTypeChunk() local
2092 T = Property->getUsageType(BaseType); in AddResultTypeChunk()
2094 T = Property->getType(); in AddResultTypeChunk()
6203 if (ObjCPropertyDecl *Property in CodeCompleteObjCPropertySynthesizeIvar() local
6206 = Property->getType().getNonReferenceType().getUnqualifiedType(); in CodeCompleteObjCPropertySynthesizeIvar()
6393 static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, in AddObjCKeyValueCompletions() argument
6399 IdentifierInfo *PropName = Property->getIdentifier(); in AddObjCKeyValueCompletions()
6438 Property->getType()); in AddObjCKeyValueCompletions()
[all …]
/NextBSD/include/libkern/
HDOSKextLib.h232 #pragma mark Kext/OSBundle Property List Keys
342 #pragma mark Kext/OSBundle Property Deprecated Keys
368 #pragma mark Kext/OSBundle Property List Values
/NextBSD/sys/boot/fdt/dts/
HDbindings-gpio.txt10 Property: #gpio-cells
20 Property: gpio-controller
30 Property: pin-count
53 Property: gpios
HDbindings-localbus.txt10 Property: ranges
34 Property: bank-count
61 Property: reg
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDScopeInfo.h194 const NamedDecl *Property; variable
204 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
209 const NamedDecl *getProperty() const { return Property; } in getProperty()
227 return Base == Other.Base && Property == Other.Property;
246 Val.Property)); in getHashValue()
816 : Base(nullptr, false), Property(nullptr) {} in WeakObjectProfileTy()
/NextBSD/cddl/contrib/opensolaris/lib/pyzfs/common/
HDdataset.py35 class Property(object): class
73 proptable[name] = Property(t)
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDeclObjC.cpp102 const ObjCPropertyDecl *Property) const { in HasUserDeclaredSetterMethod()
103 Selector Sel = Property->getSetterName(); in HasUserDeclaredSetterMethod()
126 if (P->getIdentifier() == Property->getIdentifier()) { in HasUserDeclaredSetterMethod()
135 if (Proto->HasUserDeclaredSetterMethod(Property)) in HasUserDeclaredSetterMethod()
141 if (OSC->HasUserDeclaredSetterMethod(Property)) in HasUserDeclaredSetterMethod()
148 if (PI->HasUserDeclaredSetterMethod(Property)) in HasUserDeclaredSetterMethod()
1657 ObjCSubstitutionContext::Property); in getUsageType()
1782 const ObjCPropertyDecl *Property, in collectInheritedProtocolProperties() argument
1787 if (Prop == Property) in collectInheritedProtocolProperties()
1789 if (Prop->getIdentifier() == Property->getIdentifier()) { in collectInheritedProtocolProperties()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDUserSettingsController.h87 std::vector<const Property *> &matching_properties) const;
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDDwarfUnit.cpp934 } else if (auto *Property = dyn_cast<DIObjCProperty>(Element)) { in constructTypeDIE() local
935 DIE &ElemDie = createAndAddDIE(Property->getTag(), Buffer); in constructTypeDIE()
936 StringRef PropertyName = Property->getName(); in constructTypeDIE()
938 if (Property->getType()) in constructTypeDIE()
939 addType(ElemDie, resolve(Property->getType())); in constructTypeDIE()
940 addSourceLine(ElemDie, Property); in constructTypeDIE()
941 StringRef GetterName = Property->getGetterName(); in constructTypeDIE()
944 StringRef SetterName = Property->getSetterName(); in constructTypeDIE()
947 if (unsigned PropertyAttributes = Property->getAttributes()) in constructTypeDIE()
/NextBSD/sys/dev/ofw/
HDofw_if.m95 * @param _prop Property name
107 * @param _prop Property name
139 * @param _prop Property name
/NextBSD/lib/clang/liblldbInterpreter/
HDMakefile49 Property.cpp \
HDMakefile.depend129 Property.o: DiagnosticCommonKinds.inc.h
130 Property.po: DiagnosticCommonKinds.inc.h
/NextBSD/contrib/mdocml/
HDlib.in91 LINE("libppath", "Property-List Paths Library (libppath, \\-lppath)")
94 LINE("libppath", "Property-List Paths Library (libppath, \\-lppath)")
97 LINE("libprop", "Property Container Object Library (libprop, \\-lprop)")
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDUserSettingsController.cpp90 Properties::Apropos (const char *keyword, std::vector<const Property *> &matching_properties) const in Apropos()
/NextBSD/contrib/dtc/Documentation/
HDdts-format.txt26 Property definitions are name value pairs in the form:
32 Property values may be defined as an array of 8, 16, 32, or 64-bit integer
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectApropos.cpp127 std::vector<const Property *> properties; in DoExecute()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/
HDlldb-forward.h172 class Property; variable
369 typedef std::shared_ptr<lldb_private::Property> PropertySP;
/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDObjCMT.cpp618 for (const auto *Property : PDecl->properties()) { in ClassImplementsAllMethodsAndProperties() local
619 if (Property->getPropertyImplementation() == ObjCPropertyDecl::Optional) in ClassImplementsAllMethodsAndProperties()
622 DeclContext::lookup_result R = IDecl->lookup(Property->getDeclName()); in ClassImplementsAllMethodsAndProperties()
628 Property->getDeclName().getAsIdentifierInfo())) in ClassImplementsAllMethodsAndProperties()
633 != Property->getPropertyAttributes()) || in ClassImplementsAllMethodsAndProperties()
634 !Ctx.hasSameType(ClassProperty->getType(), Property->getType())) in ClassImplementsAllMethodsAndProperties()

123