HomeSort by relevance Sort by last modified time
    Searched defs:Property (Results 51 - 75 of 327) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
MachineFunction.h 111 /// require that a property be set.
120 // that the property hold, but not that it does not hold.
122 // Property descriptions:
127 // While this property is set, register liveness information in basic block
132 // When this property is clear, liveness is no longer reliable.
148 enum class Property : unsigned {
160 bool hasProperty(Property P) const {
164 MachineFunctionProperties &set(Property P) {
169 MachineFunctionProperties &reset(Property P) {
201 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineFunction.h 88 /// require that a property be set.
97 // that the property hold, but not that it does not hold.
99 // Property descriptions:
104 // While this property is set, register liveness information in basic block
109 // When this property is clear, liveness is no longer reliable.
125 enum class Property : unsigned {
137 bool hasProperty(Property P) const {
140 MachineFunctionProperties &set(Property P) {
144 MachineFunctionProperties &reset(Property P) {
172 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
MachineFunction.h 111 /// require that a property be set.
120 // that the property hold, but not that it does not hold.
122 // Property descriptions:
127 // While this property is set, register liveness information in basic block
132 // When this property is clear, liveness is no longer reliable.
148 enum class Property : unsigned {
160 bool hasProperty(Property P) const {
164 MachineFunctionProperties &set(Property P) {
169 MachineFunctionProperties &reset(Property P) {
201 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
MachineFunction.h 111 /// require that a property be set.
120 // that the property hold, but not that it does not hold.
122 // Property descriptions:
127 // While this property is set, register liveness information in basic block
132 // When this property is clear, liveness is no longer reliable.
148 enum class Property : unsigned {
160 bool hasProperty(Property P) const {
164 MachineFunctionProperties &set(Property P) {
169 MachineFunctionProperties &reset(Property P) {
201 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
MachineFunction.h 111 /// require that a property be set.
120 // that the property hold, but not that it does not hold.
122 // Property descriptions:
127 // While this property is set, register liveness information in basic block
132 // When this property is clear, liveness is no longer reliable.
148 enum class Property : unsigned {
160 bool hasProperty(Property P) const {
164 MachineFunctionProperties &set(Property P) {
169 MachineFunctionProperties &reset(Property P) {
201 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
MachineFunction.h 111 /// require that a property be set.
120 // that the property hold, but not that it does not hold.
122 // Property descriptions:
127 // While this property is set, register liveness information in basic block
132 // When this property is clear, liveness is no longer reliable.
148 enum class Property : unsigned {
160 bool hasProperty(Property P) const {
164 MachineFunctionProperties &set(Property P) {
169 MachineFunctionProperties &reset(Property P) {
201 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
MachineFunction.h 111 /// require that a property be set.
120 // that the property hold, but not that it does not hold.
122 // Property descriptions:
127 // While this property is set, register liveness information in basic block
132 // When this property is clear, liveness is no longer reliable.
148 enum class Property : unsigned {
160 bool hasProperty(Property P) const {
164 MachineFunctionProperties &set(Property P) {
169 MachineFunctionProperties &reset(Property P) {
201 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
MachineFunction.h 111 /// require that a property be set.
120 // that the property hold, but not that it does not hold.
122 // Property descriptions:
127 // While this property is set, register liveness information in basic block
132 // When this property is clear, liveness is no longer reliable.
148 enum class Property : unsigned {
160 bool hasProperty(Property P) const {
164 MachineFunctionProperties &set(Property P) {
169 MachineFunctionProperties &reset(Property P) {
201 BitVector(static_cast<unsigned>(Property::LastProperty)+1)
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 184 /// Access Expression | "Base" Decl | "Property" Decl
186 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
202 /// The extra flag is "true" if the Base and Property are enough to uniquely
209 /// The "property" decl, as described in the class documentation.
213 const NamedDecl *Property;
223 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
228 const NamedDecl *getProperty() const { return Property; }
231 /// rather than, say, an instance variable or property of another object.
246 return Base == Other.Base && Property == Other.Property
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TvViewUiManager.java 38 import android.util.Property;
445 Property.of(FrameLayout.class, ViewGroup.LayoutParams.class, "layoutParams"));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
Variable.c 911 VAR_CHECK_VARIABLE_PROPERTY Property;
919 if (VarCheckLibVariablePropertyGet (GetVariableNamePtr (Variable), GetVendorGuidPtr (Variable), &Property) == EFI_NOT_FOUND) {
938 VAR_CHECK_VARIABLE_PROPERTY Property;
951 if (VarCheckLibVariablePropertyGet (GetVariableNamePtr (Variable), GetVendorGuidPtr (Variable), &Property) == EFI_NOT_FOUND) {
953 // No property, it is user variable.
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]
SemaObjCProperty.cpp 1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
10 // This file implements semantic analysis for Objective C @property and
33 /// getImpliedARCOwnership - Given a set of property attributes and a
55 // property type.
64 /// Check the internal consistency of a property declaration with
67 ObjCPropertyDecl *property) {
68 if (property->isInvalidDecl()) return;
71 = property->getPropertyAttributes();
73 = property->getType().getObjCLifetime();
78 = getImpliedARCOwnership(propertyKind, property->getType())
915 ObjCPropertyDecl *property = nullptr; local
1916 const auto *property = propertyImpl->getPropertyDecl(); local
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 42 /** Describes the kinds of tokens a CSS property's value can safely contain. */
46 static final class Property {
56 private Property(
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) {
86 * @param propertyNames a series of lower-case CSS property names that appear
88 * property name. This class's {@code main} method will dump a list of
89 * known property names when run with zero arguments
130 Property property = properties.get(propertyName); local
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.h 86 * Any property change to the vector drawable coming from UI thread (such as bulk setters to update
306 // Set property values during animation
312 enum class Property {
436 enum class Property {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Sema/
ScopeInfo.h 199 /// Access Expression | "Base" Decl | "Property" Decl
201 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
217 /// The extra flag is "true" if the Base and Property are enough to uniquely
224 /// The "property" decl, as described in the class documentation.
228 const NamedDecl *Property;
238 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
243 const NamedDecl *getProperty() const { return Property; }
246 /// rather than, say, an instance variable or property of another object.
261 return Base == Other.Base && Property == Other.Property
    [all...]

Completed in 1321 milliseconds

1 23 4 5 6 7 8 91011>>