Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
fx_system.cpp File Reference

(e4657a741c23c8f48e0e97ae2091dc2d99f4f27d)

#include "core/fxcrt/fx_system.h"
#include <math.h>
#include <limits>
#include "build/build_config.h"
#include "core/fxcrt/compiler_specific.h"
#include "core/fxcrt/fx_extension.h"
Include dependency graph for fx_system.cpp:

Go to the source code of this file.

Functions

int FXSYS_roundf (float f)
int FXSYS_round (double d)
int32_t FXSYS_atoi (const char *str)
uint32_t FXSYS_atoui (const char *str)
int32_t FXSYS_wtoi (const wchar_t *str)
int64_t FXSYS_atoi64 (const char *str)
const char * FXSYS_i64toa (int64_t value, char *str, int radix)
char * FXSYS_strlwr (char *str)
char * FXSYS_strupr (char *str)
wchar_t * FXSYS_wcslwr (wchar_t *str)
wchar_t * FXSYS_wcsupr (wchar_t *str)
int FXSYS_stricmp (const char *str1, const char *str2)
int FXSYS_wcsicmp (const wchar_t *str1, const wchar_t *str2)
char * FXSYS_itoa (int value, char *str, int radix)
void FXSYS_SetLastError (uint32_t err)
uint32_t FXSYS_GetLastError ()
float FXSYS_sqrt2 (float a, float b)

Function Documentation

◆ FXSYS_atoi()

int32_t FXSYS_atoi ( const char * str)

Definition at line 120 of file fx_system.cpp.

◆ FXSYS_atoi64()

int64_t FXSYS_atoi64 ( const char * str)

Definition at line 129 of file fx_system.cpp.

◆ FXSYS_atoui()

uint32_t FXSYS_atoui ( const char * str)

Definition at line 123 of file fx_system.cpp.

◆ FXSYS_GetLastError()

uint32_t FXSYS_GetLastError ( )

Definition at line 254 of file fx_system.cpp.

Referenced by FPDF_GetLastError().

Here is the caller graph for this function:

◆ FXSYS_i64toa()

const char * FXSYS_i64toa ( int64_t value,
char * str,
int radix )

Definition at line 132 of file fx_system.cpp.

Referenced by IFX_WriteStream::WriteFilesize().

Here is the caller graph for this function:

◆ FXSYS_itoa()

char * FXSYS_itoa ( int value,
char * str,
int radix )

Definition at line 246 of file fx_system.cpp.

Referenced by TEST(), TEST(), TEST(), and IFX_WriteStream::WriteDWord().

Here is the caller graph for this function:

◆ FXSYS_round()

int FXSYS_round ( double d)

Definition at line 110 of file fx_system.cpp.

Referenced by CStretchEngine::FixedFromDouble().

Here is the caller graph for this function:

◆ FXSYS_roundf()

◆ FXSYS_SetLastError()

void FXSYS_SetLastError ( uint32_t err)

Definition at line 250 of file fx_system.cpp.

Referenced by ProcessParseError().

Here is the caller graph for this function:

◆ FXSYS_sqrt2()

float FXSYS_sqrt2 ( float a,
float b )

Definition at line 259 of file fx_system.cpp.

◆ FXSYS_stricmp()

int FXSYS_stricmp ( const char * str1,
const char * str2 )

Definition at line 214 of file fx_system.cpp.

Referenced by CFX_FontMapper::GetStandardFontName().

Here is the caller graph for this function:

◆ FXSYS_strlwr()

char * FXSYS_strlwr ( char * str)

Definition at line 166 of file fx_system.cpp.

◆ FXSYS_strupr()

char * FXSYS_strupr ( char * str)

Definition at line 178 of file fx_system.cpp.

◆ FXSYS_wcsicmp()

int FXSYS_wcsicmp ( const wchar_t * str1,
const wchar_t * str2 )

Definition at line 230 of file fx_system.cpp.

References FXSYS_towupper().

Here is the call graph for this function:

◆ FXSYS_wcslwr()

wchar_t * FXSYS_wcslwr ( wchar_t * str)

Definition at line 190 of file fx_system.cpp.

References FXSYS_towlower().

Here is the call graph for this function:

◆ FXSYS_wcsupr()

wchar_t * FXSYS_wcsupr ( wchar_t * str)

Definition at line 202 of file fx_system.cpp.

References FXSYS_towupper().

Here is the call graph for this function:

◆ FXSYS_wtoi()

int32_t FXSYS_wtoi ( const wchar_t * str)

Definition at line 126 of file fx_system.cpp.