Home
last modified time | relevance | path

Searched refs:formatterName (Results 1 – 25 of 45) sorted by relevance

12

/dports/databases/redisdesktopmanager/RedisDesktopManager-2021.8/src/qml/value-editor/editors/formatters/
H A DValueFormatters.qml56 var formatterName = result[indx][0];
59 var getFormatted = function (formatterName) {
68 var getRaw = function (formatterName) {
77 var isValid = function (formatterName) {
86 rootModel.append({'name': formatterName, 'type': "embedded",})
105 var formatterName = formatter["name"];
108 var getFormatted = function (formatterName) {
110 return formattersManager.decode(formatterName, raw, callback)
115 var getRaw = function (formatterName) {
122 var isValid = function (formatterName) {
[all …]
/dports/databases/redisdesktopmanager/RedisDesktopManager-2021.8/src/modules/value-editor/
H A Dexternalformattersmanager.cpp182 if (!m_mapping.contains(formatterName)) { in decode()
185 .arg(formatterName)); in decode()
194 QVariantMap formatter = m_formattersData[m_mapping[formatterName]]; in decode()
206 .arg(formatterName)}); in decode()
217 if (!m_mapping.contains(formatterName)) { in isValid()
220 .arg(formatterName)); in isValid()
224 QVariantMap formatter = m_formattersData[m_mapping[formatterName]]; in isValid()
235 .arg(formatterName)); in isValid()
246 if (!m_mapping.contains(formatterName)) { in encode()
249 .arg(formatterName)); in encode()
[all …]
H A Dembeddedformattersmanager.cpp25 const QString &formatterName, const QByteArray &data, QJSValue jsCallback) { in decode() argument
26 m_python->call("formatters.decode", QVariantList{formatterName, data}, in decode()
31 const QString &formatterName, const QByteArray &data, QJSValue jsCallback) { in isValid() argument
32 m_python->call("formatters.validate", QVariantList{formatterName, data}, in isValid()
37 const QString &formatterName, const QByteArray &data, QJSValue jsCallback) { in encode() argument
38 m_python->call("formatters.encode", QVariantList{formatterName, data}, in encode()
H A Dembeddedformattersmanager.h25 Q_INVOKABLE void decode(const QString& formatterName, const QByteArray& data,
28 Q_INVOKABLE void isValid(const QString& formatterName, const QByteArray& data,
31 Q_INVOKABLE void encode(const QString& formatterName, const QByteArray& data,
H A Dexternalformattersmanager.h31 Q_INVOKABLE void decode(const QString& formatterName, const QByteArray& data,
34 Q_INVOKABLE void isValid(const QString& formatterName, const QByteArray& data,
37 Q_INVOKABLE void encode(const QString& formatterName, const QByteArray& data,
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/mgechev/revive/config/
H A Dconfig.go201 func GetFormatter(formatterName string) (lint.Formatter, error) {
204 if formatterName != "" {
205 f, ok := formatters[formatterName]
207 return nil, fmt.Errorf("unknown formatter %v", formatterName)
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Serialization/
H A DTypes.cs85 string formatterName; field in System.Xml.Serialization.TypeDesc
92 …SchemaType dataType, TypeKind kind, TypeDesc baseTypeDesc, TypeFlags flags, string formatterName) { in TypeDesc() argument
108 this.formatterName = formatterName; in TypeDesc()
117 …internal TypeDesc(Type type, bool isXsdType, XmlSchemaType dataType, string formatterName, TypeFla… in TypeDesc() argument
118 …his(type.Name, type.FullName, dataType, TypeKind.Primitive, (TypeDesc)null, flags, formatterName) { in TypeDesc()
175 get { return formatterName; }
580 … static void AddPrimitive(Type type, string dataTypeName, string formatterName, TypeFlags flags) { in AddPrimitive() argument
583 TypeDesc typeDesc = new TypeDesc(type, true, dataType, formatterName, flags); in AddPrimitive()
599 TypeDesc typeDesc = new TypeDesc(type, false, dataType, formatterName, flags); in AddNonXsdPrimitive()
606 …oapEncodedPrimitive(Type type, string dataTypeName, string ns, string formatterName, XmlQualifiedN… in AddSoapEncodedPrimitive() argument
[all …]
/dports/www/matomo/piwik/vendor/wikimedia/less.php/
H A Dlessc.inc.php23 private $formatterName; variable in lessc
39 $this->formatterName = $name;
95 switch ( $this->formatterName ) {
/dports/www/mediawiki136/mediawiki-1.36.3/vendor/wikimedia/less.php/
H A Dlessc.inc.php23 private $formatterName; variable in lessc
39 $this->formatterName = $name;
95 switch ( $this->formatterName ) {
/dports/www/mediawiki135/mediawiki-1.35.5/vendor/wikimedia/less.php/
H A Dlessc.inc.php23 private $formatterName; variable in lessc
39 $this->formatterName = $name;
95 switch ( $this->formatterName ) {
/dports/www/mediawiki137/mediawiki-1.37.1/vendor/wikimedia/less.php/
H A Dlessc.inc.php23 private $formatterName;
39 $this->formatterName = $name;
95 switch ( $this->formatterName ) {
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Serialization/
H A DTypes.cs91 …mlSchemaType dataType, TypeKind kind, TypeDesc baseTypeDesc, TypeFlags flags, string formatterName) in TypeDesc() argument
108 _formatterName = formatterName; in TypeDesc()
115 …internal TypeDesc(Type type, bool isXsdType, XmlSchemaType dataType, string formatterName, TypeFla… in TypeDesc() argument
116 … this(type.Name, type.FullName, dataType, TypeKind.Primitive, (TypeDesc)null, flags, formatterName) in TypeDesc()
632 …private static void AddPrimitive(Type type, string dataTypeName, string formatterName, TypeFlags f… in AddPrimitive() argument
636 TypeDesc typeDesc = new TypeDesc(type, true, dataType, formatterName, flags); in AddPrimitive()
643 … AddNonXsdPrimitive(Type type, string dataTypeName, string ns, string formatterName, XmlQualifiedN… in AddNonXsdPrimitive() argument
654 TypeDesc typeDesc = new TypeDesc(type, false, dataType, formatterName, flags); in AddNonXsdPrimitive()
661 …oapEncodedPrimitive(Type type, string dataTypeName, string ns, string formatterName, XmlQualifiedN… in AddSoapEncodedPrimitive() argument
663 …AddNonXsdPrimitive(type, dataTypeName, ns, formatterName, baseTypeName, new XmlSchemaFacet[0], fla… in AddSoapEncodedPrimitive()
/dports/www/gitea/gitea-1.16.5/vendor/github.com/blevesearch/bleve/v2/search/highlight/highlighter/simple/
H A Dhighlighter_simple.go207 formatterName, ok := config["formatter"].(string)
211 formatter, err := cache.FragmentFormatterNamed(formatterName)
/dports/security/keybase/client-v5.7.1/go/vendor/github.com/blevesearch/bleve/search/highlight/highlighter/simple/
H A Dhighlighter_simple.go207 formatterName, ok := config["formatter"].(string)
211 formatter, err := cache.FragmentFormatterNamed(formatterName)
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/blevesearch/bleve/search/highlight/highlighter/simple/
H A Dhighlighter_simple.go207 formatterName, ok := config["formatter"].(string)
211 formatter, err := cache.FragmentFormatterNamed(formatterName)
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/search/highlight/highlighter/simple/
H A Dhighlighter_simple.go207 formatterName, ok := config["formatter"].(string)
211 formatter, err := cache.FragmentFormatterNamed(formatterName)
/dports/multimedia/vapoursynth/vapoursynth-R54/src/avfs/include/
H A Dpfmmarshaller.h81 const char* formatterName; in PT_TYPE_DEFINE() local
427 …, Identify , const char* mountFileData,size_t mountFileDataLen,const char* formatterName);
430 …ReadWrite , PfmFormatterOps* formatter,int volumeFlags,const char* formatterName,PT_FD_T toForm…
431 … , PfmReadOnlyFormatterOps* formatter,int volumeFlags,const char* formatterName,PT_FD_T toForm…
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/
H A Dserver_options_helpers.cpp971 std::string formatterName = params["systemLog.timeStampFormat"].as<string>(); in storeServerOptions() local
972 if (formatterName == "ctime") { in storeServerOptions()
974 } else if (formatterName == "iso8601-utc") { in storeServerOptions()
976 } else if (formatterName == "iso8601-local") { in storeServerOptions()
981 << "or iso8601-local; not \"" << formatterName << "\"."; in storeServerOptions()
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/
H A DLog.php247 $formatterName = is_object($formatter)
251 … throw new Zend_Log_Exception($formatterName . ' does not implement Zend_Log_Formatter_Interface');
/dports/devel/kdevelop/kdevelop-21.12.3/kdevplatform/shell/
H A Dsourceformatterselectionedit.cpp213 const QString formatterName = formatter.left(pos); in loadSettings() local
214 FormatterMap::const_iterator formatterIter = d->formatters.constFind(formatterName); in loadSettings()
216 qCDebug(SHELL) << "Reference to unknown formatter" << formatterName; in loadSettings()
225 … qCDebug(SHELL) << "No style" << styleName << "found for formatter" << formatterName; in loadSettings()
H A Dsourceformattercontroller.cpp95 const auto formatterName = entry.leftRef(pos); in formatterForConfigEntry() local
97 return (iformatter->name() == formatterName); in formatterForConfigEntry()
791 const QString formatterName = formatter.left(pos); in styleForUrl() local
795 KConfigGroup fmtgrp = globalConfig().group(formatterName); in styleForUrl()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/symfony/lib/form/
H A DsfForm.class.php138 * @param string $formatterName The form formatter name
143 public function renderUsing($formatterName, $attributes = array()) argument
147 $this->widgetSchema->setFormFormatterName($formatterName);
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/
H A DdatetimeExpressions.scala532 val formatterName = ctx.addReferenceObj("formatter", formatter, sdf) constant
540 ${ev.value} = $formatterName.parse(${eval1.value}.toString()).getTime() / 1000L;
649 val formatterName = ctx.addReferenceObj("formatter", formatter, sdf) constant
657 ${ev.value} = UTF8String.fromString($formatterName.format(
/dports/www/joomla3/joomla3-3.9.24/libraries/fof/template/
H A Dutils.php154 $lessCompiler->formatterName = 'compressed';
/dports/www/joomla3/joomla3-3.9.24/libraries/fof/less/
H A Dless.php3112 $this->formatterName = $name;
3125 if (!empty($this->formatterName))
3127 if (!is_string($this->formatterName))
3128 return $this->formatterName;
3130 $className = "FOFLessFormatter" . ucfirst($this->formatterName);

12