Searched defs:block (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/trace/ |
H A D | pool.h | 26 |---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 D | variable.h | 14 #include "block.h" 28 Block *block; member in class:vpsc::Variable 38 , block(NULL) 43 return block->posn+offset;
|
/inkscape/share/extensions/ |
H A D | dxf_input.py | 278 # 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 D | vpsc.h | 140 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 D | gradient-toolbar.cpp | 57 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 D | icon.cpp | 1169 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 D | swatches.cpp | 398 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 D | path-manipulator.cpp | 102 void block() { _blocked = true; } function in class:Inkscape::UI::PathManipulatorObserver 205 _observer->block();
|
/inkscape/src/ |
H A D | main.cpp | 2012 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 655 milliseconds