/aosp_15_r20/external/flatbuffers/src/ |
H A D | idl_gen_java.cpp | 171 std::string code; in SaveType() local 249 Type DestinationType(const Type &type, bool vectorelem) const { in DestinationType() argument 278 std::string DestinationMask(const Type &type, bool vectorelem) const { in DestinationMask() argument 305 std::string SourceCast(const Type &type, bool castFromDest) const { in SourceCast() argument 325 std::string SourceCastBasic(const Type &type, bool castFromDest) const { in SourceCastBasic() argument 463 auto type = key_field->value.type; in GenGetterForLookupByKey() local 498 void GenStructArgs(const StructDef &struct_def, std::string &code, in GenStructArgs() 505 const auto &type = array_field ? field_type.VectorType() in GenStructArgs() local 528 void GenStructBody(const StructDef &struct_def, std::string &code, in GenStructBody() 548 const auto &type = in GenStructBody() local [all …]
|
H A D | idl_gen_kotlin.cpp | 126 std::string code = in SaveType() local 147 static bool IsEnum(const Type &type) { in IsEnum() 151 static std::string GenTypeBasic(const BaseType &type) { in GenTypeBasic() 332 std::string ByteBufferGetter(const Type &type, in ByteBufferGetter() 386 auto type = key_field->value.type; in GenLookupByKey() local 392 static std::string GenMethod(const Type &type) { in GenMethod() 751 static std::string ToSignedType(const Type &type) { in ToSignedType() 789 void GenerateStartStructMethod(StructDef &struct_def, CodeWriter &code, in GenerateStartStructMethod() 1241 static std::string CastToUsigned(const Type type) { in CastToUsigned() 1257 static std::string CastToSigned(const Type type) { in CastToSigned() [all …]
|
H A D | bfbs_gen_lua.cpp | 99 std::string code; in GenerateEnums() local 127 std::string code; in GenerateObjects() local 441 std::string code; in AppendStructBuilderBody() local 472 std::string GenerateGetter(const r::Type *type, in GenerateGetter() 484 std::string GenerateType(const r::Type *type, in GenerateType() 547 const r::BaseType type = in RegisterRequires() local 583 std::string code = "--[[ " + full_qualified_name + "\n\n"; in EmitCodeBlock() local
|
H A D | idl_gen_python.cpp | 95 auto &code = *code_ptr; in BeginClass() local 103 auto &code = *code_ptr; in BeginEnum() local 115 auto &code = *code_ptr; in EnumMember() local 125 auto &code = *code_ptr; in NewRootTypeFromBuffer() local 152 auto &code = *code_ptr; in InitializeExisting() local 163 auto &code = *code_ptr; in GetVectorLen() local 175 auto &code = *code_ptr; in GetVectorIsNone() local 191 auto &code = *code_ptr; in GetScalarFieldOfStruct() local 203 auto &code = *code_ptr; in GetScalarFieldOfTable() local 231 auto &code = *code_ptr; in GetStructFieldOfStruct() local [all …]
|
/aosp_15_r20/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/ |
H A D | LexicalPreservingPrinterTest.java | 69 String code = "class A {int i;}"; in checkNodeTextCreatedForField() local 81 String code = "class A {int i;}"; in checkNodeTextCreatedForVariableDeclarator() local 94 String code = "class A {void foo(int p1, float p2) { }}"; in checkNodeTextCreatedForMethod() local 106 String code = "class A {void foo(int p1, float p2) { }}"; in checkNodeTextCreatedForMethodParameter() local 119 String code = "class A {void foo(int p1, float p2) { }}"; in checkNodeTextCreatedForPrimitiveType() local 133 String code = "import a.b.c.D;"; in checkNodeTextCreatedForSimpleImport() local 153 String code = "class A {ParseResult<T> result;}"; in checkNodeTextCreatedGenericType() local 166 String code = "public @interface ClassPreamble { String author(); }"; in checkNodeTextCreatedAnnotationDeclaration() local 177 String code = "public @interface ClassPreamble { String author(); }"; in checkNodeTextCreatedAnnotationMemberDeclaration() local 189 String code = "public @interface ClassPreamble { String[] author(); }"; in checkNodeTextCreatedAnnotationMemberDeclarationWithArrayType() local [all …]
|
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/include/isl/ |
D | ctx.h | 107 #define isl_alloc(ctx,type,size) ((type *)isl_check_ctx(ctx,\ argument 109 #define isl_calloc(ctx,type,size) ((type *)isl_check_ctx(ctx,\ argument 111 #define isl_realloc(ctx,ptr,type,size) ((type *)isl_check_ctx(ctx,\ argument 113 #define isl_alloc_type(ctx,type) isl_alloc(ctx,type,sizeof(type)) argument 114 #define isl_calloc_type(ctx,type) isl_calloc(ctx,type,sizeof(type)) argument 115 #define isl_realloc_type(ctx,ptr,type) isl_realloc(ctx,ptr,type,sizeof(type)) argument 116 #define isl_alloc_array(ctx,type,n) isl_alloc(ctx,type,(n)*sizeof(type)) argument 117 #define isl_calloc_array(ctx,type,n) ((type *)isl_check_ctx(ctx,\ argument 119 #define isl_realloc_array(ctx,ptr,type,n) \ argument 122 #define isl_die(ctx,errno,msg,code) \ argument [all …]
|
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
H A D | ShadowPendingIntent.java | 74 private Type type; field in ShadowPendingIntent 153 protected void send(int code) throws CanceledException { in send() 158 protected void send(int code, PendingIntent.OnFinished onFinished, Handler handler) in send() 164 protected void send(Context context, int code, Intent intent) throws CanceledException { in send() 171 int code, in send() 182 int code, in send() 195 int code, in send() 207 int code, in send() 604 Type type, in create() 658 Type type, Intent[] intents, int requestCode, int flags) { in getCreatedIntentFor()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/polly/isl/ |
D | ctx.h | 123 #define isl_alloc(ctx,type,size) ((type *)isl_malloc_or_die(ctx, size)) argument 124 #define isl_calloc(ctx,type,size) ((type *)isl_calloc_or_die(ctx,\ argument 126 #define isl_realloc(ctx,ptr,type,size) ((type *)isl_realloc_or_die(ctx,\ argument 128 #define isl_alloc_type(ctx,type) isl_alloc(ctx,type,sizeof(type)) argument 129 #define isl_calloc_type(ctx,type) isl_calloc(ctx,type,sizeof(type)) argument 130 #define isl_realloc_type(ctx,ptr,type) isl_realloc(ctx,ptr,type,sizeof(type)) argument 131 #define isl_alloc_array(ctx,type,n) isl_alloc(ctx,type,(n)*sizeof(type)) argument 132 #define isl_calloc_array(ctx,type,n) ((type *)isl_calloc_or_die(ctx,\ argument 134 #define isl_realloc_array(ctx,ptr,type,n) \ argument 137 #define isl_die(ctx,errno,msg,code) \ argument [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/polly/isl/ |
D | ctx.h | 123 #define isl_alloc(ctx,type,size) ((type *)isl_malloc_or_die(ctx, size)) argument 124 #define isl_calloc(ctx,type,size) ((type *)isl_calloc_or_die(ctx,\ argument 126 #define isl_realloc(ctx,ptr,type,size) ((type *)isl_realloc_or_die(ctx,\ argument 128 #define isl_alloc_type(ctx,type) isl_alloc(ctx,type,sizeof(type)) argument 129 #define isl_calloc_type(ctx,type) isl_calloc(ctx,type,sizeof(type)) argument 130 #define isl_realloc_type(ctx,ptr,type) isl_realloc(ctx,ptr,type,sizeof(type)) argument 131 #define isl_alloc_array(ctx,type,n) isl_alloc(ctx,type,(n)*sizeof(type)) argument 132 #define isl_calloc_array(ctx,type,n) ((type *)isl_calloc_or_die(ctx,\ argument 134 #define isl_realloc_array(ctx,ptr,type,n) \ argument 137 #define isl_die(ctx,errno,msg,code) \ argument [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/polly/isl/ |
D | ctx.h | 123 #define isl_alloc(ctx,type,size) ((type *)isl_malloc_or_die(ctx, size)) argument 124 #define isl_calloc(ctx,type,size) ((type *)isl_calloc_or_die(ctx,\ argument 126 #define isl_realloc(ctx,ptr,type,size) ((type *)isl_realloc_or_die(ctx,\ argument 128 #define isl_alloc_type(ctx,type) isl_alloc(ctx,type,sizeof(type)) argument 129 #define isl_calloc_type(ctx,type) isl_calloc(ctx,type,sizeof(type)) argument 130 #define isl_realloc_type(ctx,ptr,type) isl_realloc(ctx,ptr,type,sizeof(type)) argument 131 #define isl_alloc_array(ctx,type,n) isl_alloc(ctx,type,(n)*sizeof(type)) argument 132 #define isl_calloc_array(ctx,type,n) ((type *)isl_calloc_or_die(ctx,\ argument 134 #define isl_realloc_array(ctx,ptr,type,n) \ argument 137 #define isl_die(ctx,errno,msg,code) \ argument [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/polly/isl/ |
D | ctx.h | 123 #define isl_alloc(ctx,type,size) ((type *)isl_malloc_or_die(ctx, size)) argument 124 #define isl_calloc(ctx,type,size) ((type *)isl_calloc_or_die(ctx,\ argument 126 #define isl_realloc(ctx,ptr,type,size) ((type *)isl_realloc_or_die(ctx,\ argument 128 #define isl_alloc_type(ctx,type) isl_alloc(ctx,type,sizeof(type)) argument 129 #define isl_calloc_type(ctx,type) isl_calloc(ctx,type,sizeof(type)) argument 130 #define isl_realloc_type(ctx,ptr,type) isl_realloc(ctx,ptr,type,sizeof(type)) argument 131 #define isl_alloc_array(ctx,type,n) isl_alloc(ctx,type,(n)*sizeof(type)) argument 132 #define isl_calloc_array(ctx,type,n) ((type *)isl_calloc_or_die(ctx,\ argument 134 #define isl_realloc_array(ctx,ptr,type,n) \ argument 137 #define isl_die(ctx,errno,msg,code) \ argument [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/neptunedata/src/main/resources/codegen-resources/ |
H A D | service-2.json | 1159 "type":"structure", string 1174 "code":{ object 1187 "type":"string", string 1194 "type":"structure", string 1209 "code":{ object 1221 "Blob":{"type":"blob"}, string 1223 "type":"boolean", string 1227 "type":"structure", string 1242 "code":{ object 1256 "type":"structure", string [all …]
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/ |
H A D | interpreter.cpp | 22 InterpreterState::InterpreterState(const Code& code) { in InterpreterState() 28 void createObject(Stack& stack, const at::ClassTypePtr& type) { in createObject() 53 void InterpreterState::enterFrame(const Code& code) { in enterFrame() 79 f.call(stack, [&](const mobile::Code& code) { enterFrame(code); }); in callFunction() 87 const auto& code = frame.getCode(); in run() local 344 auto type = code.types_.at(inst.X)->expect<c10::ClassType>(); in run() local
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ |
H A D | GetDescriptions.java | 239 String type, in addTypeNameCode() 240 String code, in addTypeNameCode() 258 PrintWriter commas, String type, String code, String[] parts) { in checkInversion() 276 PrintWriter commas, String type, String code, String newPartNoComment, String part) { in checkDuplicates()
|
/aosp_15_r20/out/soong/.intermediates/packages/modules/Connectivity/staticlibs/net-utils-device-common-struct/android_common/javac/ |
D | net-utils-device-common-struct.jar | ... .Inet6Address srcIp
java.net.Inet6Address dstIp
short type
short code
java.nio.ByteBuffer[] options ... |
/aosp_15_r20/out/soong/.intermediates/packages/modules/Connectivity/staticlibs/net-utils-device-common-struct/android_common_apex30/javac/ |
D | net-utils-device-common-struct.jar | ... .Inet6Address srcIp
java.net.Inet6Address dstIp
short type
short code
java.nio.ByteBuffer[] options ... |
/aosp_15_r20/tools/security/fuzzing/orphans/libffi/ |
H A D | fuzz_ffi.cc | 68 size_t getTotalSize(ffi_type* type) { in getTotalSize() 92 ffi_type* type; in getRandomType() local 106 void* genArg(ffi_type* type, FuzzedDataProvider* dataProvider) { in genArg() 136 ffi_type* type = getRandomType(dataProvider, true); in buildArgArrays() local 160 void* code; in runMainFunctions() local 191 void* code; in runRawFunctions() local 229 void* code; in runJavaFunctions() local
|
/aosp_15_r20/frameworks/base/core/java/android/content/ |
H A D | BroadcastReceiver.java | 116 public PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, in PendingResult() 124 public PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, in PendingResult() 142 public static boolean guessAssumeDelivered(int type, boolean ordered) { in guessAssumeDelivered() 158 public final void setResultCode(int code) { in setResultCode() 218 public final void setResult(int code, String data, Bundle extras) { in setResult() 499 public final void setResultCode(int code) { in setResultCode() 608 public final void setResult(int code, String data, Bundle extras) { in setResult()
|
/aosp_15_r20/frameworks/base/cmds/uinput/src/com/android/commands/uinput/ |
H A D | Device.java | 68 private static native void nativeInjectEvent(long ptr, long timestampMicros, int type, int code, in nativeInjectEvent() 70 private static native void nativeConfigure(int handle, int code, int[] configs); in nativeConfigure() 73 private static native int nativeGetEvdevEventCodeByLabel(int type, String label); in nativeGetEvdevEventCodeByLabel() 357 final var type = nativeGetEvdevEventTypeByLabel(label); in getEvdevEventTypeByLabel() local 365 static int getEvdevEventCodeByLabel(int type, String label) { in getEvdevEventCodeByLabel() 366 final var code = nativeGetEvdevEventCodeByLabel(type, label); in getEvdevEventCodeByLabel() local
|
/aosp_15_r20/external/openthread/tests/scripts/thread-cert/ |
H A D | coap.py | 113 def type(self): member in CoapOption 148 def __init__(self, code): argument 152 def code(self): member in CoapCode 204 code, argument 225 def type(self): member in CoapMessage 229 def code(self): member in CoapMessage 296 def type(self): member in CoapMessageProxy 300 def code(self): member in CoapMessageProxy
|
/aosp_15_r20/external/javassist/src/main/javassist/compiler/ |
H A D | JvstCodeGen.java | 158 protected void atAssignParamList(CtClass[] params, Bytecode code) in atAssignParamList() 456 public int recordReturnType(CtClass type, String castName, in recordReturnType() 552 public int recordVariable(CtClass type, String varName, SymbolTable tbl) in recordVariable() 596 int type = MemberResolver.descToType(c); in recordVariable() local 619 public static int compileParameterList(Bytecode code, in compileParameterList() 656 protected void compileUnwrapValue(CtClass type, Bytecode code) in compileUnwrapValue() 685 public void setType(CtClass type) throws CompileError { in setType() 689 private void setType(CtClass type, int dim) throws CompileError { in setType() 712 public void doNumCast(CtClass type) throws CompileError { in doNumCast()
|
/aosp_15_r20/system/tools/aidl/ |
D | aidl_to_cpp_common.cpp | 58 string ClassName(const AidlDefinedType& defined_type, ClassNames type) { in ClassName() 163 string code; in GenLogBeforeExecute() local 185 string code; in GenLogAfterExecute() local 238 string GetQualifiedName(const AidlDefinedType& type, ClassNames class_names) { in GetQualifiedName() 283 std::ostringstream code; in GenerateEnumValues() local 305 std::ostringstream code; in GenerateEnumToString() local 490 std::string GetDeprecatedAttribute(const AidlCommentable& type) { in GetDeprecatedAttribute() 500 std::optional<size_t> AlignmentOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames) { in AlignmentOf() 537 std::optional<size_t> SizeOf(const AidlTypeSpecifier& type, const AidlTypenames& typenames) { in SizeOf() 804 auto read_var = [&](const string& var, const AidlTypeSpecifier& type) { in ReadFromParcel() [all …]
|
/aosp_15_r20/external/vixl/src/aarch64/ |
H A D | registers-aarch64.h | 98 CPURegister(int code, int size_in_bits, RegisterType type) in CPURegister() 377 static RegisterBank GetBankFor(RegisterType type) { in GetBankFor() 393 static unsigned GetMaxCodeFor(CPURegister::RegisterType type) { in GetMaxCodeFor() 502 : code_(code), in code_() argument 559 VRegister(int code, VectorFormat format) in VRegister() 602 ZRegister(int code, VectorFormat format) in ZRegister() 662 PRegister(int code, EncodedSize encoded_lane_size) in PRegister() 669 PRegister(int code, Qualifiers qualifiers) in PRegister() 687 PRegisterWithLaneSize(int code, VectorFormat format) in PRegisterWithLaneSize()
|
/aosp_15_r20/external/libnl/src/lib/ |
H A D | exp.c | 140 uint8_t type = nfnl_exp_get_icmp_type(exp, tuple); in nl_cli_exp_parse_icmp_id() local 141 uint8_t code = nfnl_exp_get_icmp_code(exp, tuple); in nl_cli_exp_parse_icmp_id() local 147 uint32_t type = nl_cli_parse_u32(arg); in nl_cli_exp_parse_icmp_type() local 149 uint8_t code = nfnl_exp_get_icmp_code(exp, tuple); in nl_cli_exp_parse_icmp_type() local 155 uint32_t code = nl_cli_parse_u32(arg); in nl_cli_exp_parse_icmp_code() local 157 uint8_t type = nfnl_exp_get_icmp_type(exp, tuple); in nl_cli_exp_parse_icmp_code() local
|
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/am/ |
H A D | PendingIntentRecord.java | 133 final int type; field in PendingIntentRecord.Key 271 int type; field in PendingIntentRecord.TempAllowListDuration 291 void setAllowlistDurationLocked(IBinder allowlistToken, long duration, int type, in setAllowlistDurationLocked() 351 public void send(int code, Intent intent, String resolvedType, IBinder allowlistToken, in send() 357 public void send(IApplicationThread caller, int code, Intent intent, String resolvedType, in send() 364 public int sendWithResult(IApplicationThread caller, int code, Intent intent, in sendWithResult() 444 public int sendInner(int code, Intent intent, String resolvedType, IBinder allowlistToken, in sendInner() 452 public int sendInner(IApplicationThread caller, int code, Intent intent, in sendInner()
|