OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:str_end
(Results
1 - 9
of
9
) sorted by relevancy
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
link_uniforms.cpp
851
const char *
str_end
;
853
(
str_end
= strchr(name_copy, ']'))) {
854
memmove(str_start,
str_end
+ 1, 1 + strlen(
str_end
+ 1));
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
link_uniforms.cpp
622
const char *
str_end
;
624
(
str_end
= strchr(name_copy, ']'))) {
625
memmove(str_start,
str_end
+ 1, 1 + strlen(
str_end
+ 1));
/xsrc/external/mit/MesaLib/dist/src/imgui/
imgui_internal.h
177
IMGUI_API const char* ImStrchrRange(const char* str_begin, const char*
str_end
, char c);
179
IMGUI_API const char* ImStreolRange(const char* str, const char*
str_end
); // End end-of-line
1214
ImGuiID GetID(const char* str, const char*
str_end
= NULL);
1216
ImGuiID GetIDNoKeepAlive(const char* str, const char*
str_end
= NULL);
imgui.cpp
1325
const char* ImStrchrRange(const char* str, const char*
str_end
, char c)
1327
const char* p = (const char*)memchr(str, (int)c,
str_end
- str);
1339
// Find end-of-line. Return pointer will point to either first \n, either
str_end
.
1340
const char* ImStreolRange(const char* str, const char*
str_end
)
1342
const char* p = (const char*)memchr(str, '\n',
str_end
- str);
1343
return p ? p :
str_end
;
2128
void ImGuiTextBuffer::append(const char* str, const char*
str_end
)
2130
int len =
str_end
? (int)(
str_end
- str) : (int)strlen(str);
2566
ImGuiID ImGuiWindow::GetID(const char* str, const char*
str_end
)
[
all
...]
imgui.h
1594
IMGUI_API void append(const char* str, const char*
str_end
= NULL);
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
imgui_internal.h
177
IMGUI_API const char* ImStrchrRange(const char* str_begin, const char*
str_end
, char c);
179
IMGUI_API const char* ImStreolRange(const char* str, const char*
str_end
); // End end-of-line
1214
ImGuiID GetID(const char* str, const char*
str_end
= NULL);
1216
ImGuiID GetIDNoKeepAlive(const char* str, const char*
str_end
= NULL);
imgui_demo.cpp
3151
static void Strtrim(char* str) { char*
str_end
= str + strlen(str); while (
str_end
> str &&
str_end
[-1] == ' ')
str_end
--; *
str_end
= 0; }
local
imgui.cpp
1325
const char* ImStrchrRange(const char* str, const char*
str_end
, char c)
1327
const char* p = (const char*)memchr(str, (int)c,
str_end
- str);
1339
// Find end-of-line. Return pointer will point to either first \n, either
str_end
.
1340
const char* ImStreolRange(const char* str, const char*
str_end
)
1342
const char* p = (const char*)memchr(str, '\n',
str_end
- str);
1343
return p ? p :
str_end
;
2128
void ImGuiTextBuffer::append(const char* str, const char*
str_end
)
2130
int len =
str_end
? (int)(
str_end
- str) : (int)strlen(str);
2566
ImGuiID ImGuiWindow::GetID(const char* str, const char*
str_end
)
[
all
...]
imgui.h
1594
IMGUI_API void append(const char* str, const char*
str_end
= NULL);
Completed in 32 milliseconds
Indexes created Sun Jul 05 00:25:41 UTC 2026