Home
last modified time | relevance | path

Searched refs:sub (Results 1 – 25 of 447) sorted by relevance

12345678910>>...18

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
DIndic.php1771 $sub = [];
1778 $sub[0] = 0x9c7;
1779 $sub[1] = 0x9be;
1780 return $sub;
1782 $sub[0] = 0x9c7;
1783 $sub[1] = 0x9d7;
1784 return $sub;
1787 $sub[0] = 0xb47;
1788 $sub[1] = 0xb56;
1789 return $sub;
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/
H A DSubscriptionTest.php47 $sub->getProperties(['{DAV:}displayname', '{http://calendarserver.org/ns/}source'])
50 $this->assertEquals('principals/user1', $sub->getOwner());
51 $this->assertNull($sub->getGroup());
80 $this->assertEquals($acl, $sub->getACL());
82 $this->assertNull($sub->getSupportedPrivilegeSet());
88 $sub = $this->getSub([
92 $this->assertEquals(null, $sub->getLastModified());
101 $sub = $this->getSub();
102 $sub->setACL([]);
108 $sub = $this->getSub();
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
DComponentTest.php14 $sub = $comp->createComponent('VEVENT');
15 $comp->add($sub);
17 $sub = $comp->createComponent('VTODO');
18 $comp->add($sub);
36 $sub = $comp->createComponent('VEVENT');
37 $comp->add($sub);
39 $sub = $comp->createComponent('VTODO');
40 $comp->add($sub);
54 $sub = $comp->createProperty('GROUP1.EMAIL', '1@1.com');
55 $comp->add($sub);
[all …]
DElementListTest.php10 $sub = $cal->createComponent('VEVENT');
13 $sub,
14 clone $sub,
15 clone $sub
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
DComponentTest.php15 $sub = $comp->createComponent('VEVENT');
16 $comp->add($sub);
18 $sub = $comp->createComponent('VTODO');
19 $comp->add($sub);
37 $sub = $comp->createComponent('VEVENT');
38 $comp->add($sub);
40 $sub = $comp->createComponent('VTODO');
41 $comp->add($sub);
55 $sub = $comp->createProperty('GROUP1.EMAIL','1@1.com');
56 $comp->add($sub);
[all …]
DElementListTest.php10 $sub = $cal->createComponent('VEVENT');
13 $sub,
14 clone $sub,
15 clone $sub
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
DComponentTest.php15 $sub = $comp->createComponent('VEVENT');
16 $comp->add($sub);
18 $sub = $comp->createComponent('VTODO');
19 $comp->add($sub);
37 $sub = $comp->createComponent('VEVENT');
38 $comp->add($sub);
40 $sub = $comp->createComponent('VTODO');
41 $comp->add($sub);
55 $sub = $comp->createProperty('GROUP1.EMAIL','1@1.com');
56 $comp->add($sub);
[all …]
DElementListTest.php10 $sub = $cal->createComponent('VEVENT');
13 $sub,
14 clone $sub,
15 clone $sub
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DComponentTest.php15 $sub = $comp->createComponent('VEVENT');
16 $comp->add($sub);
18 $sub = $comp->createComponent('VTODO');
19 $comp->add($sub);
37 $sub = $comp->createComponent('VEVENT');
38 $comp->add($sub);
40 $sub = $comp->createComponent('VTODO');
41 $comp->add($sub);
55 $sub = $comp->createProperty('GROUP1.EMAIL','1@1.com');
56 $comp->add($sub);
[all …]
H A DElementListTest.php10 $sub = $cal->createComponent('VEVENT');
13 $sub,
14 clone $sub,
15 clone $sub
/plugin/struct/_test/
H A DQueryBuilderWhereTest.php32 $sub = $where->whereSubAnd();
38 $sub->whereAnd('zab = zab');
44 $sub->whereOr('fab = fab');
62 $sub = $where->whereSubOr();
63 $sub->whereAnd('bar = bar');
64 $sub->whereAnd('baz = baz');
/plugin/improg/
Dsyntax.php167 while (FALSE !== ($sub = readdir($handler))) {
168 if ($sub !== "." && $sub !== "..") {
169 if(is_file($dir."/".$sub)) {
170 $x = strpos(basename($dir."/".$sub),".txt");
172 $listDir[] = $dir."/".$sub;
175 $listDir[] = $dir."/".$sub;
178 elseif(is_dir($dir."/".$sub)) {
179 $listDir[$sub] = $this->list_rec_files_in_array($dir."/".$sub, $delim,$excludes);
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
DSafeFN.class.php134 foreach ($split as $sub) {
135 if ($sub[0] != self::$pre_indicator) {
138 for ($i=($converted?1:0); $i < strlen($sub); $i++) {
139 $unicode[] = ord($sub[$i]);
142 } else if (strlen($sub)==1) {
144 $unicode[] = ord($sub);
148 $unicode[] = 32 + (int)base_convert(substr($sub,1),36,10);
/plugin/diagramsnet/lib/math/extensions/TeX/
Dmhchem.js19sub:"",presup:"",presub:"",Init:function(c){this.string=c},ParseTable:{"-":"Minus","+":"Plus","(":… property
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
DServiceAccountCredentials.php109 * @param string $sub an email address account to impersonate, in situations when
116 $sub = null, argument
156 'sub' => $sub,
214 if ($sub = $this->auth->getSub()) {
215 $key .= ':' . $sub;
301 * @param string $sub an email address account to impersonate, in situations when
305 public function setSub($sub) argument
307 $this->auth->setSub($sub);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSecurityToken/
DGoogleIdentityStsV1IntrospectTokenResponse.php52 public $sub; variable in Google\\Service\\CloudSecurityToken\\GoogleIdentityStsV1IntrospectTokenResponse
145 public function setSub($sub) argument
147 $this->sub = $sub;
154 return $this->sub;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMockSubscriptionSupport.php114 foreach($this->subs[$subscriptionId[0]] as &$sub) {
116 if ($sub['id'][1] === $subscriptionId[1]) {
117 $found =& $sub;
143 foreach($this->subs[$subscriptionId[0]] as $index=>$sub) {
145 if ($sub['id'][1] === $subscriptionId[1]) {
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
DSafeFN.class.php135 foreach ($split as $sub) {
136 $len = strlen($sub);
137 if ($sub[0] != self::$pre_indicator) {
141 $unicode[] = ord($sub[$i]);
146 $unicode[] = ord($sub);
150 $unicode[] = 32 + (int)base_convert(substr($sub,1),36,10);
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
DSafeFN.class.php135 foreach ($split as $sub) {
136 $len = strlen($sub);
137 if ($sub[0] != self::$pre_indicator) {
141 $unicode[] = ord($sub[$i]);
146 $unicode[] = ord($sub);
150 $unicode[] = 32 + (int)base_convert(substr($sub,1),36,10);
/plugin/orphanmedia2/
Dsyntax.php394 while (FALSE !== ($sub = readdir($handler))) {
395 if ($sub !== "." && $sub !== "..") {
396 if(is_file($dir."/".$sub)) {
398 $parts = explode(".", $sub);
406 if(stripos($sub,"thumbs.db")===false) $listDir[] = $dir."/".$sub;
412 $listDir[] = $dir."/".$sub;
416 elseif(is_dir($dir."/".$sub)) {
417 … $listDir[$sub] = $this->_get_allMediaFiles($dir."/".$sub, $defFileTypes);
435 while (FALSE !== ($sub = readdir($handler))) {
436 if ($sub !== "." && $sub !== "..") {
[all …]
/plugin/orphanmedia/
Dsyntax.php393 while (FALSE !== ($sub = readdir($handler))) {
394 if ($sub !== "." && $sub !== "..") {
395 if(is_file($dir."/".$sub)) {
397 $parts = explode(".", $sub);
405 if(stripos($sub,"thumbs.db")===false) $listDir[] = $dir."/".$sub;
411 $listDir[] = $dir."/".$sub;
415 elseif(is_dir($dir."/".$sub)) {
416 … $listDir[$sub] = $this->_get_allMediaFiles($dir."/".$sub, $defFileTypes);
434 while (FALSE !== ($sub = readdir($handler))) {
435 if ($sub !== "." && $sub !== "..") {
[all …]
/plugin/xcom/scripts/
DsafeFN_class.js69 var sub = split_array[i];
70 if (sub.charAt(0) != this.pre_indicator) { // i.e. sub.charAt(0) != '%'
72 for (j=start; j < sub.length; j++) {
73 unicode.push(sub.charCodeAt(j));
76 } else if (sub.length==1) {
77 unicode.push(sub.charCodeAt(0));
81 unicode.push(32 + this.changeSafeBase(sub.slice(1),36,10));
/plugin/versionswitch/
DVersion.php177 * @param string $sub The currently traversed sub directory
180 protected function readVersionDirs($dir = '', $sub = '') argument
183 $subns = utf8_decodeFN($sub);
187 $fh = @opendir($dir . '/' . $sub);
191 if (!is_dir($dir . '/' . $sub . '/' . $item)) continue;
202 … $versions = array_merge($versions, $this->readVersionDirs($dir, ltrim("$sub/$item", '/')));
/plugin/submgr/
Dhelper.php99 $sub = new SubscriberManager();
103 $sub->add($item, $user, $data[0]);
153 $sub = new SubscriberManager();
155 $sub->add($item, $user, $type);
172 $sub = new SubscriberManager();
174 $sub->remove($item, $user, $type);
/plugin/dev/
DLangProcessor.php76 * @param string $sub
79 protected function removeLangKey($file, $key, $sub = '') argument
83 if ($sub) {
84 $re = '/\$lang\[' . $q . $sub . $q . '\]\[' . $q . $key . $q . '\]/';
91 'key' => $sub ? "$sub.$key" : $key,

12345678910>>...18