Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FMXExpress committed May 26, 2014
1 parent c04c290 commit 7de99de
Show file tree
Hide file tree
Showing 9,300 changed files with 516,432 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
30 changes: 30 additions & 0 deletions android-11/android.Manifest.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//
// Generated by JavaToPas v1.4 20140526 - 132911
////////////////////////////////////////////////////////////////////////////////
unit android.Manifest;

interface

uses
AndroidAPI.JNIBridge,
Androidapi.JNI.JavaTypes;

type
JManifest = interface;

JManifestClass = interface(JObjectClass)
['{6BA5B216-3987-4605-B31D-0914CC818D74}']
function init : JManifest; cdecl; // ()V A: $1
end;

[JavaSignature('android/Manifest$permission_group')]
JManifest = interface(JObject)
['{1E1991F1-D29A-4112-9189-1874F988C5F8}']
end;

TJManifest = class(TJavaGenericImport<JManifestClass, JManifest>)
end;

implementation

end.
380 changes: 380 additions & 0 deletions android-11/android.Manifest_permission.pas

Large diffs are not rendered by default.

65 changes: 65 additions & 0 deletions android-11/android.Manifest_permission_group.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
//
// Generated by JavaToPas v1.4 20140526 - 133320
////////////////////////////////////////////////////////////////////////////////
unit android.Manifest_permission_group;

interface

uses
AndroidAPI.JNIBridge,
Androidapi.JNI.JavaTypes;

type
JManifest_permission_group = interface;

JManifest_permission_groupClass = interface(JObjectClass)
['{5BEE5F2F-9BDA-430E-82EE-6B4C35F122C3}']
function _GetACCOUNTS : JString; cdecl; // A: $19
function _GetCOST_MONEY : JString; cdecl; // A: $19
function _GetDEVELOPMENT_TOOLS : JString; cdecl; // A: $19
function _GetHARDWARE_CONTROLS : JString; cdecl; // A: $19
function _GetLOCATION : JString; cdecl; // A: $19
function _GetMESSAGES : JString; cdecl; // A: $19
function _GetNETWORK : JString; cdecl; // A: $19
function _GetPERSONAL_INFO : JString; cdecl; // A: $19
function _GetPHONE_CALLS : JString; cdecl; // A: $19
function _GetSTORAGE : JString; cdecl; // A: $19
function _GetSYSTEM_TOOLS : JString; cdecl; // A: $19
function init : JManifest_permission_group; cdecl; // ()V A: $1
property ACCOUNTS : JString read _GetACCOUNTS; // Ljava/lang/String; A: $19
property COST_MONEY : JString read _GetCOST_MONEY; // Ljava/lang/String; A: $19
property DEVELOPMENT_TOOLS : JString read _GetDEVELOPMENT_TOOLS; // Ljava/lang/String; A: $19
property HARDWARE_CONTROLS : JString read _GetHARDWARE_CONTROLS; // Ljava/lang/String; A: $19
property LOCATION : JString read _GetLOCATION; // Ljava/lang/String; A: $19
property MESSAGES : JString read _GetMESSAGES; // Ljava/lang/String; A: $19
property NETWORK : JString read _GetNETWORK; // Ljava/lang/String; A: $19
property PERSONAL_INFO : JString read _GetPERSONAL_INFO; // Ljava/lang/String; A: $19
property PHONE_CALLS : JString read _GetPHONE_CALLS; // Ljava/lang/String; A: $19
property STORAGE : JString read _GetSTORAGE; // Ljava/lang/String; A: $19
property SYSTEM_TOOLS : JString read _GetSYSTEM_TOOLS; // Ljava/lang/String; A: $19
end;

[JavaSignature('android/Manifest_permission_group')]
JManifest_permission_group = interface(JObject)
['{AFFC4393-F78E-49A7-A0EF-85C9CDC5D8DC}']
end;

TJManifest_permission_group = class(TJavaGenericImport<JManifest_permission_groupClass, JManifest_permission_group>)
end;

