Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 12316) sorted by relevance

12345678910>>...493

/dports/editors/calligra/calligra-3.2.1/filters/libmsooxml/generated/
H A DgeneratedShapes.h154 attributes["bentConnector2"]="M 0 0 L ?width 0 L ?width ?height F ";
364 attributes["curvedConnector2"]="M 0 0 C ?wd2 0 ?width ?hd2 ?width ?height F ";
435 attributes["diagStripe"]="M 0 ?y2 L ?x2 0 L ?width 0 L 0 ?height Z ";
439 attributes["diamond"]="M 0 ?vc L ?hc 0 L ?width ?vc L ?hc ?height Z ";
903 attributes["line"]="M 0 0 L ?width ?height ";
906 attributes["lineInv"]="M 0 ?height L ?width 0 ";
922 attributes["mathMinus"]="M ?x1 ?y1 L ?x2 ?y1 L ?x2 ?y2 L ?x1 ?y2 Z ";
1029 attributes["rect"]="M 0 0 L ?width 0 L ?width ?height L 0 ?height Z ";
1120 attributes["rtTriangle"]="M 0 ?height L 0 0 L ?width ?height Z ";
1223 attributes["straightConnector1"]="M 0 0 L ?width ?height F ";
[all …]
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/base/html/
H A DInput.php13 protected $attributes; variable in GO\\Base\\Html\\Input
65 $this->attributes = $attributes;
80 …$this->attributes['label'] = $this->attributes['model']->getAttributeLabel($this->attributes['name…
83 … $this->attributes['value'] = $this->attributes['model']->getAttribute($this->attributes['name']);
122 …$this->attributes['value'] = isset($_POST[$this->attributes['name']]) ? $_POST[$this->attributes['…
132 $this->attributes['value'] = $this->attributes['empty_text'];
153attributes['id'].'" class="'.$this->attributes['class'].'" type="'.$this->attributes['type'].'" na…
169attributes['id'].'" class="'.$this->attributes['class'].'" type="'.$this->attributes['type'].'" na…
220attributes['id'].'" class="'.$this->attributes['class'].'" type="'.$this->attributes['type'].'" na…
233 …tarea id="'.$this->attributes['id'].'" class="'.$this->attributes['class'].'" name="'.$this->attri…
[all …]
/dports/mail/horde-turba/turba-4.2.25/config/
H A Dattributes.php48 $attributes['name'] = array(
60 $attributes['lastname'] = array(
84 $attributes['alias'] = array(
122 $attributes['spouse'] = array(
134 $attributes['photo'] = array(
371 $attributes['fax'] = array(
415 $attributes['role'] = array(
445 $attributes['logo'] = array(
606 $attributes['voip'] = array(
612 $attributes['sip'] = array(
[all …]
/dports/www/kohana/kohana-v3.3.6/system/classes/Kohana/
H A DForm.php66 return '<form'.HTML::attributes($attributes).'>';
96 $attributes['name'] = $name;
107 return '<input'.HTML::attributes($attributes).' />';
182 $attributes[] = 'checked';
208 $attributes[] = 'checked';
230 $attributes['name'] = $name;
255 $attributes['name'] = $name;
340 return '<select'.HTML::attributes($attributes).'>'.$options.'</select>';
380 $attributes['src'] = URL::base($index).$attributes['src'];
406 return '<button'.HTML::attributes($attributes).'>'.$body.'</button>';
[all …]
/dports/math/abs/abs-src-0.908/Xpm/
H A DAttrib.c159 XpmAttributes *attributes; in xpmInitAttributes()
161 if (attributes)
164 attributes->npixels = 0;
166 attributes->ncolors = 0;
184 XpmAttributes *attributes; in xpmSetAttributes()
261 XpmAttributes *attributes; in XpmFreeAttributes()
263 if (attributes->valuemask & XpmReturnPixels && attributes->npixels)
267 attributes->npixels = 0;
271 xpmFreeColorTable(attributes->colorTable, attributes->ncolors);
301 if (attributes->pixels)
[all …]
/dports/x11/libXpm/libXpm-3.5.13/src/
H A DAttrib.c161 if (attributes) { in xpmInitAttributes()
162 attributes->pixels = NULL; in xpmInitAttributes()
163 attributes->npixels = 0; in xpmInitAttributes()
165 attributes->ncolors = 0; in xpmInitAttributes()
213 attributes->npixels = 0; in xpmSetAttributes()
258 if (attributes->valuemask & XpmReturnPixels && attributes->npixels) { in XpmFreeAttributes()
261 attributes->npixels = 0; in XpmFreeAttributes()
264 xpmFreeColorTable(attributes->colorTable, attributes->ncolors); in XpmFreeAttributes()
266 attributes->ncolors = 0; in XpmFreeAttributes()
288 if (attributes->pixels) { in XpmFreeAttributes()
[all …]
/dports/x11-toolkits/open-motif/motif-2.3.8/lib/Xm/
H A DXpmAttrib.c165 if (attributes) {
166 attributes->pixels = NULL;
167 attributes->npixels = 0;
169 attributes->ncolors = 0;
217 attributes->npixels = 0;
263 if (attributes->valuemask & XpmReturnPixels && attributes->npixels) {
266 attributes->npixels = 0;
269 xpmFreeColorTable(attributes->colorTable, attributes->ncolors);
271 attributes->ncolors = 0;
293 if (attributes->pixels) {
[all …]
/dports/lang/mono-basic/mono-basic-4.7/vbnc/cecil/Mono.Cecil/
H A DExportedType.cs37 uint attributes; field in Mono.Cecil.ExportedType
56 set { attributes = (uint) value; }
152 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Abstract, value); }
157 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Sealed, value); }
162 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.SpecialName, value); }
167 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Import, value); }
172 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Serializable, value); }
192 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.BeforeFieldInit, value); }
197 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.RTSpecialName, value); }
202 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.HasSecurity, value); }
[all …]
H A DPInvokeInfo.cs33 ushort attributes; field in Mono.Cecil.PInvokeInfo
38 get { return (PInvokeAttributes) attributes; }
39 set { attributes = (ushort) value; }
56 set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.NoMangle, value); }
61 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
66 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
71 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
76 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
81 …set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.SupportsLastError, value);…
91 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CallConvMask, (ushor…
[all …]
/dports/lang/mono/mono-5.10.1.57/external/cecil/Mono.Cecil/
H A DExportedType.cs19 uint attributes; field in Mono.Cecil.ExportedType
38 set { attributes = (uint) value; }
142 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Abstract, value); }
147 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Sealed, value); }
152 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.SpecialName, value); }
157 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Import, value); }
162 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Serializable, value); }
182 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.BeforeFieldInit, value); }
187 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.RTSpecialName, value); }
192 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.HasSecurity, value); }
[all …]
H A DPInvokeInfo.cs15 ushort attributes; field in Mono.Cecil.PInvokeInfo
20 get { return (PInvokeAttributes) attributes; }
21 set { attributes = (ushort) value; }
38 set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.NoMangle, value); }
43 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
48 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
53 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
58 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
63 …set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.SupportsLastError, value);…
73 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CallConvMask, (ushor…
[all …]
/dports/lang/mono/mono-5.10.1.57/external/linker/cecil/Mono.Cecil/
H A DExportedType.cs19 uint attributes; field in Mono.Cecil.ExportedType
38 set { attributes = (uint) value; }
142 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Abstract, value); }
147 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Sealed, value); }
152 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.SpecialName, value); }
157 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Import, value); }
162 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Serializable, value); }
182 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.BeforeFieldInit, value); }
187 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.RTSpecialName, value); }
192 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.HasSecurity, value); }
[all …]
H A DPInvokeInfo.cs15 ushort attributes; field in Mono.Cecil.PInvokeInfo
20 get { return (PInvokeAttributes) attributes; }
21 set { attributes = (ushort) value; }
38 set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.NoMangle, value); }
43 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
48 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
53 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
58 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
63 …set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.SupportsLastError, value);…
73 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CallConvMask, (ushor…
[all …]
/dports/lang/mono/mono-5.10.1.57/external/cecil-legacy/Mono.Cecil/
H A DExportedType.cs37 uint attributes; field in Mono.Cecil.ExportedType
56 set { attributes = (uint) value; }
152 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Abstract, value); }
157 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Sealed, value); }
162 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.SpecialName, value); }
167 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Import, value); }
172 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Serializable, value); }
192 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.BeforeFieldInit, value); }
197 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.RTSpecialName, value); }
202 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.HasSecurity, value); }
[all …]
H A DPInvokeInfo.cs33 ushort attributes; field in Mono.Cecil.PInvokeInfo
38 get { return (PInvokeAttributes) attributes; }
39 set { attributes = (ushort) value; }
56 set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.NoMangle, value); }
61 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
66 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
71 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
76 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
81 …set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.SupportsLastError, value);…
91 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CallConvMask, (ushor…
[all …]
/dports/devel/mono-addins/mono-addins-mono-addins-1.3/Mono.Addins.CecilReflector/Mono.Cecil/Mono.Cecil/
H A DExportedType.cs37 uint attributes; field in Mono.Cecil.ExportedType
56 set { attributes = (uint) value; }
152 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Abstract, value); }
157 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Sealed, value); }
162 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.SpecialName, value); }
167 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Import, value); }
172 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.Serializable, value); }
192 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.BeforeFieldInit, value); }
197 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.RTSpecialName, value); }
202 set { attributes = attributes.SetAttributes ((uint) TypeAttributes.HasSecurity, value); }
[all …]
H A DPInvokeInfo.cs33 ushort attributes; field in Mono.Cecil.PInvokeInfo
38 get { return (PInvokeAttributes) attributes; }
39 set { attributes = (ushort) value; }
56 set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.NoMangle, value); }
61 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
66 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
71 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
76 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CharSetMask, (ushort…
81 …set { attributes = attributes.SetAttributes ((ushort) PInvokeAttributes.SupportsLastError, value);…
91 …set { attributes = attributes.SetMaskedAttributes ((ushort) PInvokeAttributes.CallConvMask, (ushor…
[all …]
/dports/x11-toolkits/lesstif/lesstif-0.95.2/lib/Xm-2.1/
H A DXpmAttrib.c209 if (attributes) {
210 attributes->pixels = NULL;
211 attributes->npixels = 0;
213 attributes->ncolors = 0;
261 attributes->npixels = 0;
307 if (attributes->valuemask & XpmReturnPixels && attributes->npixels) {
310 attributes->npixels = 0;
313 xpmFreeColorTable(attributes->colorTable, attributes->ncolors);
315 attributes->ncolors = 0;
337 if (attributes->pixels) {
[all …]
/dports/science/molscript/MolScript-280abee/code/
H A Dimage.c81 attributes[count++] = 8; in visual_alternative()
83 attributes[count++] = 8; in visual_alternative()
85 attributes[count++] = 8; in visual_alternative()
87 attributes[count++] = 1; in visual_alternative()
102 attributes[count++] = 8; in visual_alternative()
104 attributes[count++] = 8; in visual_alternative()
106 attributes[count++] = 8; in visual_alternative()
108 attributes[count++] = 1; in visual_alternative()
122 attributes[count++] = 1; in visual_alternative()
124 attributes[count++] = 1; in visual_alternative()
[all …]
/dports/www/limesurvey/limesurvey/application/helpers/
H A DquestionHelper.php23 protected static $attributes; variable in LimeSurvey\\Helpers\\questionHelper
33 if (self::$attributes) {
34 return self::$attributes;
37 self::$attributes = array();
49 self::$attributes["alphasort"] = array(
212 self::$attributes["date_min"] = array(
222 self::$attributes["date_max"] = array(
525 self::$attributes['hidden'] = array(
794 self::$attributes["prefix"] = array(
1596 self::$attributes = array_merge(self::$attributes, $questionAttributes);
[all …]
/dports/net-mgmt/phpipam/phpipam-a14bc06/functions/adLDAP/src/
H A DadLDAP.php832 if ($attributes["address_city"]) { $mod["l"][0] = $attributes["address_city"]; }
839 if ($attributes["company"]) { $mod["company"][0] = $attributes["company"]; }
844 if ($attributes["email"]) { $mod["mail"][0] = $attributes["email"]; }
846 if ($attributes["firstname"]) { $mod["givenName"][0] = $attributes["firstname"]; }
849 if ($attributes["initials"]) { $mod["initials"][0] = $attributes["initials"]; }
856 if ($attributes["surname"]) { $mod["sn"][0] = $attributes["surname"]; }
857 if ($attributes["title"]) { $mod["title"][0] = $attributes["title"]; }
859 if ($attributes["mobile"]) { $mod["mobile"][0] = $attributes["mobile"]; }
860 if ($attributes["pager"]) { $mod["pager"][0] = $attributes["pager"]; }
861 if ($attributes["ipphone"]) { $mod["ipphone"][0] = $attributes["ipphone"]; }
[all …]
/dports/www/dokuwiki/dokuwiki-2020-07-29/lib/plugins/authad/adLDAP/
H A DadLDAP.php808 if ($attributes["address_city"]){ $mod["l"][0]=$attributes["address_city"]; }
815 if ($attributes["company"]){ $mod["company"][0]=$attributes["company"]; }
820 if ($attributes["email"]){ $mod["mail"][0]=$attributes["email"]; }
822 if ($attributes["firstname"]){ $mod["givenName"][0]=$attributes["firstname"]; }
825 if ($attributes["initials"]){ $mod["initials"][0]=$attributes["initials"]; }
832 if ($attributes["surname"]){ $mod["sn"][0]=$attributes["surname"]; }
833 if ($attributes["title"]){ $mod["title"][0]=$attributes["title"]; }
835 if ($attributes["mobile"]){ $mod["mobile"][0]=$attributes["mobile"]; }
836 if ($attributes["pager"]){ $mod["pager"][0]=$attributes["pager"]; }
837 if ($attributes["ipphone"]){ $mod["ipphone"][0]=$attributes["ipphone"]; }
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ppapi/shared_impl/
H A Dmedia_stream_video_track_shared_unittest.cc21 attributes.buffers = 0; in TEST()
24 attributes.buffers = 8; in TEST()
27 attributes.buffers = 1024; in TEST()
30 attributes.buffers = -1; in TEST()
47 attributes.format = in TEST()
55 attributes.width = 1024; in TEST()
58 attributes.width = 1025; in TEST()
64 attributes.width = -1; in TEST()
67 attributes.width = -4; in TEST()
86 attributes.height = -1; in TEST()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ppapi/shared_impl/
H A Dmedia_stream_video_track_shared_unittest.cc21 attributes.buffers = 0; in TEST()
24 attributes.buffers = 8; in TEST()
27 attributes.buffers = 1024; in TEST()
30 attributes.buffers = -1; in TEST()
47 attributes.format = in TEST()
55 attributes.width = 1024; in TEST()
58 attributes.width = 1025; in TEST()
64 attributes.width = -1; in TEST()
67 attributes.width = -4; in TEST()
86 attributes.height = -1; in TEST()
[all …]
/dports/deskutils/egroupware/egroupware/vendor/adldap2/adldap2/src/
H A DadLDAP.php892 if ($attributes['company']) {
907 if ($attributes['email']) {
910 if ($attributes['expires']) {
928 if ($attributes['manager']) {
931 if ($attributes['office']) {
943 if ($attributes['surname']) {
946 if ($attributes['title']) {
952 if ($attributes['mobile']) {
955 if ($attributes['pager']) {
958 if ($attributes['ipphone']) {
[all …]

12345678910>>...493