Home
last modified time | relevance | path

Searched refs:getTag (Results 1 – 25 of 128) sorted by relevance

123456

/plugin/asciidocjs/node_modules/lodash/
D_getTag.js32 var getTag = baseGetTag; variable
35 if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||
36 (Map && getTag(new Map) != mapTag) ||
37 (Promise && getTag(Promise.resolve()) != promiseTag) ||
38 (Set && getTag(new Set) != setTag) ||
39 (WeakMap && getTag(new WeakMap) != weakMapTag)) {
40 getTag = function(value) { function
58 module.exports = getTag;
D_baseIsSet.js1 var getTag = require('./_getTag'), variable
15 return isObjectLike(value) && getTag(value) == setTag;
D_baseIsMap.js1 var getTag = require('./_getTag'), variable
15 return isObjectLike(value) && getTag(value) == mapTag;
DisWeakMap.js1 var getTag = require('./_getTag'), variable
25 return isObjectLike(value) && getTag(value) == weakMapTag;
D_createToPairs.js2 getTag = require('./_getTag'), variable
19 var tag = getTag(object);
D_baseIsEqualDeep.js5 getTag = require('./_getTag'), variable
41 objTag = objIsArr ? arrayTag : getTag(object),
42 othTag = othIsArr ? arrayTag : getTag(other);
Dsize.js2 getTag = require('./_getTag'), variable
39 var tag = getTag(collection);
DtoArray.js3 getTag = require('./_getTag'), variable
52 var tag = getTag(value),
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
DFilterTokenParser.php34 …ession(new ConstantExpression($name, $token->getLine()), null, $token->getLine(), $this->getTag());
36 … $filter = $this->parser->getExpressionParser()->parseFilterExpressionRaw($ref, $this->getTag());
45 return new PrintNode($filter, $token->getLine(), $this->getTag());
53 public function getTag() function in Twig\\TokenParser\\FilterTokenParser
DFlushTokenParser.php30 return new FlushNode($token->getLine(), $this->getTag());
33 public function getTag() function in Twig\\TokenParser\\FlushTokenParser
DDoTokenParser.php30 return new DoNode($expr, $token->getLine(), $this->getTag());
33 public function getTag() function in Twig\\TokenParser\\DoTokenParser
DDeprecatedTokenParser.php35 return new DeprecatedNode($expr, $token->getLine(), $this->getTag());
38 public function getTag() function in Twig\\TokenParser\\DeprecatedTokenParser
DSpacelessTokenParser.php39 return new SpacelessNode($body, $lineno, $this->getTag());
47 public function getTag() function in Twig\\TokenParser\\SpacelessTokenParser
DImportTokenParser.php36 return new ImportNode($macro, $var, $token->getLine(), $this->getTag());
39 public function getTag() function in Twig\\TokenParser\\ImportTokenParser
/plugin/webcomponent/_test/
Dcard.test.php18 $componentName = syntax_plugin_webcomponent_card::getTag();
26 $componentName = syntax_plugin_webcomponent_card::getTag();
53 $componentName = syntax_plugin_webcomponent_card::getTag();
Dcite.test.php20 $elementName = syntax_plugin_webcomponent_cite::getTag();
30 $element = syntax_plugin_webcomponent_cite::getTag();
Dcardcolumns.test.php31 '<'.syntax_plugin_webcomponent_card::getTag().' style="width: 18rem;">'.DOKU_LF.
34 '</'.syntax_plugin_webcomponent_card::getTag().'>'.DOKU_LF.
/plugin/webcomponent/syntax/
Ddropdown.php88 $pattern = webcomponent::getLookAheadPattern(self::getTag());
101 …$this->Lexer->addExitPattern('</' . self::getTag() . '>', 'plugin_' . webcomponent::PLUGIN_NAME . …
129 $match = utf8_substr($match, strlen(self::getTag()) + 1, -1);
242 public static function getTag() function in syntax_plugin_webcomponent_dropdown
Dunit.php27 private static function getTag() function in syntax_plugin_webcomponent_unit
103 $match = utf8_substr($match, strlen(self::getTag()) + 1, -1);
162 $renderer->doc .= '<div class="webcomponent_'.self::getTag() .'"';
Dbrand.php32 $pattern = webcomponent::getLookAheadPattern(self::getTag());
39 …$this->Lexer->addExitPattern('</' . self::getTag() . '>', 'plugin_' . webcomponent::PLUGIN_NAME . …
112 public static function getTag() function in syntax_plugin_webcomponent_brand
Dbutton.php138 $match = utf8_substr($match, strlen(self::getTag()) + 1, -1);
250 public static function getTag() function in syntax_plugin_webcomponent_button
257 $elements[] = self::getTag();
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
DStagingExtension.php75 if (isset($this->tokenParsers[$parser->getTag()])) {
76 …ted since version 1.30 and won\'t be possible anymore in 2.0.', $parser->getTag()), E_USER_DEPRECA…
79 $this->tokenParsers[$parser->getTag()] = $parser;
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/
DTokenParserBroker.php43 $this->parsers[$parser->getTag()] = $parser;
55 $this->parsers[$parser->getTag()] = $parser;
60 $name = $parser->getTag();
/plugin/combo/syntax/
H A Dtoggleexpand.php80 $pattern = XmlTagProcessing::getContainerTagPattern(self::getTag());
90 …$this->Lexer->addExitPattern('</' . self::getTag() . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_N…
165 static function getTag(): string function in syntax_plugin_combo_toggleexpand
H A Dtogglecollapse.php80 $pattern = XmlTagProcessing::getContainerTagPattern(self::getTag());
90 …$this->Lexer->addExitPattern('</' . self::getTag() . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_N…
165 static function getTag(): string function in syntax_plugin_combo_togglecollapse

123456