/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
H A 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 | 11 * Used to locate a given frame or window for RemoteWebDriver. 41 * @param WebDriverElement|null|int|string $frame The WebDriverElement, the id or the name of the frame. 46 public function frame($frame) argument 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; [all...] |
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/ |
H A 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/ |
H A D | ODTFrame.php | 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); 220 if (isset($frame)) { 349 $frame->setAttributes($frame_attrs); 350 $params->document->state->enter($frame); 351 $frame->setHTMLElement ($element); 366 if (!isset($frame)) { [all …]
|
/plugin/latexit/tests/my/ |
H A 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/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | QRcode.php | 305 protected $frame; variable in jucksearm\\barcode\\lib\\QRcode 643 * Convert the frame in binary form 644 * @param $frame (array) array to binarize 645 * @return array frame in binary form 647 protected function binarize($frame) { argument 648 $len = count($frame); 649 // the frame is square (width = height) 650 foreach ($frame as &$frameLine) { 655 return $frame; 697 $this->frame 899 writeFormatInformation($width, & $frame, $mask, $level) global() argument 1022 generateMaskNo($maskNo, $width, $frame) global() argument 1073 makeMask($width, $frame, $maskNo, $level) global() argument 1116 evaluateSymbol($width, $frame) global() argument 1178 mask($width, $frame, $level) global() argument 2374 putAlignmentMarker($frame, $ox, $oy) global() argument 2397 putAlignmentPattern($version, $frame, $width) global() argument 2467 putFinderPattern($frame, $ox, $oy) global() argument [all...] |
H A D | QRcodeFactory.php | 95 $emblem['frame'] = $this->size; 98 $emblem['posX'] = floor(($emblem['frame'] - $emblem['area']) / 2); 196 $scale['frame'] = $this->size - ($this->_borderPx * 2); 198 $scale['area'] = $scale['frame'] - (($scale['margin'] * 2)); 203 $scale['frame'] = $this->size; 207 $scale['posX'] = floor(($scale['frame'] - ($bcd['num_cols'] * $scale['size'])) / 2); 211 if ($this->size < $scale['frame']) 296 $frame = imagecreatetruecolor($this->size, $this->size); 299 imagecopyresampled($frame, $blank, 0, 0, 0, 0, imagesx($blank), imagesy($blank), imagesx($blank), imagesy($blank)); 301 imagecopyresampled($frame, [all...] |
/plugin/html2pdf/html2pdf/html2ps/ |
H A 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/ |
H A D | phpqrcode.php | 163 $len = count($frame); 171 return $frame; 224 $width = count($frame); 588 * @param frame 700 * @param frame 796 return $frame; 979 $h = count($frame); 2740 if((ord($frame[$y][$x]) ^ ord($frame[$y-1][$x])) & 1) { 3015 $frame = $filler->frame; 3117 public $frame; variable in FrameFiller [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTrace/ |
H A D | StackFrames.php | 47 public function setFrame($frame) argument 49 $this->frame = $frame; 56 return $this->frame;
|
/plugin/jcapture/src/com/hammurapi/jcapture/ |
H A 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()
|
H A D | MovieEditorDialog.java | 191 Frame frame; field in MovieEditorDialog.FrameEntry 276 …ret = new BufferedImage(frame.getSize().width, frame.getSize().height, shapeImage(frameEntries[sta… in getImage() 287 delta = (int) (100.0*deltaArea/(frame.getSize().width * frame.getSize().height)); in getImage() 289 g.drawImage(mouseImage, frame.getMousePointer().x, frame.getMousePointer().y, null); in getImage() 320 final JFrame frame, in MovieEditorDialog() argument 327 frame.setAlwaysOnTop(false); in MovieEditorDialog() 328 frame.setVisible(false); in MovieEditorDialog() 336 setIconImage(frame.getIconImage()); in MovieEditorDialog() 404 frameEntries[idx].frame = frm; in MovieEditorDialog() 452 setLocationRelativeTo(frame); in MovieEditorDialog() [all …]
|
H A D | AWTUtilitiesTranslucener.java | 11 protected void makeTranslucent(Frame frame) { in makeTranslucent() argument 13 AWTUtilities.setWindowOpacity(frame, 0.7f); in makeTranslucent()
|
/plugin/jdraw/src/com/mxgraph/examples/swing/ |
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A D | Validation.java | 117 Validation frame = new Validation(); 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/ |
H A 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 | 6 * Used to locate a given frame or window. 17 * This is the same as calling `RemoteTargetLocator::frame(null);` 19 * @return WebDriver The driver focused on the top window or the first frame. 26 * @param WebDriverElement|null|int|string $frame The WebDriverElement, the id or the name of the frame. 31 * @return WebDriver The driver focused on the given frame. 33 public function frame($frame); argument 39 // * @return WebDriver This driver focused on the parent frame
|
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/ |
H A D | BasicGraphEditor.java | 694 if (frame != null) 700 int x = frame.getX() + (frame.getWidth() - about.getWidth()) / 2; 701 int y = frame.getY() + (frame.getHeight() - about.getHeight()) / 2; 716 if (frame != null) 718 frame.dispose(); 729 if (frame != null) 751 JFrame frame = new JFrame(); 752 frame.getContentPane().add(this); 754 frame.setJMenuBar(menuBar); 755 frame.setSize(870, 640); [all …]
|
H A D | BasicGraphEditor.java.bak | 661 // if (frame != null) 682 if (frame != null) 688 int x = frame.getX() + (frame.getWidth() - about.getWidth()) / 2; 689 int y = frame.getY() + (frame.getHeight() - about.getHeight()) / 2; 704 if (frame != null) 706 frame.dispose(); 717 if (frame != null) 742 frame.setJMenuBar(menuBar); 743 frame.setSize(870, 640); 745 // Updates the frame title [all …]
|
/plugin/yalist/ |
H A 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']) { 92 "${frame['item']}_close", [all …]
|
/plugin/sentry/ |
H A 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/ |
H A 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);
|