Home
last modified time | relevance | path

Searched refs:javaType (Results 1 – 12 of 12) sorted by relevance

/frameworks/proto_logging/stats/stats_log_api_gen/
DCollation.cpp244 const int fieldNumber, const java_type_t& javaType) { in collate_field_annotations() argument
248 if (is_repeated_field(javaType)) { in collate_field_annotations()
272 if (javaType == JAVA_TYPE_ATTRIBUTION_CHAIN || javaType == JAVA_TYPE_OBJECT || in collate_field_annotations()
273 javaType == JAVA_TYPE_BYTE_ARRAY) { in collate_field_annotations()
284 if (javaType != JAVA_TYPE_ATTRIBUTION_CHAIN) { in collate_field_annotations()
299 if (javaType == JAVA_TYPE_ATTRIBUTION_CHAIN || javaType == JAVA_TYPE_OBJECT || in collate_field_annotations()
300 javaType == JAVA_TYPE_BYTE_ARRAY) { in collate_field_annotations()
347 if (javaType != JAVA_TYPE_INT && javaType != JAVA_TYPE_INT_ARRAY) { in collate_field_annotations()
406 const java_type_t javaType = java_type(field, isUintAllowed); in collate_atom() local
408 if (javaType == JAVA_TYPE_UNKNOWN_OR_INVALID) { in collate_atom()
[all …]
Dutils.cpp289 if (field->javaType == JAVA_TYPE_ATTRIBUTION_CHAIN) { in write_cpp_usage()
291 if (chainField.javaType == JAVA_TYPE_STRING) { in write_cpp_usage()
292 fprintf(out, ", const std::vector<%s>& %s", cpp_type_name(chainField.javaType), in write_cpp_usage()
296 cpp_type_name(chainField.javaType), chainField.name.c_str(), in write_cpp_usage()
301 fprintf(out, ", %s %s", cpp_type_name(field->javaType, isVendorAtomLogging), in write_cpp_usage()
352 if (field->javaType == JAVA_TYPE_ENUM || field->javaType == JAVA_TYPE_ENUM_ARRAY) { in write_native_atom_enums()
378 if (chainField.javaType == JAVA_TYPE_STRING) { in write_native_method_signature()
380 cpp_type_name(chainField.javaType, isVendorAtomLogging), in write_native_method_signature()
384 cpp_type_name(chainField.javaType, isVendorAtomLogging), in write_native_method_signature()
474 if (field->javaType == JAVA_TYPE_ENUM || field->javaType == JAVA_TYPE_ENUM_ARRAY) { in write_java_enum_values()
[all …]
DCollation.h180 java_type_t javaType; member
188 inline AtomField() : name(), javaType(JAVA_TYPE_UNKNOWN_OR_INVALID) { in AtomField()
192 javaType(that.javaType), in AtomField()
197 inline AtomField(string n, java_type_t jt) : name(n), javaType(jt) { in AtomField()
Drust_writer.cpp130 const java_type_t& type = atomField.javaType; in write_rust_method_signature()
138 rust_type_name(chainField.javaType, false), separator); in write_rust_method_signature()
209 if (field.javaType == JAVA_TYPE_ENUM) { in write_rust_atom_constant_values()
289 if (field.javaType == JAVA_TYPE_ENUM) { in write_annotations()
323 const java_type_t& type = atomField.javaType; in write_rust_method_body()
420 const java_type_t& type = atomField.javaType; in write_rust_stats_write_non_chained_method()
442 const java_type_t& type = atomField.javaType; in needs_lifetime()
461 const java_type_t& type = atomField.javaType; in write_rust_struct()
465 rust_type_name(chainField.javaType, true)); in write_rust_struct()
510 const java_type_t& type = atomField.javaType; in write_rust_struct()
[all …]
Djava_writer_q.cpp72 fprintf(out, ", %s[] %s", java_type_name(chainField.javaType), in write_java_methods_q_schema()
129 java_type_name(attributionDecl.fields.front().javaType)); in write_java_methods_q_schema()
133 java_type_name(attributionDecl.fields.back().javaType)); in write_java_methods_q_schema()
319 fprintf(out, ", %s[] %s", java_type_name(chainField.javaType), chainField.name.c_str()); in write_java_helpers_for_q_schema_methods()
Dnative_writer_vendor.cpp332 if (field->javaType == JAVA_TYPE_ENUM || field->javaType == JAVA_TYPE_ENUM_ARRAY) { in write_stats_log_header_vendor()
Djava_writer_vendor.cpp345 if (field->javaType == JAVA_TYPE_ENUM || field->javaType == JAVA_TYPE_ENUM_ARRAY) { in write_java_enum_values_vendor()
Dnative_writer.cpp197 if (chainField.javaType == JAVA_TYPE_STRING) { in write_native_method_call()
/frameworks/native/opengl/tools/glgen/src/
DJType.java288 JType javaType = null; in convert() local
290 javaType = arrayTypeMapping.get(ctype); in convert()
292 if (javaType == null) { in convert()
293 javaType = typeMapping.get(ctype); in convert()
295 if (javaType == null) { in convert()
298 return javaType; in convert()
/frameworks/rs/script_api/
DSpecification.h48 const char* javaType; // Type in a Java file member
DGenerateTestFiles.cpp690 mJava->indent() << "Arrays.fill(" << p.javaArrayName << ", (" << TYPES[p.typeIndex].javaType in writeJavaArrayInitialization()
DSpecification.cpp216 javaBaseType = TYPES[typeIndex].javaType; in parseParameterDefinition()