Home
last modified time | relevance | path

Searched refs:postFix (Results 1 – 25 of 153) sorted by relevance

1234567

/dports/www/owncloud/owncloud/lib/private/
H A DTempManager.php66 private function buildFileNameWithSuffix($absolutePath, $postFix = '') { argument
67 if ($postFix !== '') {
68 $postFix = '.' . \ltrim($postFix, '.');
69 $postFix = \str_replace(['\\', '/'], '', $postFix);
73 return $absolutePath . $postFix;
79 * @param string $postFix Postfix appended to the temporary file name
82 public function getTemporaryFile($postFix = '') { argument
93 if ($postFix !== '') {
94 $fileNameWithPostfix = $this->buildFileNameWithSuffix($file, $postFix);
116 * @param string $postFix Postfix appended to the temporary folder name
[all …]
/dports/www/nextcloud/nextcloud/lib/private/
H A DTempManager.php69 private function buildFileNameWithSuffix($absolutePath, $postFix = '') { argument
70 if ($postFix !== '') {
71 $postFix = '.' . ltrim($postFix, '.');
72 $postFix = str_replace(['\\', '/'], '', $postFix);
76 return $absolutePath . $postFix;
82 * @param string $postFix Postfix appended to the temporary file name
85 public function getTemporaryFile($postFix = '') { argument
96 if ($postFix !== '') {
97 $fileNameWithPostfix = $this->buildFileNameWithSuffix($file, $postFix);
119 * @param string $postFix Postfix appended to the temporary folder name
[all …]
/dports/devel/raylib/raylib-3.7.0/src/
H A Deasings.h157 float postFix = t/=d; in EaseBackIn() local
158 return (c*(postFix)*t*((s + 1.0f)*t - s) + b); in EaseBackIn()
177 float postFix = t-=2.0f; in EaseBackInOut() local
191 float postFix = t-=(1.5f/2.75f); in EaseBounceOut() local
192 return (c*(7.5625f*(postFix)*t + 0.75f) + b); in EaseBounceOut()
196 float postFix = t-=(2.25f/2.75f); in EaseBounceOut() local
197 return (c*(7.5625f*(postFix)*t + 0.9375f) + b); in EaseBounceOut()
201 float postFix = t-=(2.625f/2.75f); in EaseBounceOut() local
222 float postFix = a*powf(2.0f, 10.0f*(t-=1.0f)); in EaseElasticIn() local
250 float postFix = a*powf(2.0f, 10.0f*(t-=1.0f)); in EaseElasticInOut() local
[all …]
/dports/devel/raylib/raylib-3.7.0/examples/shapes/
H A Deasings.h157 float postFix = t/=d; in EaseBackIn() local
158 return (c*(postFix)*t*((s + 1)*t - s) + b); in EaseBackIn()
177 float postFix = t-=2; in EaseBackInOut() local
191 float postFix = t-=(1.5f/2.75f); in EaseBounceOut() local
192 return (c*(7.5625f*(postFix)*t + 0.75f) + b); in EaseBounceOut()
196 float postFix = t-=(2.25f/2.75f); in EaseBounceOut() local
201 float postFix = t-=(2.625f/2.75f); in EaseBounceOut() local
222 float postFix = a*pow(2, 10*(t-=1)); in EaseElasticIn() local
224 return (-(postFix*sin((t*d-s)*(2*PI)/p )) + b); in EaseElasticIn()
250 float postFix = a*pow(2, 10*(t-=1)); in EaseElasticInOut() local
[all …]
/dports/devel/raylib/raylib-3.7.0/examples/others/
H A Deasings.h157 float postFix = t/=d; in EaseBackIn() local
158 return (c*(postFix)*t*((s + 1.0f)*t - s) + b); in EaseBackIn()
177 float postFix = t-=2.0f; in EaseBackInOut() local
191 float postFix = t-=(1.5f/2.75f); in EaseBounceOut() local
192 return (c*(7.5625f*(postFix)*t + 0.75f) + b); in EaseBounceOut()
196 float postFix = t-=(2.25f/2.75f); in EaseBounceOut() local
197 return (c*(7.5625f*(postFix)*t + 0.9375f) + b); in EaseBounceOut()
201 float postFix = t-=(2.625f/2.75f); in EaseBounceOut() local
222 float postFix = a*powf(2.0f, 10.0f*(t-=1.0f)); in EaseElasticIn() local
250 float postFix = a*powf(2.0f, 10.0f*(t-=1.0f)); in EaseElasticInOut() local
[all …]
/dports/www/owncloud/owncloud/lib/public/
H A DITempManager.php36 * @param string $postFix
40 public function getTemporaryFile($postFix = ''); argument
45 * @param string $postFix
49 public function getTemporaryFolder($postFix = ''); argument
/dports/www/nextcloud/nextcloud/lib/public/
H A DITempManager.php35 * @param string $postFix
39 public function getTemporaryFile($postFix = ''); argument
44 * @param string $postFix
48 public function getTemporaryFolder($postFix = ''); argument
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java253 public void print(RecordedObject struct, String postFix) { in print() argument
261 println("}" + postFix); in print()
284 println("N/A" + postFix); in printValue()
289 printThread((RecordedThread) value, postFix); in printValue()
293 printClass((RecordedClass) value, postFix); in printValue()
303 printJavaFrame((RecordedFrame) value, postFix); in printValue()
311 print((RecordedObject) value, postFix); in printValue()
373 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
379 print(postFix); in printJavaFrame()
400 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java261 public void print(RecordedObject struct, String postFix) { in print() argument
269 println("}" + postFix); in print()
292 println("N/A" + postFix); in printValue()
297 printThread((RecordedThread) value, postFix); in printValue()
301 printClass((RecordedClass) value, postFix); in printValue()
311 printJavaFrame((RecordedFrame) value, postFix); in printValue()
323 print((RecordedObject) value, postFix); in printValue()
449 println(postFix); in printClassLoader()
452 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
458 print(postFix); in printJavaFrame()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java261 public void print(RecordedObject struct, String postFix) { in print() argument
269 println("}" + postFix); in print()
292 println("N/A" + postFix); in printValue()
297 printThread(rt, postFix); in printValue()
301 printClass(rc, postFix); in printValue()
305 printClassLoader(rcl, postFix); in printValue()
322 print((RecordedObject) value, postFix); in printValue()
444 println(postFix); in printClassLoader()
447 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
453 print(postFix); in printJavaFrame()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java259 public void print(RecordedObject struct, String postFix) { in print() argument
267 println("}" + postFix); in print()
290 println("N/A" + postFix); in printValue()
295 printThread((RecordedThread) value, postFix); in printValue()
299 printClass((RecordedClass) value, postFix); in printValue()
309 printJavaFrame((RecordedFrame) value, postFix); in printValue()
321 print((RecordedObject) value, postFix); in printValue()
445 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
451 print(postFix); in printJavaFrame()
472 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java259 public void print(RecordedObject struct, String postFix) { in print() argument
267 println("}" + postFix); in print()
290 println("N/A" + postFix); in printValue()
295 printThread((RecordedThread) value, postFix); in printValue()
299 printClass((RecordedClass) value, postFix); in printValue()
309 printJavaFrame((RecordedFrame) value, postFix); in printValue()
321 print((RecordedObject) value, postFix); in printValue()
447 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
453 print(postFix); in printJavaFrame()
474 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java256 public void print(RecordedObject struct, String postFix) { in print() argument
264 println("}" + postFix); in print()
287 println("N/A" + postFix); in printValue()
292 printThread((RecordedThread) value, postFix); in printValue()
296 printClass((RecordedClass) value, postFix); in printValue()
306 printJavaFrame((RecordedFrame) value, postFix); in printValue()
318 print((RecordedObject) value, postFix); in printValue()
444 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
450 print(postFix); in printJavaFrame()
471 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java261 public void print(RecordedObject struct, String postFix) { in print() argument
269 println("}" + postFix); in print()
292 println("N/A" + postFix); in printValue()
297 printThread((RecordedThread) value, postFix); in printValue()
301 printClass((RecordedClass) value, postFix); in printValue()
311 printJavaFrame((RecordedFrame) value, postFix); in printValue()
323 print((RecordedObject) value, postFix); in printValue()
449 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
455 print(postFix); in printJavaFrame()
476 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java259 public void print(RecordedObject struct, String postFix) { in print() argument
267 println("}" + postFix); in print()
290 println("N/A" + postFix); in printValue()
295 printThread((RecordedThread) value, postFix); in printValue()
299 printClass((RecordedClass) value, postFix); in printValue()
309 printJavaFrame((RecordedFrame) value, postFix); in printValue()
321 print((RecordedObject) value, postFix); in printValue()
445 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
451 print(postFix); in printJavaFrame()
472 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.jfr/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java256 public void print(RecordedObject struct, String postFix) { in print() argument
264 println("}" + postFix); in print()
287 println("N/A" + postFix); in printValue()
292 printThread((RecordedThread) value, postFix); in printValue()
296 printClass((RecordedClass) value, postFix); in printValue()
306 printJavaFrame((RecordedFrame) value, postFix); in printValue()
318 print((RecordedObject) value, postFix); in printValue()
444 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
450 print(postFix); in printJavaFrame()
471 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/graphics/tweeny/tweeny-3-6-g1c2eb4e/include/
H A Deasing.h492 float postFix = position -= (1.5f / 2.75f);
493 return static_cast<T>(c * (7.5625f * (postFix) * position + .75f) + start);
495 float postFix = position -= (2.25f / 2.75f);
498 float postFix = position -= (2.625f / 2.75f);
528 float postFix =
563 float postFix;
566 postFix = a * powf(2, 10 * (position -= 1)); // postIncrement is evil
569 postFix = a * powf(2, -10 * (position -= 1)); // postIncrement is evil
582 float postFix = position;
614 float postFix = t -= 2;
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/jdk/jfr/internal/tool/
H A DPrettyWriter.java256 public void print(RecordedObject struct, String postFix) { in print() argument
264 println("}" + postFix); in print()
287 println("N/A" + postFix); in printValue()
292 printThread((RecordedThread) value, postFix); in printValue()
296 printClass((RecordedClass) value, postFix); in printValue()
306 printJavaFrame((RecordedFrame) value, postFix); in printValue()
318 print((RecordedObject) value, postFix); in printValue()
444 private void printJavaFrame(RecordedFrame f, String postFix) { in printJavaFrame() argument
450 print(postFix); in printJavaFrame()
471 private void printClass(RecordedClass clazz, String postFix) { in printClass() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/test/android/javatests/src/org/chromium/base/test/params/
H A DParameterizedFrameworkMethod.java27 String postFix = ""; in ParameterizedFrameworkMethod() local
29 postFix += "_" + classParameterSetName; in ParameterizedFrameworkMethod()
32 postFix += "_" + parameterSet.getName(); in ParameterizedFrameworkMethod()
34 mName = postFix.isEmpty() ? method.getName() : method.getName() + "_" + postFix; in ParameterizedFrameworkMethod()
/dports/devel/godot/godot-3.2.3-stable/thirdparty/misc/
H A Deasing_equations.cpp155 return -(postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in()
176 return -0.5f * (postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in_out()
243 float postFix = t -= (1.5f / 2.75f); in out() local
244 return c * (7.5625f * (postFix)*t + .75f) + b; in out()
246 float postFix = t -= (2.25f / 2.75f); in out() local
247 return c * (7.5625f * (postFix)*t + .9375f) + b; in out()
249 float postFix = t -= (2.625f / 2.75f); in out() local
250 return c * (7.5625f * (postFix)*t + .984375f) + b; in out()
268 float postFix = t /= d; in in() local
269 return c * (postFix)*t * ((s + 1) * t - s) + b; in in()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/misc/
H A Deasing_equations.cpp155 return -(postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in()
176 return -0.5f * (postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in_out()
243 float postFix = t -= (1.5f / 2.75f); in out() local
244 return c * (7.5625f * (postFix)*t + .75f) + b; in out()
246 float postFix = t -= (2.25f / 2.75f); in out() local
247 return c * (7.5625f * (postFix)*t + .9375f) + b; in out()
249 float postFix = t -= (2.625f / 2.75f); in out() local
250 return c * (7.5625f * (postFix)*t + .984375f) + b; in out()
268 float postFix = t /= d; in in() local
269 return c * (postFix)*t * ((s + 1) * t - s) + b; in in()
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/animation/
H A Dtween_interpolaters.cpp178 return -(postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in()
199 return -0.5f * (postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in_out()
266 float postFix = t -= (1.5f / 2.75f); in out() local
267 return c * (7.5625f * (postFix)*t + .75f) + b; in out()
269 float postFix = t -= (2.25f / 2.75f); in out() local
270 return c * (7.5625f * (postFix)*t + .9375f) + b; in out()
272 float postFix = t -= (2.625f / 2.75f); in out() local
273 return c * (7.5625f * (postFix)*t + .984375f) + b; in out()
291 float postFix = t /= d; in in() local
292 return c * (postFix)*t * ((s + 1) * t - s) + b; in in()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/scene/animation/
H A Dtween_interpolaters.cpp178 return -(postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in()
199 return -0.5f * (postFix * sin((t * d - s) * (2 * pi) / p)) + b; in in_out()
266 float postFix = t -= (1.5f / 2.75f); in out() local
267 return c * (7.5625f * (postFix)*t + .75f) + b; in out()
269 float postFix = t -= (2.25f / 2.75f); in out() local
270 return c * (7.5625f * (postFix)*t + .9375f) + b; in out()
272 float postFix = t -= (2.625f / 2.75f); in out() local
273 return c * (7.5625f * (postFix)*t + .984375f) + b; in out()
291 float postFix = t /= d; in in() local
292 return c * (postFix)*t * ((s + 1) * t - s) + b; in in()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/utils/
H A Dsettingsutils.h36 void fromSettings(const QString &postFix, in fromSettings() argument
46 QString group = postFix; in fromSettings()
54 void toSettings(const QString &postFix, in toSettings() argument
59 QString group = postFix; in toSettings()
/dports/devel/liteide/liteide-x37.4/liteidex/src/3rdparty/qtc_texteditor/utils/
H A Dsettingsutils.h45 void fromSettings(const QString &postFix, in fromSettings() argument
55 QString group = postFix; in fromSettings()
63 void toSettings(const QString &postFix, in toSettings() argument
68 QString group = postFix; in toSettings()

1234567