Home
last modified time | relevance | path

Searched refs:PropertyKey (Results 1 – 25 of 1067) sorted by relevance

12345678910>>...43

/dports/multimedia/assimp/assimp-5.1.3/port/jassimp/jassimp/src/jassimp/
H A DAiMaterial.java87 public static enum PropertyKey { enum in AiMaterial
237 private PropertyKey(String key, Class<?> type) { in PropertyKey() method in AiMaterial.PropertyKey
480 public boolean hasProperties(Set<PropertyKey> keys) { in hasProperties()
481 for (PropertyKey key : keys) { in hasProperties()
526 return getTyped(PropertyKey.NAME, String.class); in getName()
965 PropertyKey.TEX_MAP_MODE_U); in getTextureMapModeU()
988 PropertyKey.TEX_MAP_MODE_V); in getTextureMapModeV()
1011 PropertyKey.TEX_MAP_MODE_W); in getTextureMapModeW()
1145 private Map<PropertyKey, Object> m_defaults =
1146 new EnumMap<PropertyKey, Object>(PropertyKey.class);
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/external/assimp/port/jassimp/jassimp/src/jassimp/
H A DAiMaterial.java76 public static enum PropertyKey { enum in AiMaterial
226 private PropertyKey(String key, Class<?> type) { in PropertyKey() method in AiMaterial.PropertyKey
470 public boolean hasProperties(Set<PropertyKey> keys) { in hasProperties()
471 for (PropertyKey key : keys) { in hasProperties()
516 return getTyped(PropertyKey.NAME, String.class); in getName()
955 PropertyKey.TEX_MAP_MODE_U); in getTextureMapModeU()
978 PropertyKey.TEX_MAP_MODE_V); in getTextureMapModeV()
1001 PropertyKey.TEX_MAP_MODE_W); in getTextureMapModeW()
1135 private Map<PropertyKey, Object> m_defaults =
1136 new EnumMap<PropertyKey, Object>(PropertyKey.class);
[all …]
/dports/www/firefox/firefox-99.0/js/src/vm/
H A DId.cpp17 static const JS::PropertyKey voidKeyValue = JS::PropertyKey::Void();
22 bool JS::PropertyKey::isPrivateName() const { in isPrivateName()
26 bool JS::PropertyKey::isWellKnownSymbol(JS::SymbolCode code) const { in isWellKnownSymbol()
34 /* static */ JS::PropertyKey JS::PropertyKey::fromPinnedString(JSString* str) { in fromPinnedString()
39 /* static */ bool JS::PropertyKey::isNonIntAtom(JSAtom* atom) { in isNonIntAtom()
44 static_assert(PropertyKey::IntMin == 0); in isNonIntAtom()
45 return index > PropertyKey::IntMax; in isNonIntAtom()
48 /* static */ bool JS::PropertyKey::isNonIntAtom(JSString* str) { in isNonIntAtom()
49 return JS::PropertyKey::isNonIntAtom(&str->asAtom()); in isNonIntAtom()
/dports/science/cdk/cdk-cdk-2.3/storage/ctab/src/test/java/org/openscience/cdk/io/
H A DMDLV2000PropertiesBlockTest.java59 assertThat(MDLV2000Reader.PropertyKey.of("M END"), is(MDLV2000Reader.PropertyKey.M_END)); in m_end()
64 assertThat(MDLV2000Reader.PropertyKey.of("M END "), is(MDLV2000Reader.PropertyKey.M_END)); in m_end_padding()
69 assertThat(MDLV2000Reader.PropertyKey.of("M CHG "), is(MDLV2000Reader.PropertyKey.M_CHG)); in m_chg_padding()
74 assertThat(MDLV2000Reader.PropertyKey.of("M ISO "), is(MDLV2000Reader.PropertyKey.M_ISO)); in m_iso_padding()
79 … assertThat(MDLV2000Reader.PropertyKey.of("A 1"), is(MDLV2000Reader.PropertyKey.ATOM_ALIAS)); in atom_alias()
84 … assertThat(MDLV2000Reader.PropertyKey.of("V 1"), is(MDLV2000Reader.PropertyKey.ATOM_VALUE)); in atom_value()
89 …assertThat(MDLV2000Reader.PropertyKey.of("G 1"), is(MDLV2000Reader.PropertyKey.GROUP_ABBREVIATI… in group_abrv()
94 assertThat(MDLV2000Reader.PropertyKey.of("S SKP 5"), is(MDLV2000Reader.PropertyKey.SKIP)); in skip()
100 assertThat(MDLV2000Reader.PropertyKey.of("M ZZC "), is(MDLV2000Reader.PropertyKey.M_ZZC)); in m_zzc_padding()
/dports/cad/sweethome3d/SweetHome3D-6.6.4-src/src/com/eteks/sweethome3d/io/
H A DDefaultFurnitureCatalog.java67 public enum PropertyKey { enum in DefaultFurnitureCatalog
336 private PropertyKey(String keyPrefix) { in PropertyKey() method in DefaultFurnitureCatalog.PropertyKey
350 public static PropertyKey fromPrefix(String keyPrefix) { in fromPrefix()
351 for (PropertyKey key : PropertyKey.values()) { in fromPrefix()
673 PropertyKey.fromPrefix(keyPrefix); in isDefaultProperty()
698 name = resource.getString(PropertyKey.NAME.getKey(index)); in readPieceOfFurniture()
727 …Content icon = getContent(resource, PropertyKey.ICON.getKey(index), PropertyKey.ICON_DIGEST.getKe… in readPieceOfFurniture()
729 …Content planIcon = getContent(resource, PropertyKey.PLAN_ICON.getKey(index), PropertyKey.PLAN_ICON… in readPieceOfFurniture()
732 …Content model = getContent(resource, PropertyKey.MODEL.getKey(index), PropertyKey.MODEL_DIGEST.get… in readPieceOfFurniture()
759 price = new BigDecimal(resource.getString(PropertyKey.PRICE.getKey(index))); in readPieceOfFurniture()
[all …]
/dports/www/firefox/firefox-99.0/js/public/
H A DId.h44 class PropertyKey {
64 PropertyKey id; in fromRawBits()
69 bool operator==(const PropertyKey& rhs) const {
72 bool operator!=(const PropertyKey& rhs) const {
133 static constexpr PropertyKey Void() { return PropertyKey(); } in Void()
137 static constexpr PropertyKey Int(int32_t i) { in Int()
140 return PropertyKey::fromRawBits(bits); in Int()
143 static PropertyKey Symbol(JS::Symbol* sym) { in Symbol()
171 static PropertyKey NonIntAtom(JSAtom* atom) { in NonIntAtom()
214 using jsid = JS::PropertyKey;
[all …]
/dports/www/firefox-esr/firefox-91.8.0/js/src/gdb/mozilla/
H A DPropertyKey.py17 class PropertyKey(object): class
36 tag = bits & PropertyKey.TYPE_MASK
37 if tag == PropertyKey.TYPE_STRING:
39 elif tag & PropertyKey.TYPE_INT:
41 elif tag == PropertyKey.TYPE_VOID:
43 elif tag == PropertyKey.TYPE_SYMBOL:
44 body = (bits & ~PropertyKey.TYPE_MASK).cast(self.cache.JSSymbol_ptr_t)
45 elif tag == PropertyKey.TYPE_EMPTY:
56 return mozilla.Root.Rooted(value, cache, PropertyKey)
61 return mozilla.Root.Handle(value, cache, PropertyKey)
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/gdb/mozilla/
H A DPropertyKey.py17 class PropertyKey(object): class
36 tag = bits & PropertyKey.TYPE_MASK
37 if tag == PropertyKey.TYPE_STRING:
39 elif tag & PropertyKey.TYPE_INT:
41 elif tag == PropertyKey.TYPE_VOID:
43 elif tag == PropertyKey.TYPE_SYMBOL:
44 body = (bits & ~PropertyKey.TYPE_MASK).cast(self.cache.JSSymbol_ptr_t)
45 elif tag == PropertyKey.TYPE_EMPTY:
56 return mozilla.Root.Rooted(value, cache, PropertyKey)
61 return mozilla.Root.Handle(value, cache, PropertyKey)
[all …]
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/jsruntime/
H A Dqv4propertykey_p.h61 struct PropertyKey struct
113 static PropertyKey invalid() { PropertyKey key; key.val = 0; return key; } in invalid() argument
114 …static PropertyKey fromArrayIndex(uint idx) { PropertyKey key; key.val = ArrayIndexMask | static_c… in fromArrayIndex() argument
119 static PropertyKey fromStringOrSymbol(Heap::StringOrSymbol *b) in fromStringOrSymbol() argument
120 { PropertyKey key; key.setM(b); return key; } in fromStringOrSymbol()
134 static PropertyKey fromId(quint64 id) { in fromId() argument
135 PropertyKey key; key.val = id; return key; in fromId()
145 bool operator ==(const PropertyKey &other) const { return val == other.val; } argument
146 bool operator !=(const PropertyKey &other) const { return val != other.val; }
147 bool operator <(const PropertyKey &other) const { return val < other.val; }
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/jsruntime/
H A Dqv4propertykey_p.h61 struct PropertyKey struct
113 static PropertyKey invalid() { PropertyKey key; key.val = 0; return key; } in invalid() argument
114 …static PropertyKey fromArrayIndex(uint idx) { PropertyKey key; key.val = ArrayIndexMask | static_c… in fromArrayIndex() argument
119 static PropertyKey fromStringOrSymbol(Heap::StringOrSymbol *b) in fromStringOrSymbol() argument
120 { PropertyKey key; key.setM(b); return key; } in fromStringOrSymbol()
134 static PropertyKey fromId(quint64 id) { in fromId() argument
135 PropertyKey key; key.val = id; return key; in fromId()
145 bool operator ==(const PropertyKey &other) const { return val == other.val; } argument
146 bool operator !=(const PropertyKey &other) const { return val != other.val; }
147 bool operator <(const PropertyKey &other) const { return val < other.val; }
/dports/www/firefox/firefox-99.0/js/src/gdb/mozilla/
H A DPropertyKey.py17 class PropertyKey(object): class
35 tag = bits & PropertyKey.TypeMask
36 if tag == PropertyKey.StringTypeTag:
38 elif tag & PropertyKey.IntTagBit:
40 elif tag == PropertyKey.VoidTypeTag:
42 elif tag == PropertyKey.SymbolTypeTag:
43 body = (bits & ~PropertyKey.TypeMask).cast(self.cache.JSSymbol_ptr_t)
53 return mozilla.Root.Rooted(value, cache, PropertyKey)
58 return mozilla.Root.Handle(value, cache, PropertyKey)
63 return mozilla.Root.MutableHandle(value, cache, PropertyKey)
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/android/java/src/org/chromium/ui/modelutil/
H A DPropertyModel.java252 private final Map<PropertyKey, ValueContainer> mData;
259 public PropertyModel(PropertyKey... keys) { in PropertyModel()
268 public PropertyModel(Collection<PropertyKey> keys) { in PropertyModel()
277 private void validateKey(PropertyKey key) { in validateKey()
426 public Collection<PropertyKey> getAllProperties() { in getAllProperties()
460 public Builder(PropertyKey... keys) { in Builder()
469 private void validateKey(PropertyKey key) { in validateKey()
550 public static PropertyKey[] concatKeys(PropertyKey[] k1, PropertyKey[] k2) { in concatKeys()
551 PropertyKey[] outList = new PropertyKey[k1.length + k2.length]; in concatKeys()
557 private static Map<PropertyKey, ValueContainer> buildData(PropertyKey[] keys) { in buildData()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-servicecatalog/source/model/
H A DPropertyKey.cpp27 PropertyKey GetPropertyKeyForName(const Aws::String& name) in GetPropertyKeyForName()
32 return PropertyKey::OWNER; in GetPropertyKeyForName()
36 return PropertyKey::LAUNCH_ROLE; in GetPropertyKeyForName()
42 return static_cast<PropertyKey>(hashCode); in GetPropertyKeyForName()
45 return PropertyKey::NOT_SET; in GetPropertyKeyForName()
48 Aws::String GetNameForPropertyKey(PropertyKey enumValue) in GetNameForPropertyKey()
52 case PropertyKey::OWNER: in GetNameForPropertyKey()
54 case PropertyKey::LAUNCH_ROLE: in GetNameForPropertyKey()
/dports/devel/jetbrains-goland/GoLand-2019.3.1/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/
H A Dlib.es2015.proxy.d.ts26 getOwnPropertyDescriptor? (target: T, p: PropertyKey): PropertyDescriptor | undefined;
27 has? (target: T, p: PropertyKey): boolean;
28 get? (target: T, p: PropertyKey, receiver: any): any;
29 set? (target: T, p: PropertyKey, value: any, receiver: any): boolean;
30 deleteProperty? (target: T, p: PropertyKey): boolean;
31 defineProperty? (target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;
32 enumerate? (target: T): PropertyKey[];
33 ownKeys? (target: T): PropertyKey[];
H A Dlib.es2015.reflect.d.ts24 …function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor):…
25 function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
26 function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
27 …function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | …
29 function has(target: object, propertyKey: PropertyKey): boolean;
31 function ownKeys(target: object): PropertyKey[];
33 function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/typescript/lib/
H A Dlib.es2015.proxy.d.ts26 getOwnPropertyDescriptor? (target: T, p: PropertyKey): PropertyDescriptor | undefined;
27 has? (target: T, p: PropertyKey): boolean;
28 get? (target: T, p: PropertyKey, receiver: any): any;
29 set? (target: T, p: PropertyKey, value: any, receiver: any): boolean;
30 deleteProperty? (target: T, p: PropertyKey): boolean;
31 defineProperty? (target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;
32 enumerate? (target: T): PropertyKey[];
33 ownKeys? (target: T): PropertyKey[];
H A Dlib.es2015.reflect.d.ts24 …function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor):…
25 function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
26 function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
27 …function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | …
29 function has(target: object, propertyKey: PropertyKey): boolean;
31 function ownKeys(target: object): PropertyKey[];
33 function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/
H A Dlib.es2015.proxy.d.ts26 getOwnPropertyDescriptor? (target: T, p: PropertyKey): PropertyDescriptor | undefined;
27 has? (target: T, p: PropertyKey): boolean;
28 get? (target: T, p: PropertyKey, receiver: any): any;
29 set? (target: T, p: PropertyKey, value: any, receiver: any): boolean;
30 deleteProperty? (target: T, p: PropertyKey): boolean;
31 defineProperty? (target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;
32 enumerate? (target: T): PropertyKey[];
33 ownKeys? (target: T): PropertyKey[];
H A Dlib.es2015.reflect.d.ts24 …function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor):…
25 function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
26 function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
27 …function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | …
29 function has(target: object, propertyKey: PropertyKey): boolean;
31 function ownKeys(target: object): PropertyKey[];
33 function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/node/node_modules/typescript/lib/
H A Dlib.es2015.proxy.d.ts26 getOwnPropertyDescriptor? (target: T, p: PropertyKey): PropertyDescriptor | undefined;
27 has? (target: T, p: PropertyKey): boolean;
28 get? (target: T, p: PropertyKey, receiver: any): any;
29 set? (target: T, p: PropertyKey, value: any, receiver: any): boolean;
30 deleteProperty? (target: T, p: PropertyKey): boolean;
31 defineProperty? (target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;
32 enumerate? (target: T): PropertyKey[];
33 ownKeys? (target: T): PropertyKey[];
H A Dlib.es2015.reflect.d.ts24 …function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor):…
25 function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
26 function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
27 …function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | …
29 function has(target: object, propertyKey: PropertyKey): boolean;
31 function ownKeys(target: object): PropertyKey[];
33 function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
/dports/science/opsin/dan2097-opsin-9b25f7546b67/opsin-core/src/main/java/uk/ac/cam/ch/wwmm/opsin/
H A DAtom.java50 private final Map<PropertyKey, Object> properties = new HashMap<PropertyKey, Object>();
52 …static final PropertyKey<Set<Atom>> AMBIGUOUS_ELEMENT_ASSIGNMENT = new PropertyKey<Set<Atom>>("amb…
54 static final PropertyKey<Integer> ATOM_CLASS = new PropertyKey<Integer>("atomClass");
56 static final PropertyKey<String> HOMOLOGY_GROUP = new PropertyKey<String>("homologyGroup");
58 …static final PropertyKey<List<Atom>> POSITION_VARIATION_BOND = new PropertyKey<List<Atom>>("positi…
60 …static final PropertyKey<Integer> SMILES_HYDROGEN_COUNT = new PropertyKey<Integer>("smilesHydrogen…
62 static final PropertyKey<Integer> OXIDATION_NUMBER = new PropertyKey<Integer>("oxidationNumber");
64 static final PropertyKey<Boolean> ISALDEHYDE = new PropertyKey<Boolean>("isAldehyde");
66 static final PropertyKey<Boolean> ISANOMERIC = new PropertyKey<Boolean>("isAnomeric");
68 static final PropertyKey<Integer> VISITED = new PropertyKey<Integer>("visited");
[all …]
/dports/java/netbeans/netbeans/webcommon/typescript-lsp/node_modules/typescript/lib/
H A Dlib.es2015.reflect.d.ts24 …function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor):…
25 function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
26 function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
27 …function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | …
29 function has(target: object, propertyKey: PropertyKey): boolean;
31 function ownKeys(target: object): PropertyKey[];
33 function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/lib/
H A Dlib.es2015.reflect.d.ts24 …function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor):…
25 function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
26 function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
27 …function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | …
29 function has(target: object, propertyKey: PropertyKey): boolean;
31 function ownKeys(target: object): PropertyKey[];
33 function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/node_modules/typescript/lib/
H A Dlib.es2015.reflect.d.ts24 …function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor):…
25 function deleteProperty(target: object, propertyKey: PropertyKey): boolean;
26 function get(target: object, propertyKey: PropertyKey, receiver?: any): any;
27 …function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor | …
29 function has(target: object, propertyKey: PropertyKey): boolean;
31 function ownKeys(target: object): PropertyKey[];
33 function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;

12345678910>>...43