| /plugin/asciidocjs/node_modules/nunjucks/src/ |
| D | compiler.js | 122 _proto._compileChildren = function _compileChildren(node, frame) { argument 125 _this2.compile(child, frame); 128 _proto._compileAggregate = function _compileAggregate(node, frame, startChar, endChar) { argument 137 _this3.compile(child, frame); 143 _proto._compileExpression = function _compileExpression(node, frame) { argument 147 this.compile(node, frame); 159 _proto.compileCallExtension = function compileCallExtension(node, frame, async) { argument 180 _this4._compileExpression(arg, frame); 196 _this4.compile(arg, frame); 217 _proto.compileCallExtensionAsync = function compileCallExtensionAsync(node, frame) { argument [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
| D | Filter.php | 65 foreach ($eTrace as $frame) { 66 if (isset($frame['file']) && is_file($frame['file']) && 67 !$blacklist->isBlacklisted($frame['file']) && 68 ($prefix === false || strpos($frame['file'], $prefix) !== 0) && 69 $frame['file'] !== $script) { 73 $frame['file'], 74 isset($frame['line']) ? $frame['line'] : '?' 77 $filteredStacktrace[] = $frame; 94 foreach ($trace as $frame) { 95 if (isset($frame['file']) && $frame['file'] == $file && [all …]
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/ |
| H A D | RemoteTargetLocator.php | 41 …* @param WebDriverElement|null|int|string $frame The WebDriverElement, the id or the name of the f… 46 public function frame($frame) function in Facebook\\WebDriver\\Remote\\RemoteTargetLocator 49 if ($frame instanceof WebDriverElement) { 50 $id = [JsonWireCompat::WEB_DRIVER_ELEMENT_IDENTIFIER => $frame->getID()]; 51 } elseif ($frame === null) { 53 } elseif (is_int($frame)) { 54 $id = $frame; 61 if ($frame instanceof WebDriverElement) { 62 $id = ['ELEMENT' => $frame->getID()]; 63 } elseif ($frame === null) { [all …]
|
| /plugin/jplayer/vendor/mustache/mustache/src/Mustache/ |
| D | Context.php | 211 $frame = &$stack[$i]; 213 switch (gettype($frame)) { 215 if (!($frame instanceof Closure)) { 218 if (method_exists($frame, $id)) { 219 return $frame->$id(); 222 if (isset($frame->$id)) { 223 return $frame->$id; 226 if ($frame instanceof ArrayAccess && isset($frame[$id])) { 227 return $frame[$id]; 233 if (array_key_exists($id, $frame)) { [all …]
|
| /plugin/odt/ODT/ |
| D | ODTFrame.php | 70 $frame = $params->document->state->getCurrentFrame(); 71 if (isset($frame)) { 164 $frame = new ODTElementFrame($style_name); 167 $frame->setAttributes($frame_attrs); 168 $params->document->state->enter($frame); 169 $frame->setHTMLElement ($element); 172 $params->content .= $frame->getOpeningTag($params); 219 $frame = $params->document->state->getCurrentFrame(); 220 if (isset($frame)) { 326 $frame = new ODTElementFrame($style_name.'_text_frame'); [all …]
|
| /plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
| D | QRcode.php | 305 protected $frame; variable in jucksearm\\barcode\\lib\\QRcode 647 protected function binarize($frame) { argument 648 $len = count($frame); 650 foreach ($frame as &$frameLine) { 655 return $frame; 697 $this->frame = $this->newFrame($this->version); 722 $masked = $this->mask($this->width, $this->frame, $this->level); 724 …$masked = $this->makeMask($this->width, $this->frame, (intval(self::QR_DEFAULT_MASK) % 8), $this->… 727 $masked = $this->makeMask($this->width, $this->frame, $mask, $this->level); 745 $this->frame[$at['y']][$at['x']] = chr($val); [all …]
|
| D | QRcodeFactory.php | 296 $frame = imagecreatetruecolor($this->size, $this->size); 299 …imagecopyresampled($frame, $blank, 0, 0, 0, 0, imagesx($blank), imagesy($blank), imagesx($blank), … 301 …imagecopyresampled($frame, $png, $scale->posX, $scale->posY, 0, 0, imagesx($png), imagesy($png), i… 308 …imagecopyresampled($frame, $emblemImage, ((imagesx($frame) - $emblem->area) / 2), ((imagesy($frame… 314 imagepng($frame); 328 if (!@imagepng($frame, $savePath)) 334 imagedestroy($frame);
|
| /plugin/latexit/tests/my/ |
| D | test10.latex | 9 \lstset{frame=single, language=java} 23 \lstset{frame=single, language=pascal} 36 \lstset{frame=single, language=PHP} 42 \lstset{frame=single, language=PHP} 50 \lstset{frame=single, language=HTML} 56 \lstset{frame=single, language=HTML} 62 \lstset{frame=single, language=php, title=myexample.php} 68 \lstset{frame=single, language=php, title=myexample.php}
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | box.frame.php | 267 $frame =& $this->content[$i]; 273 if (!is_a($frame, "FramesetBox") && 274 !is_a($frame, "FrameBox")) { 279 …$frame->put_left($this->get_left() + array_sum(array_slice($cols, 0, $cur_col)) + $frame->get_extr… 280 …$frame->put_top($this->get_top() - array_sum(array_slice($rows, 0, $cur_row)) - $frame->get_extr… 282 $frame->put_full_width($cols[$cur_col]); 283 $frame->setCSSProperty(CSS_WIDTH, new WCConstant($frame->get_width())); 285 $frame->put_full_height($rows[$cur_row]); 286 $frame->put_height_constraint(new WCConstant($frame->get_height())); 289 $context->push_viewport(FlowViewport::create($frame)); [all …]
|
| /plugin/qrcode2/ |
| D | phpqrcode.php | 161 public static function binarize($frame) argument 163 $len = count($frame); 164 foreach ($frame as &$frameLine) { 171 return $frame; 218 $frame = QRspec::newFrame($a); 221 QRimage::png(self::binarize($frame), $fileName, 1, 0); 224 $width = count($frame); 227 $mask->makeMaskNo($maskNo, $width, $frame, $bitMask, true); 248 public static function dumpMask($frame) argument 250 $width = count($frame); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTrace/ |
| D | StackFrames.php | 47 public function setFrame($frame) argument 49 $this->frame = $frame; 56 return $this->frame;
|
| /plugin/jcapture/src/com/hammurapi/jcapture/ |
| D | Translucener.java | 7 protected abstract void makeTranslucent(Frame frame); in makeTranslucent() argument 9 static void makeFrameTranslucent(Frame frame) throws Exception { in makeFrameTranslucent() argument 12 …s.forName("com.hammurapi.jcapture.AWTUtilitiesTranslucener").newInstance()).makeTranslucent(frame); in makeFrameTranslucent() 14 …Name("com.hammurapi.jcapture.GraphicsDeviceTranslucener").newInstance()).makeTranslucent(frame); in makeFrameTranslucent()
|
| D | MovieEditorDialog.java | 191 Frame frame; field in MovieEditorDialog.FrameEntry 212 g.setColor(frame.isActive() ? ACTIVE_COLOR : INACTIVE_COLOR); in paintFrame() 221 if (frame.getMousePointer()!=null) { in paintFrame() 222 …int mx = (int) (frame.getMousePointer().getX()*(frameCellCanvas.getWidth()-3)/frame.getSize().getW… in paintFrame() 223 …int my = (int) (frame.getMousePointer().getY()*(frameCellCanvas.getHeight()-3)/frame.getSize().get… in paintFrame() 238 g.setColor(frame.isActive() ? ACTIVE_COLOR : INACTIVE_COLOR); in paintAudio() 276 …ret = new BufferedImage(frame.getSize().width, frame.getSize().height, shapeImage(frameEntries[sta… in getImage() 279 for (Shape shape: frameEntries[i].frame.getShapes()) { in getImage() 287 delta = (int) (100.0*deltaArea/(frame.getSize().width * frame.getSize().height)); in getImage() 288 if (frame.getMousePointer()!=null) { in getImage() [all …]
|
| /plugin/jdraw/src/com/mxgraph/examples/swing/ |
| D | HelloWorld.java | 43 HelloWorld frame = new HelloWorld(); in main() local 44 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); in main() 45 frame.setSize(400, 320); in main() 46 frame.setVisible(true); in main()
|
| D | ClickHandler.java | 60 ClickHandler frame = new ClickHandler(); in main() local 61 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); in main() 62 frame.setSize(400, 320); in main() 63 frame.setVisible(true); in main()
|
| D | CustomCanvas.java | 133 CustomCanvas frame = new CustomCanvas(); in main() local 134 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); in main() 135 frame.setSize(400, 320); in main() 136 frame.setVisible(true); in main()
|
| D | Port.java | 117 Port frame = new Port(); in main() local 118 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); in main() 119 frame.setSize(400, 320); in main() 120 frame.setVisible(true); in main()
|
| /plugin/authgooglesheets/vendor/symfony/polyfill-php72/ |
| D | Php72.php | 158 …each (debug_backtrace(\PHP_VERSION_ID >= 50400 ? \DEBUG_BACKTRACE_IGNORE_ARGS : false) as $frame) { 159 …if (isset($frame['function'][0]) && !isset($frame['class']) && 'o' === $frame['function'][0] && \i… 160 $frame['line'] = 0; 164 if (!empty($frame['line'])) {
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/ |
| H A D | WebDriverTargetLocator.php | 26 …* @param WebDriverElement|null|int|string $frame The WebDriverElement, the id or the name of the f… 33 public function frame($frame); argument
|
| /plugin/jdraw/src/com/mxgraph/examples/swing/editor/ |
| D | BasicGraphEditor.java | 692 JFrame frame = (JFrame) SwingUtilities.windowForComponent(this); 694 if (frame != null) 696 EditorAboutFrame about = new EditorAboutFrame(frame); 700 int x = frame.getX() + (frame.getWidth() - about.getWidth()) / 2; 701 int y = frame.getY() + (frame.getHeight() - about.getHeight()) / 2; 714 JFrame frame = (JFrame) SwingUtilities.windowForComponent(this); 716 if (frame != null) 718 frame.dispose(); 727 JFrame frame = (JFrame) SwingUtilities.windowForComponent(this); 729 if (frame != null) [all …]
|
| D | BasicGraphEditor.java.bak | 159 // Stores and updates the frame title 659 // JFrame frame = (JFrame) SwingUtilities.windowForComponent(this); 661 // if (frame != null) 671 // frame.setTitle(title + " - " + appTitle); 680 JFrame frame = (JFrame) SwingUtilities.windowForComponent(this); 682 if (frame != null) 684 EditorAboutFrame about = new EditorAboutFrame(frame); 687 // Centers inside the application frame 688 int x = frame.getX() + (frame.getWidth() - about.getWidth()) / 2; 689 int y = frame.getY() + (frame.getHeight() - about.getHeight()) / 2; [all …]
|
| /plugin/asciidocjs/node_modules/nunjucks/browser/ |
| D | nunjucks.js | 543 var frame = this; 545 if (frame = this.resolve(parts[0], true)) { 546 frame.set(name, val); 737 function contextOrFrameLookup(context, frame, name) { 738 var val = frame.lookup(name); 1341 _proto._compileChildren = function _compileChildren(node, frame) { 1344 _this2.compile(child, frame); 1347 _proto._compileAggregate = function _compileAggregate(node, frame, startChar, endChar) { 1356 _this3.compile(child, frame); 1362 _proto._compileExpression = function _compileExpression(node, frame) { [all …]
|
| /plugin/yalist/ |
| D | syntax.php | 64 $frame = $this->interpretMatch($match); 65 $level = $frame['level'] = 1; 68 "${frame['list']}_open", 69 "${frame['item']}_open", 70 "${frame['item']}_content_open" 72 if($frame['paras']) { 75 array_push($this->stack, $frame); 79 while($frame = array_pop($this->stack)) { 84 if($frame['paras']) { 87 array_push($output, "${frame['item']}_content_close"); [all …]
|
| /plugin/sentry/ |
| D | Event.php | 372 foreach (array_reverse($trace) as $frame) { 374 'filename' => $frame['file'], 375 'lineno' => $frame['line'], 376 'function' => isset($frame['function']) ? $frame['function'] : '', 377 'vars' => isset($frame['args']) ? $frame['args'] : [],
|
| /plugin/diagramsnet/lib/shapes/ |
| D | mxCisco19.js | 96 var frame = mxStencilRegistry.getStencil('mxgraph.cisco19.acibg'); 97 frame.drawShape(c, this, w * 0.195, h * 0.195, w * 0.61, h * 0.61); 107 var frame = mxStencilRegistry.getStencil(bgIcon); 108 frame.drawShape(c, this, 0, 0, w, h);
|