Home
last modified time | relevance | path

Searched refs:enumvalue (Results 1 – 16 of 16) sorted by relevance

/external/libcups/cups/
Dipp-support.c2081 int enumvalue) /* I - Enum value */ in ippEnumString() argument
2090 …if (!strcmp(attrname, "document-state") && enumvalue >= 3 && enumvalue < (3 + (int)(sizeof(ipp_doc… in ippEnumString()
2091 return (ipp_document_states[enumvalue - 3]); in ippEnumString()
2094 … if (enumvalue >= 3 && enumvalue < (3 + (int)(sizeof(ipp_finishings) / sizeof(ipp_finishings[0])))) in ippEnumString()
2095 return (ipp_finishings[enumvalue - 3]); in ippEnumString()
2096 …else if (enumvalue >= 0x40000000 && enumvalue < (0x40000000 + (int)(sizeof(ipp_finishings_vendor) … in ippEnumString()
2097 return (ipp_finishings_vendor[enumvalue - 0x40000000]); in ippEnumString()
2099 …n-type") || !strcmp(attrname, "job-collation-type-actual")) && enumvalue >= 3 && enumvalue < (3 + … in ippEnumString()
2100 return (ipp_job_collation_types[enumvalue - 3]); in ippEnumString()
2101 …else if (!strcmp(attrname, "job-state") && enumvalue >= IPP_JSTATE_PENDING && enumvalue <= IPP_JST… in ippEnumString()
[all …]
Dipp.h838 extern const char *ippEnumString(const char *attrname, int enumvalue)
/external/protobuf/php/src/Google/Protobuf/
DEnum.php29 private $enumvalue; variable in Google\\Protobuf\\Enum
106 return $this->enumvalue;
119 $this->enumvalue = $arr;
/external/rust/crates/protobuf/src/well_known_types/
Dtype_pb.rs1079 pub enumvalue: crate::RepeatedField<EnumValue>, field
1131 &self.enumvalue in get_enumvalue()
1134 self.enumvalue.clear(); in clear_enumvalue()
1139 self.enumvalue = v; in set_enumvalue()
1144 &mut self.enumvalue in mut_enumvalue()
1149 ::std::mem::replace(&mut self.enumvalue, crate::RepeatedField::new()) in take_enumvalue()
1228 for v in &self.enumvalue { in is_initialized()
1254 crate::rt::read_repeated_message_into(wire_type, is, &mut self.enumvalue)?; in merge_from()
1280 for value in &self.enumvalue { in compute_size()
1304 for v in &self.enumvalue { in write_to_with_cached_sizes()
[all …]
/external/protobuf/src/google/protobuf/util/internal/
Dutility.cc195 const google::protobuf::EnumValue& enum_value = enum_type->enumvalue(i); in FindEnumValueByNameOrNull()
208 const google::protobuf::EnumValue& enum_value = enum_type->enumvalue(i); in FindEnumValueByNumberOrNull()
221 const google::protobuf::EnumValue& enum_value = enum_type->enumvalue(i); in FindEnumValueByNameWithoutUnderscoreOrNull()
Ddefault_value_objectwriter.cc432 ? DataPiece(enum_type->enumvalue(0).number()) in FindEnumDefault()
433 : DataPiece(enum_type->enumvalue(0).name(), true)) in FindEnumDefault()
Ddatapiece.cc322 return enum_type->enumvalue(0).number(); in ToEnum()
Dprotostream_objectsource.cc1134 const google::protobuf::EnumValue& ev = tech_enum.enumvalue(i); in FindEnumValueByNumber()
/external/python/cffi/cffi/
Dvengine_gen.py520 for enumerator, enumvalue in zip(tp.enumerators, tp.enumvalues):
521 self._check_int_constant_value(enumerator, enumvalue)
537 for enumerator, enumvalue in zip(tp.enumerators, tp.enumvalues):
538 setattr(library, enumerator, enumvalue)
Dvengine_cpy.py706 for enumerator, enumvalue in zip(tp.enumerators, tp.enumvalues):
707 self._check_int_constant_value(enumerator, enumvalue,
725 for enumerator, enumvalue in zip(tp.enumerators, tp.enumvalues):
726 setattr(library, enumerator, enumvalue)
Drecompiler.py1105 for enumerator, enumvalue in zip(tp.enumerators, tp.enumvalues):
1108 check_value=enumvalue))
/external/protobuf/src/google/protobuf/
Dtype.proto147 repeated EnumValue enumvalue = 2; field
Dtype.pb.h942 const PROTOBUF_NAMESPACE_ID::EnumValue& enumvalue(int index) const;
945 enumvalue() const;
2148 inline const PROTOBUF_NAMESPACE_ID::EnumValue& Enum::enumvalue(int index) const { in enumvalue() function
2157 Enum::enumvalue() const { in enumvalue() function
Dtype.pb.cc1996 this->enumvalue(static_cast<int>(i)), in SerializeWithCachedSizes()
2050 2, this->enumvalue(static_cast<int>(i)), target); in InternalSerializeWithCachedSizesToArray()
2102 this->enumvalue(static_cast<int>(i))); in ByteSizeLong()
/external/protobuf/src/google/protobuf/util/
Dtype_resolver_util_test.cc119 for (const EnumValue& value : type.enumvalue()) { in FindEnumValue()
/external/python/apitools/samples/servicemanagement_sample/servicemanagement_v1/
Dservicemanagement_v1_messages.py827 enumvalue = _messages.MessageField('EnumValue', 1, repeated=True) variable in Enum