Home | History | Annotate | Download | only in core

Lines Matching refs:key

51     AK_FORCE_INLINE bool getAdditionalFeaturesBoolOption(const int key) const {
52 return getBoolOption(key + ADDITIONAL_FEATURES_OPTIONS);
72 AK_FORCE_INLINE bool isValidKey(const int key) const {
73 return 0 <= key && key < mLength;
76 AK_FORCE_INLINE bool getBoolOption(const int key) const {
77 if (isValidKey(key)) {
78 return mOptions[key] != 0;
83 AK_FORCE_INLINE int getIntOption(const int key) const {
84 if (isValidKey(key)) {
85 return mOptions[key];