/third_party/icu/tools/unicode/c/genprops/ |
H A D | pnames_data.h | 1200 static const Property PROPERTIES[114] = { 1201 Property(UCHAR_ALPHABETIC, "Alpha Alphabetic"), 1202 Property(UCHAR_ASCII_HEX_DIGIT, "AHex ASCII_Hex_Digit"), 1203 Property(UCHAR_BIDI_CONTROL, "Bidi_C Bidi_Control"), 1204 Property(UCHAR_BIDI_MIRRORED, "Bidi_M Bidi_Mirrored"), 1205 Property(UCHAR_DASH, "Dash Dash"), 1206 Property(UCHAR_DEFAULT_IGNORABLE_CODE_POINT, "DI Default_Ignorable_Code_Point"), 1207 Property(UCHAR_DEPRECATED, "Dep Deprecated"), 1208 Property(UCHAR_DIACRITIC, "Dia Diacritic"), 1209 Property(UCHAR_EXTENDE [all...] |
/third_party/node/deps/v8/tools/v8windbg/src/ |
H A D | v8-debug-helper-interop.cc | 62 Property::Property(std::u16string property_name, std::u16string type_name, in Property() function in Property 71 Property::~Property() = default; 72 Property::Property(const Property&) = default; 73 Property::Property(Property [all...] |
H A D | v8-debug-helper-interop.h | 71 struct Property { struct 72 Property(std::u16string property_name, std::u16string type_name, 75 ~Property(); 76 Property(const Property&); 77 Property(Property&&); 78 Property& operator=(const Property&); 79 Property [all...] |
H A D | object-inspection.h | 60 // Get a pointer to the Property object held by this IIndexedFieldData. The 63 virtual HRESULT __stdcall GetProperty(Property** property) = 0; 71 IndexedFieldData(Property property); 74 // Get a pointer to the Property object held by this IndexedFieldData. The 77 IFACEMETHOD(GetProperty)(Property** property); 80 Property property_; 293 HRESULT GetModelForProperty(const Property& prop,
|
/third_party/typescript/tests/baselines/reference/ |
H A D | unionTypeWithRecursiveSubtypeReduction1.js | 7 public members: (Class | Property)[]; 14 class Property { 18 var t: Class | Property; 38 var Property = /** @class */ (function () {
39 function Property() {
41 return Property;
|
H A D | unionTypeWithRecursiveSubtypeReduction2.js | 7 public members: (Class | Property)[]; 14 class Property { 19 var p: Property; 40 var Property = /** @class */ (function () {
41 function Property() {
43 return Property;
|
H A D | recursiveTypeComparison.js | 5 // This member can't be of type T, Property<T>, or Observable<anything but T> 8 expo1: Property<T[]>; // 0.31 seconds in check 9 expo2: Property<T[]>; // 3.11 seconds 10 expo3: Property<T[]>; // 82.28 seconds 12 interface Property<T> extends Observable<T> { } 15 var stuck: Property<number> = p;
|
H A D | recursiveTypeComparison2.js | 11 slidingWindow(max: number, min?: number): Property<T[]>; 13 combine<U, V>(other: Observable<U>, f: (a: T, b: U) => V): Property<V>; 15 decode(mapping: Object): Property<any>; 16 awaiting<U>(other: Observable<U>): Property<boolean>; 22 interface Property<T> extends Observable<T> {
|
H A D | unspecializedConstraints.js | 34 getProperties(): Property[] { 37 getProperty(index: number): Property { 40 getPropertyByName(name: string): Property { 68 class Property extends Symbol { 72 equals(other: Property): boolean { 243 var Property = /** @class */ (function (_super) {
244 __extends(Property, _super);
245 function Property(name, type, flags) {
252 Property.prototype.equals = function (other) {
257 return Property;
[all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | InstructionSelect.h | 36 .set(MachineFunctionProperties::Property::IsSSA) 37 .set(MachineFunctionProperties::Property::Legalized) 38 .set(MachineFunctionProperties::Property::RegBankSelected); 43 MachineFunctionProperties::Property::Selected);
|
H A D | Legalizer.h | 53 MachineFunctionProperties::Property::IsSSA); 58 MachineFunctionProperties::Property::Legalized); 63 MachineFunctionProperties::Property::NoPHIs);
|
H A D | Localizer.h | 85 .set(MachineFunctionProperties::Property::IsSSA) 86 .set(MachineFunctionProperties::Property::Legalized) 87 .set(MachineFunctionProperties::Property::RegBankSelected);
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLVariableReference.cpp | 24 bool VariableReference::hasProperty(Property property) const { in hasProperty() 26 case Property::kSideEffects: return false; in hasProperty() 27 case Property::kContainsRTAdjust: return this->variable()->name() == "sk_RTAdjust"; in hasProperty()
|
H A D | SkSLExpression.h | 64 enum class Property { class in SkSL::Expression::Kind 166 virtual bool hasProperty(Property property) const = 0; 169 return this->hasProperty(Property::kSideEffects); in hasSideEffects() 173 return this->hasProperty(Property::kContainsRTAdjust); in containsRTAdjust()
|
H A D | SkSLExternalFunctionReference.h | 33 bool hasProperty(Property property) const override { 34 return property == Property::kSideEffects;
|
H A D | SkSLExternalFunctionCall.h | 42 bool hasProperty(Property property) const override { 43 if (property == Property::kSideEffects) {
|
H A D | SkSLPrefixExpression.h | 52 bool hasProperty(Property property) const override { 53 if (property == Property::kSideEffects &&
|
H A D | SkSLPostfixExpression.h | 51 bool hasProperty(Property property) const override { 52 return (property == Property::kSideEffects) ||
|
/third_party/skia/infra/bots/recipe_modules/build/ |
H A D | __init__.py | 21 from recipe_engine.recipe_api import Property namespace 24 'buildername': Property(default=None),
|
/third_party/gn/infra/recipe_modules/macos_sdk/ |
H A D | __init__.py | 14 from recipe_engine.recipe_api import Property namespace 19 Property(
|
/third_party/gn/infra/recipe_modules/windows_sdk/ |
H A D | __init__.py | 14 from recipe_engine.recipe_api import Property namespace 19 Property(
|
/third_party/node/deps/v8/src/ast/ |
H A D | prettyprinter.h | 136 const ZonePtrList<ObjectLiteral::Property>* properties); 137 void PrintClassProperty(ClassLiteral::Property* property); 139 const ZonePtrList<ClassLiteral::Property>* properties);
|
H A D | ast.h | 101 V(Property) \ 1214 // Property is used for passing information 1220 CONSTANT, // Property with constant value (compile time). 1221 COMPUTED, // Property with computed value (execution time). 1222 MATERIALIZED_LITERAL, // Property value is a materialized literal. 1224 SETTER, // Property is an accessor function. 1225 PROTOTYPE, // Property is __proto__. 1257 using Property = ObjectLiteralProperty; 1259 ObjectLiteralBoilerplateBuilder(ZoneList<Property*>* properties, in ObjectLiteralBoilerplateBuilder() 1277 const ZonePtrList<Property>* propertie in properties_count() 1660 Property(Expression* obj, Expression* key, int pos, bool optional_chain) Property() function in v8::internal::final [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-generator.h | 102 Property* property, 218 void VisitKeyedSuperPropertyLoad(Property* property, 225 void VisitNamedSuperPropertyLoad(Property* property, 228 void VisitPropertyLoad(Register obj, Property* expr); 229 void VisitPropertyLoadForRegister(Register obj, Property* expr, 323 void BuildInvalidPropertyAccess(MessageTemplate tmpl, Property* property); 324 void BuildPrivateBrandCheck(Property* property, Register object); 332 void BuildClassProperty(ClassLiteral::Property* property);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | ReachingDefAnalysis.h | 90 MachineFunctionProperties::Property::NoVRegs).set( 91 MachineFunctionProperties::Property::TracksLiveness);
|