OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TString
(Results
1 - 2
of
2
) sorted by null
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
TString.java
8
public final class
TString
extends Token
10
public
TString
(String text)
15
public
TString
(String text, int line, int pos)
25
return new
TString
(getText(), getLine(), getPos());
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Common.h
53
typedef std::basic_string <char, std::char_traits<char>, TStringAllocator>
TString
;
55
inline
TString
* NewPoolTString(const char* s)
57
void* memory = GlobalPoolAllocator.allocate(sizeof(
TString
));
58
return new(memory)
TString
(s);
Completed in 128 milliseconds