Home
last modified time | relevance | path

Searched refs:offset_string (Results 1 – 25 of 56) sorted by relevance

123

/dports/www/phpbb3/phpBB3/phpbb/feed/
H A Dhelper.php95 static $offset_string;
97 if (empty($offset_string))
100 $offset_string = phpbb_format_timezone_offset($zone_offset);
103 return gmdate("Y-m-d\TH:i:s", $time + $zone_offset) . $offset_string;
/dports/java/sablevm-classpath/sablevm-classpath-1.13/vm/reference/java/util/
H A DVMTimeZone.java288 String offset_string; in readtzFile() local
293 offset_string = ""; in readtzFile()
295 offset_string = Integer.toString(gmt_offset); in readtzFile()
297 String id = zonename + offset_string + dst_zonename; in readtzFile()
/dports/x11-wm/compiz-plugins-main/compiz-plugins-main-0.8.8/src/colorfilter/
H A Dparser.c238 char *offset_string; in programAddOffsetFromAddOp() local
266 offset_string = strdup (ltrim (op)); in programAddOffsetFromAddOp()
267 if (!offset_string) in programAddOffsetFromAddOp()
277 free (offset_string); in programAddOffsetFromAddOp()
284 offset->offset = strdup (offset_string); in programAddOffsetFromAddOp()
287 free (offset_string); in programAddOffsetFromAddOp()
/dports/science/gnudatalanguage/gdl-1.0.1/src/
H A Dbasic_fun_cl.cpp177 string offset_string; in timestamptovalues() local
179 offset_string = "+00:00"; in timestamptovalues()
181 offset_string = timestamp.substr(timestamp.length()-6,7); in timestamptovalues()
183 offset[i] = stod(offset_string.substr(0,3)) + stod(offset_string.substr(4,2))/60; in timestamptovalues()
283 string offset_string; in timestamptovalues() local
285 offset_string = "+00:00"; in timestamptovalues()
287 offset_string = timestamp.substr(timestamp.length()-6,7); in timestamptovalues()
289 offset = stod(offset_string.substr(0,3)) + stod(offset_string.substr(4,2))/60; in timestamptovalues()
/dports/mail/fetchmail/fetchmail-6.4.28/
H A Denv.c245 static char offset_string[6]; in tzoffset() local
267 snprintf(offset_string, sizeof(offset_string), in tzoffset()
269 return (offset_string); in tzoffset()
/dports/mail/fetchmailconf/fetchmail-6.4.28/
H A Denv.c245 static char offset_string[6]; in tzoffset() local
267 snprintf(offset_string, sizeof(offset_string), in tzoffset()
269 return (offset_string); in tzoffset()
/dports/devel/py-strict-rfc3339/strict-rfc3339-0.7/
H A Dstrict_rfc3339.py174 offset_string = "{0:02d}:{1:02d}".format(offset_hours, offset_minutes)
181 datestring += offset_string
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/
H A Dstrict_rfc3339.py174 offset_string = "{0:02d}:{1:02d}".format(offset_hours, offset_minutes)
181 datestring += offset_string
/dports/devel/py-ciso8601/ciso8601-2.2.0/tests/
H A Dtests.py326 for offset_string, offset_minutes in invalid_offsets:
340 "2018-01-01T00:00:00.00{0}".format(offset_string),
/dports/chinese/phpbb3-tw/phpBB3/
H A Dfeed.php252 static $offset_string;
254 if (empty($offset_string))
267 $offset_string = sprintf("%s%02d:%02d", $sign, $offset_hours, $offset_minutes);
270 return gmdate("Y-m-d\TH:i:s", $time + $zone_offset) . $offset_string;
/dports/net/py-python-heatclient/python-heatclient-2.4.0/heatclient/tests/unit/
H A Dtest_stacks.py304 offset_string = 'marker=abcd1234-%s' % offset
305 self.assertIn(offset_string, arg_url)
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/
H A Dcolorbar.py378 ticks, ticklabels, offset_string = self._ticker()
382 ax.yaxis.get_major_formatter().set_offset_string(offset_string)
387 ax.xaxis.get_major_formatter().set_offset_string(offset_string)
633 offset_string = formatter.get_offset()
634 return ticks, ticklabels, offset_string
H A Dticker.py356 self.offset_string = ''
373 return self.offset_string
376 self.offset_string = ofs
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/matplotlib/
H A Ddates.py777 self.offset_string = ''
853 self.offset_string = tickdatetime[-1].strftime(offsetfmts[level])
855 self.offset_string = _wrap_in_tex(self.offset_string)
863 return self.offset_string
H A Dcolorbar.py670 ticks, ticklabels, offset_string = self._ticker(locator, formatter)
673 long_axis.get_major_formatter().set_offset_string(offset_string)
890 offset_string = formatter.get_offset()
891 return ticks, ticklabels, offset_string
H A Dticker.py358 self.offset_string = ''
374 return self.offset_string
377 self.offset_string = ofs
391 self.offset_string = ""
402 return self.offset_string
405 self.offset_string = ofs
/dports/ftp/wget/wget-1.21.2/src/
H A Dwarc.c1385 char offset_string[MAX_INT_TO_STRING_LEN(off_t)]; in warc_write_cdx_record() local
1410 number_to_string (offset_string, offset); in warc_write_cdx_record()
1415 tmp_location, offset_string, warc_current_filename, in warc_write_cdx_record()
/dports/www/phpbb3/phpBB3/includes/
H A Dfunctions.php335 $offset_string = sprintf("%s%02d:%02d", $sign, $offset_hours, $offset_minutes);
336 return $offset_string;
449 $offset_string = phpbb_format_timezone_offset($offset, true);
450 $timezones['UTC' . $offset_string . ' - ' . $timezone] = array(
452 'offset' => $offset_string,
457 $default_offset = 'UTC' . $offset_string;
/dports/devel/liblas/libLAS-1.8.1/apps/
H A Dlaskernel.cpp870 std::string offset_string = vm["offset"].as< string >(); in GetTransforms() local
872 std::cout << "Setting offsets to: " << offset_string << std::endl; in GetTransforms()
875 tokenizer tokens(offset_string, sep); in GetTransforms()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/svg/animation/
H A Dsvg_smil_element.cc417 String offset_string = parse_string.Substring(pos + 1).StripWhiteSpace(); in ParseCondition() local
418 offset = ParseOffsetValue(offset_string); in ParseCondition()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/svg/animation/
H A Dsvg_smil_element.cc420 String offset_string = parse_string.Substring(pos + 1).StripWhiteSpace(); in ParseCondition() local
421 offset = ParseOffsetValue(offset_string); in ParseCondition()
/dports/emulators/yuzu/yuzu-0b47f7a46/src/video_core/renderer_opengl/
H A Dgl_arb_decompiler.cpp1361 std::string offset_string; in Visit() local
1364 offset_string = std::to_string(imm->GetValue()); in Visit()
1366 offset_string = Visit(offset); in Visit()
1369 AddLine("LDC.F32 {}, cbuf{}[{}];", temporary, cbuf->GetIndex(), offset_string); in Visit()
/dports/devel/radare2/radare2-5.1.1/libr/core/
H A Dcmd.c5647 char *offset_string = ts_node_handle_arg (state, node, offset, 1); in DEFINE_HANDLE_TS_FCN_AND_SYMBOL() local
5648 ut64 offset_val = r_num_math (state->core->num, offset_string); in DEFINE_HANDLE_TS_FCN_AND_SYMBOL()
5650 if (!offset_val && isalpha ((int)offset_string[0])) { in DEFINE_HANDLE_TS_FCN_AND_SYMBOL()
5651 if (!r_flag_get (state->core->flags, offset_string)) { in DEFINE_HANDLE_TS_FCN_AND_SYMBOL()
5652 eprintf ("Invalid address (%s)\n", offset_string); in DEFINE_HANDLE_TS_FCN_AND_SYMBOL()
5653 free (offset_string); in DEFINE_HANDLE_TS_FCN_AND_SYMBOL()
5657 if (offset_string[0] == '-' || offset_string[0] == '+') { in DEFINE_HANDLE_TS_FCN_AND_SYMBOL()
5664 free (offset_string); in DEFINE_HANDLE_TS_FCN_AND_SYMBOL()
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/src/
H A Dworksheet.c9606 char *offset_string; in worksheet_set_header_opt() local
9629 offset_string = found_string + sizeof("Picture"); in worksheet_set_header_opt()
9630 *found_string = *offset_string; in worksheet_set_header_opt()
9631 } while (*offset_string); in worksheet_set_header_opt()
9724 char *offset_string; in worksheet_set_footer_opt() local
9747 offset_string = found_string + sizeof("Picture"); in worksheet_set_footer_opt()
9748 *found_string = *offset_string; in worksheet_set_footer_opt()
9749 } while (*offset_string); in worksheet_set_footer_opt()
/dports/converters/p5-Storable-AMF/Storable-AMF-1.00/
H A DAMF.xs168 int offset_string; member
226 p->offset_string = av_len(io->arr_string); in io_savepoint()
238 while(av_len(io->arr_string) > p->offset_string){ in io_restorepoint()

123