null

Searched defs:block (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/trace/
H A Dpool.h26 |---0--> block with capacity 64
27 |---1--> block with capacity 64
28 |---2--> block with capacity 128
29 |---3--> block with capacity 128
30 |---4--> block with capacity 256
31 |---5--> block with capacity 256
32 |---6--> block with capacity 512
38 * cblock : the index of the next unallocated block (here 7).
47 operation is performed a new block is allocated, and the unused slots
67 block[
96 void *block[64]; //enough to store unlimited number of objects, if 64 is changed: see constructor too member in class:pool
[all...]
/inkscape/src/libvpsc/
H A Dvariable.h14 #include "block.h"
28 Block *block; member in class:vpsc::Variable
38 , block(NULL)
43 return block->posn+offset;
/inkscape/share/extensions/
H A Ddxf_input.py278 # mandatory group codes : (2, 10, 20) (block name, x, y)
290 # mandatory group codes : (2) (block name)
292 global block
293 block = inkex.etree.SubElement(defs, 'symbol', {'id': vals[groups['2']][0].replace(" ", "_")})
296 global block
297 block = defs # initiallize with dummy
451 block = defs # initiallize with dummy variable
480 if block != defs: # in a BLOCK
481 layer = block
/inkscape/src/libavoid/
H A Dvpsc.h140 Block *block; member in class:Avoid::Variable
153 , block(NULL)
163 return (block->ps.scale*block->posn+offset)/scale;
186 * A block structure defined over the variables such that each block contains
187 * 1 or more variables, with the invariant that all constraints inside a block
/inkscape/src/widgets/
H A Dgradient-toolbar.cpp57 static void select_stop_in_list( GtkWidget *combo_box, SPGradient *gradient, SPStop *new_stop, GtkWidget *data, gboolean block);
720 static void select_stop_in_list( GtkWidget *combo_box, SPGradient *gradient, SPStop *new_stop, GtkWidget *data, gboolean block) argument
726 blocked = block;
H A Dicon.cpp1169 int block = std::max(width, height); local
1170 if (block != static_cast<int>(psize) ) {
1174 sf = (double)psize / (double)block;
/inkscape/src/ui/dialog/
H A Dswatches.cpp398 char block[1024]; local
401 char* result = fgets( block, sizeof(block), f );
403 if ( strncmp( "GIMP Palette", block, 12 ) == 0 ) {
411 result = fgets( block, sizeof(block), f );
412 block[sizeof(block) - 1] = 0;
414 if ( block[0] == '#' ) {
417 char *ptr = block;
[all...]
/inkscape/src/ui/tool/
H A Dpath-manipulator.cpp102 void block() { _blocked = true; } function in class:Inkscape::UI::PathManipulatorObserver
205 _observer->block();
/inkscape/src/
H A Dmain.cpp2012 wchar_t** block = new wchar_t*[places.size()]; local
2016 block[i++] = &lineDup[*it];
2018 parsed = block;
2113 wchar_t** block = new wchar_t*[expandedArgs.size()]; local
2117 block[iz++] = *it;
2119 parsed = block;
2153 char** block = new char*[newArgs.size()]; local
2157 block[iz++] = *it;
2159 argv = block;

Completed in 1058 milliseconds