Home
last modified time | relevance | path

Searched defs:attribute (Results 1 – 25 of 746) sorted by relevance

12345678910>>...30

/external/turbine/java/com/google/turbine/bytecode/
DAttributeWriter.java51 public void write(ByteArrayDataOutput output, Attribute attribute) { in write()
107 private void writeInnerClasses(ByteArrayDataOutput output, InnerClasses attribute) { in writeInnerClasses()
119 private void writeExceptionsAttribute(ByteArrayDataOutput output, ExceptionsAttribute attribute) { in writeExceptionsAttribute()
128 private void writeSignatureAttribute(ByteArrayDataOutput output, Signature attribute) { in writeSignatureAttribute()
134 public void writeConstantValue(ByteArrayDataOutput output, ConstantValue attribute) { in writeConstantValue()
171 public void writeAnnotation(ByteArrayDataOutput output, Annotations attribute) { in writeAnnotation()
184 ByteArrayDataOutput output, Attribute.AnnotationDefault attribute) { in writeAnnotationDefault()
194 ByteArrayDataOutput output, Attribute.ParameterAnnotations attribute) { in writeParameterAnnotations()
209 private void writeDeprecated(ByteArrayDataOutput output, Attribute attribute) { in writeDeprecated()
214 private void writeTypeAnnotation(ByteArrayDataOutput output, TypeAnnotations attribute) { in writeTypeAnnotation()
[all …]
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
DIAttributeVisitor.java20 Object visit (GenericAttribute_info attribute, Object ctx); in visit()
22 Object visit (CodeAttribute_info attribute, Object ctx); in visit()
23 Object visit (ConstantValueAttribute_info attribute, Object ctx); in visit()
24 Object visit (ExceptionsAttribute_info attribute, Object ctx); in visit()
25 Object visit (LineNumberTableAttribute_info attribute, Object ctx); in visit()
26 Object visit (SourceFileAttribute_info attribute, Object ctx); in visit()
27 Object visit (SyntheticAttribute_info attribute, Object ctx); in visit()
28 Object visit (BridgeAttribute_info attribute, Object ctx); in visit()
29 Object visit (InnerClassesAttribute_info attribute, Object ctx); in visit()
/external/opencensus-java/api/src/test/java/io/opencensus/trace/
DAttributeValueTest.java35 AttributeValue attribute = AttributeValue.stringAttributeValue("MyStringAttributeValue"); in stringAttributeValue() local
66 AttributeValue attribute = AttributeValue.booleanAttributeValue(true); in booleanAttributeValue() local
97 AttributeValue attribute = AttributeValue.longAttributeValue(123456L); in longAttributeValue() local
128 AttributeValue attribute = AttributeValue.doubleAttributeValue(1.23456); in doubleAttributeValue() local
167 AttributeValue attribute = AttributeValue.doubleAttributeValue(1.23456); in doubleAttributeValue_DeprecatedMatchFunction() local
224 AttributeValue attribute = AttributeValue.stringAttributeValue("MyStringAttributeValue"); in attributeValue_ToString() local
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/internal/immutable/
DImmutableIntrospectorTest.java100 public int attribute() { in attribute() method in ImmutableIntrospectorTest.SimpleImmutableWithPrimitives
105 public Builder attribute(int attribute) { in attribute() argument
208 public Builder wrongAttribute(int attribute) { in wrongAttribute()
281 public Builder rightAttribute(int attribute) { in rightAttribute()
306 public Builder rightAttribute(int attribute) { in rightAttribute()
326 public Builder rightAttribute(String attribute) { in rightAttribute()
351 public Builder rightAttribute(int attribute) { in rightAttribute()
374 public Builder rightAttribute(int attribute) { in rightAttribute()
393 public int attribute() { in attribute() method in ImmutableIntrospectorTest.SimpleImmutableWithIgnoredGetter
408 public Builder attribute(int attribute) { in attribute() method in ImmutableIntrospectorTest.SimpleImmutableWithIgnoredGetter.Builder
[all …]
/external/stg/
Ddwarf_wrappers.cc54 uint32_t attribute) { in GetAttribute()
71 uint32_t attribute) { in GetDirectAttribute()
115 std::optional<Expression> MaybeGetExpression(Dwarf_Attribute& attribute) { in MaybeGetExpression()
181 std::optional<std::string> Entry::MaybeGetString(uint32_t attribute) { in MaybeGetString()
194 std::optional<std::string> Entry::MaybeGetDirectString(uint32_t attribute) { in MaybeGetDirectString()
207 std::optional<uint64_t> Entry::MaybeGetUnsignedConstant(uint32_t attribute) { in MaybeGetUnsignedConstant()
220 uint64_t Entry::MustGetUnsignedConstant(uint32_t attribute) { in MustGetUnsignedConstant()
229 bool Entry::GetFlag(uint32_t attribute) { in GetFlag()
243 std::optional<Entry> Entry::MaybeGetReference(uint32_t attribute) { in MaybeGetReference()
258 std::optional<Location> GetLocationFromExpression(Dwarf_Attribute& attribute) { in GetLocationFromExpression()
[all …]
/external/mesa3d/src/glx/
Dquery_renderer.c29 __glXQueryRendererInteger(struct glx_screen *psc, int attribute, in __glXQueryRendererInteger()
80 int renderer, int attribute, in glXQueryRendererIntegerMESA()
105 glXQueryCurrentRendererIntegerMESA(int attribute, unsigned int *value) in glXQueryCurrentRendererIntegerMESA()
116 __glXQueryRendererString(struct glx_screen *psc, int attribute) in __glXQueryRendererString()
141 int renderer, int attribute) in glXQueryRendererStringMESA()
165 glXQueryCurrentRendererStringMESA(int attribute) in glXQueryCurrentRendererStringMESA()
Ddri_common_query_renderer.c54 dri2_convert_glx_query_renderer_attribs(int attribute) in dri2_convert_glx_query_renderer_attribs()
67 dri_convert_context_profile_bits(int attribute, unsigned int *value) in dri_convert_context_profile_bits()
78 glx_dri_query_renderer_integer(struct glx_screen *base, int attribute, in glx_dri_query_renderer_integer()
96 glx_dri_query_renderer_string(struct glx_screen *base, int attribute, in glx_dri_query_renderer_string()
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/
DImmutableFakeItem.java24 private final String attribute; field in ImmutableFakeItem
35 public String attribute() { in attribute() method in ImmutableFakeItem
70 private String attribute; field in ImmutableFakeItem.Builder
77 public Builder attribute(String attribute) { in attribute() method in ImmutableFakeItem.Builder
DRecursiveRecordImmutable.java23 private final int attribute; field in RecursiveRecordImmutable
56 private int attribute; field in RecursiveRecordImmutable.Builder
64 public Builder setAttribute(int attribute) { in setAttribute()
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DAttributeProvider.java74 public boolean supports(String attribute) { in supports()
91 public abstract Object get(File file, String attribute); in get()
103 public abstract void set(File file, String view, String attribute, Object value, boolean create); in set()
129 protected static RuntimeException unsettable(String view, String attribute, boolean create) { in unsettable()
141 protected static void checkNotCreate(String view, String attribute, boolean create) { in checkNotCreate()
152 protected static <T> T checkType(String view, String attribute, Object value, Class<T> type) { in checkType()
166 String view, String attribute, Object value, Class<?>... expectedTypes) { in invalidType()
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/karma/auxiliary/
Dlazy.hpp93 struct attribute struct
97 modifier;
103 expr_type;
112 generator_type;
116 type;
162 struct attribute struct
166 modifier;
172 directive_expr_type;
180 expr_type;
189 generator_type;
[all …]
Deps.hpp56 struct attribute struct
58 typedef unused_type type;
80 struct attribute struct
82 typedef unused_type type;
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/auxiliary/
Dlazy.hpp95 struct attribute struct
99 modifier;
105 expr_type;
114 parser_type;
118 type;
158 struct attribute struct
162 modifier;
168 directive_expr_type;
176 expr_type;
185 parser_type;
[all …]
Deps.hpp53 struct attribute struct
55 typedef unused_type type;
78 struct attribute struct
80 typedef unused_type type;
/external/angle/src/third_party/libXNVCtrl/
DNVCtrl.c248 unsigned int attribute, in XNVCTRLSetTargetAttribute()
274 unsigned int attribute, in XNVCTRLSetAttribute()
287 unsigned int attribute, in XNVCTRLSetTargetAttributeAndGetStatus()
325 unsigned int attribute, in XNVCTRLSetAttributeAndGetStatus()
340 unsigned int attribute, in XNVCTRLQueryTargetAttribute()
378 unsigned int attribute, in XNVCTRLQueryAttribute()
391 unsigned int attribute, in XNVCTRLQueryTargetAttribute64()
431 unsigned int attribute, in XNVCTRLQueryTargetStringAttribute()
486 unsigned int attribute, in XNVCTRLQueryStringAttribute()
500 unsigned int attribute, in XNVCTRLSetTargetStringAttribute()
[all …]
/external/deqp/framework/egl/
DegluStrUtil.hpp34 uint32_t attribute; member
43 uint32_t attribute; member
52 uint32_t attribute; member
83 inline ConfigAttribValueFmt getConfigAttribValueStr(uint32_t attribute, int value) in getConfigAttribValueStr()
89 inline SurfaceAttribValueFmt getSurfaceAttribValueStr(uint32_t attribute, int value) in getSurfaceAttribValueStr()
95 inline ContextAttribValueFmt getContextAttribValueStr(uint32_t attribute, int value) in getContextAttribValueStr()
/external/sdv/vsomeip/third_party/boost/spirit/test/x3/
Dattribute_type_check.cpp48 static void gen_sequence(Attribute const& attribute, Expr&& expr) in gen_sequence()
55 static void gen_sequence(Attribute const& attribute, Expr&& expr, Value const& v, Tail const&... ta… in gen_sequence()
63 static void gen_sequence_tests(Attribute const& attribute, Value const& v, Tail const&... tail) in gen_sequence_tests()
72 Expected attribute(v); in gen_single_item_tests() local
89 boost::fusion::vector<Expected...> attribute = boost::fusion::make_vector(values...); in gen_tests() local
/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/
DExecutionAttributes.java52 public <U> U getAttribute(ExecutionAttribute<U> attribute) { in getAttribute()
67 public <U> Optional<U> getOptionalAttribute(ExecutionAttribute<U> attribute) { in getOptionalAttribute()
74 public <U> ExecutionAttributes putAttribute(ExecutionAttribute<U> attribute, U value) { in putAttribute()
82 public <U> ExecutionAttributes putAttributeIfAbsent(ExecutionAttribute<U> attribute, U value) { in putAttributeIfAbsent()
155 public <U> ExecutionAttributes putAttribute(ExecutionAttribute<U> attribute, U value) { in putAttribute()
160 … public <U> ExecutionAttributes putAttributeIfAbsent(ExecutionAttribute<U> attribute, U value) { in putAttributeIfAbsent()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/icu/
DXPPUtil.java25 public static String getAttributeValue(String xpath, String element, String attribute) { in getAttributeValue()
34 public static String getAttributeValue(String xpath, String attribute) { in getAttributeValue()
40 CLDRFile whichFile, String xpath, String attribute) { in getBasicAttributeValue()
48 public static String findAttributeValue(CLDRFile file, String xpath, String attribute) { in findAttributeValue()
/external/ow2-asm/asm/src/main/java/org/objectweb/asm/
DAttribute.java128 Attribute attribute = new Attribute(type); in read() local
169 Attribute attribute = this; in getAttributeCount() local
221 Attribute attribute = this; in computeAttributesSize() local
308 Attribute attribute = this; in putAttributes() local
359 Attribute attribute = attributeList; in addAttributes() local
374 private boolean contains(final Attribute attribute) { in contains()
383 private void add(final Attribute attribute) { in add()
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/operator/
Dsequence_base.hpp40 struct attribute struct
46 >::type all_attributes;
54 type_;
60 type;
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/lex/qi/
Dplain_token.hpp85 struct attribute struct
87 typedef typename Iterator::base_iterator_type iterator_type;
88 typedef iterator_range<iterator_type> type;
138 struct attribute struct
140 typedef typename Iterator::base_iterator_type iterator_type;
141 typedef iterator_range<iterator_type> type;
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DSimpleXPathParts.java27 public boolean containsAttribute(String attribute) { in containsAttribute()
66 public String getAttributeValue(int i, String attribute) { in getAttributeValue()
80 public boolean containsAttribute(String attribute) { in containsAttribute()
100 protected void handleAddAttribute(String attribute, String value) { in handleAddAttribute()
/external/python/cpython3/Lib/test/
Dtest_opcache.py88 attribute = Descriptor() variable in TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization.Metaclass
91 attribute = True variable in TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization.Class
114 def attribute(self): member in TestLoadAttrCache.test_metaclass_descriptor_shadows_class_attribute.Metaclass
118 attribute = False variable in TestLoadAttrCache.test_metaclass_descriptor_shadows_class_attribute.Class
131 attribute = True variable in TestLoadAttrCache.test_metaclass_set_descriptor_after_optimization.Class
134 def attribute(self): function
151 def attribute(self): member in TestLoadAttrCache.test_metaclass_del_descriptor_after_optimization.Metaclass
155 attribute = False variable in TestLoadAttrCache.test_metaclass_del_descriptor_after_optimization.Class
204 attribute = False variable in TestLoadAttrCache.test_metaclass_getattribute.Class
215 def attribute(self): member in TestLoadAttrCache.test_metaclass_swap.OldMetaclass
[all …]
/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/
DBatchWriteItemTest.java41 private String attribute; field in BatchWriteItemTest.Record1
56 private Record1 setAttribute(String attribute) { in setAttribute()
78 private String attribute; field in BatchWriteItemTest.Record2
93 private Record2 setAttribute(String attribute) { in setAttribute()

12345678910>>...30