Home
last modified time | relevance | path

Searched refs:frame (Results 1 – 25 of 189) sorted by relevance

12345678

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DFilter.php65 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 DRemoteTargetLocator.php11 * 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 DContext.php211 $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 DODTFrame.php71 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 Dtest10.latex9 \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 DQRcode.php655 return $frame;
1158 if ((ord($frame[$y][$x]) ^ ord($frame[$y-1][$x])) & 1) {
2410 $frame = $this->putAlignmentMarker($frame, $x, $y);
2416 $frame = $this->putAlignmentMarker($frame, 6, $cx);
2417 $frame = $this->putAlignmentMarker($frame, $cx, 6);
2424 $frame = $this->putAlignmentMarker($frame, $cx, $cy);
2493 $frame = $this->putFinderPattern($frame, 0, 0);
2494 $frame = $this->putFinderPattern($frame, $width - 7, 0);
2495 $frame = $this->putFinderPattern($frame, 0, $width - 7);
2505 $frame = $this->qrstrset($frame, 0, 7, $setPattern);
[all …]
H A DQRcodeFactory.php296 $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/html2pdf/html2pdf/html2ps/
H A Dbox.frame.php267 $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 Dphpqrcode.php163 $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 DStackFrames.php47 public function setFrame($frame) argument
49 $this->frame = $frame;
56 return $this->frame;
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DTranslucener.java7 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 DMovieEditorDialog.java191 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 DAWTUtilitiesTranslucener.java11 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 DHelloWorld.java43 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 DClickHandler.java60 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 DCustomCanvas.java133 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 DPort.java117 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 DValidation.java117 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 DPhp72.php158 …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 DWebDriverTargetLocator.php6 * 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 DBasicGraphEditor.java694 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 DBasicGraphEditor.java.bak661 // 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 Dsyntax.php64 $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 DEvent.php372 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 DmxCisco19.js96 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);

12345678