Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2008-09-04 22:11:23 +0000
committerSilenio Quarti2008-09-04 22:11:23 +0000
commit42e86227e71463fec9d36624f93c296bc7f62927 (patch)
tree6fa4c243bb30dc064493ab7df5c6b6f67fd06fe3
parent3f9b72626cc5b96dd3cfab1d99641da74a2ee2e1 (diff)
downloadeclipse.platform.swt-42e86227e71463fec9d36624f93c296bc7f62927.tar.gz
eclipse.platform.swt-42e86227e71463fec9d36624f93c296bc7f62927.tar.xz
eclipse.platform.swt-42e86227e71463fec9d36624f93c296bc7f62927.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorApp.java25
-rw-r--r--bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java2
-rwxr-xr-xbundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.cocoa.OS.properties1325
-rw-r--r--bundles/org.eclipse.swt.tools/src/org/eclipse/swt/tools/views/MacGeneratorView.java1
4 files changed, 11 insertions, 1342 deletions
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorApp.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorApp.java
index 48aa2be234..0165acbfc7 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorApp.java
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorApp.java
@@ -26,7 +26,6 @@ public class JNIGeneratorApp {
ProgressMonitor progress;
String mainClassName, outputDir, classpath;
MetaData metaData;
- boolean generateMetaData = USE_AST ? false : true;
static final boolean USE_AST = true;
@@ -174,12 +173,14 @@ void generateMetaData(JNIClass[] classes) {
gen.setProgressMonitor(progress);
ByteArrayOutputStream out = new ByteArrayOutputStream();
gen.setOutput(new PrintStream(out));
- gen.generate();
- if (!new File(getMetaDataDir()).exists()) {
- System.out.println("Warning: Meta data output dir does not exist");
- return;
+ if (new File(getMetaDataDir() + gen.getFileName()).exists()) {
+ gen.generate();
+ if (!new File(getMetaDataDir()).exists()) {
+ System.out.println("Warning: Meta data output dir does not exist");
+ return;
+ }
+ if (out.size() > 0) output(out.toByteArray(), getMetaDataDir() + gen.getFileName());
}
- if (out.size() > 0) output(out.toByteArray(), getMetaDataDir() + gen.getFileName());
} catch (Exception e) {
System.out.println("Problem");
e.printStackTrace(System.out);
@@ -210,7 +211,7 @@ public void generate(ProgressMonitor progress) {
}
int total = nativeCount * 4;
total += classes.length;
- total += natives.length * (generateMetaData ? 3 : 2);
+ total += natives.length * (3);
total += structs.length * 2;
progress.setTotal(total);
progress.setMessage("Generating structs.h ...");
@@ -224,10 +225,8 @@ public void generate(ProgressMonitor progress) {
generateSTATS_H(natives);
if (progress != null) progress.setMessage("Generating stats.c ...");
generateSTATS_C(natives);
- if (generateMetaData) {
- if (progress != null) progress.setMessage("Generating meta data ...");
- generateMetaData(classes);
- }
+ if (progress != null) progress.setMessage("Generating meta data ...");
+ generateMetaData(classes);
if (progress != null) progress.setMessage("Done.");
this.progress = null;
}
@@ -419,10 +418,6 @@ public void setClasspath(String classpath) {
this.classpath = classpath;
}
-public void setGenerateMetaData(boolean generateMetaData) {
- this.generateMetaData = generateMetaData;
-}
-
public void setMainClass(JNIClass mainClass) {
this.mainClass = mainClass;
}
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java
index 4b57e6197e..2211b37efa 100644
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java
+++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java
@@ -844,7 +844,7 @@ void generateSourceStart(String function, String function64) {
output(function);
output(") && !defined(");
output(JNI64);
- output(")) || (!defined(");
+ output(")) || (!defined(NO_");
output(function64);
output(") && defined(");
output(JNI64);
diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.cocoa.OS.properties b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.cocoa.OS.properties
deleted file mode 100755
index 6a1f04a43b..0000000000
--- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/org.eclipse.swt.internal.cocoa.OS.properties
+++ /dev/null
@@ -1,1325 +0,0 @@
-###############################################################################
-# Copyright (c) 2000, 2008 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-###############################################################################
-org_eclipse_swt_internal_cocoa_CGPoint=
-CGPoint_x=
-CGPoint_y=
-
-org_eclipse_swt_internal_cocoa_CGRect=
-CGRect_origin=
-CGRect_size=
-
-org_eclipse_swt_internal_cocoa_CGSize=
-CGSize_width=
-CGSize_height=
-
-org_eclipse_swt_internal_cocoa_DOMDocument=
-
-org_eclipse_swt_internal_cocoa_DOMEvent=
-
-org_eclipse_swt_internal_cocoa_DOMKeyboardEvent=
-
-org_eclipse_swt_internal_cocoa_DOMMouseEvent=
-
-org_eclipse_swt_internal_cocoa_DOMUIEvent=
-
-org_eclipse_swt_internal_cocoa_DOMWheelEvent=
-
-org_eclipse_swt_internal_cocoa_NSActionCell=
-
-org_eclipse_swt_internal_cocoa_NSAffineTransform=
-
-org_eclipse_swt_internal_cocoa_NSAffineTransformStruct=
-NSAffineTransformStruct_m11=
-NSAffineTransformStruct_m12=
-NSAffineTransformStruct_m21=
-NSAffineTransformStruct_m22=
-NSAffineTransformStruct_tX=
-NSAffineTransformStruct_tY=
-
-org_eclipse_swt_internal_cocoa_NSAlert=
-
-org_eclipse_swt_internal_cocoa_NSAppleEventDescriptor=
-
-org_eclipse_swt_internal_cocoa_NSApplication=flags=no_gen
-
-org_eclipse_swt_internal_cocoa_NSArray=
-
-org_eclipse_swt_internal_cocoa_NSAttributedString=
-
-org_eclipse_swt_internal_cocoa_NSAutoreleasePool=flags=no_gen
-
-org_eclipse_swt_internal_cocoa_NSBezierPath=
-
-org_eclipse_swt_internal_cocoa_NSBitmapImageRep=
-
-org_eclipse_swt_internal_cocoa_NSBox=
-
-org_eclipse_swt_internal_cocoa_NSBrowserCell=
-
-org_eclipse_swt_internal_cocoa_NSBundle=
-
-org_eclipse_swt_internal_cocoa_NSButton=
-
-org_eclipse_swt_internal_cocoa_NSButtonCell=
-
-org_eclipse_swt_internal_cocoa_NSCalendarDate=
-
-org_eclipse_swt_internal_cocoa_NSCell=
-
-org_eclipse_swt_internal_cocoa_NSClipView=
-
-org_eclipse_swt_internal_cocoa_NSCoder=
-
-org_eclipse_swt_internal_cocoa_NSColor=
-
-org_eclipse_swt_internal_cocoa_NSColorPanel=
-
-org_eclipse_swt_internal_cocoa_NSColorSpace=
-
-org_eclipse_swt_internal_cocoa_NSComboBox=
-
-org_eclipse_swt_internal_cocoa_NSControl=
-
-org_eclipse_swt_internal_cocoa_NSCursor=
-
-org_eclipse_swt_internal_cocoa_NSData=
-
-org_eclipse_swt_internal_cocoa_NSDate=
-
-org_eclipse_swt_internal_cocoa_NSDatePicker=
-
-org_eclipse_swt_internal_cocoa_NSDictionary=
-
-org_eclipse_swt_internal_cocoa_NSDirectoryEnumerator=
-
-org_eclipse_swt_internal_cocoa_NSEnumerator=
-
-org_eclipse_swt_internal_cocoa_NSError=
-
-org_eclipse_swt_internal_cocoa_NSEvent=
-
-org_eclipse_swt_internal_cocoa_NSFileManager=
-
-org_eclipse_swt_internal_cocoa_NSFont=
-
-org_eclipse_swt_internal_cocoa_NSFontManager=
-
-org_eclipse_swt_internal_cocoa_NSFontPanel=
-
-org_eclipse_swt_internal_cocoa_NSGradient=
-
-org_eclipse_swt_internal_cocoa_NSGraphicsContext=
-
-org_eclipse_swt_internal_cocoa_NSHTTPCookie=
-
-org_eclipse_swt_internal_cocoa_NSHTTPCookieStorage=
-
-org_eclipse_swt_internal_cocoa_NSImage=
-
-org_eclipse_swt_internal_cocoa_NSImageRep=
-
-org_eclipse_swt_internal_cocoa_NSImageView=
-
-org_eclipse_swt_internal_cocoa_NSIndexSet=
-
-org_eclipse_swt_internal_cocoa_NSInputManager=
-
-org_eclipse_swt_internal_cocoa_NSKeyedArchiver=
-
-org_eclipse_swt_internal_cocoa_NSKeyedUnarchiver=
-
-org_eclipse_swt_internal_cocoa_NSLayoutManager=
-
-org_eclipse_swt_internal_cocoa_NSMenu=
-
-org_eclipse_swt_internal_cocoa_NSMenuItem=
-
-org_eclipse_swt_internal_cocoa_NSMutableArray=
-
-org_eclipse_swt_internal_cocoa_NSMutableAttributedString=
-
-org_eclipse_swt_internal_cocoa_NSMutableDictionary=
-
-org_eclipse_swt_internal_cocoa_NSMutableIndexSet=
-
-org_eclipse_swt_internal_cocoa_NSMutableParagraphStyle=
-
-org_eclipse_swt_internal_cocoa_NSMutableSet=
-
-org_eclipse_swt_internal_cocoa_NSMutableString=
-
-org_eclipse_swt_internal_cocoa_NSMutableURLRequest=
-
-org_eclipse_swt_internal_cocoa_NSNotification=
-
-org_eclipse_swt_internal_cocoa_NSNotificationCenter=
-
-org_eclipse_swt_internal_cocoa_NSNumber=
-
-org_eclipse_swt_internal_cocoa_NSObject=flags=no_gen
-
-org_eclipse_swt_internal_cocoa_NSOpenGLContext=
-
-org_eclipse_swt_internal_cocoa_NSOpenGLPixelFormat=
-
-org_eclipse_swt_internal_cocoa_NSOpenGLView=
-
-org_eclipse_swt_internal_cocoa_NSOpenPanel=
-
-org_eclipse_swt_internal_cocoa_NSOutlineView=
-
-org_eclipse_swt_internal_cocoa_NSPanel=
-
-org_eclipse_swt_internal_cocoa_NSParagraphStyle=
-
-org_eclipse_swt_internal_cocoa_NSPasteboard=
-
-org_eclipse_swt_internal_cocoa_NSPoint=
-NSPoint_x=
-NSPoint_y=
-
-org_eclipse_swt_internal_cocoa_NSPopUpButton=
-
-org_eclipse_swt_internal_cocoa_NSPrintInfo=
-
-org_eclipse_swt_internal_cocoa_NSPrintOperation=
-
-org_eclipse_swt_internal_cocoa_NSPrintPanel=
-
-org_eclipse_swt_internal_cocoa_NSPrinter=
-
-org_eclipse_swt_internal_cocoa_NSProgressIndicator=
-
-org_eclipse_swt_internal_cocoa_NSRange=
-NSRange_location=
-NSRange_length=
-
-org_eclipse_swt_internal_cocoa_NSRect=
-NSRect_x=accessor=origin.x
-NSRect_y=accessor=origin.y
-NSRect_width=accessor=size.width
-NSRect_height=accessor=size.height
-
-org_eclipse_swt_internal_cocoa_NSResponder=
-
-org_eclipse_swt_internal_cocoa_NSRunLoop=
-
-org_eclipse_swt_internal_cocoa_NSSavePanel=
-
-org_eclipse_swt_internal_cocoa_NSScreen=
-
-org_eclipse_swt_internal_cocoa_NSScrollView=
-
-org_eclipse_swt_internal_cocoa_NSScroller=
-
-org_eclipse_swt_internal_cocoa_NSSearchField=
-
-org_eclipse_swt_internal_cocoa_NSSecureTextField=
-
-org_eclipse_swt_internal_cocoa_NSSet=
-
-org_eclipse_swt_internal_cocoa_NSSize=
-NSSize_width=
-NSSize_height=
-
-org_eclipse_swt_internal_cocoa_NSSlider=
-
-org_eclipse_swt_internal_cocoa_NSStatusBar=
-
-org_eclipse_swt_internal_cocoa_NSStatusItem=
-
-org_eclipse_swt_internal_cocoa_NSStepper=
-
-org_eclipse_swt_internal_cocoa_NSString=
-
-org_eclipse_swt_internal_cocoa_NSTabView=
-
-org_eclipse_swt_internal_cocoa_NSTabViewItem=
-
-org_eclipse_swt_internal_cocoa_NSTableColumn=
-
-org_eclipse_swt_internal_cocoa_NSTableHeaderCell=
-
-org_eclipse_swt_internal_cocoa_NSTableHeaderView=
-
-org_eclipse_swt_internal_cocoa_NSTableView=
-
-org_eclipse_swt_internal_cocoa_NSText=
-
-org_eclipse_swt_internal_cocoa_NSTextContainer=
-
-org_eclipse_swt_internal_cocoa_NSTextField=
-
-org_eclipse_swt_internal_cocoa_NSTextFieldCell=
-
-org_eclipse_swt_internal_cocoa_NSTextStorage=
-
-org_eclipse_swt_internal_cocoa_NSTextView=
-
-org_eclipse_swt_internal_cocoa_NSTimeZone=
-
-org_eclipse_swt_internal_cocoa_NSTimer=
-
-org_eclipse_swt_internal_cocoa_NSTypesetter=
-
-org_eclipse_swt_internal_cocoa_NSURL=
-
-org_eclipse_swt_internal_cocoa_NSURLDownload=
-
-org_eclipse_swt_internal_cocoa_NSURLRequest=
-
-org_eclipse_swt_internal_cocoa_NSValue=
-
-org_eclipse_swt_internal_cocoa_NSView=
-
-org_eclipse_swt_internal_cocoa_NSWindow=flags=no_gen
-
-org_eclipse_swt_internal_cocoa_NSWorkspace=
-
-org_eclipse_swt_internal_cocoa_OS=
-OS_CGPoint_sizeof=
-
-OS_CGRect_sizeof=
-
-OS_CGSize_sizeof=
-
-OS_CGWarpMouseCursorPosition=
-OS_CGWarpMouseCursorPosition_0=flags=struct
-
-OS_CPSSetProcessName=
-OS_CPSSetProcessName_0=
-OS_CPSSetProcessName_1=
-
-OS_CloseRgn=flags=dynamic
-OS_CloseRgn_0=
-
-OS_CopyRgn=flags=dynamic
-OS_CopyRgn_0=
-OS_CopyRgn_1=
-
-OS_DeleteGlobalRef=flags=jni
-OS_DeleteGlobalRef_0=cast=(jobject)
-
-OS_DiffRgn=flags=dynamic
-OS_DiffRgn_0=
-OS_DiffRgn_1=
-OS_DiffRgn_2=
-
-OS_DisposeRgn=flags=dynamic
-OS_DisposeRgn_0=
-
-OS_EmptyRgn=flags=dynamic
-OS_EmptyRgn_0=
-
-OS_Gestalt=
-OS_Gestalt_0=
-OS_Gestalt_1=
-
-OS_GetCurrentProcess=
-OS_GetCurrentProcess_0=cast=(ProcessSerialNumber *)
-
-OS_GetRegionBounds=flags=dynamic
-OS_GetRegionBounds_0=
-OS_GetRegionBounds_1=
-
-OS_JNIGetObject=flags=no_gen
-OS_JNIGetObject_0=
-
-OS_LineTo=flags=dynamic
-OS_LineTo_0=
-OS_LineTo_1=
-
-OS_MoveTo=flags=dynamic
-OS_MoveTo_0=
-OS_MoveTo_1=
-
-OS_NSAccessibilityPositionAttribute=flags=const
-
-OS_NSAccessibilitySizeAttribute=flags=const
-
-OS_NSAffineTransformStruct_sizeof=
-
-OS_NSBackgroundColorAttributeName=flags=const
-
-OS_NSBaselineOffsetAttributeName=flags=const
-
-OS_NSBitsPerPixelFromDepth=
-OS_NSBitsPerPixelFromDepth_0=
-
-OS_NSCalibratedRGBColorSpace=flags=const
-
-OS_NSDefaultRunLoopMode=flags=const
-
-OS_NSDeviceRGBColorSpace=flags=const
-
-OS_NSDeviceResolution=flags=const
-
-OS_NSErrorFailingURLStringKey=flags=const
-
-OS_NSFileTypeForHFSTypeCode=
-OS_NSFileTypeForHFSTypeCode_0=
-
-OS_NSFilenamesPboardType=flags=const
-
-OS_NSFontAttributeName=flags=const
-
-OS_NSForegroundColorAttributeName=flags=const
-
-OS_NSGetSizeAndAlignment=
-OS_NSGetSizeAndAlignment_0=cast=(char*)
-OS_NSGetSizeAndAlignment_1=cast=(NSUInteger*)
-OS_NSGetSizeAndAlignment_2=cast=(NSUInteger*)
-
-OS_NSIntersectionRect=flags=no_gen
-OS_NSIntersectionRect_0=
-OS_NSIntersectionRect_1=
-OS_NSIntersectionRect_2=
-
-OS_NSLinkAttributeName=flags=const
-
-OS_NSParagraphStyleAttributeName=flags=const
-
-OS_NSPoint_sizeof=
-
-OS_NSPrintAllPages=flags=const
-
-OS_NSPrintCopies=flags=const
-
-OS_NSPrintFirstPage=flags=const
-
-OS_NSPrintJobDisposition=flags=const
-
-OS_NSPrintLastPage=flags=const
-
-OS_NSPrintMustCollate=flags=const
-
-OS_NSPrintPreviewJob=flags=const
-
-OS_NSPrintSaveJob=flags=const
-
-OS_NSPrintSavePath=flags=const
-
-OS_NSPrintSpoolJob=flags=const
-
-OS_NSRTFPboardType=flags=const
-
-OS_NSRange_sizeof=
-
-OS_NSRect_sizeof=
-
-OS_NSSearchPathForDirectoriesInDomains=
-OS_NSSearchPathForDirectoriesInDomains_0=
-OS_NSSearchPathForDirectoriesInDomains_1=
-OS_NSSearchPathForDirectoriesInDomains_2=
-
-OS_NSSize_sizeof=
-
-OS_NSStrikethroughColorAttributeName=flags=const
-
-OS_NSStrikethroughStyleAttributeName=flags=const
-
-OS_NSStringPboardType=flags=const
-
-OS_NSTIFFPboardType=flags=const
-
-OS_NSTemporaryDirectory=
-
-OS_NSURLPboardType=flags=const
-
-OS_NSUnderlineColorAttributeName=flags=const
-
-OS_NSUnderlineStyleAttributeName=flags=const
-
-OS_NewGlobalRef=flags=jni
-OS_NewGlobalRef_0=cast=(jobject)
-
-OS_NewRgn=flags=dynamic
-
-OS_OffsetRgn=flags=dynamic
-OS_OffsetRgn_0=
-OS_OffsetRgn_1=
-OS_OffsetRgn_2=
-
-OS_OpenRgn=flags=dynamic
-
-OS_PtInRgn=flags=dynamic
-OS_PtInRgn_0=
-OS_PtInRgn_1=
-
-OS_QDRegionToRects=flags=dynamic
-OS_QDRegionToRects_0=
-OS_QDRegionToRects_1=
-OS_QDRegionToRects_2=
-OS_QDRegionToRects_3=
-
-OS_RectInRgn=flags=dynamic
-OS_RectInRgn_0=
-OS_RectInRgn_1=
-
-OS_RectRgn=flags=dynamic
-OS_RectRgn_0=
-OS_RectRgn_1=
-
-OS_SectRgn=flags=dynamic
-OS_SectRgn_0=
-OS_SectRgn_1=
-OS_SectRgn_2=
-
-OS_SetFrontProcess=
-OS_SetFrontProcess_0=cast=(ProcessSerialNumber *)
-
-OS_SetRect=flags=dynamic
-OS_SetRect_0=
-OS_SetRect_1=
-OS_SetRect_2=
-OS_SetRect_3=
-OS_SetRect_4=
-
-OS_TransformProcessType=
-OS_TransformProcessType_0=cast=(ProcessSerialNumber *)
-OS_TransformProcessType_1=
-
-OS_UnionRgn=flags=dynamic
-OS_UnionRgn_0=
-OS_UnionRgn_1=
-OS_UnionRgn_2=
-
-OS_attributedSubstringFromRange_CALLBACK=flags=no_gen
-OS_attributedSubstringFromRange_CALLBACK_0=
-
-OS_characterIndexForPoint_CALLBACK=flags=no_gen
-OS_characterIndexForPoint_CALLBACK_0=
-
-OS_class_addIvar=
-OS_class_addIvar_0=cast=(Class)
-OS_class_addIvar_1=cast=(const char *)
-OS_class_addIvar_2=cast=(size_t)
-OS_class_addIvar_3=
-OS_class_addIvar_4=cast=(const char *)
-
-OS_class_addMethod=
-OS_class_addMethod_0=cast=(Class)
-OS_class_addMethod_1=cast=(SEL)
-OS_class_addMethod_2=cast=(IMP)
-OS_class_addMethod_3=cast=(const char *)
-
-OS_class_addProtocol=
-OS_class_addProtocol_0=cast=Class
-OS_class_addProtocol_1=cast=Protocol *
-
-OS_drawInteriorWithFrame_inView_CALLBACK=flags=no_gen
-OS_drawInteriorWithFrame_inView_CALLBACK_0=
-
-OS_drawRect_CALLBACK=flags=no_gen
-OS_drawRect_CALLBACK_0=
-
-OS_firstRectForCharacterRange_CALLBACK=flags=no_gen
-OS_firstRectForCharacterRange_CALLBACK_0=
-
-OS_getpid=
-
-OS_hitTest_CALLBACK=flags=no_gen
-OS_hitTest_CALLBACK_0=
-
-OS_instrumentObjcMessageSends=flags=dynamic
-OS_instrumentObjcMessageSends_0=
-
-OS_markedRange_CALLBACK=flags=no_gen
-OS_markedRange_CALLBACK_0=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGPoint_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGPoint_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGPoint_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGPoint_2I_2=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGRect_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGRect_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGRect_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGRect_2I_2=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGSize_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGSize_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGSize_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_CGSize_2I_2=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2I_2=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSPoint_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSPoint_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSPoint_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSPoint_2I_2=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRange_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRange_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRange_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRange_2I_2=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRect_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRect_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRect_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSRect_2I_2=
-
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSSize_2I=
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSSize_2I_0=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSSize_2I_1=cast=(void *)
-OS_memmove__ILorg_eclipse_swt_internal_cocoa_NSSize_2I_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGPoint_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGPoint_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGPoint_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGPoint_2II_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGRect_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGRect_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGRect_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGRect_2II_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGSize_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGSize_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGSize_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_CGSize_2II_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRange_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRange_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRange_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRange_2II_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRect_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRect_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRect_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSRect_2II_2=
-
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSSize_2II=
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSSize_2II_0=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSSize_2II_1=cast=(void *)
-OS_memmove__Lorg_eclipse_swt_internal_cocoa_NSSize_2II_2=
-
-OS_objc_allocateClassPair=
-OS_objc_allocateClassPair_0=cast=(Class)
-OS_objc_allocateClassPair_1=cast=(const char *)
-OS_objc_allocateClassPair_2=cast=(size_t)
-
-OS_objc_getClass=
-OS_objc_getClass_0=cast=(const char *)
-
-OS_objc_getProtocol=
-OS_objc_getProtocol_0=
-
-OS_objc_lookUpClass=
-OS_objc_lookUpClass_0=cast=(const char *)
-
-OS_objc_1msgSend__II=flags=cast
-OS_objc_1msgSend__II_0=cast=(id)
-OS_objc_1msgSend__II_1=cast=(SEL)
-
-OS_objc_1msgSend__IID=flags=cast
-OS_objc_1msgSend__IID_0=cast=(id)
-OS_objc_1msgSend__IID_1=cast=(SEL)
-OS_objc_1msgSend__IID_2=
-
-OS_objc_1msgSend__IIDIIIZ=flags=cast
-OS_objc_1msgSend__IIDIIIZ_0=cast=(id)
-OS_objc_1msgSend__IIDIIIZ_1=cast=(SEL)
-OS_objc_1msgSend__IIDIIIZ_2=
-OS_objc_1msgSend__IIDIIIZ_3=
-OS_objc_1msgSend__IIDIIIZ_4=
-OS_objc_1msgSend__IIDIIIZ_5=
-OS_objc_1msgSend__IIDIIIZ_6=
-
-OS_objc_1msgSend__IIF=flags=cast
-OS_objc_1msgSend__IIF_0=cast=(id)
-OS_objc_1msgSend__IIF_1=cast=(SEL)
-OS_objc_1msgSend__IIF_2=
-
-OS_objc_1msgSend__IIFF=flags=cast
-OS_objc_1msgSend__IIFF_0=cast=(id)
-OS_objc_1msgSend__IIFF_1=cast=(SEL)
-OS_objc_1msgSend__IIFF_2=
-OS_objc_1msgSend__IIFF_3=
-
-OS_objc_1msgSend__IIFFFF=flags=cast
-OS_objc_1msgSend__IIFFFF_0=cast=(id)
-OS_objc_1msgSend__IIFFFF_1=cast=(SEL)
-OS_objc_1msgSend__IIFFFF_2=
-OS_objc_1msgSend__IIFFFF_3=
-OS_objc_1msgSend__IIFFFF_4=
-OS_objc_1msgSend__IIFFFF_5=
-
-OS_objc_1msgSend__III=flags=cast
-OS_objc_1msgSend__III_0=cast=(id)
-OS_objc_1msgSend__III_1=cast=(SEL)
-OS_objc_1msgSend__III_2=
-
-OS_objc_1msgSend__IIIF=flags=cast
-OS_objc_1msgSend__IIIF_0=cast=(id)
-OS_objc_1msgSend__IIIF_1=cast=(SEL)
-OS_objc_1msgSend__IIIF_2=
-OS_objc_1msgSend__IIIF_3=
-
-OS_objc_1msgSend__IIII=flags=cast
-OS_objc_1msgSend__IIII_0=cast=(id)
-OS_objc_1msgSend__IIII_1=cast=(SEL)
-OS_objc_1msgSend__IIII_2=
-OS_objc_1msgSend__IIII_3=
-
-OS_objc_1msgSend__IIIII=flags=cast
-OS_objc_1msgSend__IIIII_0=cast=(id)
-OS_objc_1msgSend__IIIII_1=cast=(SEL)
-OS_objc_1msgSend__IIIII_2=
-OS_objc_1msgSend__IIIII_3=
-OS_objc_1msgSend__IIIII_4=
-
-OS_objc_1msgSend__IIIIII=flags=cast
-OS_objc_1msgSend__IIIIII_0=cast=(id)
-OS_objc_1msgSend__IIIIII_1=cast=(SEL)
-OS_objc_1msgSend__IIIIII_2=
-OS_objc_1msgSend__IIIIII_3=
-OS_objc_1msgSend__IIIIII_4=
-OS_objc_1msgSend__IIIIII_5=
-
-OS_objc_1msgSend__IIIIIII=flags=cast
-OS_objc_1msgSend__IIIIIII_0=cast=(id)
-OS_objc_1msgSend__IIIIIII_1=cast=(SEL)
-OS_objc_1msgSend__IIIIIII_2=
-OS_objc_1msgSend__IIIIIII_3=
-OS_objc_1msgSend__IIIIIII_4=
-OS_objc_1msgSend__IIIIIII_5=
-OS_objc_1msgSend__IIIIIII_6=
-
-OS_objc_1msgSend__IIIIIIIII=flags=cast
-OS_objc_1msgSend__IIIIIIIII_0=cast=(id)
-OS_objc_1msgSend__IIIIIIIII_1=cast=(SEL)
-OS_objc_1msgSend__IIIIIIIII_2=
-OS_objc_1msgSend__IIIIIIIII_3=
-OS_objc_1msgSend__IIIIIIIII_4=
-OS_objc_1msgSend__IIIIIIIII_5=
-OS_objc_1msgSend__IIIIIIIII_6=
-OS_objc_1msgSend__IIIIIIIII_7=
-OS_objc_1msgSend__IIIIIIIII_8=
-
-OS_objc_1msgSend__IIIIIIIZZIII=flags=cast
-OS_objc_1msgSend__IIIIIIIZZIII_0=cast=(id)
-OS_objc_1msgSend__IIIIIIIZZIII_1=cast=(SEL)
-OS_objc_1msgSend__IIIIIIIZZIII_2=
-OS_objc_1msgSend__IIIIIIIZZIII_3=
-OS_objc_1msgSend__IIIIIIIZZIII_4=
-OS_objc_1msgSend__IIIIIIIZZIII_5=
-OS_objc_1msgSend__IIIIIIIZZIII_6=
-OS_objc_1msgSend__IIIIIIIZZIII_7=
-OS_objc_1msgSend__IIIIIIIZZIII_8=
-OS_objc_1msgSend__IIIIIIIZZIII_9=
-OS_objc_1msgSend__IIIIIIIZZIII_10=
-OS_objc_1msgSend__IIIIIIIZZIII_11=
-
-OS_objc_1msgSend__IIIIIIIZZIIII=flags=cast
-OS_objc_1msgSend__IIIIIIIZZIIII_0=cast=(id)
-OS_objc_1msgSend__IIIIIIIZZIIII_1=cast=(SEL)
-OS_objc_1msgSend__IIIIIIIZZIIII_2=
-OS_objc_1msgSend__IIIIIIIZZIIII_3=
-OS_objc_1msgSend__IIIIIIIZZIIII_4=
-OS_objc_1msgSend__IIIIIIIZZIIII_5=
-OS_objc_1msgSend__IIIIIIIZZIIII_6=
-OS_objc_1msgSend__IIIIIIIZZIIII_7=
-OS_objc_1msgSend__IIIIIIIZZIIII_8=
-OS_objc_1msgSend__IIIIIIIZZIIII_9=
-OS_objc_1msgSend__IIIIIIIZZIIII_10=
-OS_objc_1msgSend__IIIIIIIZZIIII_11=
-OS_objc_1msgSend__IIIIIIIZZIIII_12=
-
-OS_objc_1msgSend__IIIIIZ=flags=cast
-OS_objc_1msgSend__IIIIIZ_0=cast=(id)
-OS_objc_1msgSend__IIIIIZ_1=cast=(SEL)
-OS_objc_1msgSend__IIIIIZ_2=
-OS_objc_1msgSend__IIIIIZ_3=
-OS_objc_1msgSend__IIIIIZ_4=
-OS_objc_1msgSend__IIIIIZ_5=
-
-OS_objc_1msgSend__IIIILorg_eclipse_swt_internal_cocoa_NSRange_2=flags=cast
-OS_objc_1msgSend__IIIILorg_eclipse_swt_internal_cocoa_NSRange_2_0=cast=(id)
-OS_objc_1msgSend__IIIILorg_eclipse_swt_internal_cocoa_NSRange_2_1=cast=(SEL)
-OS_objc_1msgSend__IIIILorg_eclipse_swt_internal_cocoa_NSRange_2_2=
-OS_objc_1msgSend__IIIILorg_eclipse_swt_internal_cocoa_NSRange_2_3=
-OS_objc_1msgSend__IIIILorg_eclipse_swt_internal_cocoa_NSRange_2_4=flags=struct
-
-OS_objc_1msgSend__IIIIZ=flags=cast
-OS_objc_1msgSend__IIIIZ_0=cast=(id)
-OS_objc_1msgSend__IIIIZ_1=cast=(SEL)
-OS_objc_1msgSend__IIIIZ_2=
-OS_objc_1msgSend__IIIIZ_3=
-OS_objc_1msgSend__IIIIZ_4=
-
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2=flags=cast
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2_0=cast=(id)
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2_1=cast=(SEL)
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2_2=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2_3=flags=struct
-
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII=flags=cast
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_0=cast=(id)
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_1=cast=(SEL)
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_2=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_3=flags=struct
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_4=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_5=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_6=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_7=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_8=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_9=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSPoint_2IDIISII_10=
-
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSRange_2=flags=cast
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSRange_2_0=cast=(id)
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSRange_2_1=cast=(SEL)
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSRange_2_2=
-OS_objc_1msgSend__IIILorg_eclipse_swt_internal_cocoa_NSRange_2_3=flags=struct
-
-OS_objc_1msgSend__IIIZ=flags=cast
-OS_objc_1msgSend__IIIZ_0=cast=(id)
-OS_objc_1msgSend__IIIZ_1=cast=(SEL)
-OS_objc_1msgSend__IIIZ_2=
-OS_objc_1msgSend__IIIZ_3=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2_2=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2_2=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFF=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFF_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFF_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFF_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFF_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFF_4=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFF_5=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ_4=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ_5=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2FFFZ_6=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_3F=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_3F_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_3F_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_3F_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_3F_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_3F_4=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2I=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2I_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2I_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2I_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2I_3=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2I_4=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_3=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_4=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_3=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_4=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSPoint_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_5=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2_2=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2I=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2I_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2I_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2I_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2I_3=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_3=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2_2=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2F=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2F_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2F_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2F_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2F_3=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2FF=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2FF_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2FF_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2FF_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2FF_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2FF_4=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2I=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2I_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2I_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2I_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2I_3=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2II=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2II_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2II_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2II_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2II_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2II_4=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZ=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZ_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZ_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZ_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZ_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZ_4=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZ_5=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI_4=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI_5=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IIZI_6=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IZI=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IZI_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IZI_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IZI_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IZI_3=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IZI_4=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2IZI_5=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSPoint_2_3=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSRect_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSRect_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSRect_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSRect_2_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSRect_2_3=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRange_2Lorg_eclipse_swt_internal_cocoa_NSRect_2_4=flags=struct
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_3=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_4=
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Lorg_eclipse_swt_internal_cocoa_NSRect_2IF_5=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Z=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Z_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Z_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Z_2=flags=struct
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSRect_2Z_3=
-
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSSize_2=flags=cast
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSSize_2_0=cast=(id)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSSize_2_1=cast=(SEL)
-OS_objc_1msgSend__IILorg_eclipse_swt_internal_cocoa_NSSize_2_2=flags=struct
-
-OS_objc_1msgSend__IIZ=flags=cast
-OS_objc_1msgSend__IIZ_0=cast=(id)
-OS_objc_1msgSend__IIZ_1=cast=(SEL)
-OS_objc_1msgSend__IIZ_2=
-
-OS_objc_1msgSend__IIZI=flags=cast
-OS_objc_1msgSend__IIZI_0=cast=(id)
-OS_objc_1msgSend__IIZI_1=cast=(SEL)
-OS_objc_1msgSend__IIZI_2=
-OS_objc_1msgSend__IIZI_3=
-
-OS_objc_1msgSend__II_3B=flags=cast
-OS_objc_1msgSend__II_3B_0=cast=(id)
-OS_objc_1msgSend__II_3B_1=cast=(SEL)
-OS_objc_1msgSend__II_3B_2=
-
-OS_objc_1msgSend__II_3BI=flags=cast
-OS_objc_1msgSend__II_3BI_0=cast=(id)
-OS_objc_1msgSend__II_3BI_1=cast=(SEL)
-OS_objc_1msgSend__II_3BI_2=
-OS_objc_1msgSend__II_3BI_3=
-
-OS_objc_1msgSend__II_3C=
-OS_objc_1msgSend__II_3C_0=cast=(id)
-OS_objc_1msgSend__II_3C_1=cast=(SEL)
-OS_objc_1msgSend__II_3C_2=
-
-OS_objc_1msgSend__II_3CI=
-OS_objc_1msgSend__II_3CI_0=cast=(id)
-OS_objc_1msgSend__II_3CI_1=cast=SEL
-OS_objc_1msgSend__II_3CI_2=
-OS_objc_1msgSend__II_3CI_3=
-
-OS_objc_1msgSend__II_3CLorg_eclipse_swt_internal_cocoa_NSRange_2=flags=cast
-OS_objc_1msgSend__II_3CLorg_eclipse_swt_internal_cocoa_NSRange_2_0=cast=(id)
-OS_objc_1msgSend__II_3CLorg_eclipse_swt_internal_cocoa_NSRange_2_1=cast=(SEL)
-OS_objc_1msgSend__II_3CLorg_eclipse_swt_internal_cocoa_NSRange_2_2=
-OS_objc_1msgSend__II_3CLorg_eclipse_swt_internal_cocoa_NSRange_2_3=flags=struct
-
-OS_objc_1msgSend__II_3F=flags=cast
-OS_objc_1msgSend__II_3F_0=cast=(id)
-OS_objc_1msgSend__II_3F_1=cast=(SEL)
-OS_objc_1msgSend__II_3F_2=
-
-OS_objc_1msgSend__II_3FIF=flags=cast
-OS_objc_1msgSend__II_3FIF_0=cast=(id)
-OS_objc_1msgSend__II_3FIF_1=cast=(SEL)
-OS_objc_1msgSend__II_3FIF_2=
-OS_objc_1msgSend__II_3FIF_3=
-OS_objc_1msgSend__II_3FIF_4=
-
-OS_objc_1msgSend__II_3I=flags=cast
-OS_objc_1msgSend__II_3I_0=cast=(id)
-OS_objc_1msgSend__II_3I_1=cast=(SEL)
-OS_objc_1msgSend__II_3I_2=
-
-OS_objc_1msgSend__II_3III=flags=cast
-OS_objc_1msgSend__II_3III_0=cast=(id)
-OS_objc_1msgSend__II_3III_1=cast=(SEL)
-OS_objc_1msgSend__II_3III_2=
-OS_objc_1msgSend__II_3III_3=
-OS_objc_1msgSend__II_3III_4=
-
-OS_objc_1msgSend__JJFD=flags=cast
-OS_objc_1msgSend__JJFD_0=cast=(id)
-OS_objc_1msgSend__JJFD_1=cast=(SEL)
-OS_objc_1msgSend__JJFD_2=
-OS_objc_1msgSend__JJFD_3=
-
-OS_objc_1msgSend__JJI=flags=cast
-OS_objc_1msgSend__JJI_0=cast=(id)
-OS_objc_1msgSend__JJI_1=cast=(SEL)
-OS_objc_1msgSend__JJI_2=
-
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2I=flags=cast
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2I_0=cast=(id)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2I_1=cast=(SEL)
-
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2II=flags=cast
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2II_0=cast=(id)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2II_1=cast=(SEL)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2II_2=
-
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2IIIIZ=flags=cast
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2IIIIZ_0=cast=(id)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2IIIIZ_1=cast=(SEL)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2IIIIZ_2=
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2IIIIZ_3=
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2IIIIZ_4=
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2IIIIZ_5=
-
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSPoint_2=flags=cast
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSPoint_2_0=cast=(id)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSPoint_2_1=cast=(SEL)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSPoint_2_2=flags=struct
-
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSRect_2=flags=cast
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSRect_2_0=cast=(id)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSRect_2_1=cast=(SEL)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSRect_2_2=flags=struct
-
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSSize_2=flags=cast
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSSize_2_0=cast=(id)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSSize_2_1=cast=(SEL)
-OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2ILorg_eclipse_swt_internal_cocoa_NSSize_2_2=flags=struct
-
-OS_objc_1msgSend_1fpret__II=flags=cast
-OS_objc_1msgSend_1fpret__II_0=cast=(id)
-OS_objc_1msgSend_1fpret__II_1=cast=(SEL)
-
-OS_objc_1msgSend_1fpret__III=flags=cast
-OS_objc_1msgSend_1fpret__III_0=cast=(id)
-OS_objc_1msgSend_1fpret__III_1=cast=(SEL)
-OS_objc_1msgSend_1fpret__III_2=
-
-OS_objc_1msgSend_1fpret__IIII=flags=cast
-OS_objc_1msgSend_1fpret__IIII_0=cast=(id)
-OS_objc_1msgSend_1fpret__IIII_1=cast=(SEL)
-OS_objc_1msgSend_1fpret__IIII_2=
-OS_objc_1msgSend_1fpret__IIII_3=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSAffineTransformStruct_2II_2=cast=(SEL)
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2II_2=cast=(SEL)
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2III=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2III_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2III_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2III_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2III_3=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2_3=flags=struct
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2I=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_3=flags=struct
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSPoint_2IILorg_eclipse_swt_internal_cocoa_NSPoint_2I_4=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2II=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2II_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2II_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2II_2=cast=(SEL)
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2III=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2III_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2III_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2III_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRange_2III_3=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2II=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2II_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2II_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2II_2=cast=(SEL)
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2III=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2III_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2III_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2III_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2III_3=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIII=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIII_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIII_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIII_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIII_3=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIII_4=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIIIZ=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIIIZ_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIIIZ_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIIIZ_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIIIZ_3=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIIIZ_4=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IIIIZ_5=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRange_2I=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRange_2I_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRange_2I_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRange_2I_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRange_2I_3=flags=struct
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRange_2I_4=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2_3=flags=struct
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2I=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2I_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2I_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2I_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2I_3=flags=struct
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSRect_2IILorg_eclipse_swt_internal_cocoa_NSRect_2I_4=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2II=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2II_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2II_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2II_2=cast=(SEL)
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2_3=flags=struct
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2I=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2I_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2I_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2I_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2I_3=flags=struct
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2I_4=
-
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI=flags=cast
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI_0=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI_1=cast=(id)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI_2=cast=(SEL)
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI_3=flags=struct
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI_4=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI_5=
-OS_objc_1msgSend_1stret__Lorg_eclipse_swt_internal_cocoa_NSSize_2IILorg_eclipse_swt_internal_cocoa_NSSize_2ZZI_6=
-
-OS_objc_registerClassPair=
-OS_objc_registerClassPair_0=cast=(Class)
-
-OS_objc_super_sizeof=
-
-OS_object_getClassName=
-OS_object_getClassName_0=cast=(id)
-
-OS_object_getInstanceVariable=
-OS_object_getInstanceVariable_0=cast=(id)
-OS_object_getInstanceVariable_1=cast=(const char *)
-OS_object_getInstanceVariable_2=cast=(void **)
-
-OS_object_setClass=
-OS_object_setClass_0=cast=(id)
-OS_object_setClass_1=cast=(Class)
-
-OS_object_setInstanceVariable=
-OS_object_setInstanceVariable_0=cast=(id)
-OS_object_setInstanceVariable_1=cast=(const char *)
-OS_object_setInstanceVariable_2=cast=(void *)
-
-OS_sel_registerName=
-OS_sel_registerName_0=cast=(const char *)
-
-OS_selectedRange_CALLBACK=flags=no_gen
-OS_selectedRange_CALLBACK_0=
-
-OS_setFrameOrigin_CALLBACK=flags=no_gen
-OS_setFrameOrigin_CALLBACK_0=
-
-OS_setFrameSize_CALLBACK=flags=no_gen
-OS_setFrameSize_CALLBACK_0=
-
-OS_setFrame_CALLBACK=flags=no_gen
-OS_setFrame_CALLBACK_0=
-
-OS_setMarkedText_selectedRange_CALLBACK=flags=no_gen
-OS_setMarkedText_selectedRange_CALLBACK_0=
-
-OS_textView_willChangeSelectionFromCharacterRange_toCharacterRange_CALLBACK=flags=no_gen
-OS_textView_willChangeSelectionFromCharacterRange_toCharacterRange_CALLBACK_0=
-
-OS_webView_setFrame_CALLBACK=flags=no_gen
-OS_webView_setFrame_CALLBACK_0=
-
-
-org_eclipse_swt_internal_cocoa_Protocol=
-
-org_eclipse_swt_internal_cocoa_SWTApplicationDelegate=
-
-org_eclipse_swt_internal_cocoa_SWTBox=
-
-org_eclipse_swt_internal_cocoa_SWTButton=
-
-org_eclipse_swt_internal_cocoa_SWTComboBox=
-
-org_eclipse_swt_internal_cocoa_SWTDatePicker=
-
-org_eclipse_swt_internal_cocoa_SWTImageView=
-
-org_eclipse_swt_internal_cocoa_SWTMenu=
-
-org_eclipse_swt_internal_cocoa_SWTMenuItem=
-
-org_eclipse_swt_internal_cocoa_SWTOutlineView=
-
-org_eclipse_swt_internal_cocoa_SWTPanelDelegate=
-
-org_eclipse_swt_internal_cocoa_SWTPopUpButton=
-
-org_eclipse_swt_internal_cocoa_SWTProgressIndicator=
-
-org_eclipse_swt_internal_cocoa_SWTScrollView=
-
-org_eclipse_swt_internal_cocoa_SWTScroller=
-
-org_eclipse_swt_internal_cocoa_SWTSearchField=
-
-org_eclipse_swt_internal_cocoa_SWTSecureTextField=
-
-org_eclipse_swt_internal_cocoa_SWTSlider=
-
-org_eclipse_swt_internal_cocoa_SWTStepper=
-
-org_eclipse_swt_internal_cocoa_SWTTabView=
-
-org_eclipse_swt_internal_cocoa_SWTTableHeaderCell=
-
-org_eclipse_swt_internal_cocoa_SWTTableView=
-
-org_eclipse_swt_internal_cocoa_SWTTextField=
-
-org_eclipse_swt_internal_cocoa_SWTTextView=
-
-org_eclipse_swt_internal_cocoa_SWTTreeItem=
-
-org_eclipse_swt_internal_cocoa_SWTView=
-
-org_eclipse_swt_internal_cocoa_SWTWebViewDelegate=
-
-org_eclipse_swt_internal_cocoa_SWTWindow=
-
-org_eclipse_swt_internal_cocoa_SWTWindowDelegate=
-
-org_eclipse_swt_internal_cocoa_WebDataSource=
-
-org_eclipse_swt_internal_cocoa_WebDocumentRepresentation=
-
-org_eclipse_swt_internal_cocoa_WebFrame=
-
-org_eclipse_swt_internal_cocoa_WebFrameView=
-
-org_eclipse_swt_internal_cocoa_WebOpenPanelResultListener=
-
-org_eclipse_swt_internal_cocoa_WebPolicyDecisionListener=
-
-org_eclipse_swt_internal_cocoa_WebPreferences=
-
-org_eclipse_swt_internal_cocoa_WebView=
-
-org_eclipse_swt_internal_cocoa_id=flags=no_gen
-id_id=
-
-org_eclipse_swt_internal_cocoa_objc_1super=flags=struct
-objc_super_receiver=cast=(id)
-objc_super_super_class=cast=(Class)
-
diff --git a/bundles/org.eclipse.swt.tools/src/org/eclipse/swt/tools/views/MacGeneratorView.java b/bundles/org.eclipse.swt.tools/src/org/eclipse/swt/tools/views/MacGeneratorView.java
index 4854cbc7fe..714c6dc711 100644
--- a/bundles/org.eclipse.swt.tools/src/org/eclipse/swt/tools/views/MacGeneratorView.java
+++ b/bundles/org.eclipse.swt.tools/src/org/eclipse/swt/tools/views/MacGeneratorView.java
@@ -130,7 +130,6 @@ public class MacGeneratorView extends ViewPart {
app.setOutputDir(root.getLocation().toPortableString() + "/library");
app.setMetaData(metaData);
app.setMainClass(mainClass);
- app.setGenerateMetaData(false);
app.setClasses((JNIClass[])classes.toArray(new JNIClass[classes.size()]));
app.generate();
refresh();

Back to the top