const
TJManifest_permission_groupACCOUNTS = 'android.permission-group.ACCOUNTS';
TJManifest_permission_groupCOST_MONEY = 'android.permission-group.COST_MONEY';
TJManifest_permission_groupDEVELOPMENT_TOOLS = 'android.permission-group.DEVELOPMENT_TOOLS';
TJManifest_permission_groupHARDWARE_CONTROLS = 'android.permission-group.HARDWARE_CONTROLS';
TJManifest_permission_groupLOCATION = 'android.permission-group.LOCATION';
TJManifest_permission_groupMESSAGES = 'android.permission-group.MESSAGES';
TJManifest_permission_groupNETWORK = 'android.permission-group.NETWORK';
TJManifest_permission_groupPERSONAL_INFO = 'android.permission-group.PERSONAL_INFO';
TJManifest_permission_groupPHONE_CALLS = 'android.permission-group.PHONE_CALLS';
TJManifest_permission_groupSTORAGE = 'android.permission-group.STORAGE';
TJManifest_permission_groupSYSTEM_TOOLS = 'android.permission-group.SYSTEM_TOOLS';

implementation

end.
30 changes: 30 additions & 0 deletions android-11/android.R.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//
// Generated by JavaToPas v1.4 20140526 - 133026
////////////////////////////////////////////////////////////////////////////////
unit android.R;

interface

uses
AndroidAPI.JNIBridge,
Androidapi.JNI.JavaTypes;

type
JR = interface;

JRClass = interface(JObjectClass)
['{E2D577BE-4734-4C8E-916A-609470E48447}']
function init : JR; cdecl; // ()V A: $1
end;

[JavaSignature('android/R$xml')]
JR = interface(JObject)
['{6023AAB1-65F0-4466-9B5F-601D7E564F2D}']
end;

TJR = class(TJavaGenericImport<JRClass, JR>)
end;

implementation

end.
71 changes: 71 additions & 0 deletions android-11/android.R_anim.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
//
// Generated by JavaToPas v1.4 20140526 - 132800
////////////////////////////////////////////////////////////////////////////////
unit android.R_anim;

interface

uses
AndroidAPI.JNIBridge,
Androidapi.JNI.JavaTypes;

type
JR_anim = interface;

JR_animClass = interface(JObjectClass)
['{D8AB6613-27D9-4A91-B101-C4711456023F}']
function _Getaccelerate_decelerate_interpolator : Integer; cdecl; // A: $19
function _Getaccelerate_interpolator : Integer; cdecl; // A: $19
function _Getanticipate_interpolator : Integer; cdecl; // A: $19
function _Getanticipate_overshoot_interpolator : Integer; cdecl; // A: $19
function _Getbounce_interpolator : Integer; cdecl; // A: $19
function _Getcycle_interpolator : Integer; cdecl; // A: $19
function _Getdecelerate_interpolator : Integer; cdecl; // A: $19
function _Getfade_in : Integer; cdecl; // A: $19
function _Getfade_out : Integer; cdecl; // A: $19
function _Getlinear_interpolator : Integer; cdecl; // A: $19
function _Getovershoot_interpolator : Integer; cdecl; // A: $19
function _Getslide_in_left : Integer; cdecl; // A: $19
function _Getslide_out_right : Integer; cdecl; // A: $19
function init : JR_anim; cdecl; // ()V A: $1
property accelerate_decelerate_interpolator : Integer read _Getaccelerate_decelerate_interpolator;// I A: $19
property accelerate_interpolator : Integer read _Getaccelerate_interpolator;// I A: $19
property anticipate_interpolator : Integer read _Getanticipate_interpolator;// I A: $19
property anticipate_overshoot_interpolator : Integer read _Getanticipate_overshoot_interpolator;// I A: $19
property bounce_interpolator : Integer read _Getbounce_interpolator; // I A: $19
property cycle_interpolator : Integer read _Getcycle_interpolator; // I A: $19
property decelerate_interpolator : Integer read _Getdecelerate_interpolator;// I A: $19
property fade_in : Integer read _Getfade_in; // I A: $19
property fade_out : Integer read _Getfade_out; // I A: $19
property linear_interpolator : Integer read _Getlinear_interpolator; // I A: $19
property overshoot_interpolator : Integer read _Getovershoot_interpolator; // I A: $19
property slide_in_left : Integer read _Getslide_in_left; // I A: $19
property slide_out_right : Integer read _Getslide_out_right; // I A: $19
end;

