100+ results for 'that = this'
Not the results you expected?
flowchart_directive.spec.js (https://gitlab.com/kingofhappy/openbdre) JavaScript · 618 lines
PathCellRenderer.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 52 lines
✨ Summary
This Java code defines a custom list cell renderer for a JList component, specifically designed to display file paths. It extends the DefaultListCellRenderer class and overrides the getListCellRendererComponent method to customize the rendering of each list cell. The renderer displays the file name in bold, followed by the full path, with the path enclosed in gray text.
This Java code defines a custom list cell renderer for a JList component, specifically designed to display file paths. It extends the DefaultListCellRenderer class and overrides the getListCellRendererComponent method to customize the rendering of each list cell. The renderer displays the file name in bold, followed by the full path, with the path enclosed in gray text.
6 * Copyright  2011 Matthieu Casanova
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
relativedatetimesymbolsext.js (https://github.com/chromium/chromium.git) JavaScript · 1447 lines
9 * File generated from CLDR ver. 39
10 *
11 * This file covers those locales that are not covered in
12 * "relativedatetimesymbols.js".
13 */
39 HOUR: {
40 LONG:{
41 R:{'0':'this hour'},
42 P:'other{-# h}',
43 F:'other{+# h}',
46 MINUTE: {
47 LONG:{
48 R:{'0':'this minute'},
49 P:'other{-# min}',
50 F:'other{+# min}',
vows-test.js (https://github.com/smh/vows.git) JavaScript · 374 lines
204 "when successful": {
205 topic: function () {
206 var that = this;
207 process.nextTick(function () {
208 that.callback(null, "OK");
320 vows.describe("Vows with a single batch", {
321 "This is a batch that's added as the optional parameter to describe()": {
322 topic: true,
323 "And a vow": function () {}
361 "with a subcontext" : {
362 topic: function (topic) {
363 var that = this;
364 process.nextTick(function () {
365 that.callback(null, topic);
VQTrain.cc
(https://freespeech.svn.sourceforge.net/svnroot/freespeech)
C++ · 108 lines
✨ Summary
This C++ code defines a node called VQTrain
that appears to be part of a larger neural network framework. It trains a vector quantization (VQ) model on input frames and produces an output. The node takes two inputs: FRAMES
and optional parameters MEANS
and BINARY
. It initializes the VQ model, trains it on the input data, and returns the trained model as output.
This C++ code defines a node called VQTrain
that appears to be part of a larger neural network framework. It trains a vector quantization (VQ) model on input frames and produces an output. The node takes two inputs: FRAMES
and optional parameters MEANS
and BINARY
. It initializes the VQ model, trains it on the input data, and returns the trained model as output.
1 // Copyright (C) 1999 Jean-Marc Valin
2 //
3 // This program is free software; you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation; either version 2, or (at your option)
6 // any later version.
7 //
8 // This program is distributed in the hope that it will be useful, but
9 // WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this file. If not, write to the Free Software Foundation,
15 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
OpenFileNodeHandler.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 97 lines
✨ Summary
This Java class is a handler for open file nodes in a project viewer application. It handles loading and saving of open files, including adding them to a project and writing their paths to a configuration file. The class extends another NodeHandler class and provides specific implementations for handling open file nodes.
This Java class is a handler for open file nodes in a project viewer application. It handles loading and saving of open files, including adding them to a project and writing their paths to a configuration file. The class extends another NodeHandler class and provides specific implementations for handling open file nodes.
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 /**
40 * Returns the name of the nodes that should be delegated to this handler
41 * when loading configuration data.
42 */
47 /**
48 * Returns the class of the nodes that should be delegated to this handler
49 * when saving node data to the config file.
50 */
server_transaction_metrics.js (https://github.com/paralect/mongo.git) JavaScript · 202 lines
4 "use strict";
6 // Verifies that the server status response has the fields that we expect.
7 function verifyServerStatusFields(serverStatusResponse) {
8 assert(serverStatusResponse.hasOwnProperty("transactions"),
74 // Verify that the open transaction counter is incremented while inside the transaction.
75 verifyServerStatusChange(initialStatus.transactions, newStatus.transactions, "currentOpen", 1);
76 // Verify that when not running an operation, the transaction is inactive.
77 verifyServerStatusChange(initialStatus.transactions, newStatus.transactions, "currentActive", 0);
78 verifyServerStatusChange(initialStatus.transactions, newStatus.transactions, "currentInactive", 1);
118 verifyServerStatusChange(initialStatus.transactions, newStatus.transactions, "currentInactive", 0);
120 // This transaction will abort due to a duplicate key insert.
121 jsTest.log("Start a transaction that will abort on a duplicated key error.");
181 // Verify that the open transaction counter is incremented while inside the transaction.
182 verifyServerStatusChange(initialStatus.transactions, newStatus.transactions, "currentOpen", 1);
183 // Verify that the metrics show that the transaction is active while inside the operation.
184 verifyServerStatusChange(initialStatus.transactions, newStatus.transactions, "currentActive", 1);
185 verifyServerStatusChange(initialStatus.transactions, newStatus.transactions, "currentInactive", 0);
item-view.spec.js (https://gitlab.com/CodeYellowBV/backbone.marionette) JavaScript · 431 lines
37 this.marionetteRendererSpy = this.sinon.spy(Marionette.Renderer, 'render');
38 this.triggerSpy = this.sinon.spy(this.view, 'trigger');
39 this.serializeDataSpy = this.sinon.spy(this.view, 'serializeData');
122 this.view = new this.View();
123 this.triggerSpy = this.sinon.spy(this.view, 'trigger');
124 this.view.render();
165 });
167 this.serializeDataSpy = this.sinon.spy(this.view, 'serializeData');
168 this.view.render();
185 });
187 this.serializeDataSpy = this.sinon.spy(this.view, 'serializeData');
188 this.view.render();
246 this.stopListeningSpy = this.sinon.spy(this.view, 'stopListening');
247 this.triggerSpy = this.sinon.spy(this.view, 'trigger');
249 this.sinon.spy(this.view, 'destroy');
Sortable.js (https://bitbucket.org/mobile_venkys/mobisale1.git) JavaScript · 341 lines
44 /**
45 * @property currentSortFn
46 * This is the cached sorting function which is a generated function that calls all the
47 * configured sorters in the correct order. This is a read-only property.
138 if (!currentSorters) {
139 // This will guarantee that we get the collection
140 currentSorters = this.createSortersCollection();
277 result = sorters[i].sort.call(this, r1, r2);
279 // If the result is -1 or 1 at this point it means that the sort is done.
280 // Only if they are equal (0) we continue to see if a next sort function
281 // actually might find a winner.
315 /**
316 * This method returns the index that a given item would be inserted into a given array based
317 * on the current sorters.
318 * @param {Array} items The array that you want to insert the item into.
2012.js (https://gitlab.com/emad.rashad/mls-grading) JavaScript · 251 lines
9 * March 31, 2012 was on a Saturday
10 */
11 this.input = $('<input type="text" value="31-03-2012">')
12 .appendTo('#qunit-fixture')
13 .datetimepicker({format: "dd-mm-yyyy", viewSelect: 2})
14 .focus(); // Activate for visibility checks
15 this.dp = this.input.data('datetimepicker')
16 this.picker = this.dp.picker;
17 },
18 teardown: function(){
19 this.picker.remove();
20 }
21 });
26 // Rendered correctly
27 equal(this.dp.viewMode, 2);
28 target = this.picker.find('.datetimepicker-days tbody td:nth(7)');
Token.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 95 lines
✨ Summary
This Java code defines a Token
class that represents an input token stream in a parser. It includes fields for token kind, position, and string image, as well as references to next tokens and special tokens. The newToken
method creates new instances of the Token
or GTToken
classes based on the token kind.
This Java code defines a Token
class that represents an input token stream in a parser. It includes fields for token kind, position, and string image, as well as references to next tokens and special tokens. The newToken
method creates new instances of the Token
or GTToken
classes based on the token kind.
1 // Hand-modified for TigerParser, do not delete this file! Disregard any
2 // warnings that javacc may say about this file being obsolete, it is not!
3 // The modifications have to do with handling Generic Types, hence the
4 // 'GTToken' defined below.
13 /**
14 * An integer that describes the kind of this token. This numbering
15 * system is determined by JavaCCParser, and a table of these numbers is
16 * stored in the file ...Constants.java.
34 * stream. If this is the last token from the input stream, or if the
35 * token manager has not read tokens beyond this one, this field is
36 * set to null. This is true only if this token is also a regular
42 /**
43 * This field is used to access special tokens that occur prior to this
44 * token, but after the immediately preceding regular (non-special) token.
45 * If there are no such special tokens, this field is set to null.
Form.js
(http://enginey.googlecode.com/svn/trunk/)
JavaScript · 509 lines
✨ Summary
This JavaScript code defines a dijit.form.Form
class, which is a part of the Dojo framework. It creates a form element with various attributes and methods for handling form submission, validation, and event handling. The form can be submitted programmatically using the submit()
method, and its validity can be checked using the isValid()
method.
This JavaScript code defines a dijit.form.Form
class, which is a part of the Dojo framework. It creates a form element with various attributes and methods for handling form submission, validation, and event handling. The form can be submitted programmatically using the submit()
method, and its validity can be checked using the isValid()
method.
66 return dojo.every(dojo.map(this.getDescendants(), function(widget){
67 // Need to set this so that "required" widgets get their
68 // state set.
69 widget._hasBeenBlurred = true;
248 /***
249 * code for plain input boxes (see also dojo.formToObject, can we use that instead of this code?
250 * but it doesn't understand [] notation, presumably)
251 var obj = { };
474 var fp = dijit.form.Form.prototype;
475 // TODO: remove ths if statement beginning with 2.0
476 if(this.execute != fp.execute || this.onExecute != fp.onExecute){
477 dojo.deprecated("dijit.form.Form:execute()/onExecute() are deprecated. Use onSubmit() instead.", "", "2.0");
478 this.onExecute();
479 this.execute(this.getValues());
480 }
481 if(this.onSubmit(e) === false){ // only exactly false stops submit
TagBranchDialog.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 297 lines
✨ Summary
This Java code creates a graphical user interface (GUI) for creating and editing SVN tags and branches. It allows users to input source and destination URLs, select a revision, add comments, and cancel or save changes. The GUI is designed to be used in an SVN repository management context, such as Subversion version control system.
This Java code creates a graphical user interface (GUI) for creating and editing SVN tags and branches. It allows users to input source and destination URLs, select a revision, add comments, and cancel or save changes. The GUI is designed to be used in an SVN repository management context, such as Subversion version control system.
5 Redistribution and use in source and binary forms, with or without modification,
6 are permitted provided that the following conditions are met:
8 * Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright notice,
11 this list of conditions and the following disclaimer in the documentation
12 and/or other materials provided with the distribution.
13 * Neither the name of the author nor the names of its contributors
14 may be used to endorse or promote products derived from this software without
15 specific prior written permission.
MouseOptionPane.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 139 lines
✨ Summary
This Java code defines a custom options panel for an editor, specifically for mouse-related settings. It allows users to configure various mouse behaviors, such as text drag and drop, non-word character selection, middle mouse button paste, and gutter mouse actions. The settings are saved when the user clicks “OK” on the options panel.
This Java code defines a custom options panel for an editor, specifically for mouse-related settings. It allows users to configure various mouse behaviors, such as text drag and drop, non-word character selection, middle mouse button paste, and gutter mouse actions. The settings are saved when the user clicks “OK” on the options panel.
6 * Copyright (C) 2003 Slava Pestov
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
LaTeXCompletion.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 59 lines
✨ Summary
This Java class, LaTeXCompletion
, extends another class called SideKickCompletion
. It provides a basic implementation of code completion for LaTeX tools. The class has methods to handle keystrokes and insert text at specific indices, but currently does not provide any actual completion functionality. It seems to be incomplete or unused.
This Java class, LaTeXCompletion
, extends another class called SideKickCompletion
. It provides a basic implementation of code completion for LaTeX tools. The class has methods to handle keystrokes and insert text at specific indices, but currently does not provide any actual completion functionality. It seems to be incomplete or unused.
3 * Copyright (C) 2003 Anthony Roy
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
MibSideKick.html
(https://jedit.svn.sourceforge.net/svnroot/jedit)
HTML · 72 lines
✨ Summary
This HTML code outputs a plugin documentation page for MibSideKick, a plugin that parses MIB files and shows errors. The page includes information about the plugin’s version, author, and usage, as well as its history of updates and bug fixes. It also provides links to external resources and instructions on how to report bugs.
This HTML code outputs a plugin documentation page for MibSideKick, a plugin that parses MIB files and shows errors. The page includes information about the plugin’s version, author, and usage, as well as its history of updates and bug fixes. It also provides links to external resources and instructions on how to report bugs.
25 </tbody>
26 </table>
27 <p>The MibSideKick is a plugin that will parse your mib file and shows your errors.</p>
28 <p>It is based on the GPL mib parser <a href="http://www.mibble.org/">Mibble v2.9.2</a></p>
29 <table border="0" cellspacing="0" cellpadding="3" width="100%" bgcolor="#EEEEFF"
50 <li>1.2.0 (Apr 23, 2009)</li>
51 <ul>
52 <li>Fixed a bug that happens when imported mibs had errors</li>
53 <li>Use of the new mibble library 2.9.2</li>
54 </ul>
BeanShell.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 93 lines
✨ Summary
This Java code defines a Velocity directive called beanshell
that executes a BeanShell script. When invoked, it evaluates the script and writes its output to the specified writer if the result is not null. If an error occurs during evaluation, it logs the error and returns false. The directive can be used in Velocity templates to execute custom scripts.
This Java code defines a Velocity directive called beanshell
that executes a BeanShell script. When invoked, it evaluates the script and writes its output to the specified writer if the result is not null. If an error occurs during evaluation, it logs the error and returns false. The directive can be used in Velocity templates to execute custom scripts.
4 * Copyright (c) 2008 Steve Jakob
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
dist_neg_binom_incl_test.cpp
(http://hadesmem.googlecode.com/svn/trunk/)
C++ · 0 lines
✨ Summary
This C++ code performs a basic sanity check on the negative_binomial.hpp
header file, ensuring that all necessary files are included and compiled correctly. It uses Boost’s testing framework to verify the compilation of the negative_binomial_distribution
template class for different data types (float, double, long double).
This C++ code performs a basic sanity check on the negative_binomial.hpp
header file, ensuring that all necessary files are included and compiled correctly. It uses Boost’s testing framework to verify the compilation of the negative_binomial_distribution
template class for different data types (float, double, long double).
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 //
6 // Basic sanity check that header <boost/math/distributions/negative_binomial.hpp>
7 // #includes all the files that it needs to.
9 #include <boost/math/distributions/negative_binomial.hpp>
10 //
11 // Note this header includes no other headers, this is
12 // important if this test is to be meaningful:
gtl_polygon_90_concept.htm
(http://hadesmem.googlecode.com/svn/trunk/)
HTML · 0 lines
✨ Summary
This HTML code outputs a documentation page for a C++ library, specifically the polygon_90_data
class. It displays information about the class, including its properties, methods, and usage examples. The output includes copyright and license information, as well as detailed descriptions of each section. The content is presented in a readable format with proper formatting and indentation.
This HTML code outputs a documentation page for a C++ library, specifically the polygon_90_data
class. It displays information about the class, including its properties, methods, and usage examples. The output includes copyright and license information, as well as detailed descriptions of each section. The content is presented in a readable format with proper formatting and indentation.
80 specialization of polygon_90_traits. A std::vector<int> or std::list<int>
81 could be made models of polygon_90_concept by simply providing access to their
82 iterators through traits. Library functions that create polygon objects
83 require that those objects provide a default constructor.</font><p>
123 <p><font face="Courier New">view_as<rectangle_concept>(polygon_90_object)</font></p>
124 <p>The return value of <font face="Courier New">view_as<>()</font> can be
125 passed into any interface that expects an object of the conceptual type
126 specified in its template parameter.</p>
127 <h2>Functions</h2>
191
192 bool consider_touch=true)</font></td>
193 <td>Given an object that models polygon_90 and an object that models
194 point, returns true
195 if the polygon contains the point. If the consider_touch
203 <td>Sets object that models point to the center point of the bounding
204 box of an object that models polygon_90. Linear wrt. vertices.</td>
205 </tr>
206 <tr>
Service.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 205 lines
✨ Summary
This Java class represents an Info.plist Service, which is a configuration file used by macOS applications to provide services to other apps. It allows developers to define how their app responds to service requests, including port names, message invocation methods, menu item text, and data types. The class provides getter and setter methods for each field, allowing easy access and modification of the service’s properties.
This Java class represents an Info.plist Service, which is a configuration file used by macOS applications to provide services to other apps. It allows developers to define how their app responds to service requests, including port names, message invocation methods, menu item text, and data types. The class provides getter and setter methods for each field, allowing easy access and modification of the service’s properties.
23 *
24 *
25 * Send Types - A list of the data type names that can be read by the service.
26 * The NSPasteboard class description lists several common data types.
27 *
28 *
29 * Return Types - A list of the data type names that can be returned by the service.
30 * The NSPasteboard class description lists several common data types.
31 * You must specify either Return Types, Send Types or both.
34 *
35 *
36 * Key Equivalent - This attribute is optional. The keyboard equivalent used to invoke
37 * the service menu command. The value has to be a single character. Users invoke this
39 *
40 *
41 * User Data - This attribute is optional. The value is free choosable and is passed
42 * to the method as second parameter.
43 *
ChooseTagListDockable.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 178 lines
✨ Summary
This Java code creates a dockable panel for choosing tags in a text editor. It displays a list of tag lines, allows filtering by attributes and values, and provides keyboard navigation. When a tag line is selected, it navigates to that tag line in the text editor. The filter functionality can be applied to specific attributes and values, allowing users to narrow down the list of tags.
This Java code creates a dockable panel for choosing tags in a text editor. It displays a list of tag lines, allows filtering by attributes and values, and provides keyboard navigation. When a tag line is selected, it navigates to that tag line in the text editor. The filter functionality can be applied to specific attributes and values, allowing users to narrow down the list of tags.
5 * Copyright (c) 2007 Shlomy Reinstein (shlomy@users.sourceforge.net)
6 *
7 * This file is part of the Tags plugin.
8 *
9 * TagsPlugin is free software; you can redistribute it and/or
12 * of the License, or any later version.
13 *
14 * TagsPlugin is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
using-macros.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 217 lines
11 jEdit. Macros
12 also provide a powerful facility for customizing jEdit and automating
13 complex text processing and programming tasks. This section
14 describes how to record and run macros. A detailed guide on
15 writing macros appears later; see <xref linkend="writing-macros-part"/>.
27 The simplest use of macros is to record a series of key strokes and
28 menu commands as a BeanShell script, and play them back later.
29 While this doesn't let you take advantage of the full power of
30 BeanShell, it is still a great time saver and can even be used to
31 <quote>prototype</quote> more complicated macros.
86 the buffer containing the recorded commands, but the name
87 <filename>Temporary_Macro.bsh</filename> will be visible on any list of
88 open buffers. By switching to that buffer, you can view the commands,
89 edit them, and save them if you wish to
90 a permanent macro file. Whether or not you look at or save the temporary
file.c
(http://omnia2droid.googlecode.com/svn/trunk/)
C · 503 lines
✨ Summary
This C code implements a file system driver for SquashFS, a read-only file system that stores data in compressed blocks. The squashfs_readpage
function reads and decompresses a block of data from disk into the page cache, copying it to pages as needed. It handles cases where the block is stored inside a fragment or is a hole in the file.
This C code implements a file system driver for SquashFS, a read-only file system that stores data in compressed blocks. The squashfs_readpage
function reads and decompresses a block of data from disk into the page cache, copying it to pages as needed. It handles cases where the block is stored inside a fragment or is a hole in the file.
5 * Phillip Lougher <phillip@lougher.demon.co.uk>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2,
10 * or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 *
ProjectViewer.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 2033 lines
✨ Summary
This Java code is part of a Project Viewer (PV) application, specifically its GUI implementation. It sets up and configures various components, such as tree models for displaying project files, working files, and errors. It also handles events like node changes, error messages, and drag-and-drop operations to provide a functional user interface for managing projects.
This Java code is part of a Project Viewer (PV) application, specifically its GUI implementation. It sets up and configures various components, such as tree models for displaying project files, working files, and errors. It also handles events like node changes, error messages, and drag-and-drop operations to provide a functional user interface for managing projects.
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
409 /**
410 * Returns a set of all registered ProjectViewerListeners. If a view
411 * is provided, return only the listeners registered to that view, plus
412 * the listeners registered globaly.
413 */
PairWiseAllExpressionNode.cs
(https://hg01.codeplex.com/linqtoroot)
C# · 44 lines
✨ Summary
This C# code defines a class PairWiseAllExpressionNode
that represents an expression node for the PairWiseAll
method in a re-linq expression tree. It handles parsing and resolving the expression, creating a result operator based on the input parameter and test lambda expression. The class is part of a library for working with LINQ to trees.
This C# code defines a class PairWiseAllExpressionNode
that represents an expression node for the PairWiseAll
method in a re-linq expression tree. It handles parsing and resolving the expression, creating a result operator based on the input parameter and test lambda expression. The class is part of a library for working with LINQ to trees.
MimeTypeMap.as
(http://flowplayer-core.googlecode.com/svn/)
ActionScript · 193 lines
✨ Summary
This ActionScript code defines a MimeTypeMap
class that maps file extensions to their corresponding MIME types and vice versa. It provides methods for retrieving MIME types from extensions, getting preferred extensions for MIME types, and adding new MIME types with their associated extensions. The map is ordered by preference, with the most preferred extension coming first.
This ActionScript code defines a MimeTypeMap
class that maps file extensions to their corresponding MIME types and vice versa. It provides methods for retrieving MIME types from extensions, getting preferred extensions for MIME types, and adding new MIME types with their associated extensions. The map is ordered by preference, with the most preferred extension coming first.
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
8 Redistributions of source code must retain the above copyright notice, this
9 list of conditions and the following disclaimer. Redistributions in binary
10 form must reproduce the above copyright notice, this list of conditions and the
11 following disclaimer in the documentation and/or other materials provided with
12 the distribution.
14 Neither the name of the author nor the names of its contributors may be used to
15 endorse or promote products derived from this software without specific prior
16 written permission.
Action.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 172 lines
✨ Summary
This is a Java class that defines an abstract action for a project viewer application. It provides methods to create actions, set icons and menu items, and handle user interactions such as button clicks and menu selections. The class also includes features like cloning and setting the viewer context.
This is a Java class that defines an abstract action for a project viewer application. It provides methods to create actions, set icons and menu items, and handle user interactions such as button clicks and menu selections. The class also includes features like cloning and setting the viewer context.
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
101 /**
102 * Returns the icon to be shown on the toolbar button. The default
103 * implementation returns "null" so that actions that will only be
104 * used in the context menu don't need to implement this.
110 //{{{ +getMenuItem() : JComponent
111 /**
112 * Returns the menu item that triggers this action. This returns a
113 * JComponent, which makes it possible to add virtually anything to
114 * the menu. For example, it's possible to return a sub-menu instead
135 //{{{ +getButton() : RolloverButton
136 /** Returns the toolbar button that triggers this action. */
137 public RolloverButton getButton() {
138 if (tbButton == null) {
Form1.cs
(https://hg01.codeplex.com/prophecy)
C# · 95 lines
✨ Summary
This is a Windows Forms application that uses the Prophecy library to communicate with a device over a serial connection. The user can select the serial port and set the communication parameters, then start the connection monitor. When data is received, it is displayed in a text box. The user can also send data and simulate received data for testing purposes.
This is a Windows Forms application that uses the Prophecy library to communicate with a device over a serial connection. The user can select the serial port and set the communication parameters, then start the connection monitor. When data is received, it is displayed in a text box. The user can also send data and simulate received data for testing purposes.
29 _comm.CurrentEncoding = System.Text.ASCIIEncoding.ASCII; // this is unnecessary since it defaults to ASCII
30 _comm.ReceivedDelimitedString += new EventHandler<ReceivedDelimitedStringEventArgs>(_comm_ReceivedDelimitedString); // Since our pretend protocol uses \r as the delimiter let's make life easy and subscribe to the ReceivedDelimitedString event. We could also subscribe to ReceivedString and ReceivedBytes.
31 _comm.IncludeDelimiterInRawResponse = false; // this is unnecessary since it defaults to false
32 _comm.ReadBufferEnabled = false; // this is unnecessary since it defaults to false and it since we are using the ReceivedDelimitedString event there would be no need to use a buffer.
33 _comm.DefaultSendDelayInterval = 0; // this is unnecessary since it defaults to 0
35 // Start connection monitor.
36 _comm.ConnectionMonitorTimeout = 60000;
37 _comm.ConnectionMonitorTestRequest = "HELLO\r"; // a pretend message to send when no data has been received for a while (note that serial connections can not detect physical disconnections so we count on this).
38 _comm.ConnectionEstablished += new EventHandler<EventArgs>(_comm_ConnectionEstablished);
39 _comm.ConnectionLost += new EventHandler<EventArgs>(_comm_ConnectionLost);
46 void _comm_ConnectionEstablished(object sender, EventArgs e)
47 {
48 this.invokeIfRequired(() => { lblStatus.Text = "Status: Connected"; });
49 }
sleep.c
(git://github.com/xbmc/xbmc.git)
C · 45 lines
✨ Summary
This C code defines a function rtv_sleep
that allows for platform-independent sleep functionality. It uses conditional compilation to include different implementations based on the target operating system: Windows, Xbox, and Unix-like systems. The function takes a 16-bit unsigned integer representing milliseconds as input and sleeps for that duration using either the Sleep
function (Windows), Sleep
function (Xbox), or usleep
function (Unix-like).
This C code defines a function rtv_sleep
that allows for platform-independent sleep functionality. It uses conditional compilation to include different implementations based on the target operating system: Windows, Xbox, and Unix-like systems. The function takes a 16-bit unsigned integer representing milliseconds as input and sleeps for that duration using either the Sleep
function (Windows), Sleep
function (Xbox), or usleep
function (Unix-like).
9 * Copyright (C) 2002 John Todd Larason <jtl@molehill.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
type_info_implementation.hpp (http://hadesmem.googlecode.com/svn/trunk/) text · 0 lines
ClassManagerImpl.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 576 lines
✨ Summary
This Java class manages a BeanShell interpreter’s classpath, handling imports, reloading classes, and notifying listeners of changes. It provides methods for defining new classes, getting the full classpath, and importing namespaces. The class also maintains a list of listeners that can be notified when the class cache is cleared or updated.
This Java class manages a BeanShell interpreter’s classpath, handling imports, reloading classes, and notifying listeners of changes. It provides methods for defining new classes, getting the full classpath, and importing namespaces. The class also maintains a list of listeners that can be notified when the class cache is cleared or updated.
52 Allows classpath extension and class file reloading.
54 This class holds the implementation of the BshClassManager so that it
55 can be separated from the core package.
207 // Optionally try context classloader
208 // Note that this might be a security violation
209 // is catching the SecurityException sufficient for all environments?
210 // or do we need a way to turn this off completely?
232 // Cache result (or null for not found)
233 // Note: plainClassForName already caches, so it will be redundant
234 // in that case, however this process only happens once
235 cacheClassInfo( name, c );
distributedS.html
(http://hadesmem.googlecode.com/svn/trunk/)
HTML · 0 lines
✨ Summary
This HTML code generates a documentation page for the Boost Graph Library’s distributedS
class template. It displays information about the class, its template parameters, and copyright details in a structured format, using reStructuredText syntax. The page is generated by Docutils from an RST source file.
This HTML code generates a documentation page for the Boost Graph Library’s distributedS
class template. It displays information about the class, its template parameters, and copyright details in a structured format, using reStructuredText syntax. The page is generated by Docutils from an RST source file.
17 http://www.boost.org/LICENSE_1_0.txt) -->
18 <p>The Boost Graph Library's class template <a class="reference external" href="http://www.boost.org/libs/graph/doc/adjacency_list.html">adjacency_list</a> supports
19 several selectors that indicate what data structure should be used for
20 the storage of edges or vertices. The selector <tt class="docutils literal"><span class="pre">vecS</span></tt>, for instance,
21 indicates storage in a <tt class="docutils literal"><span class="pre">std::vector</span></tt> whereas <tt class="docutils literal"><span class="pre">listS</span></tt> indicates
22 storage in a <tt class="docutils literal"><span class="pre">std::list</span></tt>. The Parallel BGL's <a class="reference external" href="distributed_adjacency_list.html">distributed
23 adjacency list</a> supports an additional selector, <tt class="docutils literal"><span class="pre">distributedS</span></tt>,
24 that indicates that the storage should be distributed across multiple
25 processes. This selector can transform a sequential adjacency list
34 <dt><strong>ProcessGroup</strong>:</dt>
35 <dd>The type of the process group over which the property map is
36 distributed and also the medium for communication. This type must
37 model the <a class="reference external" href="process_group.html">Process Group</a> concept, but certain data structures may
38 place additional requirements on this parameter.</dd>
39 <dt><strong>LocalSelector</strong>:</dt>
40 <dd>A selector type (e.g., <tt class="docutils literal"><span class="pre">vecS</span></tt>) that indicates how vertices or
41 edges should be stored in each process.</dd>
42 </dl>
GuiceContainer.java
(http://mycila.googlecode.com/svn/)
Java · 77 lines
✨ Summary
This Java code implements a custom container for AtUnit testing framework using Google Guice dependency injection framework. It creates an injector that binds test class fields with their corresponding values, allowing for dynamic configuration of test classes. The injector is then used to inject dependencies into the test class, enabling flexible and dynamic testing scenarios.
This Java code implements a custom container for AtUnit testing framework using Google Guice dependency injection framework. It creates an injector that binds test class fields with their corresponding values, allowing for dynamic configuration of test classes. The injector is then used to inject dependencies into the test class, enabling flexible and dynamic testing scenarios.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
51 public FieldModule(Map<Field, Object> fields) {
52 this.fields = fields;
53 }
63 }
65 // for any types that don't have duplicates, bind instances.
66 for (Type type : fieldsByType.keySet()) {
67 Collection<Field> fields = fieldsByType.get(type);
SkMallocPixelRef.h (https://bitbucket.org/Tsiannian/cocos2d-x.git) C++ Header · 64 lines
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
20 #include "SkPixelRef.h"
22 /** We explicitly use the same allocator for our pixels that SkMask does,
23 so that we can freely assign memory allocated by one class to the other.
26 public:
27 /** Allocate the specified buffer for pixels. The memory is freed when the
28 last owner of this pixelref is gone. If addr is NULL, sk_malloc_throw()
29 is called to allocate it.
30 */
FirstWindowMatcher.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 63 lines
✨ Summary
This Java class, FirstWindowMatcher
, is a custom implementation of a component matcher for FEST (Fest-Util) testing framework. It checks if a given component matches a specific window title and returns true when the first matching window is found. The class can be used to verify that a certain window appears in a GUI application under test.
This Java class, FirstWindowMatcher
, is a custom implementation of a component matcher for FEST (Fest-Util) testing framework. It checks if a given component matches a specific window title and returns true when the first matching window is found. The class can be used to verify that a certain window appears in a GUI application under test.
6 * Copyright (C) 2008 Eric Le Lay
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
ConsoleBeanShell.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 117 lines
✨ Summary
This Java code implements a BeanShell interpreter for jEdit, a text editor. It executes commands and prints results to the console, handling errors and exceptions. The execute()
method runs user input through the BeanShell interpreter, while printInfoMessage()
and printPrompt()
print information messages and prompts to the console, respectively.
This Java code implements a BeanShell interpreter for jEdit, a text editor. It executes commands and prints results to the console, handling errors and exceptions. The execute()
method runs user input through the BeanShell interpreter, while printInfoMessage()
and printPrompt()
print information messages and prompts to the console, respectively.
6 * Copyright (C) 2000, 2001 Slava Pestov
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
RETokenEnd.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 56 lines
✨ Summary
This Java class, RETokenEnd
, represents a token in regular expressions that matches the end of a line. It extends the REToken
class and overrides the match
method to check if the current character matches the newline character specified by the newline
field. If it does, it calls the next
method to continue matching.
This Java class, RETokenEnd
, represents a token in regular expressions that matches the end of a line. It extends the REToken
class and overrides the match
method to check if the current character matches the newline character specified by the newline
field. If it does, it calls the next
method to continue matching.
3 * Copyright (C) 1998-2001 Wes Biggs
4 *
5 * This library is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published
7 * by the Free Software Foundation; either version 2.1 of the License, or
8 * (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
SuperAbbrevs.html
(https://jedit.svn.sourceforge.net/svnroot/jedit)
HTML · 62 lines
✨ Summary
This HTML code outputs a documentation page for a plugin called SuperAbbrevs, which provides Eclipse-style code templates. The page explains how to use the plugin, including defining templates with variables and associating them with abbreviations. It also describes the syntax of the template language used by the plugin.
This HTML code outputs a documentation page for a plugin called SuperAbbrevs, which provides Eclipse-style code templates. The page explains how to use the plugin, including defining templates with variables and associating them with abbreviations. It also describes the syntax of the template language used by the plugin.
8 <h1>SuperAbbrevs</h1>
9 <p>Author: <i>Sune Simonsen</i></p>
10 <p><i>This will soon be updated</i></p>
11 <p>
12 This plugin gives you eclipse style code templates. You can define a
23 </p>
24 <h2>Template syntax</h2>
25 <p>This is best explained with an example.</p>
26 <pre>
27 Iterator ${2:iter} = ${1:list}.iterator();
35 <i>$1</i>, <i>$2</i>, <i>$3</i> and <i>$4</i>. Variable <i>$1</i>'s
36 default value is list, and <i>$2</i>'s default value is iter, and so on.
37 When this template is inserted the following code will be inserted, and
38 the <i>list</i> will be selected.
39 </p>
ProjectUpdate.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 94 lines
✨ Summary
This Java class represents a project update message sent on the Edit Bus, used to notify other parts of an application about changes to a project. It encapsulates information such as added and removed files, and provides methods to access this information along with the affected project. The class is designed to be used in a distributed environment, allowing different components to communicate about project updates.
This Java class represents a project update message sent on the Edit Bus, used to notify other parts of an application about changes to a project. It encapsulates information such as added and removed files, and provides methods to access this information along with the affected project. The class is designed to be used in a distributed environment, allowing different components to communicate about project updates.
3 * :folding=explicit:collapseFolds=1:
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
build.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 245 lines
19 <property name="install.dir" value=".." />
21 <!-- source code directory, this is where the .java files live -->
22 <property name="src.dir" location="src" />
24 <!-- parser source code directory, this is where the .jj file lives -->
25 <property name="parser.src.dir" location="${src.dir}/beauty/parsers"/>
215 <!-- ========================================================================
216 Target: init
217 this target creates the directories needed for this project and
218 only needs to be done once.
219 ========================================================================= -->
JSSVGMaskElement.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 99 lines
1 /*
2 This file is part of the WebKit open source project.
3 This file has been generated by generate-bindings.pl. DO NOT MODIFY!
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
plugin-implement.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 1233 lines
622 update that reference when the user activates or deactivates the
623 plugin. It is simpler to have the plugin window class subscribe to the
624 EditBus directly; many plugins take this approach. This means that
625 <classname>QuickNotepad</classname> must implement the
626 <classname>EBComponent</classname> interface.
682 QuickNotepadPlugin.OPTION_PREFIX
683 + "filepath");
684 if(this.filename == null || this.filename.length() == 0)
685 {
686 this.filename = new String(jEdit.getSettingsDirectory()
689 + "filepath",this.filename);
690 }
691 this.defaultFilename = new String(this.filename);
693 this.toolPanel = new QuickNotepadToolPanel(this);
BufferUpdate.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 148 lines
✨ Summary
This Java class represents a buffer update message sent when a buffer-related change occurs. It provides methods to retrieve the updated buffer, view, and the reason for the update. The class is part of the jEdit messaging system and is used to notify other parts of the application about changes to buffers.
This Java class represents a buffer update message sent when a buffer-related change occurs. It provides methods to retrieve the updated buffer, view, and the reason for the update. The class is part of the jEdit messaging system and is used to notify other parts of the application about changes to buffers.
6 * Copyright (C) 1999, 2001 Slava Pestov
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
hubio.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 973 lines
✨ Summary
This C++ header file defines constants and structures for interacting with a hub, which is likely a component of a larger system. It provides definitions for various registers, bit fields, and constants related to hub operations, such as widget IDs, credits, and interrupt addresses. The code appears to be specific to the SGI SN0 platform and its associated hub interface.
This C++ header file defines constants and structures for interacting with a hub, which is likely a component of a larger system. It provides definitions for various registers, bit fields, and constants related to hub operations, such as widget IDs, credits, and interrupt addresses. The code appears to be specific to the SGI SN0 platform and its associated hub interface.
15 * Hub I/O interface registers
16 *
17 * All registers in this file are subject to change until Hub chip tapeout.
18 * In general, the longer software name should be used when available.
19 */
434 * Quiescing implies no dmas no PIOs
435 * either directly from the cpu or from sn0net.
436 * this is not something that can be done easily. So, AVOID updating
437 * CRBs.
438 */
483 } h1_icrba_t;
485 /* XXX - Is this still right? Check the spec. */
486 #define ICRBN_A_CERR_SHFT 54
487 #define ICRBN_A_ERR_MASK 0x3ff
Create_Plugin_Announcement.bsh (https://jedit.svn.sourceforge.net/svnroot/jedit) Unknown · 336 lines
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
235 content.add( descriptionPanel, "South" );
237 // register this method as an ActionListener for
238 // the buttons and text fields
239 ok.addActionListener( this );
315 pluginTextDialog( view, buffer );
316 else
317 Macros.error( view, "This must be run on a jEdit plugin's properties file. \nOpen your Plugin's props file and rerun this macro." );
319 /*
qpixmapfilter.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 1380 lines
88 \internal
90 This enum describes the types of filter that can be applied to pixmaps.
92 \value ConvolutionFilter A filter that is used to calculate the convolution
96 of an image. See QPixmapColorizeFilter for more
97 information.
98 \value DropShadowFilter A filter that is used to add a drop shadow to an
99 image. See QPixmapDropShadowFilter for more
100 information.
502 By default, the blur effect is produced by applying an exponential
503 filter generated from the specified blurRadius(). Paint engines
504 may override this with a custom blur that is faster on the
505 underlying hardware.
BufferWriter.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 114 lines
✨ Summary
This Java class, BufferWriter
, extends the Writer
interface and provides a way to write text to a jEdit buffer. It allows for writing characters to the buffer while stripping carriage returns and inserting segments of text into the buffer as needed. The class also supports setting the buffer mode using a string representation of the desired mode.
This Java class, BufferWriter
, extends the Writer
interface and provides a way to write text to a jEdit buffer. It allows for writing characters to the buffer while stripping carriage returns and inserting segments of text into the buffer as needed. The class also supports setting the buffer mode using a string representation of the desired mode.
4 * Copyright (c) 2002 Calvin Yu
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
PositionManager.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 178 lines
✨ Summary
This Java class, PositionManager
, manages positions within a text document. It creates and updates positions based on content insertions and removals, ensuring that positions are properly referenced and removed when no longer needed. The class uses a sorted map to store positions, allowing for efficient lookup and updating of positions.
This Java class, PositionManager
, manages positions within a text document. It creates and updates positions based on content insertions and removals, ensuring that positions are properly referenced and removed when no longer needed. The class uses a sorted map to store positions, allowing for efficient lookup and updating of positions.
6 * Copyright (C) 2001, 2003 Slava Pestov
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
Deque.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 688 lines
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
14 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15 * its contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
me1600_ao.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 129 lines
✨ Summary
This C++ header file defines a class for an analog output subdevice, specifically designed for the Meilhaus ME-1600 device. It provides structures and functions to manage voltage and current ranges, registers, and synchronization settings. The class is used in kernel mode and includes features like spin locks, wait queues, and workqueues to ensure thread safety and efficient data management.
This C++ header file defines a class for an analog output subdevice, specifically designed for the Meilhaus ME-1600 device. It provides structures and functions to manage voltage and current ranges, registers, and synchronization settings. The class is used in kernel mode and includes features like spin locks, wait queues, and workqueues to ensure thread safety and efficient data management.
10 * Copyright (C) 2007 Meilhaus Electronic GmbH (support@meilhaus.de)
11 *
12 * This file is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
BooleanPrototype.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 85 lines
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
54 EncodedJSValue JSC_HOST_CALL booleanProtoFuncToString(ExecState* exec)
55 {
56 JSValue thisValue = exec->hostThisValue();
57 if (thisValue == jsBoolean(false))
73 EncodedJSValue JSC_HOST_CALL booleanProtoFuncValueOf(ExecState* exec)
74 {
75 JSValue thisValue = exec->hostThisValue();
76 if (thisValue.isBoolean())
77 return JSValue::encode(thisValue);
79 if (!thisValue.inherits(&BooleanObject::s_info))
80 return throwVMTypeError(exec);
ProjectTreeSelectionListener.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 242 lines
✨ Summary
This Java class, ProjectTreeSelectionListener
, listens to a JTree component and responds to file selections. It handles mouse clicks, double-clicks, and tree model changes, updating the UI accordingly. When a file is selected, it determines whether it’s currently open in the buffer or not, and performs actions such as launching or closing files based on its state.
This Java class, ProjectTreeSelectionListener
, listens to a JTree component and responds to file selections. It handles mouse clicks, double-clicks, and tree model changes, updating the UI accordingly. When a file is selected, it determines whether it’s currently open in the buffer or not, and performs actions such as launching or closing files based on its state.
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version 2
5 * of the License, or any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 */
78 /**
79 * Because IBM's JDK doesn't support <code>getClickCount()</code> for <code>JTree</code>
80 * properly, we have to do this.
81 */
82 private boolean isDoubleClick(MouseEvent evt) {
ArchiveDirectoryCache.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 211 lines
✨ Summary
This Java class, ArchiveDirectoryCache
, caches remote directories to improve performance by storing their listings in a temporary file and storing the file path in a hash table for efficient lookup. It provides methods to cache, retrieve, and clear cached directory listings, as well as manage its internal state and settings directory.
This Java class, ArchiveDirectoryCache
, caches remote directories to improve performance by storing their listings in a temporary file and storing the file path in a hash table for efficient lookup. It provides methods to cache, retrieve, and clear cached directory listings, as well as manage its internal state and settings directory.
3 * Copyright (C) 2000 Slava Pestov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
178 private ArchiveDirectoryCache() {}
180 /* This method exists so that foo/ and foo will both be cached
181 * as the same URL. When the VFSPath class arrives, will get rid
182 * of this kludge */
tst_qdeclarativeproperty.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 1494 lines
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
Capabilities.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 126 lines
✨ Summary
This Java code defines a class called Capabilities
that checks for the availability of certain features and packages in the runtime environment, such as Swing and accessibility. It uses a cache to store results of previous checks and throws an exception if a capability is not available. The class also provides methods to set accessibility and test for class existence.
This Java code defines a class called Capabilities
that checks for the availability of certain features and packages in the runtime environment, such as Swing and accessibility. It uses a cache to store results of previous checks and throws an exception if a capability is not available. The class also provides methods to set accessibility and test for class existence.
1 /*****************************************************************************
2 * *
3 * This file is part of the BeanShell Java Scripting distribution. *
4 * Documentation and updates may be found at http://www.beanshell.org/ *
5 * *
8 * The contents of this file are subject to the Sun Public License Version *
9 * 1.0 (the "License"); you may not use this file except in compliance with *
10 * the License. A copy of the License is available at http://www.sun.com *
11 * *
16 * GNU Public License Notice: *
17 * *
18 * Alternatively, the contents of this file may be used under the terms of *
19 * the GNU Lesser General Public License (the "LGPL"), in which case the *
20 * provisions of LGPL are applicable instead of those above. If you wish to *
65 determine if the accessibility mechanism exists and if we have
66 the optional bsh package to use it.
67 Note that even if both are true it does not necessarily mean that we
68 have runtime permission to access the fields... Java security has
69 a say in it.
InvalidHeaderException.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 43 lines
✨ Summary
This Java code defines a custom exception class InvalidHeaderException
that extends the built-in IOException
. It provides two constructors: one with no message and another with a specified error message, both of which call the superclass constructor to set up the exception. This allows for more informative error handling when working with TAR archives.
This Java code defines a custom exception class InvalidHeaderException
that extends the built-in IOException
. It provides two constructors: one with no message and another with a specified error message, both of which call the superclass constructor to set up the exception. This allows for more informative error handling when working with TAR archives.
3 ** <mailto:time@gjt.org> <http://www.trustice.com>
4 **
5 ** This work has been placed into the public domain.
6 ** You may use this work in any way and for any purpose you wish.
7 **
8 ** THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND,
9 ** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR
10 ** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY
11 ** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR
12 ** REDISTRIBUTION OF THIS SOFTWARE.
13 **
14 */
20 /**
21 * This exception is used to indicate that there is a problem
22 * with a TAR archive header.
23 */
bool.hpp
(http://hadesmem.googlecode.com/svn/trunk/)
C++ Header · 0 lines
✨ Summary
This C++ header file provides a set of functions and classes for parsing boolean values in a context-free grammar, specifically for the bool
keyword. It defines various types and functions to handle literal and stateful boolean literals, as well as primitive and terminal expressions involving boolean values. The code is part of a larger parser generator framework.
This C++ header file provides a set of functions and classes for parsing boolean values in a context-free grammar, specifically for the bool
keyword. It defines various types and functions to handle literal and stateful boolean literals, as well as primitive and terminal expressions involving boolean values. The code is part of a larger parser generator framework.
42 ///////////////////////////////////////////////////////////////////////
43 // This is the class that the user can instantiate directly in
44 // order to create a customized bool generator
45 template <typename T = bool, typename Policies = bool_policies<T> >
128 ///////////////////////////////////////////////////////////////////////////
129 // This specialization is used for bool generators not having a direct
130 // initializer: bool_. These generators must be used in conjunction with
131 // an Attribute.
162 }
164 // this bool_ has no Attribute attached, it needs to have been
165 // initialized from a direct literal
166 template <typename OutputIterator, typename Context, typename Delimiter>
BlamePane.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 192 lines
✨ Summary
This Java code defines a BlamePane
component, which is a GUI panel that displays blame information about a source file. It updates its UI when the underlying buffer changes and provides a button to close the pane. The pane also listens for caret events in a text area and fires state changed events when the caret position changes.
This Java code defines a BlamePane
component, which is a GUI panel that displays blame information about a source file. It updates its UI when the underlying buffer changes and provides a button to close the pane. The pane also listens for caret events in a text area and fires state changed events when the caret position changes.
7 * of the License, or any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
60 public void updateUI() {
61 if ( UIManager.get( getUIClassID() ) != null ) {
62 setUI( ( BlamePaneUI ) UIManager.getUI( this ) );
63 }
64 else {
JEditMode.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 106 lines
✨ Summary
This Java class, JEditMode
, represents a mode for the jEdit text editor. It extends the Mode
class and provides methods to retrieve properties from the mode’s configuration, load the mode from disk if necessary, and handle loading issues. The class is designed to work with jEdit’s configuration system.
This Java class, JEditMode
, represents a mode for the jEdit text editor. It extends the Mode
class and provides methods to retrieve properties from the mode’s configuration, load the mode from disk if necessary, and handle loading issues. The class is designed to work with jEdit’s configuration system.
6 * Copyright (C) 2007 Matthieu Casanova
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
EnhancedCheckBoxMenuItem.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 212 lines
✨ Summary
This Java class, EnhancedCheckBoxMenuItem, extends JCheckBoxMenuItem to add support for multi-key shortcuts. It creates a custom menu item with a checkbox and displays a shortcut label next to the text if available. The class also handles mouse events, such as hover and click, and updates the status message accordingly.
This Java class, EnhancedCheckBoxMenuItem, extends JCheckBoxMenuItem to add support for multi-key shortcuts. It creates a custom menu item with a checkbox and displays a shortcut label next to the text if available. The class also handles mouse events, such as hover and click, and updates the status message accordingly.
6 * Copyright (C) 1999, 2003 Slava Pestov
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
FileUtils.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 90 lines
✨ Summary
This Java class, FileUtils
, provides utility methods for working with files and directories. It offers functions to get an absolute path from a file, find a specific file within a directory hierarchy, and retrieve the parent directory of a given file. The class is designed to mimic the behavior of the JDK 1.2 getParentFile()
method.
This Java class, FileUtils
, provides utility methods for working with files and directories. It offers functions to get an absolute path from a file, find a specific file within a directory hierarchy, and retrieve the parent directory of a given file. The class is designed to mimic the behavior of the JDK 1.2 getParentFile()
method.
3 * Copyright (C) 2001 Brian Knowles
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
typemaps.i (https://swig.svn.sourceforge.net/svnroot/swig) Unknown · 562 lines
8 // This library provides standard typemaps for modifying SWIG's behavior.
9 // With enough entries in this file, I hope that very few people actually
10 // ever need to write a typemap.
11 //
12 // Disclaimer : Unless you really understand how typemaps work, this file
13 // probably isn't going to make much sense.
14 //
44 %text %{
45 The following methods can be applied to turn a pointer into a simple
46 "input" value. That is, instead of passing a pointer to an object,
47 you would use a real value instead.
364 // INOUT
365 // Mappings for an argument that is both an input and output
366 // parameter
WorkerRunLoop.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 97 lines
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
DOMParser.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 42 lines
2 * Copyright (C) 2003, 2006 Apple Computer, Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
package.html
(https://jedit.svn.sourceforge.net/svnroot/jedit)
HTML · 52 lines
✨ Summary
This HTML code explains how to use Project Viewer events to track user actions on the Project Viewer’s interface. It describes the different ways plugins can interact with the Project Viewer, including providing project properties, creating new node types, and listening to events. The event notification allows both view-dependent and non-view-dependent plugins to register for PV events, which are fired when a project is loaded or changed.
This HTML code explains how to use Project Viewer events to track user actions on the Project Viewer’s interface. It describes the different ways plugins can interact with the Project Viewer, including providing project properties, creating new node types, and listening to events. The event notification allows both view-dependent and non-view-dependent plugins to register for PV events, which are fired when a project is loaded or changed.
19 <p>The Project Viewer plugin provides a different interface for each open jEdit
20 view, so the user can work with different projects in different views. This is
21 useful for PV's purposes, but some plugins may not benefit from such a dependence.</p>
23 <p>For this reason, the event notification provided by PV can be used by either
24 kind of plugins. The
25 {@link projectviewer.ProjectViewer#addProjectViewerListener(ProjectViewerListener,View)
30 <p>Currently, the only event notification is for when a new project is loaded
31 into PV. This works differently for plugins that rely on jEdit's views and for
32 those that do not. For plugins that are view-dependent (which means, generally,
33 that there is an instance of some class for each open jEdit view, just like the
34 ProjectViewer class), these events are only fired when a project is loaded into
35 that particular instance of PV in that view. Changes in other views will not
36 fire any events for that listener.</p>
SearchAndReplace.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 1392 lines
✨ Summary
This Java code is part of a text replacement engine, likely used for editing and formatting text. It provides methods to replace occurrences of a search string with a replacement string, using various replacement strategies such as regular expressions, literal strings, and BeanShell scripting. The code also handles cases like case sensitivity, line breaks, and column offsets.
This Java code is part of a text replacement engine, likely used for editing and formatting text. It provides methods to replace occurrences of a search string with a replacement string, using various replacement strategies such as regular expressions, literal strings, and BeanShell scripting. The code also handles cases like case sensitivity, line breaks, and column offsets.
12 * of the License, or any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
361 * @param view The view
362 * @param selection If true, will only search in the current selection.
363 * Note that the file set must be the current buffer file set for this
364 * to work.
365 * @since jEdit 4.0pre1
424 public static boolean find(View view)
425 {
426 // component that will parent any dialog boxes
427 Component comp = SearchDialog.getSearchDialog(view);
428 if(comp == null || !comp.isShowing())
tst_qdeclarativestates.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 1531 lines
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
220 QCOMPARE(rect->color(),QColor("red"));
221 QCOMPARE(rect->border()->width(),1);
222 //### we should be checking that this is an implicit rather than explicit 1 (which currently fails)
224 rectPrivate->setState("bordered");
qbooleanfns.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 71 lines
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
60 bool NotFN::evaluateEBV(const DynamicContext::Ptr &context) const
61 {
62 /* That little '!' is quite important in this function -- I forgot it ;-) */
63 return !m_operands.first()->evaluateEBV(context);
64 }
getGraphicsEnvironment.bsh (https://jedit.svn.sourceforge.net/svnroot/jedit) Unknown · 25 lines
SwitchDialog.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 253 lines
✨ Summary
This Java code creates a graphical user interface (GUI) for a file system operation, specifically for switching between two versions of a file in a version control system like Subversion. The GUI allows users to input the URL of the destination file, select the revision to switch from, and cancel or confirm the operation.
This Java code creates a graphical user interface (GUI) for a file system operation, specifically for switching between two versions of a file in a version control system like Subversion. The GUI allows users to input the URL of the destination file, select the revision to switch from, and cancel or confirm the operation.
106 // source for switch
107 JLabel to_replace_label = new JLabel( jEdit.getProperty( "ips.Replace", "Replace" ) + " " + ( recursive ? jEdit.getProperty( "ips.the_files_in_this_directory>", "the files in this directory:" ) : jEdit.getProperty( "ips.this_file>", "this file:" ) ) );
108 HistoryTextField to_replace_file = new HistoryTextField( PATH );
109 to_replace_file.setText( path );
121 // revision selection panel
122 final RevisionSelectionPanel revision_panel = new RevisionSelectionPanel( jEdit.getProperty( "ips.At_this_revision>", "At this revision:" ), SwingConstants.HORIZONTAL, false );
124 // destination
125 JLabel path_label = new JLabel( jEdit.getProperty( "ips.With_file(s)_from_this_location>", "With file(s) from this location:" ) );
126 from = new HistoryTextField( COPY_PATH );
127 from.setText( "" );
Node.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 38 lines
✨ Summary
This Java interface defines a basic structure for Abstract Syntax Tree (AST) nodes in an ECMAScript parser. It provides methods to manage child nodes, set and get parent nodes, add children, and accept visitors. These methods enable the construction of a tree-like data structure representing the syntactic structure of ECMAScript code.
This Java interface defines a basic structure for Abstract Syntax Tree (AST) nodes in an ECMAScript parser. It provides methods to manage child nodes, set and get parent nodes, add children, and accept visitors. These methods enable the construction of a tree-like data structure representing the syntactic structure of ECMAScript code.
1 /* Generated By:JJTree: Do not edit this line. Node.java */
3 package sidekick.ecmascript.parser;
5 /* All AST nodes must implement this interface. It provides basic
6 machinery for constructing the parent and child relationships
7 between nodes. */
9 public interface Node {
11 /** This method is called after the node has been made the current
12 node. It indicates that child nodes can now be added to it. */
13 public void jjtOpen();
15 /** This method is called after all the child nodes have been
16 added. */
17 public void jjtClose();
OpenItPlugin.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 254 lines
✨ Summary
This Java code is for an OpenIt plugin for the jEdit text editor. It provides functionality to manage source paths, find files within those paths, and add directories to the source path. The plugin also handles view updates, shutdown, and option pane creation. It uses a map to store listeners for file selection and find windows for each view.
This Java code is for an OpenIt plugin for the jEdit text editor. It provides functionality to manage source paths, find files within those paths, and add directories to the source path. The plugin also handles view updates, shutdown, and option pane creation. It uses a map to store listeners for file selection and find windows for each view.
4 * Copyright (C) 2003 Matt Etheridge (matt@etheridge.org)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
qwebscriptworld.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 62 lines
2 Copyright (C) 2010 Robert Hogan <robert@roberthogan.net>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
aic94xx_sds.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 122 lines
✨ Summary
This C header file defines a hardware interface for the Aic94xx SAS/SATA driver, providing constants and structures for interacting with flash memory devices. It includes definitions for device IDs, status bit masks, and functions for verifying, writing to, and erasing flash sectors, as well as checking the type of flash device and handling errors.
This C header file defines a hardware interface for the Aic94xx SAS/SATA driver, providing constants and structures for interacting with flash memory devices. It includes definitions for device IDs, status bit masks, and functions for verifying, writing to, and erasing flash sectors, as well as checking the type of flash device and handling errors.
5 * Copyright (C) 2005 Gilbert Wu <gilbert_wu@adaptec.com>
6 *
7 * This file is licensed under GPLv2.
8 *
9 * This file is part of the aic94xx driver.
14 * License.
15 *
16 * The aic94xx driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
99 struct bios_file_header {
100 u8 signature[32]; /* Signature/Cookie to identify the file */
101 u32 checksum; /*Entire file checksum with this field zero */
102 u32 antidote; /* Entire file checksum with this field 0xFFFFFFFF */
106 u32 total_chunks; /*Total number of chunks/parts in the image file */
107 u32 num_images; /* Number of images in the file */
108 u32 build_num; /* Build number of this image */
109 struct image_info image_header;
110 };
CreationTemplate.ini (https://bitbucket.org/sonicbhoc/sweet-dreams-project-01.git) Unknown · 408 lines
89 ; You can also specify lists of values using the separator #.
90 ; The default behavior will be to select randomly a value from a list *EXCEPT* if a list item index is provided in the code.
91 ; For all properties defined in this template, values will be taken randomly if a list is provided for any field that doesn't explicitely accept one.
92 ; Lists can contain random values.
93 ; Example:
97 ; Example:
98 ; Key2 = Var1 # Var2 #
99 ; Var3 #; This list still continues on next line and this comment is valid.
100 ; Var4 ; This list is now complete and contains 4 elements.
122 Rotation = [Float]; NB: Angle in degrees around z axis;
123 AngularVelocity = [Float]; NB: Velocity in degrees/second around z axis;
124 Scale = [Vector]|[Float]; NB: z is ignored for 2D objects. If it has a valid parent and use its space, this value will be considered in parent's space, ie. [0-1] defines parent size on each axis;
125 Smoothing = true|false; NB: no value will defaults to the global display settings;
126 BlendMode = alpha|multiply|add|none; NB: Default value is alpha;
336 FrustumWidth = [Float];
337 FrustumHeight = [Float];
338 ParentCamera = CameraTemplate; NB: This will set this camera as a child of the specified camera;
340 [ClockTemplate]
RenderSVGShadowTreeRootContainer.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 106 lines
2 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 *
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
ExecTerminationEvent.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 49 lines
✨ Summary
This Java class represents an event that occurs when a process terminates, providing information about the termination status and error message. It has two private fields to store the exit code and error message, and public getter methods to access these values. The class is designed to be used in a debugging context, likely for logging or reporting purposes.
This Java class represents an event that occurs when a process terminates, providing information about the termination status and error message. It has two private fields to store the exit code and error message, and public getter methods to access these values. The class is designed to be used in a debugging context, likely for logging or reporting purposes.
3 * Copyright (C) 1998,1999,200,2001,2002,2003 Jean-Yves Mengant
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
VPTSelectionListener.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 220 lines
✨ Summary
This Java code is a listener for a JTree component, which displays a hierarchical structure of files and projects. It responds to mouse events, such as clicks and double-clicks, to open and close project nodes, set buffers, and update the status bar with node information. It also handles tree selection changes and enables/disables buttons based on the selected node.
This Java code is a listener for a JTree component, which displays a hierarchical structure of files and projects. It responds to mouse events, such as clicks and double-clicks, to open and close project nodes, set buffers, and update the status bar with node information. It also handles tree selection changes and enables/disables buttons based on the selected node.
3 * :folding=explicit:collapseFolds=1:
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
ProjectViewer.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 2107 lines
✨ Summary
This Java code is part of a graphical user interface (GUI) application, specifically a file viewer and editor. It handles various tasks such as displaying files in different views, handling errors, and updating the GUI when changes occur. The code also includes event listeners for drag-and-drop operations and error messages.
This Java code is part of a graphical user interface (GUI) application, specifically a file viewer and editor. It handles various tasks such as displaying files in different views, handling errors, and updating the GUI when changes occur. The code also includes event listeners for drag-and-drop operations and error messages.
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
332 /**
333 * Fires a "project removed" event. All listeners, regardless of the view, are
334 * notified of this event.
335 */
336 public static void fireProjectRemoved(Object src, VPTProject p) {
412 /**
413 * Returns a set of all registered ProjectViewerListeners. If a view
414 * is provided, return only the listeners registered to that view, plus
415 * the listeners registered globaly.
416 */
HyperSearchResult.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 200 lines
✨ Summary
This Java class represents a search result in a text editor, specifically JEdit. It stores information about the search string, its occurrences on a line, and provides methods to retrieve these occurrences, navigate to them, and update the buffer’s state when it opens or closes. The class also handles caching for speed and maintaining relationships between buffers and their contents.
This Java class represents a search result in a text editor, specifically JEdit. It stores information about the search string, its occurrences on a line, and provides methods to retrieve these occurrences, navigate to them, and update the buffer’s state when it opens or closes. The class also handles caching for speed and maintaining relationships between buffers and their contents.
6 * Copyright (C) 1998, 2003 Slava Pestov
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
NtHeaders.hpp
(http://hadesmem.googlecode.com/svn/trunk/)
C++ Header · 336 lines
✨ Summary
This C++ header defines a class IMAGE_NT_HEADERS
that represents the raw NT headers of a PE file, which is a binary format used by Windows operating systems. The class provides methods to access and manipulate various fields within the headers, such as data directory information, image size, and checksums. It also includes a constructor that takes a PeFile
object as an argument, allowing for easy access to the PE file’s NT headers.
This C++ header defines a class IMAGE_NT_HEADERS
that represents the raw NT headers of a PE file, which is a binary format used by Windows operating systems. The class provides methods to access and manipulate various fields within the headers, such as data directory information, image size, and checksums. It also includes a constructor that takes a PeFile
object as an argument, allowing for easy access to the PE file’s NT headers.
1 /*
2 This file is part of HadesMem.
3 Copyright (C) 2011 Joshua Boyce (a.k.a. RaptorFactor).
4 <http://www.raptorfactor.com/> <raptorfactor@raptorfactor.com>
9 (at your option) any later version.
11 HadesMem is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
PathBuilder.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 358 lines
✨ Summary
This Java code defines a GUI component, getPath
, which displays a list of directories and allows users to select and manipulate them. It includes features such as enabling/disabling buttons based on selection state, filtering files, and displaying paths in different formats (e.g., array). The component is designed for use in an editor or file manager application.
This Java code defines a GUI component, getPath
, which displays a list of directories and allows users to select and manipulate them. It includes features such as enabling/disabling buttons based on selection state, filtering files, and displaying paths in different formats (e.g., array). The component is designed for use in an editor or file manager application.
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
184 chooser.setApproveButtonText( jEdit.getProperty( "common.ok" ) );
185 int returnVal = chooser.showDialog(
186 PathBuilder.this.getRootPane(),
187 null
188 );
309 public void setFileSelectionMode( int fileSelectionMode ) {
310 this.fileSelectionMode = fileSelectionMode;
311 }
QuickNotepad.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 252 lines
✨ Summary
This Java code defines a QuickNotepad plugin for the jEdit text editor, providing a floating notepad window with basic file management and editing capabilities. It handles saving files, loading files from a specified location, and responding to keyboard events such as pressing the Escape key to close the window. The plugin also updates its font and properties when the user changes the default file path in the jEdit settings.
This Java code defines a QuickNotepad plugin for the jEdit text editor, providing a floating notepad window with basic file management and editing capabilities. It handles saving files, loading files from a specified location, and responding to keyboard events such as pressing the Escape key to close the window. The plugin also updates its font and properties when the user changes the default file path in the jEdit settings.
10 * of the License, or any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
66 this.filename = jEdit.getProperty(
67 QuickNotepadPlugin.OPTION_PREFIX + "filepath");
68 if(this.filename == null || this.filename.length() == 0)
69 {
70 this.filename = new String(jEdit.getSettingsDirectory()
74 this.filename);
75 }
76 this.defaultFilename = this.filename;
77 }
79 this.toolPanel = new QuickNotepadToolPanel(this);
80 add(BorderLayout.NORTH, this.toolPanel);
JCompilerOptionPaneCompiler.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 234 lines
✨ Summary
This Java code defines a plugin options pane for JCompiler, a compiler plugin for jEdit, a text editor. It displays various settings and allows users to adjust them, such as debugging options, classpath settings, and output directory selection. The changes are saved when the user clicks “Save” or selects a new directory using the “Pick Directory” button.
This Java code defines a plugin options pane for JCompiler, a compiler plugin for jEdit, a text editor. It displays various settings and allows users to adjust them, such as debugging options, classpath settings, and output directory selection. The changes are saved when the user clicks “Save” or selects a new directory using the “Pick Directory” button.
3 * (c) 1999, 2000 Kevin A. Burton and Aziz Sharif
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 /**
32 * This is the option pane that jEdit displays for JCompiler's
33 * compiler plugin options.
34 */
MacrosChanged.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 43 lines
✨ Summary
This Java class represents a message sent when the list of available macros changes in the jEdit text editor. It extends the EBMessage
class and has a constructor that takes an EBComponent
source as a parameter, indicating where the change occurred. The message is used to notify other parts of the program about the updated macro list.
This Java class represents a message sent when the list of available macros changes in the jEdit text editor. It extends the EBMessage
class and has a constructor that takes an EBComponent
source as a parameter, indicating where the change occurred. The message is used to notify other parts of the program about the updated macro list.
3 * Copyright (C) 1999 Slava Pestov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
users-guide.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 1010 lines
110 <title> Filter textfield </title>
111 <para>
112 Also at the top of the window is a "Filter" box. Entering text into the box will cause the tree to collapse to show only those items in the tree whose names contain the text in the filter box. This makes it easy to quickly locate items in the tree. By default, clicking on an item in the tree clears the filter, but this can be changed in the SideKick plugin option settings by using the "Filter persists after tree selection" checkbox.
113 </para>
332 The <ulink url="jeditresource:/Sidekick.jar!/docs/api/sidekick/SideKickParser.html">
333 <classname>SideKickParser</classname>
334 </ulink> has one abstract method that all
335 subclasses must implement:
336 </para>
384 <ulink url="jeditresource:/Sidekick.jar!/docs/api/sidekick/SideKickParser.html">
385 SideKickParser</ulink> can implement additional
386 methods to tell Sidekick that your parser supports completions.
387 </para>
828 <para> Moved 4 classes from the PerlSideKick plugin into this plugin. The classes are in <literal>package sidekick.enhanced</literal>.
829 This is so that we can break the dependency between
830 JavaScriptSideKick and PerlSideKick. </para>
831 </listitem>
IDBVersionChangeRequest.idl (https://bitbucket.org/ultra_iter/qt-vtl.git) IDL · 34 lines
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
SVGViewElement.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 70 lines
3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
en-GB.com_contact.ini (https://bitbucket.org/kraymitchell/fcd.git) Unknown · 278 lines
27 COM_CONTACT_FIELD_ARTICLES_RATINGS_DESC="Allow articles ratings for the contact"
28 COM_CONTACT_FIELD_ARTICLES_RATINGS_LABEL="Articles ratings"
29 COM_CONTACT_FIELD_ARTICLES_SHOW_DESC="If this contact is mapped to a user, and if this is set to Show, then a list of articles created by this user will show."
30 COM_CONTACT_FIELD_ARTICLES_SHOW_LABEL="Show User Articles"
31 COM_CONTACT_FIELD_BREADCRUMBS_DESC="Show/Hide Category Breadcrumbs"
65 COM_CONTACT_FIELD_CONFIG_REDIRECT_DESC="Enter an alternative URL where the user will be redirected to after mail is sent."
66 COM_CONTACT_FIELD_CONFIG_REDIRECT_LABEL="Contact Redirect"
67 COM_CONTACT_FIELD_CONFIG_SESSION_CHECK_DESC="Check for the existence of session cookie. This means that users without cookies enabled will not be able to send emails."
68 COM_CONTACT_FIELD_CONFIG_SESSION_CHECK_LABEL="Session Check"
69 COM_CONTACT_FIELD_CONFIG_STATE_LABEL="State or County"
196 COM_CONTACT_FIELD_PRESENTATION_DESC="Determines the style used to display sections of the contact form"
197 COM_CONTACT_FIELD_PRESENTATION_LABEL="Display format"
198 COM_CONTACT_FIELD_PROFILE_SHOW_DESC="If this contact is mapped to a user, and if this is set to Show, then the profile of this user will show."
199 COM_CONTACT_FIELD_PROFILE_SHOW_LABEL="Show Profile"
200 COM_CONTACT_FIELD_PUBLISH_DOWN_DESC="An optional date to Finish Publishing the contact."
275 JGLOBAL_NEWITEMSLAST_DESC="New Contacts default to the last position. Ordering can be changed after this Contact is saved."
276 JLIB_HTML_BATCH_USER_LABEL="Set Linked User"
277 JLIB_RULES_SETTING_NOTES="1. If you change the setting, it will apply to this component. Note that:<br /><em>Inherited</em> means that the permissions from global configuration and parent group will be used.<br /><em>Denied</em> means that no matter what the global configuration or parent group settings are, the group being edited cannot take this action on this component.<br /><em>Allowed</em> means that the group being edited will be able to take this action for this component (but if this is in conflict with the global configuration or parent group it will have no impact; a conflict will be indicated by <em>Not Allowed (Locked)</em> under Calculated Settings).<br />2. If you select a new setting, click <em>Save</em> to refresh the calculated settings."
JDiffHighlightOptionPane.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 96 lines
✨ Summary
This Java code defines a custom dialog box for configuring highlight colors in a text editor, specifically for JDiff (a diff viewer). It allows users to select and save color preferences for different types of changes (added, deleted, changed) and invalid lines. The dialog box is part of the jEdit GUI application.
This Java code defines a custom dialog box for configuring highlight colors in a text editor, specifically for JDiff (a diff viewer). It allows users to select and save color preferences for different types of changes (added, deleted, changed) and invalid lines. The dialog box is part of the jEdit GUI application.
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
53 addComponent(
54 jEdit.getProperty("options.jdiff.highlight-changed-color"),
55 this.highlightChangedLineColor
56 );
57 addComponent(
66 addComponent(
67 jEdit.getProperty("options.jdiff.highlight-invalid-color"),
68 this.highlightInvalidLineColor
69 );
70 }
mainwindow.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 110 lines
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the documentation of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 ** * Redistributions of source code must retain the above copyright
XPathNode.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 168 lines
✨ Summary
This Java class represents an XPath 1.0 node, providing methods to access and manipulate its properties such as node type, name, expanded name, DOM value, and more. It uses Apache XML DTM (Document Tree Model) to interact with the underlying document tree. The class allows for creation of nodes from a given index in a NodeSetDTM, and provides various getter methods to retrieve node information.
This Java class represents an XPath 1.0 node, providing methods to access and manipulate its properties such as node type, name, expanded name, DOM value, and more. It uses Apache XML DTM (Document Tree Model) to interact with the underlying document tree. The class allows for creation of nodes from a given index in a NodeSetDTM, and provides various getter methods to retrieve node information.
9 * of the License, or any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
151 public String getName() {
152 return this.dtm.getNodeNameX(this.nodeHandle);
153 }
156 public String getDomValue() {
157 String domValue = this.dtm.getNodeValue(this.nodeHandle);
159 if(hasDomValue()) {
DynamicContextMenuService.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 33 lines
✨ Summary
This Java class defines an abstract service for plugins to offer dynamic context menu items based on a text area’s state. It provides a method createMenu
that takes a JEditTextArea
and a mouse event as input, returning an array of menu items. The method is intended for use by plugins that require context information at the time of menu request.
This Java class defines an abstract service for plugins to offer dynamic context menu items based on a text area’s state. It provides a method createMenu
that takes a JEditTextArea
and a mouse event as input, returning an array of menu items. The method is intended for use by plugins that require context information at the time of menu request.
9 /**
10 * A service that can be offered by plugins when a text area context menu item
11 * needs to be offered that is sensitive to the state of the TextArea it was requested from.
13 * Note: this service should only be used by certain plugins that need context information at the time
14 * that the context menu is requested. For all other actions, it is already possible for users to
15 * add menu items to the context menu, so please do not use this service from Plugins
16 * to add non-dynamic actions to the context menu.
17 *
25 * Use this to determine the location of the caret, or the edit mode of the buffer, etc.
26 * @param evt a mouseEvent that triggered this menu request, or null
27 * @return an array of menu items
28 * or null if there are no appropriate actions to be added at this time
glwidget.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 94 lines
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 ** * Redistributions of source code must retain the above copyright
dialogPlugin.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 57 lines
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 ** * Redistributions of source code must retain the above copyright
Duplicate_Line.bsh (https://jedit.svn.sourceforge.net/svnroot/jedit) Unknown · 71 lines
5 * froses@menta.net
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 if(buffer.isReadOnly())
36 {
37 Macros.error(view, "This file is read only.");
38 return;
39 }
EplEvent.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 280 lines
✨ Summary
This C++ header file defines a set of structures and enumerations for handling events in an Embedded Peripheral Library (EPL). It provides definitions for event types, sinks, sources, and error handling, as well as callback functions for processing these events. The code is likely used to manage communication between different components or modules within an embedded system.
This C++ header file defines a set of structures and enumerations for handling events in an Embedded Peripheral Library (EPL). It provides definitions for event types, sinks, sources, and error handling, as well as callback functions for processing these events. The code is likely used to manage communication between different components or modules within an embedded system.
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions
14 are met:
16 1. Redistributions of source code must retain the above copyright
17 notice, this list of conditions and the following disclaimer.
19 2. Redistributions in binary form must reproduce the above copyright
20 notice, this list of conditions and the following disclaimer in the
21 documentation and/or other materials provided with the distribution.
ParseException.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 188 lines
✨ Summary
This Java code defines a custom exception class ParseException
that is used to handle parse errors in a parser generated by JavaCC. It provides constructors for creating exceptions with different levels of detail, including a constructor that generates an error message based on the current token and expected tokens. The exception includes fields such as the current token, expected token sequences, and a reference to the “tokenImage” array.
This Java code defines a custom exception class ParseException
that is used to handle parse errors in a parser generated by JavaCC. It provides constructors for creating exceptions with different levels of detail, including a constructor that generates an error message based on the current token and expected tokens. The exception includes fields such as the current token, expected token sequences, and a reference to the “tokenImage” array.
40 /**
41 * The following constructors are for use by you for whatever
42 * purpose you can think of. Constructing the exception in this
43 * manner makes the exception behave in the normal way - i.e., as
44 * documented in the class "Throwable". The fields "errorToken",
60 /**
61 * This is the last token that has been consumed successfully. If
62 * this object has been created due to a parse error, the token
63 * followng this token will (therefore) be the first error token.
64 */
65 public Token currentToken;
68 * Each entry in this array is an array of integers. Each array
69 * of integers represents a sequence of tokens (by their ordinal
70 * values) that is expected at this point of the parse.
71 */
72 public int[][] expectedTokenSequences;
cfe_api.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 123 lines
✨ Summary
This C header file provides an interface for interacting with a Broadcom Common Firmware Environment (CFE). It defines constants, data structures, and function prototypes for tasks such as memory management, CPU control, environment enumeration, and device access. The functions allow applications to communicate with the CFE, which is used in various Broadcom devices.
This C header file provides an interface for interacting with a Broadcom Common Firmware Environment (CFE). It defines constants, data structures, and function prototypes for tasks such as memory management, CPU control, environment enumeration, and device access. The functions allow applications to communicate with the CFE, which is used in various Broadcom devices.
2 * Copyright (C) 2000, 2001, 2002 Broadcom Corporation
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
WebKitDOMObject.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 58 lines
6 * Copyright (C) 2009 Igalia S.L.
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 *
18 * You should have received a copy of the GNU Library General Public License
19 * along with this library; see the file COPYING.LIB. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
lpfc_debugfs.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 51 lines
✨ Summary
This C header file defines a debug interface for Emulex Fibre Channel Host Bus Adapters. It provides structures and constants to track various events, such as discovery commands, mailbox operations, and device state changes. The LPFC_DISC_TRC
mask is used to filter specific types of events, allowing for customized debugging.
This C header file defines a debug interface for Emulex Fibre Channel Host Bus Adapters. It provides structures and constants to track various events, such as discovery commands, mailbox operations, and device state changes. The LPFC_DISC_TRC
mask is used to filter specific types of events, allowing for customized debugging.
1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2007 Emulex. All rights reserved. *
6 * www.emulex.com *
7 * *
8 * This program is free software; you can redistribute it and/or *
9 * modify it under the terms of version 2 of the GNU General *
10 * Public License as published by the Free Software Foundation. *
11 * This program is distributed in the hope that it will be useful. *
12 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
13 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
14 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
15 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
16 * TO BE LEGALLY INVALID. See the GNU General Public License for *
17 * more details, a copy of which can be found in the file COPYING *
ellint_3.html
(http://hadesmem.googlecode.com/svn/trunk/)
HTML · 0 lines
✨ Summary
This HTML code outputs a documentation page for a mathematical function, specifically the elliptic integral of the third kind. It provides information on the function’s properties, usage, and implementation details, including its relation to Carlson’s integrals. The page includes equations, diagrams, and references to external resources, such as the Boost Software License.
This HTML code outputs a documentation page for a mathematical function, specifically the elliptic integral of the third kind. It provides information on the function’s properties, usage, and implementation details, including its relation to Carlson’s integrals. The page includes equations, diagrams, and references to external resources, such as the Boost Software License.
89 Requires <span class="emphasis"><em>-1 <= k <= 1</em></span> and <span class="emphasis"><em>n < 1/sin<sup>2</sup>(φ)</em></span>,
90 otherwise returns the result of <a class="link" href="../../main_overview/error_handling.html#domain_error">domain_error</a>
91 (outside this range the result would be complex).
92 </p>
93 <p>
112 Requires <span class="emphasis"><em>-1 <= k <= 1</em></span> and <span class="emphasis"><em>n < 1</em></span>,
113 otherwise returns the result of <a class="link" href="../../main_overview/error_handling.html#domain_error">domain_error</a>
114 (outside this range the result would be complex).
115 </p>
116 <p>
125 <p>
126 These functions are computed using only basic arithmetic operations, so
127 there isn't much variation in accuracy over differing platforms. Note that
128 only results for the widest floating point type on the system are given
129 as narrower types have <a class="link" href="../../backgrounders/relative_error.html#zero_error">effectively zero error</a>.
jEdit_IE.reg.txt (https://jedit.svn.sourceforge.net/svnroot/jedit) Unknown · 33 lines
1 REGEDIT4
3 ; This is an example of a Windows registry information file containing
4 ; registry entries for adding jEdit to the list of applications that
5 ; is displayed by Internet Explorer for editing the contents of a web page.
6 ; To use this file, rename the file to jEdit_IE.reg, modify the
7 ; path to jEdit.exe as indicated below, double-click the entry representing
8 ; the file in an Explorer window and respond to the prompts accordingly.
11 ; as jEdit 4.0 and jEditLauncher 4.0.4 or greater.
12 ;
13 ; Direct comments or questions about this file to John Gellene (jgellene@jedit.org).
14 ;
27 ; The next entry makes jEdit the helper application for the "View Source"
28 ; command in Internet Explorer. The preceding entries are required for
29 ; this entry to be effective.
31 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor\Editor Name]
fileio.c (https://bitbucket.org/ultra_iter/vim-qt.git) C · 10387 lines
611 {
612 /*
613 * Set the 'new-file' flag, so that when the file has
614 * been created by someone else, a ":w" will complain.
615 */
618 /* Create a swap file now, so that other Vims are warned
619 * that we are editing this file. Don't do this for a
620 * "nofile" or "nowrite" buffer type. */
621 #ifdef FEAT_QUICKFIX
710 }
712 /* Create a swap file now, so that other Vims are warned that we are
713 * editing this file.
828 {
829 /*
830 * Show the user that we are busy reading the input. Sometimes this
831 * may take a while. When reading from stdin another program may
832 * still be running, don't move the cursor to the last line, unless
README_w32s.txt (https://bitbucket.org/ultra_iter/vim-qt.git) Plain Text · 15 lines
1 README_w32s.txt for version 7.3 of Vim: Vi IMproved.
3 This archive contains the gvim.exe that was specifically compiled for use in
4 the Win32s subsystem in MS-Windows 3.1 and 3.11.
12 Win32 with OLE - "MS-Windows 32 bit GUI version with OLE support"
14 For further information, type this inside Vim:
15 :help win32s
XMLHttpRequest.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 1131 lines
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
126 static bool isValidHeaderValue(const String& name)
127 {
128 // FIXME: This should really match name against
129 // field-value in section 4.2 of RFC 2616.
606 // The presence of upload event listeners forces us to use preflighting because POSTing to an URL that does not
607 // permit cross origin requests should look exactly like POSTing to an URL that does not respond at all.
608 // Also, only async requests support upload progress events.
609 bool uploadEvents = false;
781 // out. But it is protected from GC while loading, so this
782 // can't be recouped until the load is done, so only
783 // report the extra cost at that point.
784 JSC::JSLock lock(JSC::SilenceAssertionsOnly);
785 JSC::JSGlobalData* globalData = scriptExecutionContext()->globalData();
XMLViewer.js (https://bitbucket.org/ultra_iter/qt-vtl.git) JavaScript · 434 lines
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15.11.1.1.js (https://bitbucket.org/ultra_iter/qt-vtl.git) JavaScript · 137 lines
71 status = inSection(2);
72 var err2 = otherScope('msg2');
73 actual = examineThis(err2, 'msg2');
74 expect = EXPECTED_FORMAT;
75 addThis();
79 actual = examineThis(err3, EMPTY_STRING);
80 expect = EXPECTED_FORMAT;
81 addThis();
83 status = inSection(4);
101 * We allow for no colon in case err.message was not provided by the user.
102 * In such a case, SpiderMonkey and Rhino currently set err.message = '',
103 * as allowed for by ECMA 15.11.4.3. This makes |pattern| work in this case.
104 *
105 * If this is ever changed to a non-empty string, e.g. 'undefined',
PluginListHandler.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 278 lines
✨ Summary
This Java class, PluginListHandler
, is an XML handler that parses plugin list data from a DTD file. It creates instances of PluginList.Plugin
and PluginList.Branch
objects based on the parsed XML elements, and stores their attributes in corresponding fields. The class also handles nested elements and dependencies between plugins.
This Java class, PluginListHandler
, is an XML handler that parses plugin list data from a DTD file. It creates instances of PluginList.Plugin
and PluginList.Branch
objects based on the parsed XML elements, and stores their attributes in corresponding fields. The class also handles nested elements and dependencies between plugins.
3 * Copyright (C) 2001 Slava Pestov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
COPYING (https://freespeech.svn.sourceforge.net/svnroot/freespeech) Unknown · 375 lines
56 price. Our General Public Licenses are designed to make sure that you
57 have the freedom to distribute copies of free software (and charge for
58 this service if you wish), that you receive source code or can get it
59 if you want it, that you can change the software or use pieces of it
77 Also, for each author's protection and ours, we want to make certain
78 that everyone understands that there is no warranty for this free
79 software. If the software is modified by someone else and passed on, we
80 want its recipients to know that what they have is not the original, so
85 patents. We wish to avoid the danger that redistributors of a free
86 program will individually obtain patent licenses, in effect making the
87 program proprietary. To prevent this, we have made it clear that any
88 patent must be licensed for everyone's free use or not licensed at all.
139 interactive use in the most ordinary way, to print or display an
140 announcement including an appropriate copyright notice and a
141 notice that there is no warranty (or else, saying that you provide
142 a warranty) and that users may redistribute the program under
TextUtilities.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 714 lines
✨ Summary
This Java code provides various string manipulation and formatting functions, including:
- String case detection (mixed, lower case, upper case, title case)
- String conversion to title case
- Line wrapping and formatting for text with a specified maximum line length
- Leading whitespace trimming and calculation
- Tokenization of strings into words
These functions can be used in various applications, such as text editing or formatting.
This Java code provides various string manipulation and formatting functions, including:
- String case detection (mixed, lower case, upper case, title case)
- String conversion to title case
- Line wrapping and formatting for text with a specified maximum line length
- Leading whitespace trimming and calculation
- Tokenization of strings into words
These functions can be used in various applications, such as text editing or formatting.
10 * of the License, or any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
242 * @param line The text
243 * @param pos The position
244 * @param noWordSep Characters that are non-alphanumeric, but
245 * should be treated as word characters anyway
246 * @param joinNonWordChars Treat consecutive non-alphanumeric
laguerre.qbk (http://hadesmem.googlecode.com/svn/trunk/) text · 0 lines
34 The return type of these functions is computed using the __arg_pomotion_rules:
35 note than when there is a single template argument the result is the same type
36 as that argument or `double` if the template argument is an integer type.
38 [optional_policy]
69 Implements the three term recurrence relation for the Laguerre
70 polynomials, this function can be used to create a sequence of
71 values evaluated at the same /x/, and for rising /n/.
96 Implements the three term recurrence relation for the Associated Laguerre
97 polynomials, this function can be used to create a sequence of
98 values evaluated at the same /x/, and for rising degree /n/.
Rectangle2D.java
(http://loon-simple.googlecode.com/svn/trunk/)
Java · 1006 lines
✨ Summary
This Java class represents a rectangle with methods for manipulating its position, size, and geometry. It provides functionality for iterating over the rectangle’s outline, calculating its hash code, and determining equality with other rectangles. The class is designed to be multi-threaded safe and can be used in various graphical applications.
This Java class represents a rectangle with methods for manipulating its position, size, and geometry. It provides functionality for iterating over the rectangle’s outline, calculating its hash code, and determining equality with other rectangles. The class is designed to be multi-threaded safe and can be used in various graphical applications.
41 public abstract class Rectangle2D extends RectangularShape {
42 /**
43 * The bitmask that indicates that a point lies to the left of this
44 * <code>Rectangle2D</code>.
45 *
50 /**
51 * The bitmask that indicates that a point lies above this
52 * <code>Rectangle2D</code>.
53 *
58 /**
59 * The bitmask that indicates that a point lies to the right of this
60 * <code>Rectangle2D</code>.
61 *
Crossings.java
(http://loon-simple.googlecode.com/svn/trunk/)
Java · 503 lines
✨ Summary
This Java code implements a data structure for storing and managing ranges of values with associated directions (0 for increasing, 1 for decreasing). It provides methods for inserting, removing, and recording new ranges, ensuring that overlapping ranges are handled correctly. The implementation uses arrays to store the ranges and their corresponding direction flags.
This Java code implements a data structure for storing and managing ranges of values with associated directions (0 for increasing, 1 for decreasing). It provides methods for inserting, removing, and recording new ranges, ensuring that overlapping ranges are handled correctly. The implementation uses arrays to store the ranges and their corresponding direction flags.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
39 public Crossings(double xlo, double ylo, double xhi, double yhi) {
40 this.xlo = xlo;
41 this.ylo = ylo;
JSParser.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 164 lines
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
ParsedURL.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 62 lines
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
RenderRubyRun.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 96 lines
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
HelpTOCPanel.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 436 lines
✨ Summary
This Java code creates a graphical user interface (GUI) for displaying and navigating through a table of contents (TOC). It uses a JTree component to display the TOC, with each node representing a link to a URL. The GUI allows users to click on nodes to navigate to their corresponding URLs, and it also provides tooltips for each node’s title.
This Java code creates a graphical user interface (GUI) for displaying and navigating through a table of contents (TOC). It uses a JTree component to display the TOC, with each node representing a link to a URL. The GUI allows users to click on nodes to navigate to their corresponding URLs, and it also provides tooltips for each node’s title.
11 * of the License, or any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
50 super(new BorderLayout());
52 this.helpViewer = helpViewer;
53 nodes = new Hashtable();
223 HelpNode(String href, String title)
224 {
225 this.href = href;
226 this.title = title;
UtilTargetError.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 74 lines
✨ Summary
This Java code defines a custom exception class UtilTargetError
that extends UtilEvalError
. It represents an error that occurs when a utility or other class throws an exception without having access to its caller context (Node). The class has two constructors and overrides the toEvalError
method to create a new instance of TargetError
.
This Java code defines a custom exception class UtilTargetError
that extends UtilEvalError
. It represents an error that occurs when a utility or other class throws an exception without having access to its caller context (Node). The class has two constructors and overrides the toEvalError
method to create a new instance of TargetError
.
1 /*****************************************************************************
2 * *
3 * This file is part of the BeanShell Java Scripting distribution. *
4 * Documentation and updates may be found at http://www.beanshell.org/ *
5 * *
6 * Sun Public License Notice: *
7 * *
8 * The contents of this file are subject to the Sun Public License Version *
9 * 1.0 (the "License"); you may not use this file except in compliance with *
16 * GNU Public License Notice: *
17 * *
18 * Alternatively, the contents of this file may be used under the terms of *
19 * the GNU Lesser General Public License (the "LGPL"), in which case the *
20 * provisions of LGPL are applicable instead of those above. If you wish to *
21 * allow use of your version of this file only under the terms of the LGPL *
22 * and not to allow others to use your version of this file under the SPL, *
BeforeUnloadEvent.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 49 lines
5 * Copyright (C) 2003, 2005, 2006 Apple Computer, Inc.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 *
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
Newtonsoft.Json.xml (https://bitbucket.org/BillinghamJ/small-makeitjson.git) XML · 8255 lines
24 <member name="T:Newtonsoft.Json.Bson.BsonReader">
25 <summary>
26 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
27 </summary>
28 </member>
29 <member name="T:Newtonsoft.Json.JsonReader">
30 <summary>
31 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
32 </summary>
33 </member>
47 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
48 </summary>
49 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
50 </member>
51 <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
JCompilerPane.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 294 lines
✨ Summary
This Java code is part of a text editor’s configuration settings for Java compilation and packaging options. It allows users to customize various settings, such as autosave, output directory, classpath, and deprecated warnings. The code updates these settings when the user makes changes and saves them to the text editor’s configuration.
This Java code is part of a text editor’s configuration settings for Java compilation and packaging options. It allows users to customize various settings, such as autosave, output directory, classpath, and deprecated warnings. The code updates these settings when the user makes changes and saves them to the text editor’s configuration.
3 * (c) 1999, 2000 Kevin A. Burton and Aziz Sharif
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 /**
32 * This is the option pane that jEdit displays for Plugin Options.
33 */
34 public class JCompilerPane
ViewRegisters.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 184 lines
✨ Summary
This Java code creates a dialog window for viewing registers in an integrated development environment (IDE). It displays a list of register names and their corresponding values, with each value represented as a single character. The user can select a register name from the list to view its value in a text area. The dialog includes buttons for closing the window and canceling the operation.
This Java code creates a dialog window for viewing registers in an integrated development environment (IDE). It displays a list of register names and their corresponding values, with each value represented as a single character. The user can select a register name from the list to view its value in a text area. The dialog includes buttons for closing the window and canceling the operation.
3 * Copyright (C) 1999, 2000, 2001 Slava Pestov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
customwidgetplugin.qdoc (https://bitbucket.org/ultra_iter/qt-vtl.git) Unknown · 239 lines
64 \o \c designer: Since custom widgets plugins rely on components
65 supplied with \QD, this value ensures that our plugin links
66 against \QD's library (\c libQtDesigner.so).
130 the plugin has been initialized by \QD.
132 Note that the only part of the class definition that is specific to
133 this particular custom widget is the class name.
182 \snippet examples/designer/customwidgetplugin/customwidgetplugin.cpp 6
184 In this case, we return a null icon to indicate that we have no icon
185 that can be used to represent the widget.
229 \snippet examples/designer/customwidgetplugin/customwidgetplugin.cpp 13
231 This macro ensures that \QD can access and construct the custom widget.
232 Without this macro, there is no way for \QD to use the widget.