Searched refs:struct (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/corba/src/share/classes/com/sun/corba/se/GiopIDL/
H A DGIOP.idl30 struct Version {
38 struct MessageHeader_1_0 { // Renamed from MessageHeader
48 struct MessageHeader_1_1 {
62 struct RequestHeader_1_0 { // Renamed from RequestHeader
72 struct RequestHeader_1_1 {
87 struct IORAddressingInfo {
96 struct RequestHeader_1_2 {
118 struct ReplyHeader_1_0 { // Renamed from ReplyHeader
140 struct ReplyHeader_1_2 {
149 struct SystemExceptionReplyBod
[all...]
H A Dmessages.idl39 struct IORAddressingInfo {
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dfirst.set38 <specification> typedef, struct, union, enum, const, exception, interface, module
40 <specification'> <FOLLOW>, typedef, struct, union, enum, const, exception, interface, module
42 <definition> typedef, struct, union, enum, const, exception, interface, module
46 <module'> typedef, struct, union, enum, const, exception, interface, module
48 <module''> typedef, struct, union, enum, const, exception, interface, module, <FOLLOW>
56 <interface_body> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
58 <interface_body'> <FOLLOW>, typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
60 <export> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
64 <state_def'> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, <FOLLOW>
66 <state_member> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, unio
[all...]
H A Dfollow.set42 <definition> EOF, typedef, struct, union, enum, const, exception, interface, module, }
60 <export> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }
62 <state_def> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }
66 <state_member> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, }
68 <state_modifier> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
162 <member> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, }
174 <case'> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
176 <case_label> case, default, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
H A Dir.idl91 struct Description {
128 struct StructMember {
135 struct UnionMember {
151 struct ValueMember {
162 struct Initializer {
195 struct Description {
364 struct ModuleDescription {
382 struct ConstantDescription {
402 struct TypeDescription {
505 struct ExceptionDescriptio
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DStructClassFile.java42 final Struct struct; field in class:StructClassFile
44 public StructClassFile(final Struct struct) { argument
45 super(struct.parent.pkg, struct.name, com.apple.jobjc.Struct.class.getName());
46 this.struct = struct;
54 + ((NStruct) struct.type.type64).sizeof64() + " : " + ((NStruct) struct.type.type32).sizeof32() + ";");
59 (struct.fields.size() > 0 ? ",\n\t\t" : ""),
63 }}, struct
[all...]
H A DFrameworkClassFile.java75 for(final Struct struct : new ArrayList<Struct>(framework.structs)){
76 out.println("\tpublic " + struct.name + " make" + struct.name + "(){");
77 out.println("\t\treturn new " + struct.name + "(getRuntime());");
79 out.println("\tpublic " + struct.name + " make" + struct.name + "(com.apple.jobjc.NativeBuffer base){");
80 out.println("\t\treturn new " + struct.name + "(getRuntime(), base);");
/openjdk7/corba/src/share/classes/org/omg/PortableInterceptor/
H A DIOP.idl93 struct TaggedProfile {
155 struct IOR {
208 struct TaggedComponent {
263 * struct {
319 struct ServiceContext {
359 * <code>struct CosBridging.ChainBypassCheck</code>. This is carried
371 * <code>struct CosBridging.ChainBypassInfo</code>. This is carried
383 * the <code>struct CosBridging.LogicalThreadId</code> as described
573 struct Encoding {
H A DInterceptors.idl56 struct Parameter {
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A Dir.idl92 struct Description {
129 struct StructMember {
136 struct UnionMember {
152 struct ValueMember {
163 struct Initializer {
196 struct Description {
365 struct ModuleDescription {
383 struct ConstantDescription {
403 struct TypeDescription {
506 struct ExceptionDescriptio
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/activation/
H A Dactivation.idl121 // passing a struct containing endpointType and port-#s
122 struct EndPointInfo {
129 // struct contain ORB and port info
130 struct ORBPortInfo {
198 // struct to return the list of endpoints for a server for a specific
200 struct ServerLocation {
205 // struct to return the list of endpoints for a server for a specific
207 struct ServerLocationPerORB {
255 struct ServerDef {
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DJType.java183 public final Struct struct; field in class:JType.JStruct
184 public JStruct(final Struct struct) { this.struct = struct; } argument
186 @Override public String getJavaTypeName() { return struct.parent.pkg + "." + struct.name; }
193 return "\t\t" + getJavaReturnTypeName() + " returnValue = " + RootJObjCClass.runtimeFrameworkInstR(struct.parent.name)
194 + ".make" + struct.name + "();";
/openjdk7/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/
H A Dactivation.idl127 struct EndPointInfo {
136 /** struct contain ORB and port info for a particular type of endpoint.
141 struct ORBPortInfo {
275 /** struct to return the list of endpoints for a server for a specific
278 struct ServerLocationPerType {
283 /** struct to return the list of endpoints for a server for a specific
286 struct ServerLocationPerORB {
346 struct ServerDef {
/openjdk7/jdk/src/macosx/bundle/JavaAppLauncher/src/
H A Dmain.m61 struct rlimit limit;
/openjdk7/corba/src/share/classes/org/omg/CosNaming/
H A Dnameservice.idl62 struct NameComponent
86 struct Binding
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTEvent.m66 static struct _key
212 struct CharToVKEntry {
216 static const struct CharToVKEntry charToDeadVKTable[] = {
241 static struct _nsKeyToJavaModifier
322 static struct _char {
346 const struct _char *cur;
430 static size_t size = sizeof(keyTable) / sizeof(struct _key);
435 const struct CharToVKEntry *map;
508 const struct _nsKeyToJavaModifier* cur;
546 const struct _nsKeyToJavaModifie
[all...]
H A DQuartzSurfaceData.m64 struct _ColorCacheInfo
69 static struct _ColorCacheInfo colorCacheInfo;
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m64 struct timeval tv;
65 struct timezone tz;
273 struct pollfd pfd[1];
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLGraphicsConfig.m93 struct sockaddr_un address;
103 memset(&address, 0, sizeof(struct sockaddr_un));
108 status = connect(remoteSocketFD, (struct sockaddr *) &address,
109 sizeof(struct sockaddr_un));
/openjdk7/corba/src/share/classes/org/omg/DynamicAny/
H A DDynamicAny.idl74 * each kind of constructed type in IDL (fixed, enum, struct, sequence, union, array,
78 * As an example, a DynStruct is associated with a struct value. This means that the DynStruct
81 * each of them associated with a member of the struct.
103 * of the associated struct data value.
728 struct NameValuePair {
743 struct NameDynAnyPair {
756 * DynStruct objects support the manipulation of IDL struct and exception values.
757 * Members of the exceptions are handled in the same way as members of a struct.
784 * in the struct associated with a DynStruct object.
793 * Initializes the struct dat
[all...]
/openjdk7/jdk/make/tools/GenerateCharacter/
H A Dcheck_class.c.template65 struct methodblock *mb;
66 struct fieldblock *fb;
88 struct methodblock *mb;
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java899 * @param struct a {@code String} containing the name of the
905 public abstract FtpClient structureMount(String struct) throws FtpProtocolException, IOException; argument
/openjdk7/jdk/src/macosx/native/jobjc/src/core/native/
H A DSubclassing.m178 typedef struct closure_data_t{
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCGGlyphImages.m31 #import "fontscalerdefs.h" // contains the definition of GlyphInfo struct
45 * For each character, the glyph is struck, copied into a GlyphInfo struct, and
299 typedef struct CGGI_GlyphInfoDescriptor {
304 typedef struct CGGI_RenderingMode {
486 // create a GlyphInfo struct fused to the image it points to
702 * Creates a GlyphInfo struct with a malloc that also encapsulates the
703 * image the struct points to. This is done to meet memory layout
705 * The image immediately follows the struct physically in memory.
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES669 Added members "lang_key" and "itxt_length" to png_text struct. Set
2702 Removed malformed "incomplete struct declaration" of png_info from png.h
3285 function prototypes in the manual. The row_info struct is png_row_infop.

Completed in 190 milliseconds

12