[JavaSignature('android/R_anim')]
JR_anim = interface(JObject)
['{126820DE-5737-47C3-A427-B7800494F253}']
end;

TJR_anim = class(TJavaGenericImport<JR_animClass, JR_anim>)
end;

const
TJR_animaccelerate_decelerate_interpolator = 17432580;
TJR_animaccelerate_interpolator = 17432581;
TJR_animanticipate_interpolator = 17432583;
TJR_animanticipate_overshoot_interpolator = 17432585;
TJR_animbounce_interpolator = 17432586;
TJR_animcycle_interpolator = 17432588;
TJR_animdecelerate_interpolator = 17432582;
TJR_animfade_in = 17432576;
TJR_animfade_out = 17432577;
TJR_animlinear_interpolator = 17432587;
TJR_animovershoot_interpolator = 17432584;
TJR_animslide_in_left = 17432578;
TJR_animslide_out_right = 17432579;

implementation

end.
38 changes: 38 additions & 0 deletions android-11/android.R_animator.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
//
// Generated by JavaToPas v1.4 20140526 - 133026
////////////////////////////////////////////////////////////////////////////////
unit android.R_animator;

interface

uses
AndroidAPI.JNIBridge,
Androidapi.JNI.JavaTypes;

type
JR_animator = interface;

JR_animatorClass = interface(JObjectClass)
['{9664775E-6FD8-4C52-B068-3A8481BB1B6D}']
function _Getfade_in : Integer; cdecl; // A: $19
function _Getfade_out : Integer; cdecl; // A: $19
function init : JR_animator; cdecl; // ()V A: $1
property fade_in : Integer read _Getfade_in; // I A: $19
property fade_out : Integer read _Getfade_out; // I A: $19
end;

[JavaSignature('android/R_animator')]
JR_animator = interface(JObject)
['{BC990515-399F-40D6-9FF0-EB8083E49BC7}']
end;

TJR_animator = class(TJavaGenericImport<JR_animatorClass, JR_animator>)
end;

const
TJR_animatorfade_in = 17498112;
TJR_animatorfade_out = 17498113;

implementation

end.
47 changes: 47 additions & 0 deletions android-11/android.R_array.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
//
// Generated by JavaToPas v1.4 20140526 - 133530
////////////////////////////////////////////////////////////////////////////////
unit android.R_array;

interface

uses
AndroidAPI.JNIBridge,
Androidapi.JNI.JavaTypes;

type
JR_array = interface;

JR_arrayClass = interface(JObjectClass)
['{696622CD-9095-4525-BD3E-F8310DEA8A02}']
function _GetemailAddressTypes : Integer; cdecl; // A: $19
function _GetimProtocols : Integer; cdecl; // A: $19
function _GetorganizationTypes : Integer; cdecl; // A: $19
function _GetphoneTypes : Integer; cdecl; // A: $19
function _GetpostalAddressTypes : Integer; cdecl; // A: $19
function init : JR_array; cdecl; // ()V A: $1
property emailAddressTypes : Integer read _GetemailAddressTypes; // I A: $19
property imProtocols : Integer read _GetimProtocols; // I A: $19
property organizationTypes : Integer read _GetorganizationTypes; // I A: $19
property phoneTypes : Integer read _GetphoneTypes; // I A: $19
property postalAddressTypes : Integer read _GetpostalAddressTypes; // I A: $19
end;

[JavaSignature('android/R_array')]
JR_array = interface(JObject)
['{CBCB11C2-06E8-4878-9014-3F41E2E93EA4}']
end;

TJR_array = class(TJavaGenericImport<JR_arrayClass, JR_array>)
end;

const
TJR_arrayemailAddressTypes = 17235968;
TJR_arrayimProtocols = 17235969;
TJR_arrayorganizationTypes = 17235970;
TJR_arrayphoneTypes = 17235971;
TJR_arraypostalAddressTypes = 17235972;

implementation

end.
Loading

0 comments on commit 7de99de

Please sign in to comment.