OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strc
(Results
1 - 3
of
3
) sorted by null
/external/pdfium/core/fxcrt/
fx_string.cpp
87
bool FX_atonum(const ByteStringView&
strc
, void* pData) {
88
if (
strc
.Contains('.')) {
90
*pFloat = FX_atof(
strc
);
103
if (
strc
[0] == '+') {
106
} else if (
strc
[0] == '-') {
112
while (cc <
strc
.GetLength() && std::isdigit(
strc
[cc])) {
113
integer = integer * 10 + FXSYS_DecimalCharToInt(
strc
.CharAt(cc));
144
float FX_atof(const ByteStringView&
strc
) {
145
if (
strc
.IsEmpty()
[
all
...]
/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/
PVRShellOS.cpp
513
wchar_t
strc
[1024];
local
516
for(i = 0; (str[i] != '\0') && (i < (sizeof(
strc
) / sizeof(*
strc
))); ++i)
518
strc
[i] = (wchar_t)str[i];
521
strc
[i] = '\0';
523
OutputDebugString(
strc
);
/art/openjdkjvmti/
ti_thread.cc
175
art::ScopedThreadStateChange
strc
(self, art::kNative);
[
all
...]
Completed in 603 milliseconds