911 Commits (46a245fd50137425901f1681c5ee98a6beddf211)
 

Author SHA1 Message Date
Tom Spilman 46a245fd50 Fix to test Hello.cs. 12 years ago
Tom Spilman 79aa2d0684 Fix to OpenCV example. 12 years ago
triton d7ff6ae4ab Update test utility class for new ILibrary interface. 12 years ago
triton ee1bc28879 Use the output namespace instead of the library name when generating function names signatures. 12 years ago
triton a9863b8951 Remove extra using declaration. 12 years ago
triton d0fb96121d Change the ILibrary methods to take a driver instance. 12 years ago
triton 35180f7e24 Remove some unused fields from the Library class. 12 years ago
triton c8ce6ad245 Added some documentation to some classes. 12 years ago
triton 439d363cd1 Register generators in a static constructor. 12 years ago
triton 20b0b76421 Remove the GenerateStart and GenerateAfterNamespaces methods from the ILibrary interface and replace them with delegates on each generator. 12 years ago
triton 13d1280dbb Do per-generator pass initialization and switch the C# generator to use it. 12 years ago
triton 70f76588aa Refactor file writing into the driver instead of duplicating it each generator. 12 years ago
triton 0aeb17b1cb Removed extra whitespace. 12 years ago
triton 464dc37984 Improved support for dependent arrays. 12 years ago
triton 4aa83eb551 Use the fully qualified name when searching for complete declarations. 12 years ago
João Matos 25fb327606 Merge pull request #1 from terite/patch-1 12 years ago
David Stensland 43db362063 Make manual formatting slightly nicer 12 years ago
triton a19381df38 Fixed FindClass to work with qualified names. 12 years ago
triton 95418f79ab Fixed FindEnum to work with qualified names. 12 years ago
triton cf002fb007 FindNamespace now takes an IEnumerable instead of array. 12 years ago
marcos henrich 3310afee6e Fixed generated CLI source code for native functions and native static methods 12 years ago
marcos henrich d53d287948 Event's parameters are now visited 12 years ago
marcos henrich 55b05ecff9 Added missing arguments of CLI event raise 12 years ago
marcos henrich 7a9c1d19ba Fixed constructor CLI calls, ::ClassName::ClassName() is now ::ClassName() 12 years ago
triton db3798ebd0 Remove unused virtual function as it's been removed from up-to-date Clang APIs. 12 years ago
triton c0c675b4c0 Check for not processed or explicitly ignored functions instead of just ignored, since ignored also checks for IsGenerated which is incorrect in this instance (eg. we dont want to generate wrapper methods for getters, but we still need their internal declaration for properties). 12 years ago
triton 53bbc8c04b Use Helpers.SafeIdentifier when sending parameters to marshaling to deal with invalid identifiers. 12 years ago
triton 0895429e65 When generating the setter method of a property, use the first method parameter type as the type for the setter. 12 years ago
triton 556ee78ac7 Collect the get/set methods used in properties so that we generate the needed internal function declarations. 12 years ago
triton 5dce147d77 Refactored the internal function generation code to collect all the declarations first and only then generate the needed functions. We also store them in a set to deal with duplicated entries. 12 years ago
triton eaa833bd17 Respect the type map information when checking for ignored types. 12 years ago
triton ee86be7562 Added support for events to CheckIgnoredDecls pass. 12 years ago
triton 6f37c3cdbe Added support for variables to CheckIgnoredDecls pass. 12 years ago
triton 6b5f218258 Use the previously declared local variable. 12 years ago
triton 5d337b03c0 Fixed the IsProcessed property to deal more robustly with declarations that are missing namespaces. 12 years ago
triton 13b225e31e Fixed the FindHierarchy to walk the declarations top-down instead of bottom-up, which is the expected behavior for the users of this method. This makes sure when searching for methods we find the one from the top classes first, instead of the base ones. 12 years ago
triton 53bce57b19 Added parsing of access specifiers in methods. 12 years ago
triton bed7b4d8b7 Changed events parameters to be actual parameters rather than just types. 12 years ago
triton e2fffddadf Changed function/method return types to be qualified types. 12 years ago
triton d73b631115 Fixed the TypeCompletionChecker pass to not walk recursively through all the types as that can lead to some wrong ignore behavior. 12 years ago
triton c3810b5a67 Actually add variables to the namespace when parsing. 12 years ago
triton d27ec5aa1c Desugar the pointee type when checking for primitive types in the marshaler. 12 years ago
triton f26018db87 Fixed CheckOperatorsOverloads pass to work correctly for non C#-supported operator overloads. 12 years ago
triton 2301f4c7a9 Improved support for arrays in the marshaler. 12 years ago
triton 6759ec6754 Added better support for out parameters in the marshaler. 12 years ago
triton 4393c32f9b Set the new namespace of the fields when moving the fields between classes. 12 years ago
triton 001348d26d Remove the shared library extension when printing it in DllImport declarations. 12 years ago
triton a223bb3311 Stop using fixed pointers and treating the managed and native layouts as equivalent and use the To/From marshaling methods as its more safe. 12 years ago
triton f9accf226b Call the default constructors for value types so all fields are initialized. 12 years ago
triton b4e66d578a Formatting fixes. 12 years ago