OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_tokenStart
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/opengl/
gluVarTypeUtil.cpp
36
,
m_tokenStart
(0)
55
m_tokenStart
+= m_tokenLen;
59
if (m_str[
m_tokenStart
] == '[')
61
else if (m_str[
m_tokenStart
] == ']')
63
else if (m_str[
m_tokenStart
] == 0)
65
else if (m_str[
m_tokenStart
] == '.')
67
else if (isNum(m_str[
m_tokenStart
]))
70
while (isNum(m_str[
m_tokenStart
+m_tokenLen]))
73
else if (isIdentifierChar(m_str[
m_tokenStart
]))
76
while (isIdentifierChar(m_str[
m_tokenStart
+m_tokenLen])
[
all
...]
gluVarTypeUtil.hpp
57
std::string getIdentifier (void) const { return std::string(m_str+
m_tokenStart
, m_str+
m_tokenStart
+m_tokenLen); }
59
int getCurrentTokenStartLocation (void) const { return
m_tokenStart
; }
60
int getCurrentTokenEndLocation (void) const { return
m_tokenStart
+ m_tokenLen; }
67
int
m_tokenStart
;
Completed in 564 milliseconds