ROOT
6.07/01
Reference Guide
|
Basic string class.
Cannot be stored in a TCollection... use TObjString instead.
The underlying string is stored as a char* that can be accessed via TString::Data(). TString provides Short String Optimization (SSO) so that short strings (<15 on 64-bit and <11 on 32-bit) are contained in the TString internal data structure without the need for mallocing the required space.
Substring operations are provided by the TSubString class, which holds a reference to the original string and its data, along with the offset and length of the substring. To retrieve the substring as a TString, construct a TString from it, eg:
Classes | |
struct | LongStr_t |
struct | RawStr_t |
struct | Rep_t |
struct | ShortStr_t |
union | UStr_t |
Public Types | |
enum | EStripType { kLeading = 0x1, kTrailing = 0x2, kBoth = 0x3 } |
enum | ECaseCompare { kExact, kIgnoreCase } |
Public Member Functions | |
TString () | |
TString default ctor. More... | |
TString (Ssiz_t ic) | |
Create TString able to contain ic characters. More... | |
TString (const TString &s) | |
Copy constructor. More... | |
TString (TString &&s) | |
Move constructor. More... | |
TString (const char *s) | |
Create TString and initialize it with string cs. More... | |
TString (const char *s, Ssiz_t n) | |
Create TString and initialize it with the first n characters of cs. More... | |
TString (const std::string &s) | |
Create TString and initialize it with string cs. More... | |
TString (char c) | |
Initialize a string with a single character. More... | |
TString (char c, Ssiz_t s) | |
Initialize the first n locations of a TString with character c. More... | |
TString (const std::string_view &sub) | |
TString (const TSubString &sub) | |
Copy a TSubString in a TString. More... | |
virtual | ~TString () |
Delete a TString. More... | |
virtual void | FillBuffer (char *&buffer) const |
Copy string into I/O buffer. More... | |
virtual void | ReadBuffer (char *&buffer) |
Read string from I/O buffer. More... | |
virtual Int_t | Sizeof () const |
Returns size string will occupy on I/O buffer. More... | |
Bool_t | Gets (FILE *fp, Bool_t chop=kTRUE) |
Read one line from the stream, including the , or until EOF. More... | |
void | Puts (FILE *fp) |
Write string to the stream. More... | |
operator const char * () const | |
operator std::string_view () const | |
TString & | operator= (char s) |
Assign character c to TString. More... | |
TString & | operator= (const char *s) |
Assign string cs to TString. More... | |
TString & | operator= (const TString &s) |
Assignment operator. More... | |
TString & | operator= (const std::string &s) |
Assign std::string s to TString. More... | |
TString & | operator= (const std::string_view &s) |
TString & | operator= (const TSubString &s) |
Assign a TSubString substr to TString. More... | |
TString & | operator+= (const char *s) |
TString & | operator+= (const TString &s) |
TString & | operator+= (char c) |
TString & | operator+= (Short_t i) |
TString & | operator+= (UShort_t i) |
TString & | operator+= (Int_t i) |
TString & | operator+= (UInt_t i) |
TString & | operator+= (Long_t i) |
TString & | operator+= (ULong_t i) |
TString & | operator+= (Float_t f) |
TString & | operator+= (Double_t f) |
TString & | operator+= (Long64_t i) |
TString & | operator+= (ULong64_t i) |
char & | operator[] (Ssiz_t i) |
char & | operator() (Ssiz_t i) |
char | operator[] (Ssiz_t i) const |
char | operator() (Ssiz_t i) const |
TSubString | operator() (Ssiz_t start, Ssiz_t len) const |
Return sub-string of string starting at start with length len. More... | |
TSubString | operator() (const TRegexp &re) const |
Return the substring found by applying the regexp. More... | |
TSubString | operator() (const TRegexp &re, Ssiz_t start) const |
Return the substring found by applying the regexp starting at start. More... | |
TSubString | operator() (TPRegexp &re) const |
Return the substring found by applying the regexp. More... | |
TSubString | operator() (TPRegexp &re, Ssiz_t start) const |
Return the substring found by applying the regexp starting at start. More... | |
TSubString | SubString (const char *pat, Ssiz_t start=0, ECaseCompare cmp=kExact) const |
Returns a substring matching "pattern", or the null substring if there is no such match. More... | |
TString & | Append (const char *cs) |
TString & | Append (const char *cs, Ssiz_t n) |
TString & | Append (const TString &s) |
TString & | Append (const TString &s, Ssiz_t n) |
TString & | Append (char c, Ssiz_t rep=1) |
Append character c rep times to string. More... | |
Int_t | Atoi () const |
Return integer value of string. More... | |
Long64_t | Atoll () const |
Return long long value of string. More... | |
Double_t | Atof () const |
Return floating-point value contained in string. More... | |
Bool_t | BeginsWith (const char *s, ECaseCompare cmp=kExact) const |
Bool_t | BeginsWith (const TString &pat, ECaseCompare cmp=kExact) const |
Ssiz_t | Capacity () const |
Ssiz_t | Capacity (Ssiz_t n) |
Return string capacity. More... | |
TString & | Chop () |
void | Clear () |
Clear string without changing its capacity. More... | |
int | CompareTo (const char *cs, ECaseCompare cmp=kExact) const |
Compare a string to char *cs2. More... | |
int | CompareTo (const TString &st, ECaseCompare cmp=kExact) const |
Compare a string to another string. More... | |
Bool_t | Contains (const char *pat, ECaseCompare cmp=kExact) const |
Bool_t | Contains (const TString &pat, ECaseCompare cmp=kExact) const |
Bool_t | Contains (const TRegexp &pat) const |
Bool_t | Contains (TPRegexp &pat) const |
Int_t | CountChar (Int_t c) const |
Return number of times character c occurs in the string. More... | |
TString | Copy () const |
Copy a string. More... | |
const char * | Data () const |
Bool_t | EndsWith (const char *pat, ECaseCompare cmp=kExact) const |
Return true if string ends with the specified string. More... | |
Bool_t | EqualTo (const char *cs, ECaseCompare cmp=kExact) const |
Bool_t | EqualTo (const TString &st, ECaseCompare cmp=kExact) const |
Ssiz_t | First (char c) const |
Find first occurrence of a character c. More... | |
Ssiz_t | First (const char *cs) const |
Find first occurrence of a character in cs. More... | |
void | Form (const char *fmt,...) |
Formats a string using a printf style format descriptor. More... | |
UInt_t | Hash (ECaseCompare cmp=kExact) const |
Return hash value. More... | |
Ssiz_t | Index (const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const |
Ssiz_t | Index (const TString &s, Ssiz_t i=0, ECaseCompare cmp=kExact) const |
Ssiz_t | Index (const char *pat, Ssiz_t patlen, Ssiz_t i, ECaseCompare cmp) const |
Search for a string in the TString. More... | |
Ssiz_t | Index (const TString &s, Ssiz_t patlen, Ssiz_t i, ECaseCompare cmp) const |
Ssiz_t | Index (const TRegexp &pat, Ssiz_t i=0) const |
Find the first occurrence of the regexp in string and return the position, or -1 if there is no match. More... | |
Ssiz_t | Index (const TRegexp &pat, Ssiz_t *ext, Ssiz_t i=0) const |
Find the first occurrence of the regexp in string and return the position, or -1 if there is no match. More... | |
Ssiz_t | Index (TPRegexp &pat, Ssiz_t i=0) const |
Find the first occurrence of the regexp in string and return the position. More... | |
Ssiz_t | Index (TPRegexp &pat, Ssiz_t *ext, Ssiz_t i=0) const |
Find the first occurrence of the regexp in string and return the position. More... | |
TString & | Insert (Ssiz_t pos, const char *s) |
TString & | Insert (Ssiz_t pos, const char *s, Ssiz_t extent) |
TString & | Insert (Ssiz_t pos, const TString &s) |
TString & | Insert (Ssiz_t pos, const TString &s, Ssiz_t extent) |
Bool_t | IsAscii () const |
Returns true if all characters in string are ascii. More... | |
Bool_t | IsAlpha () const |
Returns true if all characters in string are alphabetic. More... | |
Bool_t | IsAlnum () const |
Returns true if all characters in string are alphanumeric. More... | |
Bool_t | IsDigit () const |
Returns true if all characters in string are digits (0-9) or white spaces, i.e. More... | |
Bool_t | IsFloat () const |
Returns kTRUE if string contains a floating point or integer number. More... | |
Bool_t | IsHex () const |
Returns true if all characters in string are hexadecimal digits (0-9,a-f,A-F). More... | |
Bool_t | IsBin () const |
Returns true if all characters in string are binary digits (0,1). More... | |
Bool_t | IsOct () const |
Returns true if all characters in string are octal digits (0-7). More... | |
Bool_t | IsDec () const |
Returns true if all characters in string are decimal digits (0-9). More... | |
Bool_t | IsInBaseN (Int_t base) const |
Returns true if all characters in string are expressed in the base specified (range=2-36), i.e. More... | |
Bool_t | IsNull () const |
Bool_t | IsWhitespace () const |
Ssiz_t | Last (char c) const |
Find last occurrence of a character c. More... | |
Ssiz_t | Length () const |
Bool_t | MaybeRegexp () const |
Returns true if string contains one of the regexp characters "^$.[]*+?". More... | |
Bool_t | MaybeWildcard () const |
Returns true if string contains one of the wildcard characters "[]*?". More... | |
TString | MD5 () const |
Return the MD5 digest for this string, in a string representation. More... | |
TString & | Prepend (const char *cs) |
TString & | Prepend (const char *cs, Ssiz_t n) |
TString & | Prepend (const TString &s) |
TString & | Prepend (const TString &s, Ssiz_t n) |
TString & | Prepend (char c, Ssiz_t rep=1) |
Prepend character c rep times to string. More... | |
std::istream & | ReadFile (std::istream &str) |
Replace string with the contents of strm, stopping at an EOF. More... | |
std::istream & | ReadLine (std::istream &str, Bool_t skipWhite=kTRUE) |
Read a line from stream upto newline skipping any whitespace. More... | |
std::istream & | ReadString (std::istream &str) |
Read a line from stream upto \0, including any newline. More... | |
std::istream & | ReadToDelim (std::istream &str, char delim= '\n') |
Read up to an EOF, or a delimiting character, whichever comes first. More... | |
std::istream & | ReadToken (std::istream &str) |
Read a token, delimited by whitespace, from the input stream. More... | |
TString & | Remove (Ssiz_t pos) |
TString & | Remove (Ssiz_t pos, Ssiz_t n) |
TString & | Remove (EStripType s, char c) |
Remove char c at begin and/or end of string (like Strip()) but modifies directly the string. More... | |
TString & | Replace (Ssiz_t pos, Ssiz_t n, const char *s) |
TString & | Replace (Ssiz_t pos, Ssiz_t n, const char *s, Ssiz_t ns) |
Remove at most n1 characters from self beginning at pos, and replace them with the first n2 characters of cs. More... | |
TString & | Replace (Ssiz_t pos, Ssiz_t n, const TString &s) |
TString & | Replace (Ssiz_t pos, Ssiz_t n1, const TString &s, Ssiz_t n2) |
TString & | ReplaceAll (const TString &s1, const TString &s2) |
TString & | ReplaceAll (const TString &s1, const char *s2) |
TString & | ReplaceAll (const char *s1, const TString &s2) |
TString & | ReplaceAll (const char *s1, const char *s2) |
TString & | ReplaceAll (const char *s1, Ssiz_t ls1, const char *s2, Ssiz_t ls2) |
Find & Replace ls1 symbols of s1 with ls2 symbols of s2 if any. More... | |
void | Resize (Ssiz_t n) |
Resize the string. Truncate or add blanks as necessary. More... | |
TSubString | Strip (EStripType s=kTrailing, char c= ' ') const |
Return a substring of self stripped at beginning and/or end. More... | |
TString & | Swap (TString &other) |
void | ToLower () |
Change string to lower-case. More... | |
void | ToUpper () |
Change string to upper case. More... | |
TObjArray * | Tokenize (const TString &delim) const |
This function is used to isolate sequential tokens in a TString. More... | |
Bool_t | Tokenize (TString &tok, Ssiz_t &from, const char *delim=" ") const |
Search for tokens delimited by regular expression 'delim' (default " ") in this string; search starts at 'from' and the token is returned in 'tok'. More... | |
Static Public Member Functions | |
static TString * | ReadString (TBuffer &b, const TClass *clReq) |
Read TString object from buffer. More... | |
static void | WriteString (TBuffer &b, const TString *a) |
Write TString object to buffer. More... | |
static UInt_t | Hash (const void *txt, Int_t ntxt) |
Calculates hash index from any char string. More... | |
static Ssiz_t | InitialCapacity (Ssiz_t ic=15) |
Set default initial capacity for all TStrings. Default is 15. More... | |
static Ssiz_t | MaxWaste (Ssiz_t mw=15) |
Set maximum space that may be wasted in a string before doing a resize. More... | |
static Ssiz_t | ResizeIncrement (Ssiz_t ri=16) |
Set default resize increment for all TStrings. Default is 16. More... | |
static Ssiz_t | GetInitialCapacity () |
static Ssiz_t | GetResizeIncrement () |
static Ssiz_t | GetMaxWaste () |
static TString | Itoa (Int_t value, Int_t base) |
Converts an Int_t to a TString with respect to the base specified (2-36). More... | |
static TString | UItoa (UInt_t value, Int_t base) |
Converts a UInt_t (twice the range of an Int_t) to a TString with respect to the base specified (2-36). More... | |
static TString | LLtoa (Long64_t value, Int_t base) |
Converts a Long64_t to a TString with respect to the base specified (2-36). More... | |
static TString | ULLtoa (ULong64_t value, Int_t base) |
Converts a ULong64_t (twice the range of an Long64_t) to a TString with respect to the base specified (2-36). More... | |
static TString | BaseConvert (const TString &s_in, Int_t base_in, Int_t base_out) |
Converts string from base base_in to base base_out. More... | |
static TString | Format (const char *fmt,...) |
Static method which formats a string using a printf style format descriptor and return a TString. More... | |
Static Public Attributes | |
static const Ssiz_t | kNPOS = ::kNPOS |
Protected Types | |
enum | { kAlignment = 16 } |
Protected Member Functions | |
TString (const char *a1, Ssiz_t n1, const char *a2, Ssiz_t n2) | |
String data. More... | |
void | AssertElement (Ssiz_t nc) const |
Check to make sure a string index is in range. More... | |
void | Clobber (Ssiz_t nc) |
Clear string and make sure it has a capacity of nc. More... | |
void | InitChar (char c) |
Initialize a string with a single character. More... | |
Static Protected Member Functions | |
static Ssiz_t | Align (Ssiz_t s) |
static Ssiz_t | Recommend (Ssiz_t s) |
static Ssiz_t | AdjustCapacity (Ssiz_t oldCap, Ssiz_t newCap) |
Calculate a nice capacity greater than or equal to newCap. More... | |
Protected Attributes | |
Rep_t | fRep |
Private Types | |
enum | { kShortMask = 0x80, kLongMask = 0x80000000 } |
enum | |
enum | { kNwords = sizeof(UStr_t) / sizeof(Ssiz_t) } |
Private Member Functions | |
Bool_t | IsLong () const |
void | SetShortSize (Ssiz_t s) |
Ssiz_t | GetShortSize () const |
void | SetLongSize (Ssiz_t s) |
Ssiz_t | GetLongSize () const |
void | SetSize (Ssiz_t s) |
void | SetLongCap (Ssiz_t s) |
Ssiz_t | GetLongCap () const |
void | SetLongPointer (char *p) |
char * | GetLongPointer () |
const char * | GetLongPointer () const |
char * | GetShortPointer () |
const char * | GetShortPointer () const |
char * | GetPointer () |
const char * | GetPointer () const |
void | UnLink () const |
void | Zero () |
char * | Init (Ssiz_t capacity, Ssiz_t nchar) |
Private member function returning an empty string representation of size capacity and containing nchar characters. More... | |
void | Clone (Ssiz_t nc) |
Make self a distinct copy with capacity of at least tot, where tot cannot be smaller than the current length. More... | |
void | FormImp (const char *fmt, va_list ap) |
Formats a string using a printf style format descriptor. More... | |
UInt_t | HashCase () const |
Return a case-sensitive hash value (endian independent). More... | |
UInt_t | HashFoldCase () const |
Return a case-insensitive hash value (endian independent). More... | |
Static Private Member Functions | |
static Ssiz_t | MaxSize () |
Friends | |
class | TStringLong |
class | TSubString |
class | TBufferFile |
TString | operator+ (const TString &s1, const TString &s2) |
Use the special concatenation constructor. More... | |
TString | operator+ (const TString &s, const char *cs) |
Use the special concatenation constructor. More... | |
TString | operator+ (const char *cs, const TString &s) |
Use the special concatenation constructor. More... | |
TString | operator+ (const TString &s, char c) |
Add char to string. More... | |
TString | operator+ (const TString &s, Long_t i) |
Add integer to string. More... | |
TString | operator+ (const TString &s, ULong_t i) |
Add integer to string. More... | |
TString | operator+ (const TString &s, Long64_t i) |
Add integer to string. More... | |
TString | operator+ (const TString &s, ULong64_t i) |
Add integer to string. More... | |
TString | operator+ (char c, const TString &s) |
Add string to integer. More... | |
TString | operator+ (Long_t i, const TString &s) |
Add string to integer. More... | |
TString | operator+ (ULong_t i, const TString &s) |
Add string to integer. More... | |
TString | operator+ (Long64_t i, const TString &s) |
Add string to integer. More... | |
TString | operator+ (ULong64_t i, const TString &s) |
Add string to integer. More... | |
Bool_t | operator== (const TString &s1, const TString &s2) |
Bool_t | operator== (const TString &s1, const char *s2) |
Compare TString with a char *. More... | |
TBuffer & | operator<< (TBuffer &b, const TString *obj) |
Write TString or derived to TBuffer. More... | |
#include <TString.h>
enum TString::EStripType |
String data.
Special constructor to initialize with the concatenation of a1 and a2.
Definition at line 195 of file TString.cxx.
TString::TString | ( | ) |
TString default ctor.
Definition at line 87 of file TString.cxx.
Referenced by TMVA::TransformationHandler::AddTransformation(), TMVA::DataInputHandler::AddTree(), BaseConvert(), TMVA::PDF::DeclareOptions(), TMVA::Reader::GetMethodTypeFromFile(), TMVA::TransformationHandler::GetName(), TMVA::DataSet::GetTree(), IsInBaseN(), Itoa(), LLtoa(), TMVA::Tools::ParseFormatLine(), TMVA::Configurable::ParseOptions(), TMVA::TransformationHandler::PlotVariables(), TMVA::Tools::ReadAttr(), TMVA::VariableGaussTransform::ReadFromXML(), TMVA::Configurable::ReadOptionsFromXML(), TMVA::TransformationHandler::SetCallerName(), TMVA::Tools::StringFromDouble(), TMVA::Tools::StringFromInt(), UItoa(), and ULLtoa().
|
explicit |
Create TString able to contain ic characters.
Definition at line 95 of file TString.cxx.
TString::TString | ( | const TString & | s | ) |
Copy constructor.
Definition at line 161 of file TString.cxx.
TString::TString | ( | TString && | s | ) |
Move constructor.
Definition at line 175 of file TString.cxx.
TString::TString | ( | const char * | s | ) |
Create TString and initialize it with string cs.
Definition at line 103 of file TString.cxx.
TString::TString | ( | const char * | s, |
Ssiz_t | n | ||
) |
Create TString and initialize it with the first n characters of cs.
Definition at line 126 of file TString.cxx.
TString::TString | ( | const std::string & | s | ) |
Create TString and initialize it with string cs.
Definition at line 116 of file TString.cxx.
TString::TString | ( | char | c | ) |
Initialize a string with a single character.
Definition at line 144 of file TString.cxx.
TString::TString | ( | char | c, |
Ssiz_t | s | ||
) |
Initialize the first n locations of a TString with character c.
Definition at line 152 of file TString.cxx.
TString::TString | ( | const std::string_view & | sub | ) |
TString::TString | ( | const TSubString & | sub | ) |
Copy a TSubString in a TString.
Definition at line 185 of file TString.cxx.
|
virtual |
Delete a TString.
Definition at line 208 of file TString.cxx.
Calculate a nice capacity greater than or equal to newCap.
Definition at line 1111 of file TString.cxx.
Referenced by Append(), Prepend(), ReadFile(), ReadToDelim(), ReadToken(), and Replace().
Definition at line 213 of file TString.h.
Referenced by Recommend().
|
inline |
Definition at line 492 of file TString.h.
Referenced by THttpCallArg::AccessHeader(), TUnixSystem::AddDynamicPath(), TWinNTSystem::AddDynamicPath(), ROOT::Internal::TTreeGeneratorBase::AddHeader(), TFormLeafInfo::AddOffset(), TGHtml::AddSelectOptions(), TSQLStructure::AddStrBrackets(), TGHtml::AddStyle(), RooPlot::addTH1(), TBonjourRecord::AddTXTRecord(), TDataSetManagerAliEn::AliEnWhereIs(), ROOT::Internal::TTreeProxyGenerator::AnalyzeElement(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), TGHtml::AppendArglist(), TBufferJSON::AppendOutput(), TGHtml::AppendText(), RooDirItem::appendToDir(), TParallelCoord::ApplySelectionToTree(), RooAbsString::attachToTree(), RooAbsCategory::attachToTree(), RooAbsReal::attachToTree(), TRootSnifferStoreXml::BeforeNextChild(), TRootSnifferStoreJson::BeforeNextChild(), begin_request_handler(), TBranchElement::Browse(), TStreamerInfo::BuildEmulated(), TRootSnifferScanRec::BuildFullName(), TParallelCoord::BuildParallelCoord(), RooSimPdfBuilder::buildPdf(), RooAbsCachedReal::cacheNameSuffix(), RooAbsCachedPdf::cacheNameSuffix(), RooPlot::caller(), ROOT::Internal::TTreeProxyGenerator::CheckForMissingClass(), TMakeProject::ChopFileName(), ClassImp(), TRootSnifferStoreXml::CloseNode(), TRootSnifferStoreJson::CloseNode(), TSystem::CompileMacro(), TTabCom::Complete(), RooMultiCatIter::compositeLabel(), RooAddModel::convolution(), RooResolutionModel::convolution(), TCivetweb::Create(), TFastCgi::Create(), TTreeSQL::CreateBranches(), THttpServer::CreateEngine(), RooDataSet::createHistogram(), RooAbsRealLValue::createHistogram(), RooAbsReal::createIntegral(), RooAbsReal::createIntObj(), RooAbsReal::createProfile(), RooAbsPdf::createProjection(), RooTreeDataStore::createTree(), RooMultiCategory::currentLabel(), RooSuperCategory::currentLabel(), RooAbsAnaConvPdf::declareBasis(), TMVA::Reader::DecodeVarNames(), TProof::DisablePackage(), TParallelCoordEditor::DoAddSelection(), RooCustomizer::doBuild(), RooMCStudy::doFit(), TProofProgressLog::DoLog(), TStyleManager::DoSelectCanvas(), RooStats::LikelihoodIntervalPlot::Draw(), RooStats::MCMCIntervalPlot::DrawHistInterval(), RooStats::MCMCIntervalPlot::DrawKeysPdfInterval(), TTreePlayer::DrawScript(), TGHtml::EncodeText(), RooRealVar::errorVar(), RooSimWSTool::executeBuild(), TTabCom::ExtendPath(), TFormula::ExtractFunctors(), TH1::FFT(), TASPluginGS::File2ASImage(), TFitEditor::FillDataSetList(), RooFitResult::fillLegacyCorrMatrix(), RooAbsCategory::fillTreeBranch(), TUnixSystem::FindFile(), RooAbsArg::findNewServer(), FromB64low(), TGFileBrowser::FullPathName(), RooAbsCachedReal::FuncCacheElem::FuncCacheElem(), TStreamerInfo::GenerateDeclaration(), TMakeProject::GenerateIncludeForTemplate(), TMakeProject::GenerateMissingStreamerInfos(), TDataMember::GetArrayIndex(), RooStats::DetailedOutputAggregator::GetAsArgSet(), RooAbsArg::getComponents(), TEntryList::GetEntryList(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TAliEnFind::GetGridResult(), TMakeProject::GetHeaderName(), TCling::GetIncludePath(), TSystem::GetIncludePath(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TDirectory::GetPath(), RooAddModel::getProjCache(), RooAddPdf::getProjCache(), TTabCom::GetSysIncludePath(), RooAbsReal::getTitle(), TParallelCoord::GetTree(), TMVA::DataSet::GetTree(), TGFileBrowser::GotoDir(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TProofServ::HandleSocketInput(), RooIntegralMorph::inputBaseName(), RooFFTConvPdf::inputBaseName(), RooAbsReal::integralNameSuffix(), TSystem::IsFileInIncludePath(), THttpServer::IsFileRequested(), TCling::IsLoaded(), TSQLFile::IsLongStringCode(), TBufferJSON::JsonStreamCollection(), TBufferJSON::JsonWriteBasic(), TBufferJSON::JsonWriteConstChar(), TBufferJSON::JsonWriteMember(), TBufferJSON::JsonWriteObject(), Krb5Authenticate(), TGHtml::ListTokens(), TEntryListFromFile::LoadList(), TCling::LoadPCM(), RooTreeDataStore::loadValues(), TMVA::MethodBDT::MakeClassSpecific(), TMVA::MethodBDT::MakeClassSpecificHeader(), RooProduct::makeFPName(), TFile::MakeProject(), RooMapCatEntry::mangle(), RooMappedCategory::Entry::mangle(), TTreeViewer::MapBranch(), RooAbsData::meanVar(), TFileMerger::MergeRecursive(), RooCmdConfig::missingArgs(), TNewQueryDlg::OnBtnSaveClicked(), operator+=(), TGraph2D::Paint(), TMultiGraph::PaintPads(), TProof::ParseConfigField(), TTreeFormula::ParseWithLeaf(), TGFontPool::ParseXLFD(), RooAbsCachedPdf::PdfCacheElem::PdfCacheElem(), RooAbsData::plotAsymOn(), RooAbsReal::plotAsymOn(), RooAbsData::plotEffOn(), RooSimultaneous::plotOn(), RooAbsPdf::plotOn(), RooAbsData::plotOn(), RooAbsReal::plotOn(), TGFont::PostscriptFontName(), TFormula::PrepareEvalMethod(), TEntryListFromFile::Print(), TPad::Print(), RooMultiCategory::printMultiline(), RooSimGenContext::printMultiline(), RooProdGenContext::printMultiline(), RooGenericPdf::printMultiline(), RooAddGenContext::printMultiline(), RooConvGenContext::printMultiline(), RooRealIntegral::printMultiline(), RooFormulaVar::printMultiline(), RooFormula::printMultiline(), RooAbsCategory::printMultiline(), RooPlot::printMultiline(), RooAbsCollection::printMultiline(), RooAbsPdf::printMultiline(), RooAbsArg::printMultiline(), THttpServer::ProcessRequest(), TFitEditor::ProcessTreeInput(), TRootSniffer::ProduceExe(), TRootSniffer::ProduceMulti(), TProfile3D::Project3DProfile(), TProfile::ProjectionX(), TProfile3D::ProjectionXYZ(), RooDataSet::read(), TProofMgrLite::ReadBuffer(), RooStringVar::readFromStream(), RooMappedCategory::readFromStream(), RooErrorVar::readFromStream(), RooRealVar::readFromStream(), RooArgSet::readFromStream(), TCling::RegisterLoadedSharedLibrary(), TParallelCoord::ResetTree(), Resize(), TProofLogElem::Retrieve(), RooAbsData::rmsVar(), RooAddition::RooAddition(), RooGenContext::RooGenContext(), TFastCgi::run_func(), TPad::SaveAs(), TParallelCoord::SavePrimitive(), TRootSniffer::ScanObjectMembers(), RooAbsCollection::selectByAttrib(), RooAbsCollection::selectByName(), RooAbsCollection::selectCommon(), TRootSnifferStoreXml::SetField(), TRootSnifferStoreJson::SetField(), THttpCallArg::SetPathAndFileName(), TGaxis::SetTimeFormat(), TAxis::SetTimeFormat(), TGaxis::SetTimeOffset(), TAxis::SetTimeOffset(), TEfficiency::SetTitle(), TEntryList::SetTree(), TFitEditor::ShowObjectName(), RooAbsCollection::snapshot(), TAuthenticate::SshAuth(), TWinNTSystem::Symlink(), RooAbsPdf::syncNormalization(), RooAbsData::table(), TGHtml::TableText(), TTeXDump::Text(), TGHotString::TGHotString(), TGTextLayout::ToPostscript(), TCling::UnloadLibraryMap(), TMakeProject::UpdateAssociativeToVector(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), and RooAbsArg::~RooAbsArg().
Append character c rep times to string.
Definition at line 316 of file TString.cxx.
Check to make sure a string index is in range.
Definition at line 1101 of file TString.cxx.
Referenced by operator[]().
Double_t TString::Atof | ( | ) | const |
Return floating-point value contained in string.
Examples of valid strings are:
Definition at line 2017 of file TString.cxx.
Referenced by TTree::GetCacheAutoSize(), TProof::GetRC(), RooStats::ToyMCStudy::initialize(), RooStudyPackage::initRandom(), TSpectrum2Painter::PaintSpectrum(), TMVA::MethodDT::SetMinNodeSize(), TMVA::MethodBDT::SetMinNodeSize(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), and TGDMLParse::Value().
Int_t TString::Atoi | ( | ) | const |
Return integer value of string.
Valid strings include only digits and whitespace (see IsDigit()), i.e. "123456", "123 456" and "1 2 3 4 56" are all valid integer strings whose Atoi() value is 123456.
Definition at line 1951 of file TString.cxx.
Referenced by TProofNodes::ActivateWorkers(), TProof::AddWorkers(), begin_request_handler(), ClassImp(), TXSocket::Close(), TProofPerfAnalysis::CompareOrd(), TDocOutput::Convert(), TProofServ::CreateServer(), TMVA::DrawMLPoutputMovie(), TRootSniffer::ExecuteCmd(), TDataSetManagerAliEn::ExpandRunSpec(), TMLPAnalyzer::GatherInformations(), TDSetElement::GetAssocObj(), GetAuthProto(), TTreeCache::GetConfiguredPrefillType(), TAlienCollection::GetFileCollection(), TWebFile::GetFromWeb10(), TWebFile::GetHead(), TSQLFile::GetLocking(), TProofLite::GetNumberOfWorkers(), TApplicationServer::GetOptions(), TProofBench::GetPerfSpecs(), TProof::GetRC(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TProofLite::Init(), TProof::Init(), TQueryResultManager::LocateQuery(), THttpCallArg::NumHeader(), THttpCallArg::NumRequestHeader(), TAlienFile::Open(), TFile::Open(), TProof::Open(), TFormulaParamOrder::operator()(), TSpectrum2Painter::PaintSpectrum(), TProof::ParseConfigField(), TXNetFile::ParseOptions(), TApplication::ParseRemoteLine(), TNetXNGFileStager::ParseStagePriority(), TQueryResult::Print(), TProofPlayerLite::Process(), TProofPlayerRemote::Process(), TFormula::ProcessFormula(), TXProofMgr::QuerySessions(), TASImage::ReadImage(), TMVA::MethodBase::ReadStateFromXML(), TBufferSQL2::ReadVersion(), TProofLite::ResolveKeywords(), TPgSQLServer::SelectDataBase(), TMVA::VariableTransformBase::SelectInput(), TNetXNGFile::SetEnv(), TProofResourcesStatic::SetOption(), TProofMonSender::SetSendOptions(), TProofServ::SetupCommon(), TAlienJDL::SetValueByCmd(), TAuthenticate::SshAuth(), TXNetFileStager::Stage(), TXProofMgr::Stat(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), TDataSetManager::ToBytes(), TProofNodeInfo::TProofNodeInfo(), TProofServ::TProofServ(), TSQLMonitoringWriter::TSQLMonitoringWriter(), TNeuron::UseBranch(), and TGTable::UserRangeChange().
Long64_t TString::Atoll | ( | ) | const |
Return long long value of string.
Valid strings include only digits and whitespace (see IsDigit()), i.e. "123456", "123 456" and "1 2 3 4 56" are all valid integer strings whose Atoll() value is 123456.
Definition at line 1977 of file TString.cxx.
Referenced by TRootBrowserLite::AddToTree(), FormatToolTip(), TWebFile::GetHead(), TAlienCollection::GetSize(), TProofProgressMemoryPlot::ParseLine(), and TXProofMgr::Stat().
Converts string from base base_in to base base_out.
Supported bases are 2-36. At most 64 bit data can be converted.
Definition at line 2157 of file TString.cxx.
|
inline |
Definition at line 558 of file TString.h.
Referenced by TGFileBrowser::Add(), TFileCollection::AddFromFile(), ROOT::Internal::TTreeGeneratorBase::AddHeader(), TDocOutput::AddLink(), TRootBrowserLite::AddToTree(), TMVA::MethodTMlpANN::AddWeightsXMLTo(), ROOT::Internal::TTreeProxyGenerator::AnalyzeBranches(), ROOT::Internal::TTreeReaderGenerator::AnalyzeBranches(), TRootSecContext::AsString(), TAuthenticate::AuthExists(), BaseConvert(), TGFontDialog::Build(), TClass::CanSplit(), TGeoNavigator::cd(), TMVA::Configurable::CheckForUnusedOptions(), TGeoNavigator::CheckPath(), TCondor::ClaimVM(), ClassImp(), TAuthenticate::ClearAuth(), TProof::ClearData(), TTabCom::Complete(), TTVLVEntry::CopyItem(), TProofLite::CopyMacroToCache(), TMVA::correlationscatters(), TMVA::correlationscattersMultiClass(), THostAuth::Create(), TSocket::CreateAuthSocket(), TMVA::MethodTMlpANN::CreateMLPOptions(), TXProofServ::CreateServer(), TDocDirective::DeleteOutputFiles(), do_anadist(), do_anadist_ds(), TGFileBrowser::DoubleClicked(), TMVA::DrawMLPoutputMovie(), TMVA::DrawNetworkMovie(), TRootCanvas::EventInfo(), TXProofMgr::Exec(), TWinNTSystem::ExpandPathName(), THtml::TFileDefinition::ExpandSearchPath(), TTabCom::ExtendPath(), TASPluginGS::File2ASImage(), TSystem::FindHelper(), TCastorFile::FindServerAndPath(), FormatToolTip(), RooAbsArg::getCloningAncestors(), TMVA::RuleFit::GetCorrVars(), TDataSetManagerFile::GetDataSets(), GetExePath(), TProof::GetFileInCmd(), THtml::TFileDefinition::GetFileName(), TWebFile::GetFromWeb10(), TWebFile::GetHead(), THtml::GetHtmlFileName(), TKey::GetIconName(), THtml::TPathDefinition::GetIncludeAs(), TMVA::MethodBase::GetLine(), THtml::TModuleDefinition::GetModule(), TGWindow::GetName(), TApplicationServer::GetOptions(), TProofMgrLite::GetSessionLogs(), TAlienJobStatus::GetStatus(), TKey::GetTitle(), TUrl::GetUrl(), TProofServ::HandleCheckFile(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TGListTree::HandleMotion(), TProof::HandleOutputOptions(), TProofServ::HandleSocketInput(), TRint::HandleTermInput(), TProofOutputFile::Init(), TDocParser::IsDirective(), TQCommand::IsSetter(), TNetFileStager::IsStaged(), TXNetFileStager::IsStaged(), TSystem::ListLibraries(), TSystem::Load(), TProof::Load(), THtml::LoadAllLibs(), TROOT::LoadClass(), TGHtml::LoadImage(), TCling::LoadLibraryMap(), TNetFileStager::Locate(), TDocParser::LocateMethodInCurrentLine(), TProofOutputList::ls(), TDirectoryFile::ls(), TDirectory::ls(), TClassDocOutput::MakeTree(), TFileIter::MapName(), TProof::ModifyWorkerLists(), TMVA::mvaweights(), THtml::TFileDefinition::NormalizePath(), TXNetFile::Open(), TProof::Open(), TAlien::OpenCollection(), TArrow::PaintArrow(), TProof::ParseConfigField(), TDataSetManager::ParseDataSetSrvMaps(), TDataSetManagerFile::ParseInitOpts(), TFileInfo::ParseInput(), TMVA::MethodANNBase::ParseLayoutString(), TMVA::Configurable::ParseOptions(), TApplication::ParseRemoteLine(), TDataSetManager::ParseUri(), TTabCom::PathIsSpecifiedInFileName(), TMVA::plot_efficiencies(), pq2register(), TProofOutputList::Print(), TRootSecContext::Print(), TQueryResult::Print(), TPluginHandler::Print(), TPad::Print(), TDocOutput::ProcessDocInDir(), TMVA::MethodCFMlpANN::ProcessOptions(), TXSocket::ProcessUnsolicitedMsg(), TSapDBServer::Query(), R__WriteDependencyFile(), ReadRemote(), ReadRemoteImage(), TAuthenticate::ReadRootAuthrc(), ReadSize(), TEntryList::RelocatePaths(), TProofServ::Reset(), TXProofMgr::Rm(), TRint::Run(), TPad::SaveAs(), TProofPlayer::SavePartialResults(), TGContainer::SearchPattern(), TMVA::VariableTransformBase::SelectInput(), TProofLite::SendInputDataFile(), TSQLMonitoringWriter::SendParameters(), TProofPlayerRemote::SendSelector(), TUri::SetAuthority(), TProofLite::SetDataSetTreeName(), TProof::SetDataSetTreeName(), TUrl::SetProtocol(), TProofMonSender::SetSendOptions(), TXProofServ::Setup(), TProofServ::Setup(), TProofServ::SetupCommon(), TDataSetManager::ShowDataSets(), TAuthenticate::SshAuth(), TXNetFileStager::Stage(), TProofPerfAnalysis::Summary(), TFileInfoMeta::TFileInfoMeta(), TPerfStats::TPerfStats(), TProofPerfAnalysis::TProofPerfAnalysis(), TUri::Transform(), TSessionQueryFrame::UpdateInfos(), TProofMgr::UploadFiles(), while(), TClassDocOutput::WriteClassDocHeader(), TMVA::Factory::WriteDataInformation(), and TASImage::WriteImage().
|
inline |
|
inline |
Definition at line 337 of file TString.h.
Referenced by Append(), Capacity(), Clear(), Clobber(), Clone(), TGTextBuffer::GetBufferLength(), TGeoVolume::GetByteCount(), TBufferJSON::JsonStreamCollection(), Prepend(), ReadFile(), ReadToDelim(), ReadToken(), Replace(), and TBufferJSON::TBufferJSON().
Return string capacity.
If nc != current capacity Clone() the string in a string with the desired capacity.
Definition at line 357 of file TString.cxx.
|
inline |
Definition at line 622 of file TString.h.
Referenced by TCondor::ClaimVM(), TSystemFile::Copy(), TMVA::MethodTMlpANN::CreateMLPOptions(), TMVA::Reader::DecodeVarNames(), Gets(), TRint::HandleTermInput(), TTabCom::Hook(), TTabCom::MakeClassFromVarName(), TSystemFile::Move(), TGIcon::Reset(), and TGIcon::SavePrimitive().
void TString::Clear | ( | ) |
Clear string without changing its capacity.
Definition at line 1126 of file TString.cxx.
Referenced by ROOT::TSchemaRule::Clear(), TFileMerger::ClearObjectNames(), TStreamerInfo::CompareContent(), TContextMenu::CreateArgumentTitle(), TContextMenu::CreateDialogTitle(), TContextMenu::CreatePopupTitle(), TMVA::draw_network(), FormatToolTip(), TXNetSystem::FreeDirectory(), TCling::FuncTempInfo_Name(), TCling::FuncTempInfo_Title(), TSystem::GetLibraries(), TRealData::GetName(), TRootDialog::GetParameters(), TStreamerElement::GetSequenceType(), TBufferJSON::JsonStreamCollection(), TBufferJSON::JsonWriteMember(), TBufferJSON::JsonWriteObject(), TFile::MakeProject(), TChain::ParseTreeFilename(), TBufferJSON::PerformPostProcessing(), TBranch::Print(), TGenCollectionProxy::StreamHelper::read_tstring_pointer(), TFileMerger::Reset(), THttpCallArg::SetBinData(), THttpServer::SetDefaultPage(), THttpServer::SetDrawPage(), RooAbsPdf::setNormRange(), RooAbsPdf::setNormRangeOverride(), THttpCallArg::SetPathAndFileName(), TSystem::SplitAclicMode(), TDataMember::Update(), and TBufferJSON::WorkWithElement().
Clear string and make sure it has a capacity of nc.
Definition at line 1134 of file TString.cxx.
Referenced by Clear(), FormImp(), Gets(), ReadFile(), ReadToDelim(), ReadToken(), and TBufferFile::ReadTString().
Make self a distinct copy with capacity of at least tot, where tot cannot be smaller than the current length.
Preserve previous contents.
Definition at line 1162 of file TString.cxx.
Referenced by Capacity(), TMVA::MethodCuts::CreateVariablePDFs(), and TMVA::MethodInfo::SetResultHists().
int TString::CompareTo | ( | const char * | cs2, |
ECaseCompare | cmp = kExact |
||
) | const |
Compare a string to char *cs2.
Returns returns zero if the two strings are identical, otherwise returns the difference between the first two differing bytes (treated as unsigned char values, so that `\200' is greater than `\0', for example). Zero-length strings are always identical.
Definition at line 372 of file TString.cxx.
Referenced by TDocMacroDirective::AddParameter(), TDocLatexDirective::AddParameter(), TTreeSQL::Branch(), TTreeSQL::CheckBranch(), TTreeSQL::CheckTable(), TGTextEditor::CloseWindow(), TNamed::Compare(), TCollection::Compare(), TUrl::Compare(), TParameter< Long64_t >::Compare(), TEnvRec::Compare(), TGTextEditor::CompileMacro(), TTreeSQL::CreateBranches(), RooNumIntFactory::createIntegrator(), RooNumGenFactory::createSampler(), TUnfoldBinning::DecodeAxisSteering(), DefaultErrorHandler(), RooFormula::DefinedVariable(), TLDAPAttribute::DeleteValue(), RooStats::MCMCIntervalPlot::DrawChainScatter(), RooStats::MCMCIntervalPlot::DrawHistInterval(), RooStats::MCMCIntervalPlot::DrawKeysPdfInterval(), RooStats::MCMCIntervalPlot::DrawNLLVsTime(), RooStats::MCMCIntervalPlot::DrawParameterVsTime(), RooStats::MCMCIntervalPlot::DrawPosteriorHist(), RooStats::MCMCIntervalPlot::DrawPosteriorKeysPdf(), RooStats::MCMCIntervalPlot::DrawPosteriorKeysProduct(), RooStats::MCMCIntervalPlot::DrawTailFractionInterval(), EqualTo(), TApplicationServer::ErrorHandler(), TProofServ::ErrorHandler(), TGTextEditor::ExecuteMacro(), RooStreamParser::expectToken(), TH2Poly::Fill(), TEveElement::FindChild(), TEveElement::FindChildren(), TRootContextMenu::FindHierarchy(), RooPlot::findObject(), TUnfoldSys::GetBackground(), TTreeSQL::GetColumnIndice(), TRootSniffer::GetItem(), TFile::GetType(), TUrl::GetUrl(), TSystem::Init(), RooAbsString::isIdentical(), THttpCallArg::IsPostMethod(), TLDAPEntry::IsReferral(), RooFitResult::lastMinuitFit(), TGTextEditor::LoadFile(), TAlienFile::Open(), TFile::OpenFromCache(), Memstat::SFind_t::operator()(), operator<(), operator<=(), RooAbsString::operator==(), RooAbsCategory::operator==(), operator>(), operator>=(), TDataSetManager::ParseUri(), TArchiveFile::ParseUrl(), PoDCheckUrl(), RooCmdConfig::process(), TGTextEditor::ProcessMessage(), TProofResourcesStatic::ReadConfigFile(), RooMappedCategory::readFromStream(), RooRealVar::readFromStream(), RooArgSet::readFromStream(), TUri::RemoveDotSegments(), TTable::SavePrimitive(), TGSpeedo::SetDisplayText(), TUrl::SetProtocol(), TAlienJDL::SetValueByCmd(), TFitEditor::ShowObjectName(), and TMapFile::TMapFile().
int TString::CompareTo | ( | const TString & | str, |
ECaseCompare | cmp = kExact |
||
) | const |
Compare a string to another string.
Returns returns zero if the two strings are identical, otherwise returns the difference between the first two differing bytes (treated as unsigned char values, so that `\200' is greater than `\0', for example). Zero-length strings are always identical.
Definition at line 402 of file TString.cxx.
|
inline |
Definition at line 567 of file TString.h.
Referenced by TQCommand::Add(), TQUndoManager::Add(), TH1::Add(), TTreeTableInterface::AddColumn(), RooMCStudy::addFitResult(), TGFileBrowser::AddFSDirectory(), TDocMacroDirective::AddLine(), RooStats::SamplingDistPlot::AddSamplingDistribution(), RooStats::SamplingDistPlot::AddSamplingDistributionShaded(), RooPlot::addTH1(), TMVA::Factory::AddTree(), TParallelCoord::AddVariable(), TH1::AndersonDarlingTest(), TGeoTrack::AnimateTrack(), TGeoManager::AnimateTracks(), TGraphSmooth::Approx(), ROOT::TSchemaRule::AsString(), TTimeStamp::AsString(), TRootAuth::Authenticate(), TSocket::Authenticate(), TTree::AutoSave(), TSpectrum::Background(), TMVA::bdtcontrolplots(), TSelHist::Begin(), h1analysisTreeReader::Begin(), TSelectorDraw::Begin(), TSelEvent::Begin(), TMacro::Browse(), RooNDKeysPdf::calculateBandWidth(), TEfficiency::CheckEntries(), TMVA::Tools::CheckForSilentOption(), TGeoManager::CheckGeometryFull(), TGeoChecker::CheckOverlaps(), TGeoNode::CheckOverlaps(), TGeoVolume::CheckOverlaps(), TMVA::DataSetFactory::CheckTTreeFormula(), TH1::Chi2Test(), TH1::Chi2TestX(), TGraph::Chisquare(), TH1::Chisquare(), ClassImp(), TCanvas::Clear(), TStreamerInfo::Clear(), TAuthenticate::ClearAuth(), TTree::CloneTree(), TXMLFile::Close(), TFile::Close(), TSQLFile::Close(), TGeoManager::CloseGeometry(), TEfficiency::Combine(), TMVA::compareanapp(), TSystem::CompileMacro(), containBaseClass(), TMVA::Tools::ContainsRegularExpression(), THbookFile::Convert2root(), TPave::ConvertNDCtoPad(), TTree::CopyEntries(), TTVLVEntry::CopyItem(), TProofLite::CopyMacroToCache(), TMVA::correlationscatters(), TMVA::correlationscattersMultiClass(), TMVA::CorrGui(), THostAuth::Create(), TNetSystem::Create(), TSocket::CreateAuthSocket(), TGDMLWrite::CreateCommonBoolN(), ROOT::Internal::TBranchProxyDirector::CreateHistogram(), TGuiBldDragManager::CreateListOfDialogs(), ROOT::Internal::TTreeReaderValueBase::CreateProxy(), TMVA::MethodBase::CreateVariableTransforms(), RooPrintable::defaultPrintStyle(), RooNumGenConfig::defaultPrintStyle(), RooNumIntConfig::defaultPrintStyle(), TTreeDrawArgsParser::DefineType(), TQCommand::Delete(), TBranch::DeleteBaskets(), TTabCom::DeterminePath(), THistPainter::DistancetoPrimitive(), TGraphPainter::DistancetoPrimitiveHelper(), TGraphAsymmErrors::Divide(), TProfile::Divide(), TProfile2D::Divide(), TProfile3D::Divide(), TGeoVolume::Divide(), TH1::Divide(), THnBase::Divide(), TGeoVolumeAssembly::Divide(), do_anadist(), do_put(), do_rm(), do_verify(), TH2Editor::DoAddArr(), TH1Editor::DoAddB(), TH1Editor::DoAddBar(), TH2Editor::DoAddBB(), TH2Editor::DoAddBox(), TH2Editor::DoAddCol(), TH2Editor::DoAddError(), TH2Editor::DoAddFB(), TH1Editor::DoAddMarker(), TH2Editor::DoAddPalette(), TH2Editor::DoAddScat(), TH1Editor::DoAddSimple(), TH2Editor::DoAddText(), TGuiBldDragManager::DoClassMenu(), TH2::DoFitSlices(), TFitEditor::DoFunction(), TPieEditor::DoGraphLineWidth(), TH1Editor::DoHBar(), TH1Editor::DoHistChanges(), TH2Editor::DoHistChanges(), TH1Editor::DoHistComplex(), TH2Editor::DoHistComplex(), TH2Editor::DoHistSimple(), TH1::DoIntegral(), TGraphEditor::DoMarkerOnOff(), TPieEditor::DoMarkerOnOff(), TProofProgressMemoryPlot::DoMasterPlot(), TH1Editor::DoPercent(), TProfile2D::DoProfile(), TH2::DoProfile(), TH3::DoProject1D(), TH2::DoProjection(), TGraphEditor::DoShape(), TPieEditor::DoShape(), TF1Editor::DoSliderXMoved(), TF1Editor::DoSliderXPressed(), TF1Editor::DoSliderXReleased(), TGFileBrowser::DoubleClicked(), TVolumeView::Draw(), TSpline::Draw(), TGraphPolar::Draw(), TMultiGraph::Draw(), RooPlot::Draw(), THStack::Draw(), TGeoTrack::Draw(), TPie::Draw(), TTreePerfStats::Draw(), TNode::Draw(), RooStats::HypoTestInverterPlot::Draw(), TVolume::Draw(), TParallelCoord::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), TF3::Draw(), TF2::Draw(), TKDE::Draw(), TEfficiency::Draw(), TASImage::Draw(), TGraph2D::Draw(), TGraph::Draw(), TTable::Draw(), TF1::Draw(), TClass::Draw(), TPad::DrawClassObject(), TH1::DrawCopy(), TProofBench::DrawCPU(), TProofBench::DrawDataSet(), TFitParametersDialog::DrawFunction(), RooStats::MCMCIntervalPlot::DrawHistInterval(), TMVA::StatDialogMVAEffs::DrawHistograms(), RooStats::MCMCIntervalPlot::DrawKeysPdfInterval(), TMVA::DrawMLPoutputMovie(), TGeoPainter::DrawOnly(), TGeoPainter::DrawOverlap(), TMultiLayerPerceptron::DrawResult(), TTreePlayer::DrawSelect(), TGeoPainter::DrawShape(), TGeoPainter::DrawVolume(), TBranch::DropBaskets(), DynamicPath(), TTreeViewer::EmptyBrackets(), TGraph::Eval(), TH1::Eval(), TMVA::Factory::EvaluateAllMethods(), TMVA::Factory::EvaluateAllVariables(), TRootBrowser::ExecPlugin(), TBackCompFitter::ExecuteCommand(), TFumili::ExecuteSetCommand(), TMVA::TMVAGlob::ExistMethodName(), TGeoVolume::Export(), TGeoManager::Export(), TGDMLWrite::ExtractSolid(), TGDMLWrite::ExtractVolumes(), TVirtualFFT::FFT(), TH1::FFT(), TAuthenticate::FileExpand(), TEfficiency::FillGraph(), TDataSetManagerFile::FillLsDataSet(), TProofBenchRunCPU::FillPerfStatPerfPlots(), TProofBenchRunDataRead::FillPerfStatProfiles(), TGContainer::FindFrameByName(), RooMinuit::fit(), RooMinimizer::fit(), TBinomialEfficiencyFitter::Fit(), TEfficiency::Fit(), TMultiDimFit::Fit(), ROOT::Fit::FitOptionsMake(), RooMCStudy::fitSample(), RooStats::HLFactory::fParseLine(), TTVLVEntry::FullConverted(), TGFileBrowser::FullPathName(), TLatex::GetBoundingBox(), TDataSetManagerFile::GetDataSet(), TDSetElement::GetEntries(), TDSet::GetEntries(), TEntryList::GetEntryList(), GetExePath(), RooStats::HypoTestInverterResult::GetExpectedLimit(), TXProofMgr::GetFile(), THtml::TFileDefinition::GetFileName(), TASImage::GetFileType(), TLegend::GetHeader(), TGraph2D::GetHistogram(), TAuthenticate::GetHostAuth(), TProofResourcesStatic::GetInfoType(), TUnixSystem::GetLinkedLibraries(), TMatrixTBase< Element >::GetMatrix2Array(), THStack::GetMaximum(), TMVA::Reader::GetMethodTypeFromFile(), THStack::GetMinimum(), TGWindow::GetName(), TMVA::StatDialogBDTReg::GetNtrees(), TMVA::StatDialogBDT::GetNtrees(), TH1::GetPainter(), RooProdPdf::getPartIntList(), RooStats::BayesianCalculator::GetPosteriorFunction(), TGPrintDialog::GetPrinters(), TProof::GetQueryMode(), GetRange(), TProofMgrLite::GetSessionLogs(), TXProofMgr::GetSessionLogs(), TVectorT< Element >::GetSub(), TMatrixTSym< Element >::GetSub(), TMatrixT< Element >::GetSub(), TMatrixTSparse< Element >::GetSub(), TOracleServer::GetTableInfo(), TFile::GetType(), TLatex::GetXsize(), TLatex::GetYsize(), TGFileBrowser::GotoDir(), TGeoMCGeometry::Gspos(), TGeoMCGeometry::Gsposp(), TProof::HandleInputMessage(), TProof::HandleOutputOptions(), TFormula::HandlePolN(), TAuthenticate::HasHostAuth(), TTabCom::Hook(), TROOT::IgnoreInclude(), TASImage::Image2Drawable(), TProofOutputFile::Init(), TMonaLisaWriter::Init(), TBranchElement::Init(), TDataSetManagerAliEn::Init(), TProof::Init(), TEveBrowser::InitPlugins(), TH2Poly::Integral(), TCutG::IntegralHist(), IsInBaseN(), TH2::KolmogorovTest(), TH3::KolmogorovTest(), TMath::KolmogorovTest(), TH1::KolmogorovTest(), Krb5Authenticate(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TAlien::ListPackages(), TEventIterTree::Load(), TProof::Load(), TPluginManager::LoadHandlersFromEnv(), TEntryListFromFile::LoadList(), TQueryResultManager::LocateQuery(), TNode::ls(), TGeometry::ls(), TStreamerElement::ls(), main(), TTreePlayer::MakeClass(), TGraphQQ::MakeFunctionQuantiles(), TMultiDimFit::MakeHistograms(), RooStats::HypoTestInverterPlot::MakePlot(), TFile::MakeProject(), TSPlot::MakeSPlot(), TMVA::RuleFit::MakeVisHists(), TFFTComplex::MapFlag(), TFFTComplexReal::MapFlag(), TFFTRealComplex::MapFlag(), TFFTReal::MapFlag(), TTreeViewer::MapTree(), TChain::Merge(), TFileMerger::MergeRecursive(), TMVA::DataSetFactory::MixEvents(), TMinuit::mnset(), TMVA::mvaweights(), TGeoBuilder::Node(), TMatrixT< Element >::NormByColumn(), TMatrixTBase< Element >::NormByDiag(), TMatrixT< Element >::NormByRow(), TSessionOutputFrame::OnElementDblClicked(), TAlienCollection::Open(), TTree::OptimizeBaskets(), TSpline::Paint(), TFileDrawMap::Paint(), TGraphPolargram::Paint(), THStack::Paint(), TGraph2DPainter::Paint(), TTreePerfStats::Paint(), TASImage::Paint(), TSpider::Paint(), TGraph2D::Paint(), TF1::Paint(), TArrow::PaintArrow(), TBox::PaintBox(), TEllipse::PaintEllipse(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGrapHist(), TGraphPainter::PaintGraphPolar(), TMathText::PaintMathText(), TPave::PaintPave(), TPave::PaintPaveArc(), TGraph2DPainter::PaintPolyMarker(), TLegend::PaintPrimitives(), THistPainter::PaintScatterPlot(), THistPainter::PaintTH2PolyBins(), TGeoTrack::PaintTrack(), TGraph2DPainter::PaintTriangles_new(), TGraph2DPainter::PaintTriangles_old(), TMVA::paracoor(), RooAbsPdf::paramOn(), TProof::ParseConfigField(), TDataSetManager::ParseDataSetSrvMaps(), TDataSetManager::ParseInitOpts(), TTreeDrawArgsParser::ParseOption(), ROOT::Internal::TTreeProxyGenerator::ParseOptions(), TMVA::Configurable::ParseOptions(), TS3WebFile::ParseOptions(), TNetXNGFileStager::ParseStagePriority(), TDataSetManager::ParseUri(), TMVA::plot_efficiencies(), RooFitResult::plotOn(), pq2register(), TTreePlayer::Principal(), TXTRU::Print(), TFitResult::Print(), TObjectTable::Print(), TTreeIndex::Print(), TEntryListArray::Print(), TPolyLine3D::Print(), TPolyMarker3D::Print(), TEntryListBlock::Print(), TFileCollection::Print(), TEntryListFromFile::Print(), TEntryList::Print(), TTreePerfStats::Print(), TTreeCache::Print(), TFileCacheRead::Print(), TFileInfo::Print(), TGWindow::Print(), TPMERegexp::Print(), TMultiDimFit::Print(), TSlaveInfo::Print(), TPad::Print(), TGFrame::Print(), TH1::Print(), TF1::Print(), TGCompositeFrame::Print(), TRootCanvas::PrintCanvas(), RooAbsArg::printComponentTree(), TMVA::probas(), TSelEventGen::Process(), TFormula::ProcessFormula(), TCling::ProcessLine(), TTreeViewer::ProcessMessage(), TGraph2D::Project(), TH3::Project3D(), TH3::Project3DProfile(), TProfile::ProjectionX(), TProfile2D::ProjectionXY(), TProfile3D::ProjectionXYZ(), TProof::Prompt(), RooStats::ProofConfig::ProofConfig(), TGraphQQ::Quartiles(), TSessionViewer::QueryResultReady(), TGeoChecker::RandomPoints(), RooDataSet::read(), TProofMgrLite::ReadBuffer(), TSessionViewer::ReadConfiguration(), TPaveText::ReadFile(), TAuthenticate::ReadRootAuthrc(), TMVA::StatDialogBDTReg::ReadTree(), TMVA::StatDialogBDT::ReadTree(), TMVA::MethodCategory::ReadWeightsFromXML(), TPad::RedrawAxis(), TFunctionParametersDialog::RedrawFunction(), TDataSetManagerFile::RegisterDataSet(), TProofLite::RegisterDataSet(), TProof::RegisterDataSet(), TProofPlayer::ReinitSelector(), TH2::Reset(), TProfile::Reset(), TH3::Reset(), TProfile2D::Reset(), TProfile3D::Reset(), TH1::Reset(), TProofLite::ResolveKeywords(), TProofServ::ResolveKeywords(), TProofLogElem::Retrieve(), TAuthenticate::RfioAuth(), TXProofMgr::Rm(), RooMCStudy::RooMCStudy(), RooNDKeysPdf::RooNDKeysPdf(), TMVA::PDEFoam::RootPlot2dim(), TMVA::rulevisCorr(), TMVA::rulevisHists(), TProofLog::Save(), TPad::SaveAs(), TDirectoryFile::SaveObjectAs(), TDirectory::SaveObjectAs(), TGLViewer::SavePictureUsingBB(), TGLViewer::SavePictureUsingFBO(), TPaveLabel::SavePrimitive(), TPaveStats::SavePrimitive(), TH1K::SavePrimitive(), TPaletteAxis::SavePrimitive(), TPaveText::SavePrimitive(), TPave::SavePrimitive(), TParallelCoordVar::SavePrimitive(), TH2Poly::SavePrimitive(), TEfficiency::SavePrimitive(), TH1::SavePrimitive(), TH1::SavePrimitiveHelp(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TGSelectBox::SaveText(), TH1::Scale(), TTreePlayer::Scan(), TDataSetManagerFile::ScanDataSet(), TSpectrum2::Search(), TSpectrum::Search(), TProofPlayerRemote::SendSelector(), TStyle::SetAxisColor(), TH1::SetAxisColor(), TKDE::SetDrawOptions(), TProfileHelper::SetErrorOption(), TGaxis::SetExponentOffset(), TLegend::SetHeader(), TGListView::SetHeader(), TStyle::SetLabelColor(), TH1::SetLabelColor(), TStyle::SetLabelFont(), TH1::SetLabelFont(), TStyle::SetLabelOffset(), TH1::SetLabelOffset(), TStyle::SetLabelSize(), TH1::SetLabelSize(), TMatrixTBase< Element >::SetMatrixArray(), TAttMarkerEditor::SetModel(), TGraphEditor::SetModel(), TH1Editor::SetModel(), TH2Editor::SetModel(), TStyle::SetNdivisions(), TH1::SetNdivisions(), Roo2DKeysPdf::setOptions(), RooNDKeysPdf::setOptions(), TStyle::SetOptStat(), TEfficiency::SetPassedHistogram(), THistPainter::SetShowProjection(), TStyle::SetTickLength(), TH1::SetTickLength(), TGaxis::SetTimeOffset(), TAxis::SetTimeOffset(), TStyle::SetTitleColor(), TStyle::SetTitleFont(), TH1::SetTitleFont(), TStyle::SetTitleOffset(), TH1::SetTitleOffset(), TStyle::SetTitleSize(), TH1::SetTitleSize(), TEfficiency::SetTotalHistogram(), TXProofServ::Setup(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TGeoManager::SetVolumeAttribute(), TChain::SetWeight(), TAuthenticate::Show(), TDataSetManager::ShowDataSets(), TClassTree::ShowLinks(), TDataSetManager::ShowQuota(), TVirtualFFT::SineCosine(), TSelHist::SlaveBegin(), h1analysisTreeReader::SlaveBegin(), TSelEventGen::SlaveBegin(), TSelEvent::SlaveBegin(), TH2::Smooth(), TH1::Smooth(), TGraphSmooth::SmoothKern(), TMVA::Configurable::SplitOptions(), TMVA::Tools::SplitString(), TUnixSystem::StackTrace(), TXNetFileStager::Stage(), StandardBayesianNumericalDemo(), TGLAutoRotator::StartImageAutoSave(), TGLAutoRotator::StartImageAutoSaveAnimatedGif(), RooAbsData::statOn(), TSelectorDraw::TakeAction(), TSelectorDraw::TakeEstimate(), TAuthenticate::TAuthenticate(), TDSet::TDSet(), TGeoChecker::TestOverlaps(), TF12::TF12(), TFractionFitter::TFractionFitter(), TGFSComboBox::TGFSComboBox(), TGWin32::TGWin32(), TGLAutoRotator::Timeout(), TLinearFitter::TLinearFitter(), TMultiDimFit::TMultiDimFit(), TMVA::TMVAGui(), TMVA::TMVAMultiClassGui(), TMVA::TMVARegGui(), TProofOutputFile::TProofOutputFile(), TProofPerfAnalysis::TProofPerfAnalysis(), TMultiLayerPerceptron::Train(), TH1::TransformHisto(), TSocket::TSocket(), TSpider::TSpider(), TTreeCloner::TTreeCloner(), TUDPSocket::TUDPSocket(), TWebFile::TWebFile(), TQCommand::Undo(), TCling::UpdateListOfLoadedSharedLibraries(), TProofMgr::UploadFiles(), TGTable::UserRangeChange(), TMVA::VariableInfo::VariableInfo(), TMVA::variables(), TProofLite::VerifyDataSet(), VerifyDataSet(), TProof::VerifyDataSet(), TGeoBuilder::Volume(), TGeoChecker::Weight(), TGeoManager::Weight(), TClassDocOutput::WriteClassDocHeader(), TGDMLWrite::WriteGDMLfile(), TASImage::WriteImage(), TDirectoryFile::WriteObjectAny(), TDirectoryFile::WriteTObject(), TGFileBrowser::XXExecuteDefaultAction(), and TGFileDialog::~TGFileDialog().
|
inline |
TString TString::Copy | ( | ) | const |
Copy a string.
Definition at line 444 of file TString.cxx.
Return number of times character c occurs in the string.
Definition at line 430 of file TString.cxx.
Referenced by TMultiLayerPerceptron::BuildLastLayer(), TMultiLayerPerceptron::Draw(), RooStats::HLFactory::fParseLine(), TMLPAnalyzer::GetLayers(), TMLPAnalyzer::GetNeurons(), TProofMgrLite::GetSessionLogs(), TFormula::HandleLinear(), TFormula::HandleParametrizedFunctions(), IsWhitespace(), TDocParser::LocateMethods(), TDocOutput::NameSpace2FileName(), TDataSetManager::ParseUri(), TProofLite::ResolveKeywords(), TEvePointSelector::Select(), TXProofServ::Setup(), and TASImage::WriteImage().
|
inline |
Definition at line 349 of file TString.h.
Referenced by TProofServ::AcceptResults(), TDCacheSystem::AccessPathName(), TControlBarButton::Action(), TRootDialog::Add(), TEntryList::Add(), TChain::Add(), TQUndoManager::Add(), TDSet::Add(), TProofChain::AddAliases(), TGuiBldDragManager::AddClassMenuMethods(), TGeoElementRN::AddDecay(), TGuiBldDragManager::AddDialogMethods(), TEntryListArray::AddEntriesAndSubLists(), TGPopupMenu::AddEntry(), TMVA::Factory::AddEvent(), TChain::AddFile(), TFileMerger::AddFile(), TGFileContainer::AddFile(), TUploadDataSetDlg::AddFiles(), TFileCollection::AddFromFile(), ROOT::Internal::TTreeGeneratorBase::AddHeader(), TSQLFile::AddIdEntry(), TMakeProject::AddInclude(), TGFileBrowser::AddKey(), TMVA::MethodCategory::AddMethod(), TGeoVolume::AddNodeOverlap(), TProofPlayerRemote::AddOutputObject(), TDocMacroDirective::AddParameter(), TDocLatexDirective::AddParameter(), TReaperTimer::AddPid(), ROOT::Internal::TTreeReaderGenerator::AddReader(), TTVSession::AddRecord(), ROOT::Detail::TSchemaRuleSet::AddRule(), TClass::AddRule(), RooStats::SamplingDistPlot::AddSamplingDistribution(), RooStats::SamplingDistPlot::AddSamplingDistributionShaded(), RooPlot::addTH1(), TAlienJDL::AddToMerge(), TAlienJDL::AddToPackages(), TRootBrowserLite::AddToTree(), TMVA::DataInputHandler::AddTree(), TSQLObjectData::AddUnpackInt(), TGeoVolumeMulti::AddVolume(), TMVA::MethodTMlpANN::AddWeightsXMLTo(), TProof::AddWorkers(), TProofOutputFile::AdoptFile(), TDataSetManagerAliEn::AliEnWhereIs(), ROOT::Internal::TTreeProxyGenerator::AnalyzeBranches(), ROOT::Internal::TTreeReaderGenerator::AnalyzeBranches(), ROOT::Internal::TTreeProxyGenerator::AnalyzeElement(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldBranch(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), TGeoTrack::AnimateTrack(), TGeoManager::AnimateTracks(), TFileDrawMap::AnimateTree(), TMVA::annconvergencetest(), Append(), RooStats::DetailedOutputAggregator::AppendArgSet(), AppendLink(), TMVA::ApplicationCreateCombinedTree(), TApplicationImp::ApplicationName(), TQueryResultManager::ApplyMaxQueries(), TParallelCoord::ApplySelectionToTree(), TEveElement::ApplyVizTag(), TGDMLParse::Arb8(), TProof::AssertDataSet(), TProofOutputFile::AssertDir(), TProof::AssertPath(), ROOT::R::TRInterface::Assign(), TGDMLParse::AssProcess(), TRootSecContext::AsString(), TDataType::AsString(), TSecContext::AsString(), TFile::AsyncOpen(), Atof(), Atoi(), Atoll(), TMultiLayerPerceptron::AttachData(), authclient(), TServerSocket::Authenticate(), TSocket::Authenticate(), TAuthenticate::Authenticate(), TAuthenticate::AuthError(), TAuthenticate::AuthExists(), RooWorkspace::CodeRepo::autoImportClass(), BaseConvert(), TMVA::BDT(), TMVA::BDT_Reg(), TMVA::bdtcontrolplots(), h1analysisTreeReader::Begin(), TSelectorDraw::Begin(), begin_request_handler(), BeginsWith(), bexec(), TLDAPServer::Bind(), TGDMLParse::BooSolid(), TMVA::boostcontrolplots(), TGDMLParse::Box(), TTree::BranchImpRef(), TTree::BranchOld(), TGuiBldDragManager::BreakLayout(), TMacro::Browse(), TAlienMasterJobStatus::Browse(), TSystemDirectory::Browse(), TMultiGraph::Browse(), TAlienJobStatus::Browse(), TRemoteObject::Browse(), TVolume::Browse(), TGraph::Browse(), TTable::Browse(), TGeoVolume::Browse(), TDataSetManagerFile::BrowseDataSets(), RooCustomizer::build(), TGTextEditor::Build(), TGFontDialog::Build(), TGSpeedo::Build(), TH1::Build(), TStreamerInfo::Build(), TSessionViewer::Build(), TStreamerInfo::BuildCheck(), TProofBenchRunCPU::BuildHistos(), TProofBenchRunDataRead::BuildHistos(), TPad::BuildLegend(), TGeoShapeDialog::BuildListTree(), TProofProgressMemoryPlot::BuildLogList(), TProofProgressLog::BuildLogList(), TStreamerInfo::BuildOld(), TMultiLayerPerceptron::BuildOneHiddenLayer(), TProof::BuildPackageOnClient(), TParallelCoord::BuildParallelCoord(), TTableSorter::BuildSorter(), TMVA::DataSetFactory::CalcMinMax(), TMVA::TransformationHandler::CalcStats(), RooStats::HypoTestInverterResult::CalculateEstimatedError(), TMVA::MethodMLP::CalculateEstimator(), TStreamerInfo::CallShowMembers(), TProofLite::CancelStagingDataSet(), TProofServ::CatMotd(), THbookFile::cd(), TGeoPhysicalNode::cd(), TGeoNavigator::cd(), TFITSHDU::Change(), TGFileContainer::ChangeDirectory(), TGuiBldDragManager::ChangeImage(), RooTreeDataStore::changeObservableName(), TGuiBldDragManager::ChangePicture(), TGuiBldNameFrame::ChangeSelected(), TMVA::DataSetFactory::ChangeToNewTree(), TEnvRec::ChangeValue(), TRootBrowserLite::Chdir(), TGHtmlBrowser::CheckAnchors(), TFilePrefetch::CheckBlockInCache(), TGeoElementRN::CheckDecays(), TAlienPackage::CheckDependencies(), TAlienPackage::CheckDirectories(), TDCacheFile::CheckFile(), TGFileBrowser::CheckFiltered(), TPluginHandler::CheckForExecPlugin(), ROOT::Internal::TTreeProxyGenerator::CheckForMissingClass(), TGeoChecker::CheckGeometryFull(), TAuthenticate::CheckHost(), TDataType::CheckInfo(), TDataSetManagerFile::CheckLocalCache(), TEveUtil::CheckMacro(), TAuthenticate::CheckNetrc(), TMLPAnalyzer::CheckNetwork(), TGeoChecker::CheckOverlaps(), TGeoChecker::CheckOverlapsBySampling(), TGeoNavigator::CheckPath(), TAuthenticate::CheckProofAuth(), TWebFile::CheckProxy(), TGCommandPlugin::CheckRemote(), TRootSniffer::CheckRestriction(), TMVA::RuleFitAPI::CheckRFWorkDir(), TDataSetManager::CheckStagedStatus(), TMacro::Checksum(), TTreeSQL::CheckTable(), TMVA::DataSetFactory::CheckTTreeFormula(), TGDMLWrite::ChooseObject(), TMakeProject::ChopFileName(), TCondor::ClaimVM(), ClassImp(), ClassImpQ(), TBufferJSON::ClassMember(), TBufferXML::ClassMember(), TBufferSQL2::ClassMember(), TXSockPipe::Clean(), RooAbsArg::cleanBranchName(), TSecContext::Cleanup(), TQueryResultManager::CleanupQueriesDir(), TProofLite::CleanupSandbox(), TRootSecContext::CleanupSecContext(), TQueryResultManager::CleanupSession(), TSessionViewer::CleanupSession(), TAuthenticate::ClearAuth(), TDataSetManagerFile::ClearCache(), TProofLite::ClearCache(), TProof::ClearData(), TGFileBrowser::Clicked(), TRootBrowser::CloneBrowser(), TGuiBldDragManager::CloneEditable(), TAlienFile::Close(), TPostScript::Close(), TProofBench::CloseOutFile(), TGTextEditor::CloseWindow(), TTreeCloner::CollectBranches(), TApplicationRemote::CollectInput(), TEfficiency::Combine(), TStructNodeProperty::Compare(), TMVA::compareanapp(), TStreamerInfo::CompareContent(), CompareMasses(), CompareTo(), TPRegexp::Compile(), RooWorkspace::CodeRepo::compileClasses(), TGTextEditor::CompileMacro(), TSystem::CompileMacro(), TTabCom::Complete(), TFractionFitter::ComputeFCN(), TS3HTTPRequest::ComputeSignature(), TSystem::ConcatFileName(), TGDMLParse::Cone(), ConnectCINT(), TNetFile::ConnectServer(), TNetSystem::ConsistentWith(), Contains(), TTask::Continue(), TDocOutput::Convert(), THtml::Convert(), TTVLVEntry::ConvertAliases(), THbookFile::ConvertRWN(), RooStreamParser::convertToDouble(), RooStreamParser::convertToInteger(), RooStreamParser::convertToString(), TTreeSQL::ConvertTypeName(), TSystemFile::Copy(), TProofBench::CopyDataSet(), TSelHandleDataSet::CopyFile(), THtml::CopyFileFromEtcDir(), TDocOutput::CopyHtmlFile(), TTVLVEntry::CopyItem(), TProofLite::CopyMacroToCache(), TMVA::correlationscatters(), TMVA::correlationscattersMultiClass(), TMVA::CorrGui(), TMVA::CorrGuiMultiClass(), CountChar(), TGeoPainter::CountNodes(), TXProofMgr::Cp(), TCivetweb::Create(), TFastCgi::Create(), TSlave::Create(), TXSocket::Create(), TMVA::PDEFoam::Create(), create_lin_Nvar_weighted(), TContextMenu::CreateArgumentTitle(), TSQLFile::CreateBasicTables(), TTreeSQL::CreateBranch(), TGFileBrowser::CreateBrowser(), TRootBrowserLite::CreateBrowser(), TMVA::MethodCategory::CreateCategoryDSI(), TDocOutput::CreateClassIndex(), TSQLFile::CreateClassTable(), TGDMLWrite::CreateCutTubeN(), TMVA::ResultsRegression::CreateDeviationHistograms(), TContextMenu::CreateDialogTitle(), TGSlider::CreateDisabledPicture(), TGPictureButton::CreateDisabledPicture(), TClassDocOutput::CreateDotClassChartIncl(), TGDMLWrite::CreateElementN(), TGDMLWrite::CreateEllipsoidN(), THttpServer::CreateEngine(), TGFileContainer::CreateFileList(), TDocOutput::CreateHierarchy(), TClassDocOutput::CreateHierarchyDot(), RooDataSet::createHistogram(), RooAbsRealLValue::createHistogram(), RooAbsReal::createIntegral(), TDocLatexDirective::CreateLatex(), THtml::CreateListOfClasses(), TDataSetManagerFile::CreateLsFile(), TGDMLWrite::CreateMaterialN(), TRootContextMenu::CreateMenu(), TProof::CreateMerger(), TGDMLWrite::CreateMixtureN(), TDocOutput::CreateModuleIndex(), TMVA::ResultsMulticlass::CreateMulticlassHistos(), TVirtualPacketizer::CreateNewPacket(), TPacketizerMulti::CreatePacketizer(), RooStats::ProposalHelper::CreatePdf(), RooAbsReal::createPlotProjection(), TGDMLWrite::CreatePolyconeN(), TContextMenu::CreatePopupTitle(), TDocOutput::CreateProductIndex(), RooAbsReal::createProfile(), RooAbsPdf::createProjection(), ROOT::Internal::TTreeReaderValueBase::CreateProxy(), TSQLFile::CreateRawTable(), TProtoClass::TProtoRealData::CreateRealData(), ROOT::TGenericClassInfo::CreateRuleSet(), TProofLite::CreateSandbox(), RooAbsPdf::createScanCdf(), RooAbsReal::createScanRI(), TProofServLite::CreateServer(), TXProofServ::CreateServer(), TProofServ::CreateServer(), TClassDocOutput::CreateSourceOutputStream(), TDocMacroDirective::CreateSubprocessInputFile(), TProofLite::CreateSymLinks(), TTreeSQL::CreateTable(), TGDMLWrite::CreateTwistedTrapN(), TDocOutput::CreateTypeIndex(), TMVA::MethodCuts::CreateVariablePDFs(), TMVA::MethodANNBase::CreateWeightMonitoringHists(), TGDMLWrite::CreateXtrusionN(), TGDMLParse::CutTube(), TSubString::Data(), TGTextEditor::DataDropped(), DefaultErrorHandler(), RooFormula::DefinedVariable(), TTreeFormula::DefinedVariable(), TSQLTableData::DefineSQLName(), TSQLFile::DefineTableName(), TGTextEntry::Del(), TSQLFile::DeleteKeyFromDB(), TSessionViewer::DeleteQuery(), TTreeReader::DeregisterValueReader(), TEveElement::DestroyElements(), TEveElement::DestroyOrWarn(), TTabCom::DetermineClass(), TMVA::deviations(), TEveProjectionAxesGL::DirectDraw(), TGFileBrowser::DirName(), TSQLFile::DirWriteHeader(), TProof::DisablePackageOnClient(), TProof::DisablePackages(), TXSocket::DisconnectSession(), TProofLog::Display(), TProofLogElem::Display(), TGeoPainter::DistanceToPrimitiveVol(), TGeoShapeAssembly::DistFromOutside(), TGeoTrd1::Divide(), TGeoTrd2::Divide(), TGraphAsymmErrors::Divide(), TGeoPara::Divide(), TGeoTube::Divide(), TGeoBBox::Divide(), TGeoSphere::Divide(), TGeoCone::Divide(), TGeoPcon::Divide(), TGeoPgon::Divide(), TGeoVolume::Divide(), TGeoTubeSeg::Divide(), TGeoTrap::Divide(), TGeoConeSeg::Divide(), TGeoBuilder::Division(), do_anadist(), do_anadist_ds(), do_anadist_getkey(), do_cache(), do_info_server(), do_ls(), do_ls_files_server(), do_put(), do_rm(), do_verify(), TH2Editor::DoAddArr(), TH1Editor::DoAddBar(), TH2Editor::DoAddBB(), TH2Editor::DoAddBox(), TH2Editor::DoAddCol(), TH2Editor::DoAddError(), TH2Editor::DoAddFB(), TFitEditor::DoAddition(), TH1Editor::DoAddMarker(), TH2Editor::DoAddPalette(), TFormula::DoAddParameter(), TH2Editor::DoAddScat(), TParallelCoordEditor::DoAddSelection(), TH1Editor::DoAddSimple(), TH2Editor::DoAddText(), TProofProgressMemoryPlot::DoAveragePlot(), TGeoTranslationEditor::DoCancel(), TGeoRotationEditor::DoCancel(), TGeoCombiTransEditor::DoCancel(), TGuiBldDragManager::DoClassMenu(), TF1::DoCreateHistogram(), TStyleManager::DoExport(), TGeoManagerEditor::DoExportGeometry(), TH2::DoFitSlices(), TH1Editor::DoHBar(), TStyleManager::DoImportCanvas(), TStyleManager::DoImportMacro(), TStyleManager::DoListSelect(), TProofProgressLog::DoLog(), TProofProgressMemoryPlot::DoMasterPlot(), TGuiBldDragManager::DoMove(), TH1Editor::DoPercent(), TProofProgressMemoryPlot::DoPlot(), TH2::DoProfile(), TH3::DoProject1D(), TH3::DoProject2D(), TH2::DoProjection(), TH2::DoQuantiles(), TGSpeedo::DoRedraw(), TGTextEntry::DoRedraw(), TGHProgressBar::DoRedraw(), TGuiBldDragManager::DoReplace(), TGuiBldDragManager::DoResize(), TGeoMixtureEditor::DoSelectElement(), TGFileBrowser::DoubleClicked(), TGeoMaterialEditor::DoUndo(), TGeoMixtureEditor::DoUndo1(), TProof::DownloadPackage(), TProofProgressMemoryPlot::DoWorkerPlot(), TGString::Draw(), THStack::Draw(), TGeoTrack::Draw(), TPie::Draw(), RooStats::SamplingDistPlot::Draw(), TTreePerfStats::Draw(), TGHotString::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), TEfficiency::Draw(), TKDE::Draw(), TASImage::Draw(), TGraph2D::Draw(), TTable::Draw(), TMultiLayerPerceptron::Draw(), TH1::Draw(), TMVA::draw_network(), TArrow::DrawArrow(), TGeoPainter::DrawBatemanSol(), TProofPlayer::DrawCanvas(), TKDE::DrawConfidenceInterval(), TProofBench::DrawCPU(), TProofBench::DrawDataSet(), TProofBench::DrawEfficiency(), TGPopupMenu::DrawEntry(), TKDE::DrawErrors(), RooStats::MCMCIntervalPlot::DrawHistInterval(), TMVA::StatDialogMVAEffs::DrawHistograms(), TGHotString::DrawHotChar(), RooStats::MCMCIntervalPlot::DrawKeysPdfInterval(), TGuiBldDragManager::DrawLasso(), TMVA::DrawNetworkMovie(), TFileDrawMap::DrawObject(), TProofBenchRunDataRead::DrawPerfProfiles(), TMultiLayerPerceptron::DrawResult(), TTreePlayer::DrawScript(), TTreePlayer::DrawSelect(), TGSpeedo::DrawText(), TASImage::DrawText(), TGString::DrawWrapped(), TGHotString::DrawWrapped(), TGuiBldDragManager::Drop(), TGuiBldDragManager::DropCanvas(), TDataSetIter::Du(), TGLScene::TSceneInfo::DumpDrawStats(), TFileDrawMap::DumpObject(), TXSockPipe::DumpReadySock(), TMultiLayerPerceptron::DumpWeights(), DynamicPath(), TGDMLParse::ElCone(), TXMLPlayer::ElementGetter(), TXMLPlayer::ElementSetter(), TGDMLParse::EleProcess(), TGDMLParse::Ellipsoid(), TGDMLParse::ElTube(), TTreeViewer::EmptyBrackets(), TAlienPackage::Enable(), TProof::EnablePackage(), TGTextEntry::End(), EndsWith(), TApplicationServer::ErrorHandler(), TProofServ::ErrorHandler(), TMVA::PyMethodBase::Eval(), ROOT::R::TRInterface::Eval(), RooBinningCategory::evaluate(), RooRangeBoolean::evaluate(), EventInfo(), TRootCanvas::EventInfo(), TMemStatShow::EventInfo1(), TMemStatShow::EventInfo2(), TEveMacro::Exec(), TXProofMgr::Exec(), TAlienPackage::Exec(), TProof::Exec(), TRootBrowserLite::ExecMacro(), TRootBrowser::ExecPlugin(), TContextMenu::Execute(), ROOT::R::TRInterface::Execute(), TCling::Execute(), TRootGuiBuilder::ExecuteAction(), TRootSniffer::ExecuteCmd(), TFumili::ExecuteCommand(), TRootBrowserLite::ExecuteDefaultAction(), TTreeViewer::ExecuteDraw(), TApplication::ExecuteFile(), TGTextEditor::ExecuteMacro(), TFumili::ExecuteSetCommand(), TTreeViewer::ExecuteSpider(), TTVRecord::ExecuteUserCode(), TUnixSystem::ExpandPathName(), TWinNTSystem::ExpandPathName(), RooStudyManager::expandWildCardSpec(), TMultiLayerPerceptron::Export(), TGeoVolume::Export(), TProofMergePrg::Export(), TGeoElementTable::ExportElementsRN(), TFileCollection::ExportInfo(), TAlienCollection::ExportXML(), TFormula::ExtractFunctors(), TGDMLWrite::ExtractVolumes(), fastMergeServer(), TStatsFeedback::Feedback(), TDrawFeedback::Feedback(), TProofPlayer::FeedBackCanvas(), TVirtualFFT::FFT(), TH1::FFT(), TASPluginGS::File2ASImage(), TAuthenticate::FileExpand(), TProofPerfAnalysis::FileRatePlot(), TTreeSQL::Fill(), THtml::TFileSysDB::Fill(), TProofPerfAnalysis::FillFileDist(), TProofPerfAnalysis::FillFileDistOneSrv(), TProofPerfAnalysis::FillFileInfo(), THttpCallArg::FillHttpHeader(), RooFitResult::fillLegacyCorrMatrix(), TDataSetManagerFile::FillLsDataSet(), TDataSetManager::FillMetaData(), TProofPerfAnalysis::FillWrkInfo(), TProofServ::FilterLocalroot(), TProof::Finalize(), TBranch::FindBranch(), TBranchElement::FindBranch(), TTree::FindBranch(), TDataSetIter::FindByTitle(), TUnixSystem::FindDynamicLibrary(), TWinNTSystem::FindDynamicLibrary(), TGeoElementTable::FindElement(), TZIPFile::FindEndHeader(), TUnixSystem::FindFile(), TWinNTSystem::FindFile(), TGContainer::FindFrameByName(), TMVA::TMVAGlob::findImage(), TGListTree::FindItemByPathname(), TBranch::FindLeaf(), TTree::FindLeaf(), TTreeFormula::FindLeafForExpression(), TCastorFile::FindServerAndPath(), TClass::FindStreamerInfoAbstractEmulated(), TGeoManager::FindVolumeFast(), First(), TEfficiency::Fit(), fit1(), RooAbsMCStudyModule::fitOptions(), ROOT::Fit::FitOptionsMake(), FITS_tutorial1(), FITS_tutorial6(), fitslicesy(), FixDuplicateNames(), TXSockPipe::Flush(), foam_demopers(), TGFileBrowser::FormatFileInfo(), TMVA::Tools::FormattedOutput(), FormatToolTip(), FormImp(), RooGenericPdf::formula(), RooStats::HLFactory::fParseLine(), TGFileBrowser::FullPathName(), funs(), TMLPAnalyzer::GatherInformations(), RooAbsGenContext::generate(), TMakeProject::GenerateClassPrefix(), TStreamerInfo::GenerateDeclaration(), TStreamerInfo::GenerateHeaderFile(), TMakeProject::GenerateIncludeForTemplate(), TStreamerInfo::GenerateIncludes(), TMakeProject::GenerateMissingStreamerInfos(), TMakeProject::GeneratePostDeclaration(), geometry(), TControlBarButton::GetAction(), TGMimeTypes::GetAction(), TObjOptLink::GetAddOption(), TTVLVEntry::GetAlias(), RooStats::DetailedOutputAggregator::GetAsDataSet(), ROOT::R::TRObject::GetAttribute(), TRootSniffer::GetAutoLoad(), TSQLFile::GetBlobClassData(), TSQLFile::GetBlobClassDataStmt(), THbookBranch::GetBlockName(), TMathText::GetBoundingBox(), TLatex::GetBoundingBox(), ROOT::Internal::TBranchProxyDescriptor::GetBranchName(), ROOT::Internal::TBranchProxyClassDescriptor::GetBranchName(), TGTextEntry::GetCharacterIndex(), TFormLeafInfoMethod::GetClass(), TClassTree::GetClasses(), TGMainFrame::GetClassHints(), TBranchSTL::GetClassName(), TBranchObject::GetClassName(), TRemoteObject::GetClassName(), TKey::GetClassName(), TBranchElement::GetClassName(), TSQLClassInfo::GetClassTableName(), TXNetSystem::GetClientAdmin(), TBranchElement::GetClonesName(), TAliEnFind::GetCollection(), TAlienCollection::GetCollectionName(), TBranchElement::GetCollectionProxy(), TTreeSQL::GetColumnIndice(), TTableSorter::GetColumnName(), TOracleServer::GetColumns(), TMySQLServer::GetColumns(), TTimer::GetCommand(), TGWidget::GetCommand(), THttpCallArg::GetContent(), THttpCallArg::GetContentType(), TStreamerBasicPointer::GetCountClass(), TStreamerLoop::GetCountClass(), TStreamerBasicPointer::GetCountName(), TStreamerLoop::GetCountName(), TSQLTableInfo::GetCreateTime(), THbookFile::GetCurDir(), TClass::GetDataMember(), TDataSetManagerFile::GetDataSet(), TDataSetManagerAliEn::GetDataSet(), TProofServ::GetDataSetNodeMap(), TDataSetManagerFile::GetDataSetPath(), TDataSetManagerFile::GetDataSets(), TSQLiteStatement::GetDate(), TSQLiteStatement::GetDatime(), TSQLServer::GetDB(), TSQLServer::GetDBMS(), TVirtualFFT::GetDefaultFFT(), TArrow::GetDefaultOption(), TDirectoryFile::GetDirectory(), TDirectory::GetDirectory(), TGFileContainer::GetDirectory(), TXNetSystem::GetDirEntry(), TCanvas::GetDISPLAY(), TCollectionPropertyBrowsable::GetDraw(), TProofPlayer::GetDrawArgs(), TGeoPainter::GetDrawPath(), getDSMgr(), TXMLSetup::GetElItemName(), TAlienPackage::GetEnable(), TSQLTableInfo::GetEngine(), TTreeSQL::GetEntries(), TDSetElement::GetEntries(), TDSet::GetEntries(), TBranchSTL::GetEntry(), TEntryList::GetEntryList(), TProof::Getenv(), TSQLServer::GetErrorMsg(), TStreamerElement::GetExecID(), GetExpressionFileName(), TTreeResult::GetFieldName(), TXProofMgr::GetFile(), TBranch::GetFile(), TDSetElement::GetFileInfo(), TAlienResult::GetFileInfoList(), TGLiteResult::GetFileInfoList(), TEntryListFromFile::GetFileName(), TEntryList::GetFileName(), TGText::GetFileName(), TBranch::GetFileName(), THttpCallArg::GetFileName(), TGFileContainer::GetFilePictures(), TFileCollection::GetFilesOnServer(), TFileCollection::GetFilesPerServer(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TPaveStats::GetFitFormat(), TStyle::GetFitFormat(), TGFontPool::GetFont(), TGFontPool::GetFontFromAttributes(), TGFontDialog::GetFontName(), TGLFontManager::GetFontNameFromId(), TPie::GetFractionFormat(), TWebFile::GetFromWeb(), TWebFile::GetFromWeb10(), TDataMember::GetFullTypeName(), TEveManager::GetGeometry(), TAliEnFind::GetGridResult(), TWebFile::GetHead(), TStyle::GetHeaderPS(), TAlien::GetHomeDirectory(), TSQLServer::GetHost(), TTreePerfStats::GetHostInfo(), TGMimeTypes::GetIcon(), TSystemFile::GetIconName(), TKey::GetIconName(), TCondor::GetImage(), TAlienCollection::GetInfoComment(), TProof::GetInputData(), TAlienJobStatus::GetJdlKey(), TAlienMasterJob::GetJobStatus(), TKDE::GetKDEFunction(), TRemoteObject::GetKeyClassName(), TRemoteObject::GetKeyObjectName(), TMVA::MethodBase::GetKSTrainingVsTest(), TPaveLabel::GetLabel(), TLegendEntry::GetLabel(), TPaveText::GetLabel(), TPie::GetLabelFormat(), TTree::GetLeaf(), TMVA::MethodBase::GetLine(), TGString::GetLines(), TStyle::GetLineStyleString(), TTabCom::GetListOfEnvVars(), TSystemDirectory::GetListOfFiles(), TFormLeafInfoMethod::GetLocalValuePointer(), TSQLFile::GetLocking(), TSQLFile::GetLongString(), TTreeIndex::GetMajorFormula(), TTreeIndex::GetMajorFormulaParent(), TChainIndex::GetMajorFormulaParent(), TTreeIndex::GetMajorName(), TChainIndex::GetMajorName(), TGeoMCGeometry::GetMaterial(), TGeoManager::GetMaterial(), TGeoTabManager::GetMaterialEditor(), TGeoManager::GetMaterialIndex(), TGeoMCGeometry::GetMedium(), TGeoManager::GetMedium(), TSlider::GetMethod(), TButton::GetMethod(), TMethodCall::GetMethod(), THttpCallArg::GetMethod(), TMethodCall::GetMethodName(), TTreeIndex::GetMinorFormula(), TTreeIndex::GetMinorFormulaParent(), TChainIndex::GetMinorFormulaParent(), TTreeIndex::GetMinorName(), TChainIndex::GetMinorName(), TDataSetManagerFile::GetModTime(), TXProofMgr::GetMssUrl(), TProofMgr::GetMssUrl(), TSQLClassColumnInfo::GetName(), TStatsFeedback::GetName(), TDrawFeedback::GetName(), TPaletteAxis::GetName(), TRealData::GetName(), TSQLClassInfo::GetName(), TPave::GetName(), TSQLColumnData::GetName(), TPolyMarker3D::GetName(), TMVA::OptionBase::GetName(), TStructNode::GetName(), TTreePerfStats::GetName(), TMVA::DataSetInfo::GetName(), RooLinkedList::GetName(), TCollection::GetName(), TEveProjection::GetName(), TQCommand::GetName(), TGaxis::GetName(), TMVA::VariableTransformBase::GetName(), TGWindow::GetName(), RooAbsCollection::GetName(), TVirtualPacketizer::TVirtualSlaveStat::GetName(), TGeoDecayChannel::GetName(), TPad::GetName(), TMVA::MethodBase::GetName(), TTreePlayer::GetNameByIndex(), TMVA::DataSet::GetNClassEvents(), TMLPAnalyzer::GetNeurons(), TPacketizerFile::GetNextPacket(), TPacketizerAdaptive::GetNextPacket(), TSQLFile::GetNormalClassData(), TSQLFile::GetNormalClassDataAll(), TSQLObjectInfo::GetObjClassName(), TBranchObject::GetObjClassName(), TFileDrawMap::GetObject(), TFileDrawMap::GetObjectInfo(), TGeoTrack::GetObjectInfo(), TNode::GetObjectInfo(), TFileMerger::GetObjectNames(), TTreeDrawArgsParser::GetObjectTitle(), TDataMember::GetOffset(), TLegendEntry::GetOption(), TPointsArray3D::GetOption(), TArrow::GetOption(), TPolyMarker::GetOption(), TPave::GetOption(), TPolyLine3D::GetOption(), TPolyMarker3D::GetOption(), TPolyLine::GetOption(), THelix::GetOption(), TNode::GetOption(), TAxis3D::GetOption(), TVolume::GetOption(), TGaxis::GetOption(), TObjOptLink::GetOption(), TFile::GetOption(), TGeoVolume::GetOption(), TH1::GetOption(), TApplication::GetOptions(), TProof::GetOutput(), TDocDirective::GetOutputDir(), THtml::GetOutputDir(), TAlienCollection::GetOutputFileName(), TStyle::GetPaintTextFormat(), TFitter::GetParameter(), TRootDialog::GetParameters(), TMethodCall::GetParams(), TBranchElement::GetParentName(), TFumili::GetParName(), TGeoManager::GetParticleName(), TAttParticle::GetParticleType(), RooProdPdf::getPartIntList(), TGeoNodeCache::GetPath(), TDirectory::GetPath(), TDCacheSystem::GetPathInfo(), THttpCallArg::GetPathName(), TPie::GetPercentFormat(), TProofBench::GetPerfSpecs(), TGLViewer::GetPictureFileName(), RooStats::HybridResult::GetPlot(), TGLH2PolyPainter::GetPlotInfo(), TGLVoxelPainter::GetPlotInfo(), TGLLegoPainter::GetPlotInfo(), TGLBoxPainter::GetPlotInfo(), RooAbsReal::getPlotLabel(), TGeoMedium::GetPointerName(), TGeoMatrix::GetPointerName(), TGeoMaterial::GetPointerName(), TGeoShape::GetPointerName(), TGeoVolume::GetPointerName(), TGPrintDialog::GetPrinters(), TProofServ::GetPriority(), RooAddPdf::getProjCache(), TRint::GetPrompt(), getProof(), TMethodCall::GetProto(), THttpCallArg::GetQuery(), GetRange(), TSQLClassInfo::GetRawTableName(), TProof::GetRC(), TBranch::GetRealFileName(), TDocMacroDirective::GetResult(), TDocLatexDirective::GetResult(), TProofLogElem::GetRole(), TAliEnFind::GetSearchId(), TCanvas::GetSelectedOpt(), TSelector::GetSelector(), TProofMgrLite::GetSessionLogs(), TXProofMgr::GetSessionLogs(), TGeoMCGeometry::GetShape(), TCling::GetSharedLibDeps(), TClass::GetSharedLibs(), TFunction::GetSignature(), TStreamerSTL::GetSize(), TClassTree::GetSourceDir(), TSQLClassColumnInfo::GetSQLName(), TSQLClassColumnInfo::GetSQLType(), TProofLite::GetStagingStatusDataSet(), TPaveStats::GetStatFormat(), TStyle::GetStatFormat(), TClass::GetStreamerInfoAbstractEmulated(), TGString::GetString(), TGTextBuffer::GetString(), TOracleStatement::GetString(), ROOT::Internal::TBranchProxyClassDescriptor::GetSubBranchPrefix(), TTabCom::GetSysIncludePath(), TGeoTabManager::GetTabIndex(), TOracleServer::GetTableInfo(), TMySQLServer::GetTableInfo(), TSQLServer::GetTableInfo(), TOracleServer::GetTables(), TSQLServer::GetTablesList(), TSQLFile::GetTablesType(), TDataMember::GetterMethod(), TEveText::GetText(), TGStatusBar::GetText(), TGLOverlayButton::GetText(), TGListTreeItemStd::GetText(), TRecCmdEvent::GetText(), TSQLiteStatement::GetTime(), TAxis::GetTimeFormat(), TAxis::GetTimeFormatOnly(), TGListTreeItemStd::GetTipText(), TPaveLabel::GetTitle(), TKey::GetTitle(), TGLabel::GetTitle(), TQCommand::GetTitle(), TGaxis::GetTitle(), TASImage::GetTitle(), TParallelCoordSelect::GetTitle(), TGTextLBEntry::GetTitle(), TAxis::GetTitle(), TGTextButton::GetTitle(), TPad::GetTitle(), TStyle::GetTitlePS(), TCivetweb::GetTopName(), THttpServer::GetTopName(), THttpCallArg::GetTopName(), TGeoMCGeometry::GetTransformation(), TMVA::VariableNormalizeTransform::GetTransformationStrings(), TParallelCoord::GetTree(), TFriendElement::GetTreeName(), TEntryListFromFile::GetTreeName(), TEntryList::GetTreeName(), TTVLVEntry::GetTrueName(), TDataMember::GetTrueTypeName(), TSQLColumnData::GetType(), TGMimeTypes::GetType(), TPrimary::GetType(), TFile::GetType(), TSQLColumnInfo::GetTypeName(), TLeafObject::GetTypeName(), TDataType::GetTypeName(), TDataMember::GetTypeName(), TStreamerElement::GetTypeName(), TStreamerElement::GetTypeNameBasic(), RooAbsReal::getUnit(), TSQLTableInfo::GetUpdateTime(), THttpCallArg::GetUserName(), TAuthenticate::GetUserPasswd(), TSQLColumnData::GetValue(), TSQLStructure::GetValue(), TGProgressBar::GetValueFormat(), TPie::GetValueFormat(), TFormula::GetVariable(), TMinuitMinimizer::GetVariableSettings(), TFormula::GetVarNumber(), TCutG::GetVarX(), TCutG::GetVarY(), TFoam::GetVersion(), TCondor::GetVirtualMachines(), TCondor::GetVmInfo(), TGeoManager::GetVolume(), TGeoPainter::GetVolumeInfo(), TWinNTSystem::GetVolumes(), TXProofServ::GetWorkers(), TProofServ::GetWorkers(), TProofPerfAnalysis::GetWrkFileList(), TProofMgr::GetXProofMgrHook(), TMathText::GetXsize(), TLatex::GetXsize(), RooPlotable::getYAxisLabel(), TMathText::GetYsize(), TLatex::GetYsize(), TMVA::Tools::GetYTitleWithUnit(), TRootSnifferScanRec::GoInside(), TProof::GoMoreParallel(), TGuiBldDragManager::GrabFrame(), TASImage::Gradient(), TProofLog::Grep(), TProofBenchDataSet::Handle(), TEveManager::TExceptionHandler::Handle(), TProofServ::HandleArchive(), TTVLVContainer::HandleButton(), TProofServ::HandleCache(), TApplicationServer::HandleCheckFile(), TProofServ::HandleCheckFile(), TGCommandPlugin::HandleCommand(), TGuiBldDragManager::HandleCopy(), TProofServ::HandleDataSets(), TGuiBldDragManager::HandleDelete(), TDocParser::HandleDirective(), TRootEmbeddedCanvas::HandleDNDDrop(), TRootCanvas::HandleDNDDrop(), TGTextView::HandleDNDDrop(), TEveViewer::HandleElementPaste(), TXSlave::HandleError(), TGuiBldDragManager::HandleEvent(), TProofServ::HandleException(), TFormula::HandleExponentiation(), TXProofServ::HandleInput(), TProof::HandleInputMessage(), TGuiBldDragManager::HandleKey(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TFormula::HandleLinear(), TRootBrowser::HandleMenu(), TGListTree::HandleMotion(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), TGuiBldDragManager::HandlePaste(), TFormula::HandlePolN(), TProofServ::HandleProcess(), TProofServ::HandleRetrieve(), TGuiBldDragManager::HandleReturn(), TGTextEdit::HandleSelection(), TGTextEntry::HandleSelectionRequest(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TRint::HandleTermInput(), TGTextEditor::HandleTimer(), TSessionViewer::HandleTimer(), TXProofServ::HandleUrgentData(), HashCase(), HashFoldCase(), TGPicture::HashName(), ROOT::Detail::TSchemaRuleSet::HasRuleWithSourceClass(), THtml::HaveDot(), TGuiBldDragManager::HighlightCompositeFrame(), TTabCom::Hook(), RooStats::HybridPlot::HybridPlot(), TGDMLParse::Hype(), RooHistFunc::importWorkspaceHook(), RooHistPdf::importWorkspaceHook(), TSQLFile::IncrementModifyCounter(), Index(), TPie::Init(), TSlaveLite::Init(), TBranchClones::Init(), TXSlave::Init(), TXProofMgr::Init(), TDataSetManagerFile::Init(), TTreeSQL::Init(), TWebFile::Init(), TProofOutputFile::Init(), TSlave::Init(), TProofProgressLog::Init(), TUnuranSampler::Init(), TProofLite::Init(), TMonaLisaWriter::Init(), TBranchElement::Init(), TDataSetManagerAliEn::Init(), TClass::Init(), TProof::Init(), init_icon_paths(), TProofLite::InitDataSetManager(), TXSocket::InitEnvs(), RooBinningCategory::initialize(), TFoam::Initialize(), RooDLLSignificanceMCSModule::initializeInstance(), RooRandomizeParamMCSModule::initializeInstance(), RooStats::UpperLimitMCSModule::initializeInstance(), TBranchElement::InitializeOffsets(), TROOT::InitInterpreter(), TFormula::InitLambdaExpression(), TDataSetManagerFile::InitLocalCache(), TMVA::DataSetFactory::InitOptions(), TProofPlayerRemote::InitPacketizer(), TRootBrowser::InitPlugins(), RooIntegralMorph::inputBaseName(), RooFFTConvPdf::inputBaseName(), TGTextEntry::Insert(), Insert(), TStreamerInfo::InsertArtificialElements(), ROOT::R::TRInterface::Install(), TAlienPackage::InstallAllPackages(), TAlienPackage::InstallSinglePackage(), IsAlnum(), IsAlpha(), IsAscii(), TStreamerSTL::IsBase(), IsBin(), IsDec(), IsDigit(), TDocParser::IsDirective(), TSystemFile::IsDirectory(), THttpServer::IsFileRequested(), IsHex(), IsInBaseN(), ROOT::R::TRInterface::IsInstalled(), TSQLFile::IsLongStringCode(), TGDMLWrite::IsNullParam(), IsOct(), TStreamerElement::IsOldFormat(), TGDMLParse::IsoProcess(), TGuiBldDragManager::IsPasteFrameExist(), TMVA::Option< T >::IsPreDefinedVal(), TGTextEditor::IsSaved(), TEveGListTreeEditorFrame::ItemDblClicked(), TProofPlayerRemote::JoinProcess(), TBufferJSON::JsonStartElement(), TBufferJSON::JsonStreamCollection(), TBufferJSON::JsonWriteObject(), TAlien::KillById(), Krb5Authenticate(), Krb5CheckCred(), Krb5InitCred(), Last(), TProofPerfAnalysis::LatencyPlot(), TTableSorter::LearnTable(), TMVA::likelihoodrefs(), TSystem::ListLibraries(), TAlien::ListPackages(), TProofLite::Load(), TEventIterTree::Load(), TSystem::Load(), TProof::Load(), THtml::LoadAllLibs(), TClass::LoadClassInfo(), TMVA::RMethodBase::LoadData(), TEventIter::LoadDir(), TGTextEditor::LoadFile(), TGApplication::LoadGraphicsLibs(), TApplication::LoadGraphicsLibs(), TPluginManager::LoadHandlerMacros(), TPluginManager::LoadHandlersFromPluginDirs(), TFITSHDU::LoadHDU(), TCling::LoadLibraryMap(), TEntryListFromFile::LoadList(), TROOT::LoadMacro(), TProof::LoadPackageOnClient(), TCling::LoadPCM(), TEveVSD::LoadTrees(), TMultiLayerPerceptron::LoadWeights(), TDavixSystem::Locate(), TXNetSystem::Locate(), TXNetFileStager::LocateCollection(), TFileStager::LocateCollection(), TSQLStructure::LocateElementColumn(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), TQueryResultManager::LocateQuery(), TGLSceneBase::LockIdStr(), TProof::LogViewer(), ROOT::MacOSX::X11::ColorParser::LookupColorByName(), TAlienCollection::LookupSUrls(), THbookFile::ls(), TQCommand::ls(), TDataSetIter::ls(), TStreamerElement::ls(), TStreamerBase::ls(), TStreamerInfo::ls(), TStreamerSTL::ls(), TEveUtil::Macro(), TROOT::Macro(), main(), TGeoBoolNode::MakeBranch(), TMVA::MethodTMlpANN::MakeClass(), TTreePlayer::MakeClass(), THtml::MakeClass(), TTabCom::MakeClassFromVarName(), TPrincipal::MakeCode(), TTreePlayer::MakeCode(), TMultiDimFit::MakeCode(), TTableDescriptor::MakeCommentField(), TGeoVolumeMulti::MakeCopyVolume(), TClass::MakeCustomMenuList(), TProofBench::MakeDataSet(), RooWorkspace::makeDir(), TDCacheSystem::MakeDirectory(), TGLAnnotation::MakeEditor(), RooStats::HypoTestInverterPlot::MakeExpectedPlot(), RooProduct::makeFPName(), TRootSnifferScanRec::MakeItemName(), MakeLinkPic(), TGeoCompositeShape::MakeNode(), TFile::MakeProject(), TFile::MakeProjectParProofInf(), MakeTopLinks(), TTreeViewer::MapBranch(), TProof::MarkBad(), RooAbsReal::matchArgsByName(), TPRegexp::MatchInternal(), TGDMLParse::MatProcess(), MD5(), RooAbsData::meanVar(), memstatExample(), TGuiBldDragManager::Menu4Frame(), TAlienMasterJob::Merge(), TProofOutputFile::Merge(), TTree::Merge(), TProofPlayerRemote::MergeOutput(), TProofPlayerRemote::MergeOutputFiles(), TFileMerger::MergeRecursive(), ROOT::Math::RMinimizer::Minimize(), RooCmdConfig::missingArgs(), TMinuit::mncomd(), TMinuit::mncrck(), TMinuit::mnexcm(), TMinuit::mnhelp(), TMinuit::mnpint(), TMinuit::mnpsdf(), TMinuit::mnset(), TProof::ModifyWorkerLists(), TDataSetManager::MonitorUsedSpace(), TSystemFile::Move(), RooList::moveAfter(), RooList::moveBefore(), TMVA::mvas(), TMVA::mvasMulticlass(), TMVA::mvaweights(), myfit(), TGDMLParse::NameShort(), TGTextEntry::NewMark(), TGTab::NewTab(), TMVA::TMVAGlob::NextKey(), TGeoBuilder::Node(), TEveGeoTopNode::NodeVisChanged(), RooAbsPdf::normRange(), TASLogHandler::Notify(), TProofServLogHandler::Notify(), TIdleTOTimer::Notify(), TDataSetManagerFile::NotifyUpdate(), Obsolete(), TClingBaseClassInfo::Offset(), TSlave::OldAuthSetup(), TProofServ::OldAuthSetup(), OldProofServAuthSetup(), OldSlaveAuthSetup(), TSessionServerFrame::OnBtnAddClicked(), TSessionServerFrame::OnBtnConnectClicked(), TSessionServerFrame::OnBtnDeleteClicked(), TSessionFrame::OnBtnGetQueriesClicked(), TSessionQueryFrame::OnBtnShowLog(), TSessionQueryFrame::OnBtnSubmit(), TSessionFrame::OnCommandLine(), TNewChainDlg::OnDoubleClick(), TSessionOutputFrame::OnElementDblClicked(), TSessionFrame::OnEnablePackages(), TRootContextMenu::OnlineHelp(), TSessionViewer::OnListTreeClicked(), TSessionFrame::OnUploadPackages(), TArchiveFile::Open(), TAlienFile::Open(), TPostScript::Open(), TAlienCollection::Open(), TFile::Open(), TAlienCollection::OpenAlienCollection(), TXNetSystem::OpenDirectory(), TDCacheSystem::OpenDirectory(), TFileMerger::OpenExcessFiles(), TProofOutputFile::OpenFile(), TFile::OpenFromCache(), TProofBench::OpenOutFile(), TRootGuiBuilder::OpenProject(), TAlienCollection::OpenQuery(), ROOT::Internal::TBranchProxyHelper::operator const char *(), ROOT::R::TRDataFrame::Binding::operator T(), operator!(), TConvertClonesArrayToProxy::operator()(), operator+(), operator+=(), operator<<(), ROOT::R::TRDataFrame::Binding::operator<<(), TRegexp::operator=(), RooMappedCategory::Entry::operator=(), TSubString::operator=(), ROOT::R::TRDataFrame::Binding::operator=(), operator==(), ROOT::R::TRDataFrame::Binding::operator>>(), operator||(), TGeoChecker::OpProgress(), TPRegexp::Optimize(), TGeoManager::OptimizeVoxels(), TGDMLParse::Orb(), ROOT::Internal::TFriendProxyDescriptor::OutputDecl(), ROOT::Internal::TBranchProxyClassDescriptor::OutputDecl(), TFileMerger::OutputFile(), RooExpensiveObjectCache::ExpensiveObject::ownerName(), TPerfStats::PacketEvent(), TPaveStats::Paint(), TSpline::Paint(), TFileDrawMap::Paint(), TPolyLineShape::Paint(), TPolyLine::Paint(), THStack::Paint(), TMultiGraph::Paint(), TGLHistPainter::Paint(), TTreePerfStats::Paint(), TPie::Paint(), TGaxis::Paint(), TASImage::Paint(), TF3::Paint(), TGraph2D::Paint(), TH1::Paint(), TGaxis::PaintAxis(), TFileDrawMap::PaintDir(), TLatex::PaintLatex(), TLatex::PaintLatex1(), TMathText::PaintMathText(), TPaveText::PaintPrimitives(), THistPainter::PaintScatterPlot(), TSpectrum2Painter::PaintSpectrum(), THistPainter::PaintStat(), THistPainter::PaintStat2(), THistPainter::PaintStat3(), TGeoPainter::PaintVolume(), TGDMLParse::Para(), TGDMLParse::Paraboloid(), TMVA::paracoor(), RooAbsPdf::paramOn(), TXSlave::ParseBuffer(), TProof::ParseConfigField(), TDataSetManager::ParseDataSetSrvMaps(), TMVA::Tools::ParseFormatLine(), TFileInfo::ParseInput(), TTreeDrawArgsParser::ParseName(), TMVA::Configurable::ParseOptions(), ROOT::Internal::TTreeReaderGenerator::ParseOptions(), TApplication::ParseRemoteLine(), ROOT::MacOSX::X11::ColorParser::ParseRGBTriplet(), TDataSetManager::ParseUri(), TTreeDrawArgsParser::ParseVarExp(), TTreeFormula::ParseWithLeaf(), TGFontPool::ParseXLFD(), TAlienCollection::ParseXML(), TFileMerger::PartialMerge(), TParticlePDG::ParticleClass(), TGTextEntry::Paste(), TGTextEdit::Paste(), TGTextEntry::PastePrimary(), TMVA::PDEFoam::PDEFoam(), TSQLStructure::PerformConversion(), TBufferXML::PerformPostProcessing(), TBufferJSON::PerformPostProcessing(), TBufferXML::PerformPreProcessing(), TXSocket::Ping(), TGeoElementRN::PJ(), TGuiBldDragManager::PlaceFrame(), RooAbsData::plotAsymOn(), TMVA::PlotCellTree(), RooAbsData::plotEffOn(), TMVA::PlotFoams(), TMVA::PlotNDimFoams(), RooAbsPdf::plotOn(), RooAbsData::plotOn(), RooRangeBoolean::plotSamplingHint(), TMVA::TransformationHandler::PlotVariables(), TTVRecord::PlugIn(), PoDCheckUrl(), TProofLite::PollForNewWorkers(), TProof::PollForNewWorkers(), TGDMLParse::Polycone(), TGDMLParse::Polyhedra(), TGDMLParse::PosProcess(), TXSockPipe::Post(), TAlienPackage::PostInstall(), TGFont::PostscriptFontName(), pq2register(), TXNetSystem::Prepare(), TFormula::PrepareEvalMethod(), TProof::PrepareInputDataFile(), TMVA::Factory::PrepareTrainingAndTestTree(), Prepend(), TUnixSystem::PrependPathName(), TWinNTSystem::PrependPathName(), TTVLVEntry::PrependTilde(), TTreeSQL::PrepEntry(), TAlienMasterJob::Print(), TStreamerInfoActions::TConfiguration::Print(), TNetFileStager::Print(), TAlienMasterJobStatus::Print(), TXNetFileStager::Print(), TRootSecContext::Print(), TSlaveLite::Print(), TLegendEntry::Print(), TNetFile::Print(), TTreeIndex::Print(), TGMimeTypes::Print(), TPerfEvent::Print(), TSelEventGen::Print(), TStatistic::Print(), TPrimary::Print(), TFileCollection::Print(), TEntryListFromFile::Print(), TProofNodeInfo::Print(), TGeoPhysicalNode::Print(), TEntryList::Print(), TAliEnFind::Print(), TSecContext::Print(), TFTP::Print(), TGTextEdit::Print(), TProofBenchRunCPU::Print(), TProofLite::Print(), TFileInfo::Print(), THostAuth::Print(), TUri::Print(), TProofBenchRunDataRead::Print(), TProofOutputFile::Print(), TGeoBranchArray::Print(), TApplicationRemote::Print(), TDSetElement::Print(), TTable::Print(), TPMERegexp::Print(), TSlave::Print(), TQueryResult::Print(), TFileInfoMeta::Print(), TPluginHandler::Print(), TZIPMember::Print(), TBranch::Print(), TGeoElementRN::Print(), TDSet::Print(), TGFont::Print(), TGeoDecayChannel::Print(), TSlaveInfo::Print(), TPad::Print(), TGeoBatemanSol::Print(), TGeoElemIter::Print(), TGCompositeFrame::Print(), TProof::Print(), THnBase::PrintBin(), TGeoNode::PrintCandidates(), TFITSHDU::PrintColumnInfo(), RooAbsOptTestStatistic::printCompactTreeHook(), RooAbsArg::printComponentTree(), TStreamerInfoActions::TConfiguration::PrintDebug(), TFileCollection::PrintDetailed(), TEnv::PrintEnv(), THostAuth::PrintEstablished(), TFITSHDU::PrintFileMetadata(), TFITSHDU::PrintFullTable(), TFITSHDU::PrintHDUMetadata(), TAlienJobStatus::PrintJob(), RooAbsCollection::printLatex(), RooMultiCategory::printMultiline(), RooAbsPdf::printMultiline(), RooAbsArg::printMultiline(), TProof::PrintProgress(), TFumili::PrintResults(), TMVA::StatDialogMVAEffs::PrintResults(), TGTextEditor::PrintText(), TMVA::VariableNormalizeTransform::PrintTransformation(), TDataSetManager::PrintUsedSpace(), TTreeFormula::PrintValue(), TStreamerInfo::PrintValue(), cling::printValue(), TStreamerInfo::PrintValueAux(), TMVA::probas(), TSelEventGen::Process(), TProofLite::Process(), TProofPlayer::Process(), TProofPlayerRemote::Process(), TProof::Process(), TDocOutput::ProcessDocInDir(), TDataSetManager::ProcessFile(), TFormula::ProcessFormula(), TApplicationServer::ProcessLine(), TApplication::ProcessLine(), TGClient::ProcessLine(), TCling::ProcessLine(), TGTextEditor::ProcessMessage(), TGFileDialog::ProcessMessage(), TGTextEdit::ProcessMessage(), TRootCanvas::ProcessMessage(), TRootBrowserLite::ProcessMessage(), TTreeViewer::ProcessMessage(), TProofServ::ProcessNext(), TMVA::MethodPyGTB::ProcessOptions(), TMVA::MethodPyAdaBoost::ProcessOptions(), TMVA::MethodPyRandomForest::ProcessOptions(), TMVA::MethodFDA::ProcessOptions(), TBufferXML::ProcessPointer(), TApplication::ProcessRemote(), THttpServer::ProcessRequest(), TXSocket::ProcessUnsolicitedMsg(), ROOT::TSchemaRule::ProcessVersion(), TSQLFile::ProduceClassSelectQuery(), TRootSniffer::ProduceExe(), TRootSniffer::ProduceImage(), TRootSniffer::ProduceMulti(), TXMLPlayer::ProduceSTLstreamer(), TProofProgressDialog::Progress(), TSessionQueryFrame::Progress(), TSessionQueryFrame::ProgressLocal(), TMVA::PDEFoamDiscriminant::Project2(), TMVA::PDEFoam::Project2(), TProfile::ProjectionX(), TProof::Prompt(), TAuthenticate::ProofAuthSetup(), TSessionFrame::ProofInfos(), TXProofMgr::PutFile(), TMVA::PyMethodBase::PySetProgramName(), TSapDBServer::Query(), TQueryResultManager::QueryDir(), TSessionViewer::QueryResultReady(), R__WriteDependencyFile(), R__WriteMoveConstructorBody(), TProofPerfAnalysis::RatePlot(), ROOT::Detail::TBranchProxy::Read(), TGenCollectionProxy::StreamHelper::read_std_string(), TMVA::Tools::ReadAttr(), TProofMgrLite::ReadBuffer(), TWebFile::ReadBuffer10(), TProofResourcesStatic::ReadConfigFile(), TSessionViewer::ReadConfiguration(), TSQLFile::ReadConfigurations(), TPythia6Decayer::ReadDecayTable(), TZIPFile::ReadDirectory(), TZIPFile::ReadEndHeader(), ROOT::Detail::TBranchProxy::ReadEntries(), TMVA::VariableInfo::ReadFromStream(), RooArgSet::readFromStream(), TDataSetManager::ReadGroupConfig(), TASImage::ReadImage(), TBufferSQL::ReadLong64(), TZIPFile::ReadMemberHeader(), TKey::ReadObj(), TKey::ReadObjectAny(), TKey::ReadObjWithBuffer(), TDatabasePDG::ReadPDGTable(), ReadRemote(), ReadRemoteImage(), TAuthenticate::ReadRootAuthrc(), ReadSize(), TSQLFile::ReadSQLClassInfos(), TMVA::MethodPyAdaBoost::ReadStateFromFile(), TMVA::MethodPyGTB::ReadStateFromFile(), TMVA::MethodPyRandomForest::ReadStateFromFile(), TMVA::MethodBase::ReadStateFromFile(), TXMLPlayer::ReadSTLarg(), TTree::ReadStream(), TFile::ReadStreamerInfo(), TBufferSQL::ReadUInt(), TBufferSQL::ReadULong(), TBufferSQL::ReadULong64(), TMVA::MethodTMlpANN::ReadWeightsFromStream(), TMVA::MethodTMlpANN::ReadWeightsFromXML(), TMVA::MethodCategory::ReadWeightsFromXML(), TZIPFile::ReadZip64EndLocator(), TZIPFile::ReadZip64EndRecord(), RooProdPdf::rearrangeProduct(), THnBase::RebinBase(), TProofProgressLog::Rebuild(), TXUnixSocket::Reconnect(), TXSocket::Reconnect(), TFileMerger::RecursiveRemove(), TUnixSystem::RedirectOutput(), TProofServ::RedirectOutput(), TDocOutput::ReferenceEntity(), TGDMLParse::Reflection(), TGeoPhysicalNode::Refresh(), TRootBrowserLite::Refresh(), regexp_pme(), TRootSniffer::RegisterCommand(), TDataSetManagerFile::RegisterDataSet(), TCling::RegisterModule(), TProofPlayer::ReinitSelector(), TCondor::Release(), TSelHandleDataSet::ReleaseCache(), TCling::ReloadAllSharedLibraryMaps(), TEntryList::RelocatePaths(), TProofLite::Remove(), Remove(), TDataSetManagerFile::RemoveDataSet(), TGShutter::RemovePage(), TQueryResultManager::RemoveQuery(), TGTextEntry::RemoveText(), TGLOverlayButton::Render(), TGLAnnotation::Render(), TEveCaloLegoOverlay::RenderHeader(), TWebFile::ReOpen(), TXMLFile::ReOpen(), TFile::ReOpen(), TSQLFile::ReOpen(), TGContainer::RepeatSearch(), Replace(), ReplaceAll(), TFormula::ReplaceParamName(), TPRegexp::ReplaceSubs(), TGFileBrowser::RequestFilter(), TProofLite::RequestStagingDataSet(), ROOT::R::TRInterface::Require(), TGIcon::Reset(), TProofServ::Reset(), TMemFile::ResetObjects(), TSessionQueryFrame::ResetProgressDialog(), TSessionViewer::ResetSession(), TParallelCoord::ResetTree(), TProofLite::ResolveKeywords(), TAlien::ResubmitById(), TProofLog::Retrieve(), TProofLogElem::Retrieve(), TGComboBox::ReturnPressed(), TAuthenticate::RfioAuth(), TXProofMgr::Rm(), TGLAxisPainter::RnrTitle(), RooMCStudy::RooMCStudy(), RooPlot::RooPlot(), TGDMLParse::RotProcess(), TMVA::rulevisCorr(), TMVA::rulevisHists(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TFastCgi::run_func(), TProofBench::RunCPU(), TProofBench::RunCPUx(), TProofBench::RunDataSet(), TProofBench::RunDataSetx(), TDocOutput::RunDot(), TMVA::RuleFitAPI::RunRuleFit(), TGeoChecker::SamplePoints(), TProofLog::Save(), TGuiBldDragManager::Save(), TAxis::SaveAttributes(), TGeoManager::SaveAttributes(), TFilePrefetch::SaveBlockInCache(), TColor::SaveColor(), TLegendEntry::SaveEntry(), TParallelCoord::SaveEntryLists(), TGTextEditor::SaveFile(), TGTextEditor::SaveFileAs(), TGuiBldDragManager::SaveFrame(), TGMainFrame::SaveFrameAsCodeOrImage(), TEnv::SaveLevel(), TPaveText::SaveLines(), TGMimeTypes::SaveMimes(), TDirectoryFile::SaveObjectAs(), TDirectory::SaveObjectAs(), TProofPlayer::SavePartialResults(), TProof::SavePerfTree(), TGLViewer::SavePicture(), TGLViewer::SavePictureUsingBB(), TGLViewer::SavePictureUsingFBO(), TPaveLabel::SavePrimitive(), TH1K::SavePrimitive(), TMacro::SavePrimitive(), TMathText::SavePrimitive(), TRootEmbeddedCanvas::SavePrimitive(), TGIcon::SavePrimitive(), TGraphErrors::SavePrimitive(), TVolumeView::SavePrimitive(), THStack::SavePrimitive(), TGraphAsymmErrors::SavePrimitive(), TText::SavePrimitive(), TGraphBentErrors::SavePrimitive(), TGButtonGroup::SavePrimitive(), TGGC::SavePrimitive(), TParallelCoord::SavePrimitive(), TGaxis::SavePrimitive(), TGVButtonGroup::SavePrimitive(), TH2Poly::SavePrimitive(), TGTab::SavePrimitive(), TGLabel::SavePrimitive(), TProfile::SavePrimitive(), TEfficiency::SavePrimitive(), TLatex::SavePrimitive(), TGHButtonGroup::SavePrimitive(), TGColorSelect::SavePrimitive(), TGraph::SavePrimitive(), TGTextEntry::SavePrimitive(), TASImage::SavePrimitive(), TGeoElementRN::SavePrimitive(), TGListTreeItemStd::SavePrimitive(), TGPictureButton::SavePrimitive(), TGeoDecayChannel::SavePrimitive(), TH1::SavePrimitive(), TF1::SavePrimitive(), TStyle::SavePrimitive(), TGGroupFrame::SavePrimitive(), TGHtml::SavePrimitive(), TH1::SavePrimitiveHelp(), TRootGuiBuilder::SaveProject(), TQueryResultManager::SaveQuery(), TQueryResult::SaveSelector(), TTVRecord::SaveSource(), TTreeViewer::SaveSource(), TStyle::SaveSource(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TPaveStats::SaveStyle(), TGSelectBox::SaveText(), TProofProgressLog::SaveToFile(), TXMLFile::SaveToFile(), TParallelCoord::SaveTree(), TEveManager::SaveVizDB(), TProof::SaveWorkerInfo(), TTreePlayer::Scan(), TClassTree::ScanClasses(), TRootSniffer::ScanCollection(), TDataSetManagerFile::ScanDataSet(), scandir(), TDataSetManager::ScanFile(), TGDMLParse::SclProcess(), RooAbsOptTestStatistic::sealNotice(), TSpectrum::Search(), TGTextEdit::Search(), TGListTree::Search(), TEvePointSelector::Select(), RooAbsCollection::selectByAttrib(), RooAbsCollection::selectByName(), RooAbsCollection::selectCommon(), TPgSQLServer::SelectDataBase(), TGHtmlBrowser::Selected(), TGuiBldDragManager::SelectFrame(), TMVA::VariableTransformBase::SelectInput(), TXSocket::SendCoordinator(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProof::SendDataSetStatus(), TProof::SendFile(), TMonaLisaWriter::SendFileCheckpoint(), TMonaLisaWriter::SendFileCloseEvent(), TProofMonSenderSQL::SendFileInfo(), TMonaLisaWriter::SendFileOpenProgress(), SendHostAuth(), TProofLite::SendInputDataFile(), TProof::SendInputDataFile(), TXSocket::SendInterrupt(), TSQLMonitoringWriter::SendParameters(), TMonaLisaWriter::SendProcessingProgress(), TMonaLisaWriter::SendProcessingStatus(), TXSocket::SendRaw(), TProofServ::SendResults(), TProofPlayerRemote::SendSelector(), TXSocket::SendUrgent(), TSQLiteServer::ServerInfo(), TPgSQLServer::ServerInfo(), TOracleServer::ServerInfo(), TMySQLServer::ServerInfo(), TBranchObject::SetAddress(), ROOT::R::TRObject::SetAttribute(), TUri::SetAuthority(), TProofDraw::SetCanvas(), TStructViewer::SetColor(), TGTextEntry::SetCursorPosition(), TProofLite::SetDataSetTreeName(), TGListView::SetDefaultColumnWidth(), TKDE::SetDrawOptions(), TGuiBldDragManager::SetEditable(), TGScrollBarElement::SetEnabled(), TChain::SetEntryListFile(), TNetXNGFile::SetEnv(), TXNetFile::SetEnv(), TAuthenticate::SetEnvironment(), TMultiLayerPerceptron::SetEventWeight(), TProof::SetFeedback(), TFitEditor::SetFitObject(), TGFontDialog::SetFont(), TLinearFitter::SetFormula(), TUri::SetFragment(), TGListView::SetHeader(), TUri::SetHierPart(), TUri::SetHost(), TUnfold::SetInput(), TGL5DDataSetEditor::SetIsoTabWidgets(), TGSpeedo::SetLabelText(), TSQLFile::SetLocking(), TAlienJDL::SetMaxInitFailed(), TGSpeedo::SetMinMaxScale(), TH3GL::SetModel(), TH1Editor::SetModel(), TH2Editor::SetModel(), TProofResourcesStatic::SetOption(), TKDE::SetOptions(), TProofBench::SetOutFile(), TProofOutputFile::SetOutputFileName(), TProof::SetParallel(), TUri::SetPath(), TProof::SetPerfTree(), TGPictureButton::SetPicture(), TUri::SetPort(), TAlienJDL::SetPrice(), TRint::SetPrompt(), TProofLite::SetProofServEnv(), TUri::SetQuery(), TUri::SetRelativePart(), TUri::SetScheme(), TProofMonSender::SetSendOptions(), TAlienJDL::SetSplitModeMaxInputFileSize(), TAlienJDL::SetSplitModeMaxNumOfFiles(), TCondor::SetState(), TEveTrack::SetStdTitle(), TROOT::SetStyle(), TDataMember::SetterMethod(), TSQLiteStatement::SetTimestamp(), TNewQueryDlg::SettingsChanged(), TSessionServerFrame::SettingsChanged(), TEditQueryFrame::SettingsChanged(), TH1::SetTitle(), TEntryList::SetTree(), TTreeViewer::SetTree(), TTreeViewer::SetTreeName(), TAlienJDL::SetTTL(), TDataType::SetType(), TProofServLite::Setup(), TXProofServ::Setup(), TApplicationServer::Setup(), TPerfStats::Setup(), TProofServ::Setup(), TBranchObject::SetupAddresses(), TPluginHandler::SetupCallEnv(), TProofServ::SetupCommon(), TEveUtil::SetupEnvironment(), TProofServLite::SetupOnFork(), TUri::SetUri(), TUri::SetUserInfo(), TMVA::Option< T * >::SetValue(), TAlienJDL::SetValueByCmd(), TMVA::Option< T >::SetValueLocal(), TFormula::SetVariable(), TGWindow::SetWindowName(), TMemStatShow::Show(), TDataSetManagerFile::ShowCache(), TProofLite::ShowCache(), TProofLite::ShowDataDir(), TDataSetManager::ShowDataSets(), TSessionViewer::ShowEnabledPackages(), TFitEditor::ShowObjectName(), TSystem::ShowOutput(), TSessionViewer::ShowPackages(), TProof::ShowPackages(), TProof::ShowParameters(), THistPainter::ShowProjection3(), TDataSetManager::ShowQuota(), TSessionViewer::ShowStatus(), TFile::ShrinkCacheFileDir(), TSessionFrame::ShutdownSession(), TVirtualFFT::SineCosine(), h1analysisTreeReader::SlaveBegin(), TSelEventGen::SlaveBegin(), TSelVerifyDataSet::SlaveBegin(), TSelVerifyDataSet::SlaveTerminate(), RooAbsCollection::snapshot(), TGDMLParse::Sphere(), TMVA::Configurable::SplitOptions(), TSQLFile::SQLDeleteAllTables(), TSQLFile::SQLMaximumValue(), TSQLFile::SQLObjectInfo(), TSQLFile::SQLObjectsInfo(), TBufferSQL2::SqlReadCharStarValue(), TBufferSQL2::SqlReadObjectDirect(), TBufferSQL2::SqlReadValue(), TSQLFile::SQLTestTable(), TAuthenticate::SshAuth(), TUnixSystem::StackTrace(), TDCacheFile::Stage(), TNetXNGSystem::Stage(), TProofSuperMaster::StartSlaves(), TProofCondor::StartSlaves(), TProof::StartSlaves(), TTreeCacheUnzip::StartThreadUnzip(), RooAbsData::statOn(), TSQLStructure::StoreElementInNormalForm(), RooNumIntFactory::storeProtoIntegrator(), RooNumGenFactory::storeProtoSampler(), TSQLFile::StreamKeysForDirectory(), Strip(), TAlien::Submit(), TDocMacroDirective::SubProcess(), TPMERegexp::Substitute(), TPRegexp::SubstituteInternal(), TEntryListArray::Subtract(), TEntryList::Subtract(), TAlienFile::SUrl(), TGuiBldDragManager::SwitchEditable(), TGuiBldDragManager::SwitchLayout(), TWinNTSystem::Symlink(), RooAbsPdf::syncNormalization(), TCastorFile::SysClose(), TNetFile::SysOpen(), TXNetFile::SysOpen(), TDCacheFile::SysStat(), TGHtml::TableText(), TAFS::TAFS(), TSelectorDraw::TakeAction(), TSelectorDraw::TakeEstimate(), TAlienPackage::TAlienPackage(), TApplicationRemote::TApplicationRemote(), TASImage::TASImage(), TAuthenticate::TAuthenticate(), TCling__SplitAclicMode(), TDataType::TDataType(), TDSet::TDSet(), TUnixSystem::TempFileName(), TWinNTSystem::TempFileName(), TProofServLite::Terminate(), TXProofServ::Terminate(), TProofServ::Terminate(), TestAuth(), TestPct(), TestResolutionHelper(), TestSPlot(), testTUDPSocket(), TEventIter::TEventIter(), TEveTextEditor::TEveTextEditor(), TTeXDump::Text(), TF1Convolution::TF1Convolution(), TFile::TFile(), TFITSHDU::TFITSHDU(), TFractionFitter::TFractionFitter(), TGeoCompositeShape::TGeoCompositeShape(), TGeoElementRN::TGeoElementRN(), TGeoPNEntry::TGeoPNEntry(), TGeoVolume::TGeoVolume(), TGFileDialog::TGFileDialog(), TGFSComboBox::TGFSComboBox(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), TGRedirectOutputGuard::TGRedirectOutputGuard(), TGSpeedo::TGSpeedo(), TGTextEditor::TGTextEditor(), TGTextEntry::TGTextEntry(), TGuiBldDragManager::TGuiBldDragManager(), TMVA::OptionBase::TheName(), ROOT::Internal::THnBaseBrowsable::THnBaseBrowsable(), THostAuth::THostAuth(), TMVA::TMVAGui(), TMVA::TMVAMultiClassGui(), TMVAMultipleBackgroundExample(), TMVA::TMVARegGui(), ToLower(), TGDMLParse::TopProcess(), TOracleServer::TOracleServer(), TGDMLParse::Torus(), TRootBrowserLite::ToSystemDirectory(), ToUpper(), TPerfStats::TPerfStats(), TProof::TProof(), TProofBench::TProofBench(), TProofNodeInfo::TProofNodeInfo(), TProofPerfAnalysis::TProofPerfAnalysis(), TProofServ::TProofServ(), TMVA::MethodRSNNS::Train(), TMVA::MethodPyRandomForest::Train(), TMVA::MethodPyGTB::Train(), TMVA::MethodPyAdaBoost::Train(), TMVA::MethodLikelihood::Train(), TMultiLayerPerceptron::Train(), TH1::TransformHisto(), TGDMLParse::Trap(), TGDMLParse::Trd(), TRegexp::TRegexp(), ROOT::R::TRFunctionImport::TRFunctionImport(), TProofServ::TruncateLogFile(), TSQLStructure::TryConvertObjectArray(), TStreamerSTL::TStreamerSTL(), TStyleDialog::TStyleDialog(), TTreeCloner::TTreeCloner(), TTreeIndex::TTreeIndex(), TGDMLParse::Tube(), TWinNTSystem::TWinNTSystem(), TGDMLParse::TwistTrap(), TXSocket::TXSocket(), TAlien::Type(), TGuiBldDragManager::UngrabFrame(), TAlienPackage::UnInstall(), TUnixSystem::UnixUnixService(), TXNetSystem::Unlink(), TCling::UnloadLibraryMap(), TFunction::Update(), TGFileBrowser::Update(), TFormLeafInfoTTree::Update(), TGRecorder::Update(), TRootBrowserLite::UpdateDrawOption(), TSessionQueryFrame::UpdateInfos(), TSQLFile::UpdateKeyData(), TSessionViewer::UpdateListOfProofs(), TSessionViewer::UpdateListOfSessions(), TGTextEntry::UpdateOffset(), TGTable::UpdateRangeFrame(), TProofServ::UpdateSessionStatus(), TMVA::StatDialogMVAEffs::UpdateSignificanceHists(), TRootGuiBuilder::UpdateStatusBar(), TGFontDialog::UpdateStyleSize(), TGMdiMainFrame::UpdateWinListMenu(), TProofMgr::UploadFiles(), TProof::UploadPackage(), TProof::UploadPackageOnClient(), TMVA::variables(), TMVA::variablesMultiClass(), TSQLFile::VerifyLongStringTable(), TSQLFile::VerifyObjectTable(), TGDMLParse::VolProcess(), TGeoBuilder::Volume(), TEveGeoTopNode::VolumeColChanged(), TEveGeoTopNode::VolumeVisChanged(), TEveException::what(), TSystem::Which(), while(), TGLSurfacePainter::WindowPointTo3DPoint(), TWinNTSystem::WinNTUnixConnect(), TUnixSystem::WorkingDirectory(), TBufferSQL2::WorkWithClass(), TBufferXML::WorkWithClass(), TBufferJSON::WorkWithClass(), Rcpp::wrap(), TObject::Write(), TSessionViewer::WriteConfiguration(), TMVA::Factory::WriteDataInformation(), TDataSetManagerFile::WriteDataSet(), TPythia6Decayer::WriteDecayTable(), TBufferJSON::WriteFastArray(), TEnv::WriteFile(), TGDMLWrite::WriteGDMLfile(), TASImage::WriteImage(), TSQLFile::WriteKeyData(), TPluginManager::WritePluginMacros(), TPluginManager::WritePluginRecords(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), TPerfStats::WriteQueryLog(), ROOT::Internal::TTreeReaderGenerator::WriteSelector(), RooRealVar::writeToStream(), TBufferJSON::WriteTString(), TBufferXML::WriteTString(), TXMLSetup::XmlClassNameSpaceRef(), TXMLSetup::XmlConvertClassName(), TBufferXML::XmlReadBlock(), TBufferXML::XmlReadObject(), TBufferXML::XmlReadValue(), TGDMLParse::Xtru(), TGFileBrowser::XXExecuteDefaultAction(), RooAbsArg::~RooAbsArg(), TAlienPackage::~TAlienPackage(), TBufferJSON::~TBufferJSON(), TDocParser::~TDocParser(), TFormLeafInfoMethod::~TFormLeafInfoMethod(), TGuiBldDragManager::~TGuiBldDragManager(), TLockFile::~TLockFile(), and TProofLite::~TProofLite().
Bool_t TString::EndsWith | ( | const char * | pat, |
ECaseCompare | cmp = kExact |
||
) | const |
Return true if string ends with the specified string.
Definition at line 2207 of file TString.cxx.
Referenced by TAlienSystem::AccessPathName(), TProofPlayerRemote::AddOutputObject(), authclient(), TMVA::BDT(), TMVA::BDT_Reg(), TSystemDirectory::Browse(), TRemoteObject::Browse(), TRootBrowserLite::BrowseTextFile(), TMultiLayerPerceptron::BuildLastLayer(), TProof::BuildPackage(), TProof::BuildPackageOnClient(), ClassImp(), TProof::ClearData(), TProof::ClearPackage(), TStructNodeProperty::Compare(), TSystemFile::Copy(), TMVA::correlationscatters(), TMVA::correlationscattersMultiClass(), TStructViewer::CountMembers(), TXProofMgr::Cp(), TSocket::CreateAuthSocket(), TDocMacroDirective::CreateSubprocessInputFile(), TDocDirective::DeleteOutputFiles(), TTabCom::DetermineClass(), TProof::DisablePackage(), do_anadist(), TGFileBrowser::DoubleClicked(), TMVA::DrawMLPoutputMovie(), TASImage::DrawText(), DynamicPath(), TProof::EnablePackage(), TTabCom::ExcludedByFignore(), TRootBrowserLite::ExecuteDefaultAction(), THtml::TFileDefinition::ExpandSearchPath(), TTabCom::ExtendPath(), TUnixSystem::FindFile(), TCastorFile::FindServerAndPath(), TGLAxisPainter::FormAxisValue(), TCollectionPropertyBrowsable::GetBrowsables(), TXProofMgr::GetFile(), TGFileBrowser::GetFilePictures(), TGFileContainer::GetFilePictures(), TImage::GetImageFileTypeFromFilename(), TUnixSystem::GetLinkedLibraries(), TWinNTSystem::GetLinkedLibraries(), TSystemDirectory::GetListOfFiles(), TProofServ::GetLocalServer(), THtml::TPathDefinition::GetMacroPath(), TMVA::Reader::GetMethodTypeFromFile(), THtml::TModuleDefinition::GetModule(), THtml::GetOutputDir(), TGPrintDialog::GetPrinters(), Gets(), TVirtualBranchBrowsable::GetScope(), TProofMgrLite::GetSessionLogs(), TGFileBrowser::GotoDir(), TRootEmbeddedCanvas::HandleDNDDrop(), TRootCanvas::HandleDNDDrop(), TGuiBldDragManager::HandleKey(), TGListTree::HandleMotion(), TXProofServ::HandleUrgentData(), TROOT::IgnoreInclude(), TProofOutputFile::Init(), TSystem::Load(), TPluginManager::LoadHandlerMacros(), TGHtml::LoadImage(), TCling::LoadLibraryMap(), TProof::LoadPackage(), TPrincipal::MakeCode(), TMultiDimFit::MakeCode(), TFile::MakeProject(), MakeTopLinks(), THtml::TFileDefinition::MatchFileSysName(), TSystemFile::Move(), TMVA::mvaweights(), TRootContextMenu::OnlineHelp(), TRootGuiBuilder::OpenProject(), TArrow::PaintArrow(), TDataSetManager::ParseDataSetSrvMaps(), TDataSetManager::ParseUri(), TPad::Print(), TProof::Process(), TDocOutput::ProcessDocInDir(), TGLSAViewer::ProcessFrameMessage(), TRootCanvas::ProcessMessage(), THttpServer::ProcessRequest(), TAuthenticate::PromptPasswd(), TXProofMgr::PutFile(), TProofMgrLite::ReadBuffer(), ReadRemoteImage(), TMVA::MethodBase::ReadStateFromFile(), TCling::ReloadAllSharedLibraryMaps(), TProofLite::ResolveKeywords(), TRint::Run(), TGuiBldDragManager::Save(), TPad::SaveAs(), TGuiBldDragManager::SaveFrame(), TGMainFrame::SaveFrameAsCodeOrImage(), TGLViewer::SavePicture(), TGLViewer::SavePictureUsingBB(), TGLViewer::SavePictureUsingFBO(), TRootGuiBuilder::SaveProject(), TMVA::VariableTransformBase::SelectInput(), TUri::SetAuthority(), TFile::SetCacheFileDir(), TXProofServ::Setup(), TProofServ::Setup(), TProofServ::SetupCommon(), TUrl::SetUrl(), TWinNTSystem::Symlink(), TFileInfoMeta::TFileInfoMeta(), TDataSetManager::ToBytes(), TProofServ::TProofServ(), TSQLMonitoringWriter::TSQLMonitoringWriter(), TCling::UnloadLibraryMap(), TProof::UnloadPackage(), TDocOutput::WriteHtmlFooter(), and TASImage::WriteImage().
|
inline |
Definition at line 576 of file TString.h.
Referenced by ROOT::Internal::TTreeReaderGenerator::AddReader(), TDataSetManagerAliEn::AliEnWhereIs(), ROOT::Internal::TTreeReaderGenerator::AnalyzeBranches(), ROOT::Internal::TTreeReaderGenerator::AnalyzeTree(), TWinNTSystem::ExpandPathName(), TTree::MakeSelector(), ROOT::Internal::TTreeReaderGenerator::ParseOptions(), TAliEnFind::SetAnchor(), TAliEnFind::SetBasePath(), TAliEnFind::SetFileName(), TAliEnFind::SetRegexp(), and TAliEnFind::SetTreeName().
|
inline |
|
virtual |
Copy string into I/O buffer.
Reimplemented in TStringLong.
Definition at line 1193 of file TString.cxx.
Referenced by TObjString::FillBuffer(), TNamed::FillBuffer(), and TKey::FillBuffer().
Ssiz_t TString::First | ( | char | c | ) | const |
Find first occurrence of a character c.
Definition at line 453 of file TString.cxx.
Referenced by TMVA::MethodTMlpANN::AddWeightsXMLTo(), TMultiLayerPerceptron::AttachData(), TBranch::Browse(), TBranchElement::Browse(), TMultiLayerPerceptron::BuildNetwork(), TBranchElement::BuildTitle(), ClassImp(), TTreeSQL::CreateBranches(), TClassDocOutput::CreateDotClassChartLib(), TMVA::MethodTMlpANN::CreateMLPOptions(), TDocOutput::CreateModuleIndex(), do_anadist(), TH1Editor::DoAddB(), TH1Editor::DoAddMarker(), TFitEditor::DoDataSet(), TPieEditor::DoGraphLineWidth(), TGraphEditor::DoMarkerOnOff(), TPieEditor::DoMarkerOnOff(), TH2::DoProfile(), TH3::DoProject1D(), TH2::DoProjection(), TGraphEditor::DoShape(), TPieEditor::DoShape(), TMultiLayerPerceptron::Draw(), TMultiLayerPerceptron::ExpandStructure(), TBranch::FindLeaf(), TTree::FindLeaf(), TDocOutput::FixupAuthorSourceInfo(), RooStats::HLFactory::fParseLine(), TMakeProject::GenerateClassPrefix(), TH2Editor::GetCutOptionString(), THtml::GetHtmlFileName(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TMVA::MethodBase::GetLine(), TMLPAnalyzer::GetNeuronFormula(), TMLPAnalyzer::GetNeurons(), TGPrintDialog::GetPrinters(), TProof::GetRC(), TVirtualBranchBrowsable::GetScope(), TProofMgrLite::GetSessionLogs(), TProof::HandleOutputOptions(), TUnuranSampler::Init(), TClass::Init(), IsFloat(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), MaybeRegexp(), MaybeWildcard(), TMVA::Tools::ParseFormatLine(), TMVA::MethodANNBase::ParseLayoutString(), TMVA::Configurable::ParseOptions(), TTreeFormula::ParseWithLeaf(), TMVA::MethodFDA::ProcessOptions(), TMVA::MethodCFMlpANN::ProcessOptions(), TRootSniffer::ProduceMulti(), TH3::Project3D(), TH3::Project3DProfile(), THnBase::ProjectionAny(), THnBase::RebinBase(), TGCompositeFrame::SavePrimitiveSubframes(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TGraphEditor::SetModel(), TGLAxisPainter::SetTextFormat(), TEfficiency::SetTitle(), THnBase::SetTitle(), TFitEditor::ShowObjectName(), TMVA::Configurable::SplitOptions(), TMVA::Tools::SplitString(), TClass::TClass(), THostAuth::THostAuth(), THStack::THStack(), TProof::TProof(), TGTable::UserRangeChange(), and TASImage::WriteImage().
Ssiz_t TString::First | ( | const char * | cs | ) | const |
Find first occurrence of a character in cs.
Definition at line 462 of file TString.cxx.
void TString::Form | ( | const char * | fmt, |
... | |||
) |
Formats a string using a printf style format descriptor.
Existing string contents will be overwritten.
Definition at line 2308 of file TString.cxx.
Referenced by TDSet::Add(), TProofChain::AddAliases(), TTreeCache::AddBranch(), TFileMerger::AddFile(), TGFileContainer::AddFile(), TSQLFile::AddIdEntry(), TMakeProject::AddInclude(), TProofPlayerRemote::AddOutputObject(), TReaperTimer::AddPid(), ROOT::Detail::TSchemaRuleSet::AddRule(), TSQLObjectData::AddUnpackInt(), TProof::AddWorkers(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), TColor::AsHexString(), TProof::AssertDataSet(), TAuthenticate::AuthExists(), TSelectorDraw::Begin(), TTree::Branch(), TTree::BranchImpRef(), TTree::BranchOld(), TTree::BronchExec(), TDirectoryFile::Browse(), TLeaf::Browse(), TTable::Browse(), TDataSetManagerFile::BrowseDataSets(), TGSpeedo::Build(), TStreamerInfo::Build(), TSessionViewer::Build(), TClass::BuildEmulatedRealData(), TProofBenchRunCPU::BuildHistos(), TProofBenchRunDataRead::BuildHistos(), TProofProgressLog::BuildLogList(), TMultiLayerPerceptron::BuildOneHiddenLayer(), TProof::BuildPackageOnClient(), TStreamerInfo::CallShowMembers(), TFITSHDU::Change(), TFilePrefetch::CheckBlockInCache(), TDataSetManager::CheckDataSetSrvMaps(), TDataSetManagerFile::CheckLocalCache(), TProofPlayer::CheckMemUsage(), TAuthenticate::CheckProofAuth(), ClassImp(), TQueryResultManager::CleanupQueriesDir(), TSessionViewer::CleanupSession(), TAuthenticate::ClearAuth(), TDataSetManagerFile::ClearCache(), TSQLFile::CodeLongString(), TTreeCloner::CollectBranches(), TStreamerInfo::CompareContent(), TProofBench::CopyDataSet(), TXProofMgr::Cp(), TCivetweb::Create(), TContextMenu::CreateArgumentTitle(), CreateArgumentTitle(), TSQLFile::CreateBasicTables(), TSQLFile::CreateClassTable(), TColor::CreateColorsCircle(), TColor::CreateColorsRectangle(), TContextMenu::CreateDialogTitle(), TDataSetManagerFile::CreateLsFile(), TProof::CreateMerger(), TContextMenu::CreatePopupTitle(), TSQLFile::CreateRawTable(), TProofLite::CreateSandbox(), TXProofServ::CreateServer(), TProofServ::CreateServer(), TProofMgrLite::CreateSession(), TGTextEditor::DataDropped(), DefaultErrorHandler(), TSQLTableData::DefineSQLName(), TSQLFile::DefineTableName(), TSQLFile::DeleteKeyFromDB(), TSessionViewer::DeleteQuery(), TSQLFile::DirWriteHeader(), TProof::DisablePackage(), TProof::DisablePackageOnClient(), TProofLog::Display(), TProofLogElem::Display(), do_anadist_getkey(), do_ls_files_server(), do_put(), TGuiBldDragManager::DoClassMenu(), TStyleManager::DoExport(), TStyleManager::DoImportCanvas(), TStyleManager::DoImportMacro(), TStyleManager::DoListSelect(), TProof::DownloadPackage(), TFITSHDU::Draw(), TProofBench::DrawCPU(), TProofBench::DrawDataSet(), TProofBench::DrawEfficiency(), TMLPAnalyzer::DrawTruthDeviation(), TMLPAnalyzer::DrawTruthDeviationInOut(), TMLPAnalyzer::DrawTruthDeviationInsOut(), TTreeCache::DropBranch(), TApplicationServer::ErrorHandler(), TProofServ::ErrorHandler(), TXProofMgr::Exec(), TRootBrowser::ExecPlugin(), TRootSniffer::ExecuteCmd(), TApplication::ExecuteFile(), TProofMergePrg::Export(), TFileCollection::ExportInfo(), TBranchSTL::Fill(), TBranchClones::Fill(), TProofPerfAnalysis::FillFileDist(), TProofPerfAnalysis::FillFileDistOneSrv(), THttpCallArg::FillHttpHeader(), TDataSetManager::FillMetaData(), TProof::Finalize(), TUnixSystem::FindFile(), TBranch::FindLeaf(), TTree::FindLeaf(), TCastorFile::FindServerAndPath(), TGLAxisPainter::FormAxisValue(), TStreamerInfo::GenerateHeaderFile(), TDSetElement::GetAssocObj(), TSQLFile::GetBlobClassData(), TSQLFile::GetBlobClassDataStmt(), TProofPerfAnalysis::GetCanvasTitle(), TBranchElement::GetCollectionProxy(), TOracleServer::GetColumns(), TMySQLServer::GetColumns(), TProofServ::GetDataSetNodeMap(), TDataSetManagerFile::GetDataSetPath(), TDataSetManagerFile::GetDataSets(), getDSMgr(), TWinNTSystem::GetError(), GetExpressionFileName(), TEntryList::GetFileName(), TFileCollection::GetFilesOnServer(), TFileCollection::GetFilesPerServer(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TROOT::GetGitDate(), TAliEnFind::GetGridResult(), TStreamerBase::GetInclude(), TStreamerLoop::GetInclude(), TStreamerObject::GetInclude(), TStreamerObjectAny::GetInclude(), TStreamerObjectPointer::GetInclude(), TStreamerObjectAnyPointer::GetInclude(), TStreamerString::GetInclude(), TStreamerSTL::GetInclude(), TProof::GetInputData(), TSQLFile::GetLocking(), TSQLFile::GetLongString(), TProof::GetMissingFiles(), THtml::GetNextClass(), TSQLFile::GetNormalClassData(), TSQLFile::GetNormalClassDataAll(), TNode::GetObjectInfo(), TFileDrawMap::GetObjectInfoDir(), TDataMember::GetOffset(), TKDE::GetPDFLowerConfidenceInterval(), TKDE::GetPDFUpperConfidenceInterval(), TProofBench::GetPerfSpecs(), TGLH2PolyPainter::GetPlotInfo(), TGLVoxelPainter::GetPlotInfo(), TGLLegoPainter::GetPlotInfo(), TGLBoxPainter::GetPlotInfo(), RooStats::BayesianCalculator::GetPosteriorFunction(), TProofServ::GetPriority(), TProof::GetQueryReference(), TProof::GetSandbox(), TAliEnFind::GetSearchId(), TProofMgrLite::GetSessionLogs(), TOracleServer::GetTableInfo(), TMySQLServer::GetTableInfo(), TDataMember::GetterMethod(), TFile::GetType(), TWinNTSystem::GetVolumes(), TXProofServ::GetWorkers(), TProof::GoMoreParallel(), TProofLog::Grep(), TProofServ::HandleArchive(), TProofServ::HandleCache(), TProofServ::HandleDataSets(), TProofServ::HandleException(), TProof::HandleInputMessage(), TRootBrowser::HandleMenu(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TGTextEditor::HandleTimer(), TSessionViewer::HandleTimer(), TGPicture::HashName(), TGeoElementTable::ImportElementsRN(), TSQLFile::IncrementModifyCounter(), TSlaveLite::Init(), TBranchClones::Init(), TXSlave::Init(), TDataSetManagerFile::Init(), TProofLite::Init(), TBranchElement::Init(), TDataSetManagerAliEn::Init(), TProof::Init(), TProofLite::InitDataSetManager(), TXSocket::InitEnvs(), TDataSetManagerFile::InitLocalCache(), TRootBrowser::InitPlugins(), TStreamerInfo::InsertArtificialElements(), TGTextEditor::IsSaved(), TEveGListTreeEditorFrame::ItemDblClicked(), TProof::Load(), TGTextEditor::LoadFile(), TProof::LoadPackageOnClient(), TStreamerSTL::ls(), main(), THtml::MakeAll(), TSQLStructure::MakeArrayIndex(), TTreePlayer::MakeClass(), TTreePlayer::MakeCode(), TProofBench::MakeDataSet(), TRootSnifferScanRec::MakeItemName(), TFile::MakeProject(), TFile::MakeProjectParProofInf(), TSQLFile::MakeSelectQuery(), TProof::MarkBad(), TQueryResult::Matches(), TProofOutputFile::Merge(), TAuthenticate::MergeHostAuthList(), TProofPlayerRemote::MergeOutput(), TProofPlayerRemote::MergeOutputFiles(), TFileMerger::MergeRecursive(), TMinuit::mnexcm(), TMinuit::mnmatu(), TMinuit::mnprin(), TProofServLogHandler::Notify(), TIdleTOTimer::Notify(), Obsolete(), TSessionServerFrame::OnBtnConnectClicked(), TSessionServerFrame::OnBtnDeleteClicked(), TNewQueryDlg::OnBtnSaveClicked(), TSessionViewer::OnListTreeClicked(), TFileMerger::OpenExcessFiles(), TProofOutputFile::OpenFile(), TPerfStats::PacketEvent(), TProof::ParseConfigField(), TDataSetManager::ParseDataSetSrvMaps(), TDataSetManager::ParseUri(), TFileMerger::PartialMerge(), TSQLStructure::PerformConversion(), TColor::PixelAsHexString(), TProof::PollForNewWorkers(), TPerfEvent::Print(), TGTextEdit::Print(), TProofLite::Print(), TQueryResult::Print(), TSlaveInfo::Print(), TGeoBatemanSol::Print(), TProof::Print(), TGTextEditor::PrintText(), TProofLite::Process(), TProofPlayer::Process(), TApplication::ProcessLine(), TGTextEditor::ProcessMessage(), TGTextEdit::ProcessMessage(), TProofServ::ProcessNext(), TRint::ProcessRemote(), THttpServer::ProcessRequest(), TSQLFile::ProduceClassSelectQuery(), TRootSniffer::ProduceExe(), TProofProgressDialog::Progress(), TSessionQueryFrame::Progress(), TSessionQueryFrame::ProgressLocal(), TTable::Project(), TTree::Project(), TSessionFrame::ProofInfos(), TXProofMgr::PutFile(), TSessionViewer::QueryResultReady(), R__H(), TProofResourcesStatic::ReadConfigFile(), TSQLFile::ReadConfigurations(), TASImage::ReadImage(), TDatabasePDG::ReadPDGTable(), TSQLFile::ReadSQLClassInfos(), TTree::ReadStream(), TProofServ::RegisterDataSets(), TEntryList::RelocatePaths(), TMemFile::ResetObjects(), TProofProgressDialog::ResetProgressDialog(), TSessionQueryFrame::ResetProgressDialog(), TSessionViewer::ResetSession(), TProofLite::ResolveKeywords(), TProofLog::Retrieve(), TXProofMgr::Rm(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TProofLog::Save(), TFilePrefetch::SaveBlockInCache(), TColor::SaveColor(), TGTextEditor::SaveFile(), TProof::SaveInputData(), TGMimeTypes::SaveMimes(), TDirectoryFile::SaveObjectAs(), TDirectory::SaveObjectAs(), TProofPlayer::SavePartialResults(), TProof::SavePerfTree(), TGButtonGroup::SavePrimitive(), TGVButtonGroup::SavePrimitive(), TGTab::SavePrimitive(), TGLabel::SavePrimitive(), TGHButtonGroup::SavePrimitive(), TGTextEntry::SavePrimitive(), TGTextButton::SavePrimitive(), TGPictureButton::SavePrimitive(), TGCheckButton::SavePrimitive(), TGRadioButton::SavePrimitive(), TGGroupFrame::SavePrimitive(), TGHtml::SavePrimitive(), TQueryResultManager::SaveQuery(), TEveManager::SaveVizDB(), TDataSetManager::ScanFile(), TGTextEdit::Search(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProofMonSenderSQL::SendFileInfo(), TProof::SendInputData(), TProofLite::SendInputDataFile(), TProofServ::SendResults(), TSQLStructure::SetArray(), TTree::SetBranchStatus(), TNetXNGFile::SetEnv(), TXNetFile::SetEnv(), TProofDraw::SetError(), TProof::SetFeedback(), TProofBenchRunCPU::SetHistType(), TASImage::SetImage(), TASImage::SetImageBuffer(), TSQLFile::SetLocking(), TSQLStructure::SetObjectPointer(), TSQLStructure::SetObjectRef(), TProofBench::SetOutFile(), TWinNTSystem::SetProgname(), TDataMember::SetterMethod(), TGLAxisPainter::SetTextFormat(), TSQLiteStatement::SetTimestamp(), TSessionLogView::SetTitle(), TProofServLite::Setup(), TPerfStats::Setup(), TProofServ::Setup(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TProofLite::SetupWorkers(), TSQLStructure::SetVersion(), TDataSetManagerFile::ShowCache(), TProofLite::ShowDataDir(), TDataSetManager::ShowDataSets(), TSessionFrame::ShutdownSession(), SimpleFitting(), TSQLFile::SQLDeleteAllTables(), TSQLFile::SQLMaximumValue(), TSQLFile::SQLObjectInfo(), TSQLFile::SQLObjectsInfo(), TAuthenticate::SshAuth(), TUnixSystem::StackTrace(), TSQLFile::StreamKeysForDirectory(), TApplicationRemote::TApplicationRemote(), TAuthenticate::TAuthenticate(), TXProofServ::Terminate(), TProofServ::Terminate(), TFITSHDU::TFITSHDU(), TGFileDialog::TGFileDialog(), TGTextEditor::TGTextEditor(), TGLAutoRotator::Timeout(), TProofBench::TProofBench(), TProofMonSenderSQL::TProofMonSenderSQL(), TProofNodeInfo::TProofNodeInfo(), TProofServ::TruncateLogFile(), TSQLStructure::TryConvertObjectArray(), TSocket::TSocket(), TSQLClassInfo::TSQLClassInfo(), TSQLColumnData::TSQLColumnData(), TStyleDialog::TStyleDialog(), TTreeCloner::TTreeCloner(), TUDPSocket::TUDPSocket(), TUnixSystem::UnixUnixService(), TProofServ::UnlinkDataDir(), TBranchElement::Unroll(), TGRecorder::Update(), TSQLFile::UpdateKeyData(), TSessionViewer::UpdateListOfProofs(), TProofMgr::UploadFiles(), TProof::UploadPackage(), TProof::UploadPackageOnClient(), VerifyDataSet(), TSQLFile::VerifyLongStringTable(), TSQLFile::VerifyObjectTable(), TGLSurfacePainter::WindowPointTo3DPoint(), TBufferSQL2::WorkWithClass(), TDocOutput::WriteHtmlFooter(), TSQLFile::WriteKeyData(), TPluginManager::WritePluginMacros(), TPerfStats::WriteQueryLog(), and ROOT::Internal::TTreeReaderGenerator::WriteSelector().
|
static |
Static method which formats a string using a printf style format descriptor and return a TString.
Same as TString::Form() but it is not needed to first create a TString.
Definition at line 2321 of file TString.cxx.
Referenced by THttpCallArg::AccessHeader(), TProofNodes::ActivateWorkers(), TChain::Add(), TUploadDataSetDlg::AddFiles(), TDSetElement::AddFriend(), TGFileBrowser::AddKey(), TRootGuiBuilder::AddMacro(), ROOT::Internal::TTreeProxyGenerator::AddMissingClassAsEnum(), TGeoVolume::AddNode(), TGeoVolume::AddNodeOffset(), TGeoVolume::AddNodeOverlap(), TProofPlayerRemote::AddOutputObject(), TRootBrowserLite::AddToTree(), TProof::AddWorkers(), align(), TGeoTrack::AnimateTrack(), TGeoManager::AnimateTracks(), RooStats::DetailedOutputAggregator::AppendArgSet(), AppendLink(), TQueryResultManager::ApplyMaxQueries(), TGDMLParse::Arb8(), TProof::AssertDataSet(), TProofOutputFile::AssertDir(), TGDMLParse::AssProcess(), TGLColor::AsString(), TRootSnifferStoreXml::BeforeNextChild(), TRootSnifferStoreJson::BeforeNextChild(), begin_request_handler(), TGDMLParse::BooSolid(), TGDMLParse::Box(), TDataSetManagerFile::BrowseDataSets(), TGFileBrowser::BrowseObj(), TStreamerInfo::Build(), TSessionViewer::Build(), TGeoShapeDialog::BuildListTree(), TProofProgressMemoryPlot::BuildLogList(), TStreamerInfo::BuildOld(), TProof::BuildPackageOnClient(), TBranchElement::BuildTitle(), RooStats::HypoTestInverterResult::CalculateEstimatedError(), TTree::ChangeFile(), TGuiBldDragManager::ChangeImage(), TGuiBldDragManager::ChangePicture(), TGeoChecker::CheckOverlaps(), TGeoNode::CheckOverlaps(), TGeoVolume::CheckOverlaps(), TGeoChecker::CheckOverlapsBySampling(), TGFileBrowser::CheckRemote(), TGDMLWrite::ChooseObject(), ClassImp(), TAuthenticate::ClearAuth(), TProof::ClearData(), TGFileBrowser::Clicked(), TGuiBldDragManager::CloneEditable(), TRootSnifferStoreXml::CloseNode(), TRootSnifferStoreJson::CloseNode(), TSessionViewer::CloseWindow(), TPRegexp::Compile(), TSelectorDraw::CompileVariables(), TS3HTTPRequest::ComputeSignature(), TGDMLParse::Cone(), TStyleManager::ConnectAll(), TDocOutput::Convert(), THtml::Convert(), TSelHandleDataSet::CopyFile(), THttpCallArg::CountHeader(), TFile::Cp(), TCivetweb::Create(), TFastCgi::Create(), TGDMLWrite::CreateArb8N(), TGDMLWrite::CreateAtomN(), TGDMLWrite::CreateBoxN(), RooStats::CreateBranchStore(), TGDMLWrite::CreateCommonBoolN(), TGDMLWrite::CreateConeN(), TGDMLWrite::CreateCutTubeN(), TGDMLWrite::CreateDivisionN(), TGDMLWrite::CreateDN(), TGDMLWrite::CreateElConeN(), TGDMLWrite::CreateElementN(), TGDMLWrite::CreateEllipsoidN(), TGDMLWrite::CreateEltubeN(), TGDMLWrite::CreateFractionN(), THnBase::CreateHnAny(), TGDMLWrite::CreateHypeN(), TGDMLWrite::CreateIsotopN(), TGDMLWrite::CreateMaterialN(), TGDMLWrite::CreateMixtureN(), TGDMLWrite::CreateParaboloidN(), TGDMLWrite::CreateParaN(), RooStats::ProposalHelper::CreatePdf(), TGDMLWrite::CreatePhysVolN(), TGDMLWrite::CreatePolyconeN(), TGDMLWrite::CreatePolyhedraN(), TGDMLWrite::CreatePositionN(), TProtoClass::TProtoRealData::CreateRealData(), TGDMLWrite::CreateRotationN(), TProofServLite::CreateServer(), TProofServ::CreateServer(), TGDMLWrite::CreateSphereN(), TGDMLWrite::CreateTorusN(), TGDMLWrite::CreateTrapN(), TGDMLWrite::CreateTrdN(), TGDMLWrite::CreateTubeN(), TGDMLWrite::CreateTwistedTrapN(), TGDMLWrite::CreateXtrusionN(), TGDMLWrite::CreateZplaneN(), TGDMLParse::CutTube(), TGeoMaterial::DecayMaterial(), TGeoMixture::DecayMaterial(), TEveElement::Destroy(), TGFileBrowser::DirName(), TProof::DisablePackages(), TGeoPainter::DistanceToPrimitiveVol(), do_anadist(), do_anadist_getkey(), TFormula::DoAddParameter(), TGeoManagerEditor::DoCreateAssembly(), TGeoManagerEditor::DoCreateBox(), TGeoManagerEditor::DoCreateCombi(), TGeoManagerEditor::DoCreateCone(), TGeoManagerEditor::DoCreateCons(), TGeoManagerEditor::DoCreateCtub(), TGeoManagerEditor::DoCreateEltu(), TGeoManagerEditor::DoCreateGtra(), TGeoManagerEditor::DoCreateHype(), TGeoManagerEditor::DoCreateMaterial(), TGeoManagerEditor::DoCreateMedium(), TGeoManagerEditor::DoCreateMixture(), TGeoManagerEditor::DoCreatePara(), TGeoManagerEditor::DoCreatePcon(), TGeoManagerEditor::DoCreatePgon(), TGeoManagerEditor::DoCreateRotation(), TGeoManagerEditor::DoCreateSphe(), TGeoManagerEditor::DoCreateTorus(), TGeoManagerEditor::DoCreateTranslation(), TGeoManagerEditor::DoCreateTrap(), TGeoManagerEditor::DoCreateTrd1(), TGeoManagerEditor::DoCreateTrd2(), TGeoManagerEditor::DoCreateTube(), TGeoManagerEditor::DoCreateTubs(), TGeoManagerEditor::DoCreateVolume(), TFormula::DoEval(), TGeoManagerEditor::DoExportGeometry(), TFitEditor::DoFunction(), TGeoVolumeDialog::DoItemClick(), TGuiBldDragManager::DoMove(), TProofProgressMemoryPlot::DoPlot(), TH2::DoQuantiles(), TGHProgressBar::DoRedraw(), TGuiBldDragManager::DoResize(), TGeoTreeDialog::DoSelect(), TGeoMixtureEditor::DoSelectElement(), TFormula::DoSetParameters(), TGFileBrowser::DoubleClicked(), RooStats::LikelihoodIntervalPlot::Draw(), TGeoPainter::DrawBatemanSol(), TH1::DrawCopy(), TProofBenchRunDataRead::DrawPerfProfiles(), TGuiBldDragManager::Drop(), DynamicPath(), TGDMLParse::ElCone(), TGDMLParse::EleProcess(), TGDMLParse::Ellipsoid(), TGDMLParse::ElTube(), RooStats::HypoTestInverter::Eval(), RooStats::RatioOfProfiledLikelihoodsTestStat::Evaluate(), EventInfo(), TRootCanvas::EventInfo(), TMemStatShow::EventInfo1(), TMemStatShow::EventInfo2(), TRootBrowser::ExecPlugin(), TRootSniffer::ExecuteCmd(), TTreeViewer::ExecuteDraw(), TTreeViewer::ExecuteSpider(), TWinNTSystem::Exit(), TGeoManager::Export(), TFileCollection::ExportInfo(), TEveElement::ExportSourceObjectToCINT(), TEveElement::ExportToCINT(), TFormula::ExtractFunctors(), TGDMLWrite::ExtractMaterials(), TGDMLWrite::ExtractSolid(), TGDMLWrite::ExtractVolumes(), TStatsFeedback::Feedback(), TProofPerfAnalysis::FileRatePlot(), TMemStatShow::FillBTString(), TFormula::FillDefaults(), TDataSetManagerFile::FillLsDataSet(), TDataSetManager::FillMetaData(), RooStats::FillTree(), TProofPerfAnalysis::FillWrkInfo(), TProofPlayerRemote::Finalize(), TGListTree::FindItemByPathname(), TCastorFile::FindServerAndPath(), TClass::FindStreamerInfoAbstractEmulated(), TFractionFitter::Fit(), TBinomialEfficiencyFitter::Fit(), fitNormSum(), FixDuplicateNames(), foam_demopers(), Form(), TGFileBrowser::FormatFileInfo(), FormatToolTip(), RooStats::AsymptoticCalculator::GenerateAsimovDataSinglePdf(), RooStats::AsymptoticCalculator::GenerateCountingAsimovData(), TStreamerInfo::GenerateDeclaration(), TMakeProject::GenerateIncludeForTemplate(), TStreamerInfo::GenerateIncludes(), TMakeProject::GeneratePostDeclaration(), TGDMLWrite::GenName(), TClass::GetActualClass(), RooStats::DetailedOutputAggregator::GetAsArgSet(), TH1::GetAsymmetry(), TUnfoldBinning::GetBinName(), TGSimpleTableInterface::GetColumnHeader(), TProofBenchRunDataRead::GetDataSet(), TProofServ::GetDataSetNodeMap(), TGeoTabManager::GetEditors(), TGeoTransientPanel::GetEditors(), TProof::Getenv(), TFileCollection::GetFilesPerServer(), TGFontPool::GetFont(), TGFontPool::GetFontFromAttributes(), TGFontDialog::GetFontName(), TProofBench::GetGraph(), THttpCallArg::GetHeader(), TEveDigitSet::GetHighlightTooltip(), TEveCaloData::GetHighlightTooltip(), TUnixSystem::GetLinkedLibraries(), TF1::GetMinMaxNDim(), TRealData::GetName(), TPacketizerUnit::GetNextPacket(), TGeoTrack::GetObjectInfo(), TRefArray::GetObjectUID(), TGFileBrowser::GetObjPicture(), TProof::GetOutput(), TUnfold::GetOutputBinName(), TRootDialog::GetParameters(), TProofBench::GetPerfSpecs(), TGeoMedium::GetPointerName(), TGeoMatrix::GetPointerName(), TGeoMaterial::GetPointerName(), TGeoShape::GetPointerName(), TGeoVolume::GetPointerName(), TNetFileStager::GetPrefix(), TProof::GetRC(), TS3HTTPRequest::GetRequest(), TGSimpleTableInterface::GetRowHeader(), TGDMLParse::GetScale(), TUnfoldDensity::GetScanVariable(), TClass::GetStreamerInfoAbstractEmulated(), TPgSQLServer::GetTableInfo(), TEventIterTree::GetTrees(), TGSimpleTableInterface::GetValueAsString(), TGeoPainter::GetVolumeInfo(), TRootSnifferScanRec::GoInside(), TProofBenchDataSet::Handle(), TProofServ::HandleArchive(), TProofServ::HandleCache(), TProofServ::HandleCheckFile(), TGCommandPlugin::HandleCommand(), TFormula::HandleExponentiation(), TProof::HandleInputMessage(), TGuiBldDragManager::HandleKey(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TFormula::HandleLinear(), TGSplitButton::HandleMenu(), TGListTree::HandleMotion(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TProofServ::HandleProcess(), TProofServ::HandleRetrieve(), TProofServ::HandleSocketInput(), httptextlog(), TGDMLParse::Hype(), TGeoManager::Import(), TMinuit2TraceObject::Init(), TDataSetManagerFile::Init(), TProofOutputFile::Init(), TGFileItem::Init(), TProofLite::Init(), TFile::Init(), TProof::Init(), TF1NormSum::InitializeDataMembers(), TFormula::InitLambdaExpression(), TMVA::DataSetFactory::InitOptions(), TF1::InitStandardFunctions(), TMethodBrowsable::IsMethodBrowsable(), TGDMLParse::IsoProcess(), TBufferJSON::JsonWriteConstChar(), TProofPerfAnalysis::LatencyPlot(), TRootBrowserLite::ListTreeHighlight(), TProof::Load(), TCling::LoadFile(), TProof::LoadPackageOnClient(), main(), TS3HTTPRequest::MakeAuthHeader(), TProofBench::MakeDataSet(), RooStats::HypoTestInverterPlot::MakeExpectedPlot(), TGeoElementRN::MakeName(), TFile::MakeProject(), TS3HTTPRequest::MakeRequestLine(), MakeTopLinks(), TProof::MarkBad(), TGDMLParse::MatProcess(), TProofPlayerRemote::MergeOutputFiles(), ROOT::Math::RMinimizer::Minimize(), TMinuit::mnderi(), TMinuit::mnemat(), TMinuit::mnexcm(), TMinuit::mnhes1(), TMinuit::mnhess(), TMinuit::mnmatu(), TMinuit::mnparm(), TMinuit::mnpint(), TMinuit::mnpsdf(), TDocOutput::NameSpace2FileName(), TGTab::NewTab(), THtml::TFileDefinition::NormalizePath(), TDataSetManagerFile::NotifyUpdate(), TSessionServerFrame::OnBtnAddClicked(), TSessionFrame::OnBtnGetQueriesClicked(), TSessionQueryFrame::OnBtnSubmit(), TSessionFrame::OnCommandLine(), TNewChainDlg::OnDoubleClick(), TNewChainDlg::OnElementClicked(), TSessionOutputFrame::OnElementDblClicked(), TRootContextMenu::OnlineHelp(), TFile::Open(), TRootGuiBuilder::OpenProject(), TGeoChecker::OpProgress(), TGDMLParse::Orb(), TPerfStats::PacketEvent(), TGFileBrowser::PadModified(), TGDMLParse::Para(), TGDMLParse::Paraboloid(), parallelMergeTest(), TGDMLParse::Polycone(), TGDMLParse::Polyhedra(), TGDMLParse::PosProcess(), pq2register(), TFileCollection::Print(), TProofLite::Print(), TFileInfo::Print(), TGeoBatemanSol::Print(), TRootCanvas::PrintCanvas(), Printf(), TRint::PrintLogo(), cling::printValue(), TSelEventGen::Process(), TProofPlayer::Process(), TProof::Process(), TFormula::ProcessFormula(), TRint::ProcessLineNr(), TGFileDialog::ProcessMessage(), TRootCanvas::ProcessMessage(), TRootBrowserLite::ProcessMessage(), TTreeViewer::ProcessMessage(), TProofServ::ProcessNext(), TXSocket::ProcessUnsolicitedMsg(), TRootSniffer::ProduceExe(), TProofProgressDialog::Progress(), TSessionQueryFrame::ProgressLocal(), TH3::ProjectionX(), TH3::ProjectionY(), TH3::ProjectionZ(), RooStats::ProofConfig::ProofConfig(), quadset_tooltip_callback(), TProofPerfAnalysis::RatePlot(), TS3WebFile::ReadBuffers(), ReadRemoteImage(), TEveTriangleSet::ReadTrivialFile(), RooStats::HypoTestInverter::RebuildDistributions(), TProofServ::RedirectOutput(), TGDMLParse::Reflection(), TColorGradient::RegisterColor(), TRootSniffer::RegisterCommand(), TProofServ::RegisterDataSets(), TEntryList::RelocatePaths(), TFormula::ReplaceParamName(), TProofServ::ResolveKeywords(), TRootSniffer::Restrict(), TAuthenticate::RfioAuth(), TGDMLParse::RotProcess(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TGuiBldDragManager::Save(), TProof::SaveActiveList(), TGListTree::SaveChildren(), TGuiBldDragManager::SaveFrame(), TGMainFrame::SaveFrameAsCodeOrImage(), TProofPlayer::SavePartialResults(), TRootEmbeddedCanvas::SavePrimitive(), TGGC::SavePrimitive(), TGTextView::SavePrimitive(), TGTextEdit::SavePrimitive(), TGColorSelect::SavePrimitive(), TGListTreeItemStd::SavePrimitive(), TGListTree::SavePrimitive(), TRootGuiBuilder::SaveProject(), TQueryResult::SaveSelector(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TProofProgressLog::SaveToFile(), TProof::SaveWorkerInfo(), TRootSniffer::ScanCollection(), TDataSetManagerFile::ScanDataSet(), TRootSniffer::ScanHierarchy(), TRootSniffer::ScanObjectMembers(), TUnfoldDensity::ScanTau(), TGDMLParse::SclProcess(), TGHtmlBrowser::Selected(), TProof::SendFile(), TProof::SendInputDataFile(), TSQLMonitoringWriter::SendParameters(), TGeoMatrix::SetDefaultName(), TWinNTSystem::Setenv(), TRootSnifferStoreXml::SetField(), TRootSnifferStoreJson::SetField(), TGL5DDataSetEditor::SetIsoTabWidgets(), TProofPlayerRemote::SetLastMergingMsg(), TGedNameFrame::SetModel(), TGeoManagerEditor::SetModel(), TProof::SetParallel(), TProofServ::SetQueryRunning(), TRootSnifferScanRec::SetRootClass(), TProofMonSender::SetSendOptions(), TGeoManager::SetTopVolume(), TEntryList::SetTree(), TTreeViewer::SetTree(), TTreeViewer::SetTreeName(), TProofServLite::Setup(), TProofServ::Setup(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TRootBrowserLite::SetViewMode(), TMemStat::Show(), TMemStatShow::Show(), TSessionViewer::ShowEnabledPackages(), TSessionViewer::ShowPackages(), TProof::ShowPackages(), THistPainter::ShowProjection3(), THistPainter::ShowProjectionX(), THistPainter::ShowProjectionY(), TSessionViewer::ShowStatus(), TFile::ShrinkCacheFileDir(), TSelEventGen::SlaveBegin(), TSelVerifyDataSet::SlaveBegin(), TSelVerifyDataSet::SlaveTerminate(), TGDMLParse::Sphere(), TAuthenticate::SshAuth(), TUnixSystem::StackTrace(), StandardFrequentistDiscovery(), RooAbsStudy::storeDetailedOutput(), RooStats::StripConstraints(), TAFS::TAFS(), TSelectorDraw::TakeAction(), TCling_GenerateDictionary(), TDSet::TDSet(), TProofServLite::Terminate(), TProofServ::Terminate(), TSessionViewer::Terminate(), TF1Convolution::TF1Convolution(), TF1NormSum::TF1NormSum(), TF1Parameters::TF1Parameters(), TGeoCompositeShape::TGeoCompositeShape(), TGeoNodeCache::TGeoNodeCache(), TGLineStyleComboBox::TGLineStyleComboBox(), TGLineWidthComboBox::TGLineWidthComboBox(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), TGuiBldDragManager::TGuiBldDragManager(), THnBase::THnBase(), ROOT::Internal::THnBaseBrowsable::THnBaseBrowsable(), TMVAMultipleBackgroundExample(), TGDMLParse::TopProcess(), TGDMLParse::Torus(), TPerfStats::TPerfStats(), TProofBench::TProofBench(), TProofPerfAnalysis::TProofPerfAnalysis(), TProofServ::TProofServ(), TH1::TransformHisto(), TGDMLParse::Trap(), TGDMLParse::Trd(), TTreePerfStats::TTreePerfStats(), TGDMLParse::Tube(), TGDMLParse::TwistTrap(), TUnixSystem::UnixUnixConnect(), TGFileBrowser::Update(), TSessionQueryFrame::UpdateInfos(), TGFontDialog::UpdateStyleSize(), TGMdiMainFrame::UpdateWinListMenu(), TUploadDataSetDlg::UploadDataSet(), TProofMgr::UploadFiles(), TGDMLParse::VolProcess(), TSessionViewer::WriteConfiguration(), TGDMLWrite::WriteGDMLfile(), TPerfStats::WriteQueryLog(), TGDMLParse::Xtru(), and TGCommandPlugin::~TGCommandPlugin().
|
private |
Formats a string using a printf style format descriptor.
Existing string contents will be overwritten.
Definition at line 2273 of file TString.cxx.
|
static |
Definition at line 1531 of file TString.cxx.
|
inlineprivate |
Definition at line 230 of file TString.h.
Referenced by Capacity().
|
inlineprivate |
Definition at line 232 of file TString.h.
Referenced by Clobber(), GetPointer(), operator=(), and TString().
|
inlineprivate |
|
inlineprivate |
Definition at line 227 of file TString.h.
Referenced by Length(), operator=(), and TString().
|
static |
Definition at line 1547 of file TString.cxx.
|
inlineprivate |
Definition at line 236 of file TString.h.
Referenced by Append(), Clone(), Data(), TStringLong::FillBuffer(), FillBuffer(), FormImp(), operator const char *(), operator std::string_view(), TSubString::operator()(), operator()(), TSubString::operator[](), operator[](), Prepend(), Puts(), ReadFile(), ReadToDelim(), ReadToken(), TBufferFile::ReadTString(), Replace(), TSubString::ToLower(), ToLower(), TSubString::ToUpper(), ToUpper(), and TBufferFile::WriteTString().
|
static |
Definition at line 1539 of file TString.cxx.
Read one line from the stream, including the
, or until EOF.
Remove the trailing
if chop is true. Returns kTRUE if data was read.
Definition at line 198 of file Stringio.cxx.
Referenced by TProof::BuildPackageOnClient(), TCondor::ClaimVM(), TProofLite::CopyMacroToCache(), TSystem::GetFromPipe(), TCondor::GetImage(), TUnixSystem::GetLinkedLibraries(), TCondor::GetVirtualMachines(), TCondor::GetVmInfo(), TProofServ::HandleCache(), TROOT::ReadGitInfo(), TCondor::Release(), TCondor::SetState(), and TUnixSystem::StackTrace().
|
inlineprivate |
Definition at line 234 of file TString.h.
Referenced by GetPointer(), and Init().
|
inlineprivate |
|
inlineprivate |
UInt_t TString::Hash | ( | ECaseCompare | cmp = kExact | ) | const |
Return hash value.
Definition at line 592 of file TString.cxx.
Referenced by ClassImp(), TObjectTable::FindElement(), TEntryList::GetEntryList(), THashTable::GetHashValue(), TRootSniffer::GetItemHash(), RooSetPair::Hash(), TImagePlugin::Hash(), TObjString::Hash(), TStatsFeedback::Hash(), RooHashTable::hash(), TNamed::Hash(), TDrawFeedback::Hash(), TStatistic::Hash(), TPave::Hash(), TGPicture::Hash(), RooLinkedList::Hash(), TCollection::Hash(), TParameter< Long64_t >::Hash(), THtml::TFileSysEntry::Hash(), TEnvRec::Hash(), TObject::Hash(), TMath::Hash(), TPad::Hash(), Hash(), TProof::LoadPackageOnClient(), TBufferXML::ProcessPointer(), TBufferXML::RegisterPointer(), TEntryList::RelocatePaths(), TEntryList::SetTree(), and TBufferSQL2::SqlWriteObject().
Calculates hash index from any char string.
(static function)
This employs two different hash functions, depending on ntxt:
Definition at line 774 of file TString.cxx.
|
private |
Return a case-sensitive hash value (endian independent).
Definition at line 548 of file TString.cxx.
Referenced by Hash().
|
private |
Return a case-insensitive hash value (endian independent).
Definition at line 577 of file TString.cxx.
Referenced by Hash().
|
inline |
Definition at line 582 of file TString.h.
Referenced by THttpCallArg::AccessHeader(), TFileCollection::Add(), TChain::Add(), TGFileBrowser::Add(), TTreeCache::AddBranch(), TGPopupMenu::AddEntry(), TGFileContainer::AddFile(), TUploadDataSetDlg::AddFiles(), TDocHtmlDirective::AddLine(), TGLVoxelPainter::AddOption(), TGLLegoPainter::AddOption(), TGLBoxPainter::AddOption(), TGLSurfacePainter::AddOption(), ROOT::Internal::TTreeReaderGenerator::AddReader(), TGFileBrowser::AddRemoteFile(), TGFileContainer::AddRemoteFile(), ROOT::Internal::TTreeProxyGenerator::AnalyzeBranches(), ROOT::Internal::TTreeReaderGenerator::AnalyzeBranches(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), TFileDrawMap::AnimateTree(), TQueryResultManager::ApplyMaxQueries(), TProof::AssertDataSet(), TFile::AsyncOpen(), Atof(), Atoi(), Atoll(), TRootAuth::Authenticate(), begin_request_handler(), BeginsWith(), TBranchElement::Browse(), TDataSetManagerFile::BrowseDataSets(), TGFontDialog::Build(), ROOT::Internal::TF1Builder< const char * >::Build(), TMultiLayerPerceptron::BuildHiddenLayers(), TMultiLayerPerceptron::BuildLastLayer(), TStreamerInfo::BuildOld(), TPluginHandler::CanHandle(), TGeoNavigator::cd(), TAuthenticate::CheckNetrc(), TGeoNavigator::CheckPath(), TGCommandPlugin::CheckRemote(), TCondor::ClaimVM(), ClassImp(), TUrl::CleanRelativePath(), TQueryResultManager::CleanupQueriesDir(), TQueryResultManager::CleanupSession(), TDataSetManagerFile::ClearCache(), TXSocket::Close(), TEfficiency::Combine(), TSystem::CompileMacro(), TTabCom::Complete(), Contains(), THttpCallArg::CountHeader(), TCivetweb::Create(), THostAuth::Create(), TNetSystem::Create(), TXSocket::Create(), TSocket::CreateAuthSocket(), TTreeSQL::CreateBranches(), TClassDocOutput::CreateDotClassChartLib(), TDocLatexDirective::CreateLatex(), THtml::CreateListOfClasses(), TDocOutput::CreateModuleIndex(), TMVA::MethodBase::CreateVariableTransforms(), TDocParser::DecorateKeywords(), TDirectoryFile::Delete(), TDirectory::Delete(), TProof::DeleteParameters(), do_put(), do_rm(), TProofProgressLog::DoLog(), TH2::DoProfile(), TH2::DoProjection(), TGFileBrowser::DoubleClicked(), TGeoTrack::Draw(), TGraph::Draw(), TMultiLayerPerceptron::Draw(), TH1::Draw(), TTreePlayer::DrawSelect(), TProofLite::DrawSelect(), TProof::DrawSelect(), TTreeCache::DropBranch(), TTreeViewer::EmptyBrackets(), TProof::EnablePackage(), TRootSniffer::ExecuteCmd(), TWinNTSystem::ExpandPathName(), RooStudyManager::expandWildCardSpec(), TH1::FFT(), TAuthenticate::FileExpand(), TGMimeTypes::Find(), TSystem::FindHelper(), TRootContextMenu::FindHierarchy(), TGContainer::FindItem(), FindMenuIconName(), ROOT::Fit::FitOptionsMake(), TDocOutput::FixupAuthorSourceInfo(), TGFileBrowser::FullPathName(), GetAuthProto(), TXMLPlayer::GetBasicTypeReaderMethodName(), THistPainter::GetBestFormat(), TStreamerElement::GetClassPointer(), TMVA::RuleFit::GetCorrVars(), TDataSetManagerFile::GetDataSets(), TWebFile::GetFromWeb10(), TAuthenticate::GetHostAuth(), THtml::TPathDefinition::GetIncludeAs(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TMVA::MethodBase::GetLine(), TUnixSystem::GetLinkedLibraries(), TProofLite::GetListOfQueries(), TMVA::Reader::GetMethodTypeFromFile(), THtml::TModuleDefinition::GetModule(), TMLPAnalyzer::GetNeuronFormula(), TMLPAnalyzer::GetNeurons(), TProofLite::GetNumberOfWorkers(), THistPainter::GetObjectInfo(), TXProofMgr::GetSessionLogs(), TAxis::GetTimeFormatOnly(), TKey::GetTitle(), TDataType::GetTypeName(), TProofServ::HandleCache(), TDocParser::HandleDirective(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TFormula::HandleLinear(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TProofServ::HandleQueryList(), TAuthenticate::HasHostAuth(), RooWorkspace::importClassCode(), Index(), TDataSetManagerFile::Init(), TProofOutputFile::Init(), TProof::Init(), TSystem::IsFileInIncludePath(), THttpServer::IsFileRequested(), IsFloat(), TCling::IsLoaded(), Krb5CheckCred(), TSystem::ListLibraries(), TSystem::Load(), TProof::Load(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), TQueryResultManager::LocateQuery(), TXProofServ::LockSession(), TQueryResultManager::LockSession(), TProofOutputList::ls(), TFolder::ls(), TTask::ls(), TDirectoryFile::ls(), TCollection::ls(), TDirectory::ls(), TFile::MakeProject(), TGDMLParse::NameShort(), TDocOutput::NameSpace2FileName(), TFile::Open(), TProof::Open(), operator()(), TGLHistPainter::Paint(), TPie::Paint(), TASImage::Paint(), TGaxis::PaintAxis(), TFileDrawMap::PaintDir(), TLatex::PaintLatex(), TMathText::PaintMathText(), TAlienJDL::Parse(), TXSlave::ParseBuffer(), TProof::ParseConfigField(), TDataSetManager::ParseInitOpts(), TProofProgressMemoryPlot::ParseLine(), TDataSetManagerAliEn::ParseOfficialDataUri(), TXNetFile::ParseOptions(), TChain::ParseTreeFilename(), TDataSetManager::ParseUri(), pq2register(), TProofOutputList::Print(), TClassTable::Print(), TCollection::Print(), TFileInfo::Print(), TQueryResult::Print(), TPad::Print(), TTree::Print(), TFileCollection::PrintDetailed(), TProof::Process(), TFormula::ProcessFormula(), TGLSAViewer::ProcessFrameMessage(), TApplication::ProcessLine(), TRootCanvas::ProcessMessage(), THttpServer::ProcessRequest(), TRootSniffer::ProduceExe(), TXMLPlayer::ProduceSTLstreamer(), TH3::Project3D(), TH3::Project3DProfile(), TSapDBServer::Query(), TProofMgrLite::ReadBuffer(), TProofResourcesStatic::ReadConfigFile(), TAuthenticate::ReadRootAuthrc(), ReadSize(), TMVA::MethodBase::ReadStateFromStream(), TMVA::MethodBase::ReadStateFromXML(), TMVA::MethodCategory::ReadWeightsFromXML(), ROOT::RegisterClassTemplate(), TQueryResultManager::RemoveQuery(), ReplaceAll(), TProofServ::Reset(), TProofLite::ResolveKeywords(), TGeoChecker::SamplePoints(), TGeoVolume::SaveAs(), TTable::SavePrimitive(), TQueryResult::SaveSelector(), TProofProgressLog::SaveToFile(), TTreePlayer::Scan(), TGText::Search(), TSQLMonitoringWriter::SendParameters(), TTree::SetBasketSize(), TTree::SetBranchStatus(), TChain::SetEntryListFile(), TProof::SetFeedback(), TGFontDialog::SetFont(), TF2GL::SetModel(), TH2GL::SetModel(), TH3GL::SetModel(), TPieEditor::SetModel(), TWebFile::SetMsgReadBuffer10(), TDocDirective::SetParameters(), TGaxis::SetTimeFormat(), TAxis::SetTimeFormat(), TGaxis::SetTimeOffset(), TAxis::SetTimeOffset(), TASImage::SetTitle(), THnBase::SetTitle(), TH1::SetTitle(), TProofServLite::Setup(), TXProofServ::Setup(), TProofServ::Setup(), TPluginHandler::SetupCallEnv(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TEnv::SetValue(), TDataSetManagerFile::ShowCache(), TProof::ShowParameters(), TUnixSystem::StackTrace(), SubString(), TDSet::TDSet(), TTeXDump::Text(), TFile::TFile(), THostAuth::THostAuth(), Tokenize(), TOracleServer::TOracleServer(), TSessionQueryFrame::UpdateInfos(), TGFontDialog::UpdateStyleSize(), TMVA::VariableInfo::VariableInfo(), TClassDocOutput::WriteClassDocHeader(), TDataSetManagerFile::WriteDataSet(), TDocOutput::WriteHtmlFooter(), TASImage::WriteImage(), and ROOT::Internal::TTreeProxyGenerator::WriteProxy().
|
inline |
Ssiz_t TString::Index | ( | const char * | pattern, |
Ssiz_t | plen, | ||
Ssiz_t | startIndex, | ||
ECaseCompare | cmp | ||
) | const |
Search for a string in the TString.
Plen is the length of pattern, startIndex is the index from which to start and cmp selects the type of case-comparison.
Definition at line 825 of file TString.cxx.
|
inline |
Find the first occurrence of the regexp in string and return the position, or -1 if there is no match.
Start is the offset at which the search should start.
Definition at line 249 of file TRegexp.cxx.
Find the first occurrence of the regexp in string and return the position, or -1 if there is no match.
Extent is length of the matched string and start is the offset at which the matching should start.
Definition at line 260 of file TRegexp.cxx.
Find the first occurrence of the regexp in string and return the position.
Start is the offset at which the search should start.
Definition at line 520 of file TPRegexp.cxx.
Find the first occurrence of the regexp in string and return the position.
Extent is length of the matched string and start is the offset at which the matching should start.
Definition at line 535 of file TPRegexp.cxx.
Private member function returning an empty string representation of size capacity and containing nchar characters.
Definition at line 217 of file TString.cxx.
Referenced by InitChar(), operator=(), TStringLong::ReadBuffer(), ReadBuffer(), and TString().
|
protected |
Initialize a string with a single character.
Definition at line 135 of file TString.cxx.
Referenced by TString().
Set default initial capacity for all TStrings. Default is 15.
Definition at line 1556 of file TString.cxx.
Definition at line 592 of file TString.h.
Referenced by THttpCallArg::AccessHeader(), TNetSystem::AccessPathName(), TDSet::Add(), TDocOutput::AddLink(), TGTextBuffer::AddText(), TProofOutputFile::AdoptFile(), TLatex::CheckLatexSyntax(), ClassImp(), TNetFile::ConnectServer(), TProofLite::CopyMacroToCache(), TNetSystem::Create(), TProofLite::CreateSandbox(), TProofServLite::CreateServer(), TXProofServ::CreateServer(), TDocOutput::DecorateEntityBegin(), TDocOutput::DecorateEntityEnd(), TH1Editor::DoAddBar(), TH1Editor::DoHBar(), TFormula::ExtractFunctors(), TCollectionPropertyBrowsable::GetBrowsables(), TFileCollection::GetFilesOnServer(), TGX11::GetPasteBuffer(), TGWin32::GetPasteBuffer(), TGCocoa::GetPasteBuffer(), TNetSystem::GetPathInfo(), TProofMgrLite::GetSessionLogs(), TProofServ::HandleArchive(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TProof::HandleOutputOptions(), TProofServ::HandleSocketInput(), TDataSetManagerFile::Init(), TFTP::Init(), TProofOutputFile::Init(), TSlave::Init(), TProofLite::Init(), TProof::Init(), TNetFileStager::IsStaged(), TXNetFileStager::IsStaged(), TProof::Load(), TNetFileStager::Locate(), TNetSystem::MakeDirectory(), TProofPlayerRemote::MergeOutputFiles(), TFile::Open(), TProof::Open(), TNetSystem::OpenDirectory(), TProof::ParseConfigField(), TApplication::ParseRemoteLine(), pq2register(), TQueryResult::Print(), TProofPlayer::Process(), TApplication::ProcessRemote(), THnBase::ProjectionAny(), THnBase::RebinBase(), TEntryList::RelocatePaths(), TProofPlayer::SavePartialResults(), TGTextButton::SavePrimitive(), TGCheckButton::SavePrimitive(), TGRadioButton::SavePrimitive(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TProofPlayerRemote::SendSelector(), TProofLite::SetDataSetTreeName(), TProof::SetDataSetTreeName(), TEfficiency::SetTitle(), TProofServLite::SetupOnFork(), TXNetFileStager::Stage(), TApplicationRemote::TApplicationRemote(), ROOT::Internal::TBranchProxyDescriptor::TBranchProxyDescriptor(), TNetSystem::Unlink(), TSessionQueryFrame::UpdateInfos(), and TDataSetManagerFile::WriteDataSet().
Bool_t TString::IsAlnum | ( | ) | const |
Returns true if all characters in string are alphanumeric.
Returns false in case string length is 0.
Definition at line 1776 of file TString.cxx.
Referenced by TMultiLayerPerceptron::BuildOneHiddenLayer(), TMVA::MethodDT::SetMinNodeSize(), and TGTable::UserRangeChange().
Bool_t TString::IsAlpha | ( | ) | const |
Returns true if all characters in string are alphabetic.
Returns false in case string length is 0.
Definition at line 1761 of file TString.cxx.
Referenced by TMultiLayerPerceptron::BuildOneHiddenLayer().
Bool_t TString::IsAscii | ( | ) | const |
Returns true if all characters in string are ascii.
Definition at line 1748 of file TString.cxx.
Bool_t TString::IsBin | ( | ) | const |
Returns true if all characters in string are binary digits (0,1).
Returns false in case string length is 0 or string contains other characters.
Definition at line 1871 of file TString.cxx.
Bool_t TString::IsDec | ( | ) | const |
Returns true if all characters in string are decimal digits (0-9).
Returns false in case string length is 0 or string contains other characters.
Definition at line 1903 of file TString.cxx.
Bool_t TString::IsDigit | ( | ) | const |
Returns true if all characters in string are digits (0-9) or white spaces, i.e.
"123456" and "123 456" are both valid integer strings. Returns false in case string length is 0 or string contains other characters or only whitespace.
Definition at line 1793 of file TString.cxx.
Referenced by TProofNodes::ActivateWorkers(), TDataSetManagerFile::CheckLocalCache(), ClassImp(), TXSocket::Close(), TXProofMgr::Exec(), TFormula::ExtractFunctors(), TGDMLWrite::GenName(), TDSetElement::GetAssocObj(), GetAuthProto(), TProofLite::GetNumberOfWorkers(), TProof::GetRC(), TProof::HandleOutputOptions(), TFormula::HandlePolN(), TProofLite::Init(), IsFloat(), TQueryResultManager::LocateQuery(), TFile::Open(), TProof::Open(), TFormulaParamOrder::operator()(), TProof::ParseConfigField(), TFileInfo::ParseInput(), TXNetFile::ParseOptions(), TNetXNGFileStager::ParseStagePriority(), TXProofMgr::QuerySessions(), TDataSetManager::ReadGroupConfig(), TASImage::ReadImage(), TProofMonSender::SetSendOptions(), TProofServ::SetupCommon(), TAuthenticate::SshAuth(), TXNetFileStager::Stage(), TXProofMgr::Stat(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), TDataSetManager::ToBytes(), TProofNodeInfo::TProofNodeInfo(), TProofServ::TProofServ(), TSQLMonitoringWriter::TSQLMonitoringWriter(), and TGFontDialog::UpdateStyleSize().
Bool_t TString::IsFloat | ( | ) | const |
Returns kTRUE if string contains a floating point or integer number.
Examples of valid formats are:
Definition at line 1821 of file TString.cxx.
Referenced by TMVA::DrawMLPoutputMovie(), TProof::GetRC(), TMVA::MethodBDT::SetMinNodeSize(), TGraph::TGraph(), TGraph2D::TGraph2D(), and TGraphErrors::TGraphErrors().
Bool_t TString::IsHex | ( | ) | const |
Returns true if all characters in string are hexadecimal digits (0-9,a-f,A-F).
Returns false in case string length is 0 or string contains other characters.
Definition at line 1855 of file TString.cxx.
Returns true if all characters in string are expressed in the base specified (range=2-36), i.e.
{0,1} for base 2, {0-9,a-f,A-F} for base 16, {0-9,a-z,A-Z} for base 36. Returns false in case string length is 0 or string contains other characters.
Definition at line 1920 of file TString.cxx.
Referenced by BaseConvert().
|
inlineprivate |
Definition at line 218 of file TString.h.
Referenced by Capacity(), GetPointer(), Length(), operator=(), SetSize(), TString(), and UnLink().
|
inline |
Definition at line 387 of file TString.h.
Referenced by TGTextEditor::About(), TNetSystem::AccessPathName(), TControlBarButton::Action(), TProofNodes::ActivateWorkers(), TDSet::Add(), TChain::AddFile(), TFileCollection::AddFromFile(), TProofPlayerRemote::AddOutputObject(), TAlienJDL::AddToReqSet(), TGridJDL::AddToSet(), TRootBrowserLite::AddToTree(), TProof::AddWorkers(), TProofOutputFile::AdoptFile(), TDataSetManagerAliEn::AliEnWhereIs(), TEveElement::ApplyVizTag(), TProof::AssertDataSet(), TGDMLParse::AssProcess(), TCling::AutoLoad(), TMacro::Browse(), TMultiGraph::Browse(), TGraph::Browse(), TProofProgressLog::BuildLogList(), TProof::BuildPackageOnClient(), TDataSetManager::CheckDataSetSrvMaps(), TPluginHandler::CheckForExecPlugin(), TDataSetManager::CheckStagedStatus(), ClassImp(), ClassImpQ(), TProof::ClearData(), TNetSystem::ConsistentWith(), TSelHandleDataSet::CopyFile(), TProofLite::CopyMacroToCache(), TXProofMgr::Cp(), TProofMgr::Create(), TTreeSQL::CreateBranches(), ROOT::Internal::TTreeReaderValueBase::CreateProxy(), TProofLite::CreateSandbox(), RooFormula::DefinedValue(), RooFormula::DefinedVariable(), TQObject::Disconnect(), do_anadist_ds(), TProofProgressLog::DoLog(), TProfile2D::DoProfile(), TH2::DoQuantiles(), TEfficiency::Draw(), TH1::DrawNormalized(), DynamicPath(), TProof::EnablePackage(), TApplicationServer::ErrorHandler(), TRootCanvas::EventInfo(), TTabCom::ExcludedByFignore(), TXProofMgr::Exec(), TContextMenu::Execute(), TRootGuiBuilder::ExecuteAction(), TGeoVolume::Export(), TGeoManager::Export(), TFileCollection::ExportInfo(), TTabCom::ExtendPath(), TASPluginGS::File2ASImage(), TProofPerfAnalysis::FileRatePlot(), TProofPerfAnalysis::FillFileInfo(), TProofPerfAnalysis::FillWrkInfo(), TProofServ::FilterLocalroot(), TProof::Finalize(), TGContainer::FindItem(), FormatToolTip(), TUri::GetAuthority(), TProofPerfAnalysis::GetCanvasTitle(), GetCommonString(), TS3WebFile::GetCredentialsFromEnv(), TDataSetManagerFile::GetDataSet(), TXProofMgr::GetFile(), TProof::GetFileInCmd(), TDSetElement::GetFileInfo(), TWebFile::GetFromWeb10(), TAliEnFind::GetGridResult(), TWebFile::GetHead(), TKey::GetIconName(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TUnixSystem::GetLinkedLibraries(), TWinNTSystem::GetLinkedLibraries(), TXProofMgr::GetMssUrl(), TQCommand::GetName(), TPacketizerFile::GetNextPacket(), TProofLite::GetNumberOfWorkers(), TNetSystem::GetPathInfo(), TProofBench::GetPerfSpecs(), RooAbsReal::getPlotLabel(), TS3HTTPRequest::GetRequest(), TProof::GetSandbox(), TAliEnFind::GetSearchId(), TProofMgrLite::GetSessionLogs(), TXProofMgr::GetSessionLogs(), TCling::GetSharedLibs(), TClass::GetSharedLibs(), TFunction::GetSignature(), TUrl::GetSpecialProtocols(), TKey::GetTitle(), TQCommand::GetTitle(), TASImage::GetTitle(), TFile::GetType(), TXProofServ::GetWorkers(), TProofServ::GetWorkers(), TProofBenchDataSet::Handle(), TApplication::HandleIdleTimer(), TProof::HandleInputMessage(), TRootBrowser::HandleMenu(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofServ::HandleSocketInput(), TRint::HandleTermInput(), TXProofServ::HandleUrgentData(), TXSlave::Init(), TDataSetManagerFile::Init(), TProofOutputFile::Init(), TUnuranSampler::Init(), TProofLite::Init(), TProof::Init(), TProofLite::InitDataSetManager(), TXSocket::InitEnvs(), TDataSetManagerFile::InitLocalCache(), TGTextEntry::Insert(), TAliEnFind::InvalidateSearchId(), TGuiBuilder::IsExecutable(), TUri::IsPathEmpty(), TDSet::IsValid(), Krb5InitCred(), TProofPerfAnalysis::LatencyPlot(), TCling::LazyFunctionCreatorAutoload(), TEventIterTree::Load(), TSystem::Load(), TProof::Load(), TEventIter::LoadDir(), TPluginManager::LoadHandlersFromEnv(), TDirectoryFile::ls(), TDirectory::ls(), main(), TTabCom::MakeClassFromVarName(), TProofBench::MakeDataSet(), TNetSystem::MakeDirectory(), TProof::MarkBad(), TProofOutputFile::Merge(), TProofPlayerRemote::MergeOutput(), TProofPlayerRemote::MergeOutputFiles(), TUri::MergePaths(), TProof::ModifyWorkerLists(), TTabCom::NewListOfFilesInPath(), TFile::Open(), TNetSystem::OpenDirectory(), TProofOutputFile::OpenFile(), operator==(), TGeoManager::OptimizeVoxels(), TSpectrum2Painter::PaintSpectrum(), TAlienJDL::Parse(), TXSlave::ParseBuffer(), TProof::ParseConfigField(), TDataSetManagerAliEn::ParseCustomFindUri(), TDataSetManager::ParseDataSetSrvMaps(), TDataSetManagerFile::ParseInitOpts(), TFileInfo::ParseInput(), TProofProgressMemoryPlot::ParseLine(), TDataSetManagerAliEn::ParseOfficialDataUri(), TS3WebFile::ParseOptions(), TChain::ParseTreeFilename(), TDataSetManager::ParseUri(), TFileMerger::PartialMerge(), RooAbsReal::plotAsymOn(), RooAbsReal::plotOn(), TGFont::PostscriptFontName(), pq2register(), TProof::PrepareInputDataFile(), TUnixSystem::PrependPathName(), TFileCollection::Print(), TFileInfo::Print(), TSlaveInfo::Print(), RooRealVar::printExtras(), RooAbsRealLValue::printMultiline(), RooRealVar::printMultiline(), RooAbsReal::printMultiline(), TSelEventGen::Process(), TProofLite::Process(), TProofPlayer::Process(), TProof::Process(), TDataSetManager::ProcessFile(), TGLSAViewer::ProcessFrameMessage(), TGClient::ProcessLine(), TGHtmlBrowser::ProcessMessage(), TRootCanvas::ProcessMessage(), TRootBrowserLite::ProcessMessage(), TTreeViewer::ProcessMessage(), TSessionViewer::ProcessMessage(), THttpServer::ProcessRequest(), TProfile2D::ProjectionXY(), TAuthenticate::PromptUser(), TXProofMgr::PutFile(), TProofPerfAnalysis::RatePlot(), TSessionViewer::ReadConfiguration(), TPythia6Decayer::ReadDecayTable(), RooStreamParser::readDouble(), RooMappedCategory::readFromStream(), RooArgSet::readFromStream(), TDataSetManager::ReadGroupConfig(), TASImage::ReadImage(), RooStreamParser::readInteger(), TTree::ReadStream(), RooStreamParser::readString(), TUnixSystem::RedirectOutput(), TCling::RegisterLoadedSharedLibrary(), TEntryList::Relocate(), TFormula::ReplaceParamName(), TProofMgr::ReplaceSubdirs(), TProofLite::ResolveKeywords(), TProof::RestoreActiveList(), TXProofMgr::Rm(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TProofBench::RunCPU(), TProofBench::RunCPUx(), TProofBench::RunDataSet(), TProofBench::RunDataSetx(), TProof::SaveActiveList(), TGeoManager::SaveAttributes(), TProofPlayer::SavePartialResults(), TProof::SavePerfTree(), TProofProgressLog::SaveToFile(), TDataSetManagerFile::ScanDataSet(), TDataSetManager::ScanFile(), TGListTree::Search(), TEvePointSelector::Select(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProof::SendFile(), TSQLMonitoringWriter::SendParameters(), TUri::SetAuthority(), TXNetFile::SetEnv(), TProof::SetFeedback(), TUri::SetHierPart(), TASImage::SetImage(), TASImage::SetImageBuffer(), TProof::SetInputDataFile(), TH1Editor::SetModel(), TProofBench::SetOutFile(), ROOT::v5::TFormula::SetParName(), TAliEnFind::SetRegexp(), TUri::SetRelativePart(), TProofPerfAnalysis::SetSaveResult(), TProofMonSender::SetSendOptions(), TGaxis::SetTimeFormat(), TAxis::SetTimeFormat(), TASImage::SetTitle(), TXProofServ::Setup(), TProofServ::Setup(), TProofServ::SetupCommon(), TProofLite::SetupWorkers(), TUri::SetUserInfo(), TDataSetManager::ShowDataSets(), TSelEventGen::SlaveBegin(), TSelVerifyDataSet::SlaveBegin(), StandardBayesianNumericalDemo(), StandardHypoTestInvDemo(), TProofSuperMaster::StartSlaves(), TProofCondor::StartSlaves(), TProofPerfAnalysis::Summary(), TAFS::TAFS(), TAliEnFind::TAliEnFind(), TDSet::TDSet(), TProofServLite::Terminate(), TXProofServ::Terminate(), TProofServ::Terminate(), TestPct(), TF1::TF1(), TGButtonGroup::TGButtonGroup(), ROOT::Internal::THnBaseBrowsable::THnBaseBrowsable(), Tokenize(), TPerfStats::TPerfStats(), TProof::TProof(), TProofNodeInfo::TProofNodeInfo(), TProofPerfAnalysis::TProofPerfAnalysis(), TProofServ::TProofServ(), TUri::Transform(), TNetSystem::Unlink(), VerifyDataSet(), TProof::VerifyDataSetParallel(), TGDMLParse::VolProcess(), TSystem::Which(), TPythia6Decayer::WriteDecayTable(), and RooRealVar::writeToStream().
Bool_t TString::IsOct | ( | ) | const |
Returns true if all characters in string are octal digits (0-7).
Returns false in case string length is 0 or string contains other characters.
Definition at line 1887 of file TString.cxx.
|
inline |
Definition at line 388 of file TString.h.
Referenced by TFileCollection::AddFromFile(), and TMultiGraph::Paint().
Converts an Int_t to a TString with respect to the base specified (2-36).
Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). Usage: the following statement produce the same output, namely "1111"
In case of error returns the "!" string.
Definition at line 2055 of file TString.cxx.
Ssiz_t TString::Last | ( | char | c | ) | const |
Find last occurrence of a character c.
Definition at line 851 of file TString.cxx.
Referenced by TChain::Add(), TProofPlayerRemote::AddOutputObject(), ROOT::Internal::TTreeProxyGenerator::AnalyzeBranches(), ROOT::Internal::TTreeReaderGenerator::AnalyzeBranches(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), TMultiLayerPerceptron::AttachData(), TServerSocket::Authenticate(), TTree::BranchOld(), TBranchElement::Browse(), ROOT::Internal::TF1Builder< const char * >::Build(), TMultiLayerPerceptron::BuildNetwork(), TBranchElement::BuildTitle(), TGHtmlBrowser::CheckAnchors(), ClassImp(), TProofLite::CleanupSandbox(), TApplicationRemote::CollectInput(), TSystem::CompileMacro(), TProofLite::CopyMacroToCache(), THtml::CreateListOfClasses(), TXProofServ::CreateServer(), TDocMacroDirective::CreateSubprocessInputFile(), TUnfoldBinning::DecodeAxisSteering(), do_anadist(), TMultiLayerPerceptron::Draw(), TTreePlayer::DrawSelect(), TRootBrowser::ExecPlugin(), RooStudyManager::expandWildCardSpec(), TMultiLayerPerceptron::Export(), TGLAxisPainter::FormAxisValue(), TCollectionPropertyBrowsable::GetBrowsables(), THtml::TFileDefinition::GetFileName(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TMVA::Reader::GetMethodTypeFromFile(), TDocDirective::GetName(), TMLPAnalyzer::GetNeurons(), TGPrintDialog::GetPrinters(), TProof::GetRC(), TSelector::GetSelector(), TProofMgrLite::GetSessionLogs(), TCling::GetSharedLibDeps(), TSQLiteStatement::GetTimestamp(), TFormula::HandleExponentiation(), TProof::HandleOutputOptions(), TROOT::IgnoreInclude(), TMVA::TMVAGlob::imgconv(), TMethodCall::Init(), TBranchElement::Init(), TClassDocOutput::ListDataMembers(), TProofLite::Load(), TSystem::Load(), TProof::Load(), TUri::MergePaths(), TDocOutput::NameSpace2FileName(), TRootContextMenu::OnlineHelp(), TMVA::paracoor(), TXSlave::ParseBuffer(), TCling::ProcessLine(), TProofServ::ProcessNext(), TRootSniffer::ProduceMulti(), TBranchElement::ReadLeavesMakeClass(), TMVA::MethodCategory::ReadWeightsFromXML(), TProofPlayer::ReinitSelector(), TEntryList::RelocatePaths(), TUri::RemoveDotSegments(), TProofLite::ResolveKeywords(), TCanvas::SaveSource(), TProofPlayerRemote::SendSelector(), TXProofServ::Setup(), TProofServ::SetupCommon(), THostAuth::THostAuth(), TProof::TProof(), TCling::UnloadLibraryMap(), TProofMgr::UploadFiles(), TDocOutput::WriteLocation(), and ROOT::Internal::TTreeProxyGenerator::WriteProxy().
|
inline |
Definition at line 390 of file TString.h.
Referenced by THttpCallArg::AccessHeader(), TAlienSystem::AccessPathName(), RooStats::SamplingDistribution::Add(), TGPopupMenu::AddEntry(), TChain::AddFile(), ROOT::Internal::TTreeGeneratorBase::AddHeader(), TSQLFile::AddIdEntry(), TDocLatexDirective::AddLine(), TDocOutput::AddLink(), TGLLegoPainter::AddOption(), TGLBoxPainter::AddOption(), TGLSurfacePainter::AddOption(), TTVSession::AddRecord(), RooStats::SamplingDistPlot::AddSamplingDistribution(), TAlienJDL::AddToReqSet(), TGridJDL::AddToSet(), TBonjourRecord::AddTXTRecord(), TProof::AddWorkers(), ROOT::Internal::TTreeProxyGenerator::AnalyzeBranches(), ROOT::Internal::TTreeReaderGenerator::AnalyzeBranches(), ROOT::Internal::TTreeProxyGenerator::AnalyzeElement(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), Append(), AppendLink(), TProof::AssertDataSet(), AssertElement(), ROOT::TSchemaRule::AsString(), TFile::AsyncOpen(), TStringToken::AtEnd(), Atof(), Atoi(), Atoll(), TMultiLayerPerceptron::AttachData(), authclient(), TServerSocket::Authenticate(), TAuthenticate::AuthExists(), RooWorkspace::CodeRepo::autoImportClass(), BaseConvert(), TMVA::BDT(), TMVA::BDT_Reg(), TSelectorDraw::Begin(), BeginsWith(), TBranchElement::Browse(), TDataSetManagerFile::BrowseDataSets(), RooCustomizer::build(), TKey::Build(), TGFontDialog::Build(), TGSpeedo::Build(), TStreamerInfo::BuildCheck(), TMultiLayerPerceptron::BuildHiddenLayers(), TMultiLayerPerceptron::BuildLastLayer(), TMultiLayerPerceptron::BuildNetwork(), TProof::BuildPackage(), TMVA::TransformationHandler::CalcStats(), Capacity(), THbookFile::cd(), TGeoNavigator::cd(), TRootBrowserLite::Chdir(), TFilePrefetch::CheckBlockInCache(), TDataSetManager::CheckDataSetSrvMaps(), TGeoManager::CheckGeometryFull(), TAuthenticate::CheckHost(), TLatex::CheckLatexSyntax(), TProofPlayer::CheckMemUsage(), TGeoNavigator::CheckPath(), TRootSniffer::CheckRestriction(), TMacro::Checksum(), Chop(), TMakeProject::ChopFileName(), TClassDocOutput::ClassHtmlTree(), ClassImp(), ClassImpQ(), TBufferJSON::ClassMember(), TBufferXML::ClassMember(), TBufferSQL2::ClassMember(), RooAbsArg::cleanBranchName(), TGTextBuffer::Clear(), TAuthenticate::ClearAuth(), TProof::ClearPackage(), Clone(), TXMLFile::Close(), TSQLFile::Close(), TEfficiency::Combine(), TStructNodeProperty::Compare(), TStreamerInfo::CompareContent(), CompareTo(), TSystem::CompileMacro(), TTabCom::Complete(), TS3HTTPRequest::ComputeSignature(), Contains(), TMVA::Tools::ContainsRegularExpression(), RooStreamParser::convertToDouble(), RooStreamParser::convertToInteger(), TBufferJSON::ConvertToJSON(), RooStreamParser::convertToString(), TGTextEdit::Copy(), TDocOutput::CopyHtmlFile(), TProofLite::CopyMacroToCache(), CountChar(), THttpCallArg::CountHeader(), TCivetweb::Create(), THostAuth::Create(), TNetSystem::Create(), TXSocket::Create(), TSocket::CreateAuthSocket(), TSQLFile::CreateBasicTables(), TTreeSQL::CreateBranches(), TSQLFile::CreateClassTable(), TClassDocOutput::CreateDotClassChartLib(), THttpServer::CreateEngine(), ROOT::Internal::TBranchProxyDirector::CreateHistogram(), TDocLatexDirective::CreateLatex(), THtml::CreateListOfClasses(), TRootContextMenu::CreateMenu(), TMVA::MethodTMlpANN::CreateMLPOptions(), TDocOutput::CreateModuleIndex(), TContextMenu::CreatePopupTitle(), ROOT::Internal::TTreeReaderValueBase::CreateProxy(), TSQLFile::CreateRawTable(), TProofServLite::CreateServer(), TXProofServ::CreateServer(), TProofServ::CreateServer(), TDocMacroDirective::CreateSubprocessInputFile(), TMVA::MethodBase::CreateVariableTransforms(), TGeoDecayChannel::DecayName(), TUnfoldBinning::DecodeAxisSteering(), TRootSniffer::DecodeUrlOptionValue(), TMVA::Reader::DecodeVarNames(), TDocOutput::DecorateEntityBegin(), TDocOutput::DecorateEntityEnd(), TDocParser::DecorateKeywords(), TTreeFormula::DefineAlternate(), TTreeFormula::DefinedVariable(), TSQLTableData::DefineSQLName(), TSQLFile::DefineTableName(), TGTextEntry::Del(), TDocDirective::DeleteOutputFiles(), TTabCom::DetermineClass(), TTabCom::DeterminePath(), TProof::DisablePackage(), TProofLogElem::Display(), TGeoTranslationEditor::DoCancel(), TGeoRotationEditor::DoCancel(), TGeoCombiTransEditor::DoCancel(), TGSpeedo::DoRedraw(), TGTextEntry::DoRedraw(), TGHProgressBar::DoRedraw(), TGFileBrowser::DoubleClicked(), TGString::Draw(), TGeoTrack::Draw(), TPie::Draw(), TGHotString::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), TTable::Draw(), TMultiLayerPerceptron::Draw(), TMVA::draw_network(), TGLVEntry::DrawCopy(), TGPopupMenu::DrawEntry(), TMVA::DrawMLPoutputMovie(), TGLUtil::DrawNumber(), TFileDrawMap::DrawObject(), TTreePlayer::DrawScript(), TTreePlayer::DrawSelect(), TProof::DrawSelect(), TGSpeedo::DrawText(), TGString::DrawWrapped(), TGHotString::DrawWrapped(), TProof::EnablePackage(), TGTextEntry::End(), EndsWith(), RooBinningCategory::evaluate(), TProof::Exec(), TTVRecord::ExecuteUserCode(), TDocParser::ExpandCPPLine(), THtml::TFileDefinition::ExpandSearchPath(), TMultiLayerPerceptron::ExpandStructure(), RooStudyManager::expandWildCardSpec(), TMultiLayerPerceptron::Export(), TGeoVolume::Export(), TGeoElementTable::ExportElementsRN(), TFileCollection::ExportInfo(), TAlienCollection::ExportXML(), TFormula::ExtractFunctors(), TVirtualFFT::FFT(), TASPluginGS::File2ASImage(), TBranchSTL::Fill(), TTreeSQL::Fill(), TMemStatShow::FillBTString(), TStringLong::FillBuffer(), FillBuffer(), THttpCallArg::FillHttpHeader(), TProofServ::FilterLocalroot(), TBranch::FindBranch(), TBranchElement::FindBranch(), TTree::FindBranch(), TUnixSystem::FindDynamicLibrary(), TWinNTSystem::FindDynamicLibrary(), TWinNTSystem::FindFile(), TGContainer::FindItem(), ROOT::Fit::FitOptionsMake(), TDocOutput::FixupAuthorSourceInfo(), TMVA::Tools::FormattedOutput(), FormatToolTip(), TGLAxisPainter::FormAxisValue(), RooStats::HLFactory::fParseLine(), TMLPAnalyzer::GatherInformations(), RooAbsGenContext::generate(), TMakeProject::GenerateClassPrefix(), TStreamerInfo::GenerateDeclaration(), TMakeProject::GenerateIncludeForTemplate(), TStreamerInfo::GenerateIncludes(), TMakeProject::GeneratePostDeclaration(), TGDMLWrite::GenName(), TDataMember::GetArrayIndex(), GetAuthProto(), TRootSniffer::GetAutoLoad(), THistPainter::GetBestFormat(), TMathText::GetBoundingBox(), TLatex::GetBoundingBox(), TCollectionPropertyBrowsable::GetBrowsables(), TSystem::GetBuildDir(), TGTextEntry::GetCharacterIndex(), TStreamerInfo::GetCheckSum(), TClass::GetCheckSum(), TMVA::DataSetInfo::GetClassNameMaxLength(), GetCommonString(), ROOT::Internal::TTreeGeneratorBase::GetContainedClassName(), THttpCallArg::GetContentLength(), TMVA::RuleFit::GetCorrVars(), TBranchElement::GetCurrentClass(), TDataSetManagerFile::GetDataSets(), TFileCollection::GetDefaultTreeName(), THtml::TPathDefinition::GetDocDir(), TDSetElement::GetEntries(), TDSet::GetEntries(), THtml::GetEtcDir(), TAlienCollection::GetExportUrl(), TBranch::GetFile(), TAlienCollection::GetFileCollection(), TProof::GetFileInCmd(), THtml::TFileDefinition::GetFileName(), THtml::TPathDefinition::GetFileNameFromInclude(), TGFileContainer::GetFilePictures(), TWebFile::GetFromWeb(), TWebFile::GetFromWeb10(), TWebFile::GetHead(), TAuthenticate::GetHostAuth(), THtml::GetHtmlFileName(), THtml::TPathDefinition::GetIncludeAs(), TRootSniffer::GetItem(), TGString::GetLength(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TGString::GetLines(), TSystem::GetLinkdefSuffix(), TSQLFile::GetLocking(), THtml::TPathDefinition::GetMacroPath(), TROOT::GetMacroPath(), TGGC::GetMaskString(), TGMdiFrame::GetMdiHintsString(), TMVA::Reader::GetMethodTypeFromFile(), THtml::TModuleDefinition::GetModule(), TGMainFrame::GetMWMfuncString(), TGMainFrame::GetMWMvalueString(), TDocDirective::GetName(), TCollection::GetName(), TQCommand::GetName(), TGeoDecayChannel::GetName(), TMLPAnalyzer::GetNeuronFormula(), TMLPAnalyzer::GetNeurons(), TProofLite::GetNumberOfWorkers(), TFileDrawMap::GetObject(), TGFrame::GetOptionString(), THtml::GetOutputDir(), TRootDialog::GetParameters(), RooProdPdf::getPartIntList(), TGPicturePool::GetPicture(), RooAddPdf::getProjCache(), TBranch::GetRealFileName(), TDocMacroDirective::GetResult(), TDocLatexDirective::GetResult(), TAliEnFind::GetSearchId(), TProofMgrLite::GetSessionLogs(), TCling::GetSharedLibDeps(), TGDoubleSlider::GetSString(), TTabCom::GetSysIncludePath(), TGTextBuffer::GetTextLength(), TGListTreeItemStd::GetTextLength(), TSQLiteStatement::GetTimestamp(), TGListTreeItemStd::GetTipTextLength(), TBonjourRecord::GetTXTRecordsLength(), TDataType::GetTypeName(), TGSlider::GetTypeString(), TUrl::GetUrl(), THttpCallArg::GetUserName(), TMVA::MethodBase::GetWeightFileName(), TMathText::GetXsize(), TLatex::GetXsize(), TMathText::GetYsize(), TLatex::GetYsize(), TRootSnifferScanRec::GoInside(), TGFileBrowser::GotoDir(), TProofLogElem::Grep(), TProofServ::HandleArchive(), TTVLVContainer::HandleButton(), TProofServ::HandleCache(), TProofServ::HandleCheckFile(), TDocParser::HandleDirective(), TRootEmbeddedCanvas::HandleDNDDrop(), TRootCanvas::HandleDNDDrop(), TGTextView::HandleDNDDrop(), TFormula::HandleExponentiation(), TProof::HandleLibIncPath(), TFormula::HandleLinear(), TGListTree::HandleMotion(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TGTextEntry::HandleSelectionRequest(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TTVLVEntry::HasAlias(), HashCase(), HashFoldCase(), TTVRecord::HasUserCode(), THtml::HaveDot(), TClassDocInfo::HaveSource(), TTabCom::Hook(), TMVA::TMVAGlob::imgconv(), Index(), TXSlave::Init(), TProofLite::Init(), TBranchElement::Init(), TClass::Init(), TProof::Init(), TXSocket::InitEnvs(), RooBinningCategory::initialize(), TBranchElement::InitializeOffsets(), TNetSystem::InitRemoteEntity(), TGTextEntry::Insert(), Insert(), IsAlnum(), IsAlpha(), IsAscii(), IsBin(), IsDec(), IsDigit(), TDocParser::IsDirective(), THttpServer::IsFileRequested(), IsHex(), TFormula::IsHexadecimal(), IsInBaseN(), IsNull(), IsOct(), TFormula::IsScientificNotation(), ROOT::TSchemaRule::IsValid(), IsWhitespace(), TBufferJSON::JsonWriteMember(), TBufferJSON::JsonWriteObject(), Krb5Authenticate(), Krb5InitCred(), TClassDocOutput::ListDataMembers(), TSystem::ListLibraries(), TProofLite::Load(), TEventIterTree::Load(), TSystem::Load(), TProof::Load(), TVirtualPadEditor::LoadEditor(), TCling::LoadLibraryMap(), TEntryListFromFile::LoadList(), TROOT::LoadMacro(), TProof::LoadPackage(), TProof::LoadPackageOnClient(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), THbookFile::ls(), ROOT::TSchemaRule::ls(), TDirectoryFile::ls(), TStreamerElement::ls(), TDirectory::ls(), TStreamerBase::ls(), TStreamerInfo::ls(), TStreamerSTL::ls(), TGeoBoolNode::MakeBranch(), TTreePlayer::MakeClass(), TTabCom::MakeClassFromVarName(), TTreePlayer::MakeCode(), TClass::MakeCustomMenuList(), TMultiDimFit::MakeHistograms(), TGeoCompositeShape::MakeNode(), TFile::MakeProject(), TClassDocOutput::MakeTree(), TFileOpenHandle::Matches(), TPRegexp::MatchInternal(), MD5(), memstatExample(), RooCmdConfig::missingArgs(), TAlienSystem::mkdir(), TWinNTSystem::mkdir(), TSystem::mkdir(), TMinuit::mncomd(), TMinuit::mncrck(), TMinuit::mnexcm(), TMinuit::mnhelp(), TDocOutput::NameSpace2FileName(), ROOT::Internal::TBranchProxyClassDescriptor::NameToSymbol(), TGTextEntry::NewMark(), TStringToken::NextToken(), RooAbsPdf::normRange(), TTimer::Notify(), TASLogHandler::Notify(), TProofServLogHandler::Notify(), OldSlaveAuthSetup(), TAlienFile::Open(), TFile::Open(), TAlien::OpenCollection(), TProofBench::OpenOutFile(), operator std::string_view(), operator!(), TFormulaParamOrder::operator()(), operator()(), TCut::operator*=(), operator+(), TCut::operator+=(), operator+=(), operator<<(), TSubString::operator=(), operator=(), operator==(), operator||(), ROOT::Internal::TBranchProxyClassDescriptor::OutputDecl(), TPaveStats::Paint(), TSpline::Paint(), TF3::Paint(), TF2::Paint(), TF1::Paint(), TArrow::PaintArrow(), TGaxis::PaintAxis(), TLatex::PaintLatex1(), TMathText::PaintMathText(), TPave::PaintPave(), TPave::PaintPaveArc(), TPaveText::PaintPrimitives(), TGeoManager::Parse(), TMVA::Tools::ParseANNOptionString(), TXSlave::ParseBuffer(), ROOT::MacOSX::X11::ColorParser::ParseColor(), TProof::ParseConfigField(), TDataSetManagerAliEn::ParseCustomFindUri(), TMVA::Tools::ParseFormatLine(), TDataSetManagerFile::ParseInitOpts(), TFileInfo::ParseInput(), TMVA::MethodANNBase::ParseLayoutString(), TPRegexp::ParseMods(), TTreeDrawArgsParser::ParseName(), TDataSetManagerAliEn::ParseOfficialDataUri(), TMVA::Configurable::ParseOptions(), TXNetFile::ParseOptions(), ROOT::Internal::TTreeReaderGenerator::ParseOptions(), ROOT::MacOSX::X11::ColorParser::ParseRGBTriplet(), TChain::ParseTreeFilename(), TDataSetManager::ParseUri(), TTreeDrawArgsParser::ParseVarExp(), TTabCom::PathIsSpecifiedInFileName(), TUri::PctDecode(), TUri::PctDecodeUnreserved(), TUri::PctEncode(), TUri::PctNormalise(), TSQLStructure::PerformConversion(), TBufferJSON::PerformPostProcessing(), TBufferXML::PerformPreProcessing(), PoDCheckUrl(), TGFont::PostscriptFontName(), Prepend(), TSQLTableInfo::Print(), TEntryListFromFile::Print(), TFileInfo::Print(), TQueryResult::Print(), TBranch::Print(), TPad::Print(), THnBase::PrintBin(), TFITSHDU::PrintHDUMetadata(), TRint::PrintLogo(), TTreeFormula::PrintValue(), cling::printValue(), TProof::Process(), TDocParser::ProcessComment(), TFormula::ProcessFormula(), TGLSAViewer::ProcessFrameMessage(), TApplication::ProcessLine(), TCling::ProcessLine(), TRootCanvas::ProcessMessage(), TProofServ::ProcessNext(), TMVA::MethodFDA::ProcessOptions(), TMVA::MethodCFMlpANN::ProcessOptions(), TBufferXML::ProcessPointer(), TApplication::ProcessRemote(), THttpServer::ProcessRequest(), ROOT::TSchemaRule::ProcessVersion(), TSQLFile::ProduceClassSelectQuery(), TRootSniffer::ProduceExe(), TXMLFile::ProduceFileNames(), TRootSniffer::ProduceItem(), TRootSniffer::ProduceJson(), TRootSniffer::ProduceMulti(), TXMLPlayer::ProduceSTLstreamer(), TRootSniffer::ProduceXml(), TGraph2D::Project(), TAuthenticate::PromptPasswd(), TAuthenticate::PromptUser(), TAuthenticate::ProofAuthSetup(), TSapDBServer::Query(), R__WriteDependencyFile(), TNetFile::ReadBuffers(), TWebFile::ReadBuffers(), TWebFile::ReadBuffers10(), TProofResourcesStatic::ReadConfigFile(), TSessionViewer::ReadConfiguration(), ReadFile(), RooArgSet::readFromStream(), TMVA::StatDialogMVAEffs::ReadHistograms(), TASImage::ReadImage(), ReadRemote(), ReadRemoteImage(), TAuthenticate::ReadRootAuthrc(), ReadSize(), TMVA::MethodBase::ReadStateFromStream(), TMVA::MethodBase::ReadStateFromXML(), TXMLPlayer::ReadSTLarg(), TTree::ReadStream(), ReadToDelim(), ReadToken(), TMVA::MethodCategory::ReadWeightsFromXML(), TDocOutput::ReferenceEntity(), TProofPlayer::ReinitSelector(), Remove(), TUri::RemoveDotSegments(), TEveCaloLegoOverlay::Render(), Replace(), ReplaceAll(), TMVA::Tools::ReplaceRegularExpressions(), TDocOutput::ReplaceSpecialChars(), Resize(), TAuthenticate::RfioAuth(), TFastCgi::run_func(), TFilePrefetch::SaveBlockInCache(), TPavesText::SavePrimitive(), TH1K::SavePrimitive(), TGTableLayoutHints::SavePrimitive(), TPaveText::SavePrimitive(), TGLayoutHints::SavePrimitive(), TGXYLayoutHints::SavePrimitive(), TGListTreeItemStd::SavePrimitive(), TH1::SavePrimitiveHelp(), TQueryResult::SaveSelector(), TTVRecord::SaveSource(), TProof::SaveWorkerInfo(), TTreePlayer::Scan(), TGTextEntry::ScrollByChar(), TMVA::VariableTransformBase::SelectInput(), TProofLite::SendInputDataFile(), TProof::SendInputDataFile(), TSQLMonitoringWriter::SendParameters(), TOracleServer::ServerInfo(), TBranch::SetBasketSize(), TGTextEntry::SetCursorPosition(), TGListView::SetDefaultColumnWidth(), TChain::SetEntryListFile(), TNetXNGFile::SetEnv(), TXNetFile::SetEnv(), TAuthenticate::SetEnvironment(), TProof::SetFeedback(), TFitEditor::SetFitObject(), TGraphEditor::SetModel(), TWebFile::SetMsgReadBuffer10(), TFitEditor::SetObjectType(), TDocDirective::SetParameters(), TProofLite::SetProofServEnv(), TGLAxisPainter::SetTextFormat(), TGaxis::SetTimeFormat(), TAxis::SetTimeFormat(), THnBase::SetTitle(), TH1::SetTitle(), TXProofServ::Setup(), ROOT::Detail::TBranchProxy::Setup(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TUrl::SetUrl(), TEnv::SetValue(), TMemStatShow::Show(), TVirtualFFT::SineCosine(), TStringLong::Sizeof(), Sizeof(), TPMERegexp::Split(), TSystem::SplitAclicMode(), TSelectorDraw::SplitNames(), TMVA::Configurable::SplitOptions(), TMVA::Tools::SplitString(), TTreeDrawArgsParser::SplitVariables(), TAuthenticate::SshAuth(), TUnixSystem::StackTrace(), TProofCondor::StartSlaves(), TSQLStructure::StoreElementInNormalForm(), StrInt(), TDocParser::Strip(), Strip(), TPMERegexp::Substitute(), TPRegexp::SubstituteInternal(), RooAbsPdf::syncNormalization(), TSelectorDraw::TakeAction(), TSelectorDraw::TakeEstimate(), ROOT::Internal::TBranchDescriptor::TBranchDescriptor(), ROOT::Detail::TBranchProxy::TBranchProxy(), ROOT::Internal::TBranchProxyClassDescriptor::TBranchProxyClassDescriptor(), ROOT::Internal::TBranchProxyDescriptor::TBranchProxyDescriptor(), ROOT::Internal::TBranchProxyHelper::TBranchProxyHelper(), TDSet::TDSet(), testTUDPSocket(), TGeoElementRN::TGeoElementRN(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), THostAuth::THostAuth(), THStack::THStack(), TMacro::TMacro(), TDataSetManager::ToBytes(), Tokenize(), ToLower(), ToLower(), ToUpper(), ToUpper(), TParallelMergingFile::TParallelMergingFile(), TPerfStats::TPerfStats(), TSQLMonitoringWriter::TSQLMonitoringWriter(), TCling::UnloadLibraryMap(), TProofServ::UnloadPackage(), TProof::UnloadPackage(), TProof::UnloadPackageOnClient(), TFormLeafInfo::Update(), TSessionServerFrame::Update(), TFormLeafInfoTTree::Update(), TMakeProject::UpdateAssociativeToVector(), RooAddPdf::updateCoefficients(), TBranch::UpdateFile(), TSessionQueryFrame::UpdateInfos(), TGTextEntry::UpdateOffset(), TMVA::StatDialogMVAEffs::UpdateSignificanceHists(), TGFontDialog::UpdateStyleSize(), TProof::UploadPackage(), TProof::UploadPackageOnClient(), TNeuron::UseBranch(), TSQLFile::VerifyLongStringTable(), TSQLFile::VerifyObjectTable(), while(), TClassDocOutput::WriteClassDescription(), TDocParser::WriteClassDoc(), TClassDocOutput::WriteClassDocHeader(), TSessionViewer::WriteConfiguration(), TDocOutput::WriteHtmlFooter(), TDocOutput::WriteHtmlHeader(), TASImage::WriteImage(), TDocOutput::WriteLocation(), TClassDocOutput::WriteMethod(), TDocParser::WriteMethod(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), TDocOutput::WriteSearch(), TBufferJSON::WriteTString(), TBufferFile::WriteTString(), TBufferJSON::~TBufferJSON(), TGRedirectOutputGuard::~TGRedirectOutputGuard(), and TProof::~TProof().
Converts a Long64_t to a TString with respect to the base specified (2-36).
Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). In case of error returns the "!" string.
Definition at line 2107 of file TString.cxx.
|
inlinestaticprivate |
Set maximum space that may be wasted in a string before doing a resize.
Default is 15.
Definition at line 1575 of file TString.cxx.
Bool_t TString::MaybeRegexp | ( | ) | const |
Returns true if string contains one of the regexp characters "^$.[]*+?".
Definition at line 872 of file TString.cxx.
Referenced by TPluginHandler::CanHandle().
Bool_t TString::MaybeWildcard | ( | ) | const |
Returns true if string contains one of the wildcard characters "[]*?".
Definition at line 884 of file TString.cxx.
Referenced by TChain::Add().
TString TString::MD5 | ( | ) | const |
Return the MD5 digest for this string, in a string representation.
Definition at line 860 of file TString.cxx.
|
inline |
TSubString TString::operator() | ( | Ssiz_t | start, |
Ssiz_t | len | ||
) | const |
Return sub-string of string starting at start with length len.
Definition at line 1602 of file TString.cxx.
TSubString TString::operator() | ( | const TRegexp & | re | ) | const |
Return the substring found by applying the regexp.
Definition at line 278 of file TRegexp.cxx.
TSubString TString::operator() | ( | const TRegexp & | re, |
Ssiz_t | start | ||
) | const |
Return the substring found by applying the regexp starting at start.
Definition at line 268 of file TRegexp.cxx.
TSubString TString::operator() | ( | TPRegexp & | re | ) | const |
Return the substring found by applying the regexp.
Definition at line 561 of file TPRegexp.cxx.
TSubString TString::operator() | ( | TPRegexp & | re, |
Ssiz_t | start | ||
) | const |
Return the substring found by applying the regexp starting at start.
Definition at line 551 of file TPRegexp.cxx.
|
inline |
Definition at line 504 of file TString.h.
Referenced by operator+=().
TString & TString::operator= | ( | char | s | ) |
Assign character c to TString.
Definition at line 245 of file TString.cxx.
Referenced by TStringToken::NextToken().
TString & TString::operator= | ( | const char * | s | ) |
Assign string cs to TString.
Definition at line 258 of file TString.cxx.
Assignment operator.
Definition at line 284 of file TString.cxx.
TString & TString::operator= | ( | const std::string & | s | ) |
Assign std::string s to TString.
Definition at line 271 of file TString.cxx.
TString& TString::operator= | ( | const std::string_view & | s | ) |
TString & TString::operator= | ( | const TSubString & | s | ) |
Assign a TSubString substr to TString.
Definition at line 302 of file TString.cxx.
|
inline |
Definition at line 604 of file TString.h.
Referenced by TDocOutput::AddLink(), TSQLStructure::AddStrBrackets(), ROOT::Internal::TTreeProxyGenerator::AnalyzeBranches(), TTabCom::AppendListOfFilesInDirectory(), BaseConvert(), TBranchElement::Browse(), TStreamerInfo::BuildCheck(), TGFileBrowser::CheckFiltered(), TSystem::CompileMacro(), TRootBrowserLite::CreateBrowser(), RooDataSet::createHistogram(), RooAbsRealLValue::createHistogram(), RooAbsReal::createIntegral(), RooAbsReal::createIntObj(), RooAbsReal::createPlotProjection(), TDocMacroDirective::CreateSubprocessInputFile(), TProofProgressLog::DoLog(), TGFileBrowser::DoubleClicked(), RooAbsGenContext::generate(), TCollectionPropertyBrowsable::GetBrowsables(), TGTextEntry::GetDisplayText(), TGFileContainer::GetFilePictures(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TSystem::GetLibraries(), TVirtualBranchBrowsable::GetScope(), TDocParser::IsDirective(), TSystem::IsFileInIncludePath(), TCling::IsLoaded(), TStreamerElement::ls(), TStreamerBase::ls(), TStreamerInfo::ls(), TStreamerSTL::ls(), MakeLinkPic(), TWinNTSystem::mkdir(), TDocOutput::NameSpace2FileName(), ROOT::Internal::TBranchProxyClassDescriptor::NameToSymbol(), TProof::ParseConfigField(), TChain::ParseTreeFilename(), TUnixSystem::PrependPathName(), TWinNTSystem::PrependPathName(), TBranch::Print(), TPad::Print(), RooAbsRealLValue::printMultiline(), RooRealVar::printMultiline(), RooAbsReal::printMultiline(), TRint::Run(), TPad::SaveAs(), TGHtmlBrowser::Selected(), TTeXDump::Text(), TFileInfoMeta::TFileInfoMeta(), TClassDocOutput::WriteClassDocHeader(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), and TDocOutput::WriteSearch().
Prepend character c rep times to string.
Definition at line 896 of file TString.cxx.
void TString::Puts | ( | FILE * | fp | ) |
Write string to the stream.
Definition at line 219 of file Stringio.cxx.
|
virtual |
Read string from I/O buffer.
Reimplemented in TStringLong.
Definition at line 1214 of file TString.cxx.
Referenced by TFile::Init(), TObjString::ReadBuffer(), and TKey::ReadKeyBuffer().
std::istream & TString::ReadFile | ( | std::istream & | str | ) |
Replace string with the contents of strm, stopping at an EOF.
Definition at line 28 of file Stringio.cxx.
Read a line from stream upto newline skipping any whitespace.
Definition at line 65 of file Stringio.cxx.
Referenced by TProof::ClearData(), TDocMacroDirective::CreateSubprocessInputFile(), TDocMacroDirective::GetResult(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), TDocOutput::ProcessDocInDir(), TProofMgrLite::ReadBuffer(), TDataSetManager::ReadGroupConfig(), and TDocOutput::WriteHtmlFooter().
Read TString object from buffer.
Simplified version of TBuffer::ReadObject (does not keep track of multiple references to same string). We need to have it here because TBuffer::ReadObject can only handle descendant of TObject.
Definition at line 1245 of file TString.cxx.
Referenced by operator>>(), TProofResourcesStatic::ReadConfigFile(), and TUnixSystem::StackTrace().
std::istream & TString::ReadString | ( | std::istream & | str | ) |
Read a line from stream upto \0, including any newline.
Definition at line 76 of file Stringio.cxx.
std::istream & TString::ReadToDelim | ( | std::istream & | strm, |
char | delim = '\n' |
||
) |
Read up to an EOF, or a delimiting character, whichever comes first.
The delimiter is not stored in the string, but is removed from the input stream. Because we don't know how big a string to expect, we first read as much as we can and then, if the EOF or null hasn't been encountered, do a resize and keep reading.
Definition at line 89 of file Stringio.cxx.
Referenced by TFileCollection::AddFromFile(), TTabCom::DetermineClass(), TTabCom::ExcludedByFignore(), TTabCom::ExtendPath(), TTabCom::GetListOfEnvVars(), TTabCom::GetListOfUsers(), TTabCom::NewListOfFilesInPath(), ReadLine(), ReadString(), and TProofMgr::UploadFiles().
std::istream & TString::ReadToken | ( | std::istream & | str | ) |
Read a token, delimited by whitespace, from the input stream.
Definition at line 127 of file Stringio.cxx.
Referenced by operator>>().
Definition at line 616 of file TString.h.
Referenced by THttpCallArg::AccessHeader(), TAlienSystem::AccessPathName(), TProofNodes::ActivateWorkers(), TChain::Add(), TDSet::Add(), TGPopupMenu::AddEntry(), TProofPlayerRemote::AddOutputObject(), ROOT::Internal::TTreeReaderGenerator::AddReader(), TAlienJDL::AddToReqSet(), TGridJDL::AddToSet(), ROOT::Internal::TTreeProxyGenerator::AnalyzeBranches(), ROOT::Internal::TTreeReaderGenerator::AnalyzeBranches(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), TFileDrawMap::AnimateTree(), TQueryResultManager::ApplyMaxQueries(), TParallelCoord::ApplySelectionToTree(), TProof::AssertDataSet(), authclient(), BaseConvert(), TBranch::Browse(), TBranchElement::Browse(), TStreamerInfo::BuildCheck(), TGeoShapeDialog::BuildListTree(), TStreamerInfo::BuildOld(), TProof::BuildPackage(), TParallelCoord::BuildParallelCoord(), TBranchElement::BuildTitle(), TGCommandPlugin::CheckRemote(), Chop(), TMakeProject::ChopFileName(), TCondor::ClaimVM(), ClassImp(), ClassImpQ(), TUrl::CleanRelativePath(), TQueryResultManager::CleanupQueriesDir(), TProofLite::CleanupSandbox(), TQueryResultManager::CleanupSession(), TGTextBuffer::Clear(), TDataSetManagerFile::ClearCache(), TProof::ClearPackage(), TXSocket::Close(), TApplicationRemote::CollectInput(), TSystem::CompileMacro(), TDocOutput::Convert(), TProofLite::CopyMacroToCache(), TMVA::correlationscatters(), TMVA::correlationscattersMultiClass(), THostAuth::Create(), TXSocket::Create(), TSocket::CreateAuthSocket(), TTreeSQL::CreateBranches(), TClassDocOutput::CreateDotClassChartLib(), TMVA::MethodTMlpANN::CreateMLPOptions(), TDocOutput::CreateModuleIndex(), TContextMenu::CreatePopupTitle(), TXProofServ::CreateServer(), TClassDocOutput::CreateSourceOutputStream(), TDocMacroDirective::CreateSubprocessInputFile(), TMVA::MethodBase::CreateVariableTransforms(), TRootSniffer::DecodeUrlOptionValue(), TTreeFormula::DefinedVariable(), TTabCom::DetermineClass(), TProof::DisablePackage(), TProofLogElem::Display(), do_anadist(), do_anadist_ds(), TH2Editor::DoAddArr(), TH1Editor::DoAddB(), TH1Editor::DoAddBar(), TH2Editor::DoAddBB(), TH2Editor::DoAddBox(), TH2Editor::DoAddCol(), TH2Editor::DoAddError(), TH2Editor::DoAddFB(), TH1Editor::DoAddMarker(), TH2Editor::DoAddPalette(), TH2Editor::DoAddScat(), TH1Editor::DoAddSimple(), TH2Editor::DoAddText(), TGeoManagerEditor::DoExportGeometry(), TPieEditor::DoGraphLineWidth(), TH1Editor::DoHBar(), TProofProgressLog::DoLog(), TGraphEditor::DoMarkerOnOff(), TPieEditor::DoMarkerOnOff(), TH1Editor::DoPercent(), TH2::DoProfile(), TH3::DoProject1D(), TH2::DoProjection(), TGraphEditor::DoShape(), TPieEditor::DoShape(), TGFileBrowser::DoubleClicked(), TProof::DownloadPackage(), TH1::Draw(), TProof::DrawSelect(), TTreeViewer::EmptyBrackets(), TProof::EnablePackage(), TRootCanvas::EventInfo(), TXProofMgr::Exec(), TRootBrowser::ExecPlugin(), TRootBrowserLite::ExecuteDefaultAction(), TTreeViewer::ExecuteDraw(), TTreeViewer::ExecuteSpider(), TDocParser::ExpandCPPLine(), THtml::TFileDefinition::ExpandSearchPath(), RooStudyManager::expandWildCardSpec(), TTabCom::ExtendPath(), TAuthenticate::FileExpand(), TTreeSQL::Fill(), TProofServ::FilterLocalroot(), TBranch::FindLeaf(), TTree::FindLeaf(), TStructNodeEditor::FindNodeProperty(), TStructViewerGUI::FindNodeProperty(), ROOT::Fit::FitOptionsMake(), FormatToolTip(), TGLAxisPainter::FormAxisValue(), TGFileBrowser::FullPathName(), TMLPAnalyzer::GatherInformations(), TMakeProject::GenerateClassPrefix(), GetAuthProto(), TCollectionPropertyBrowsable::GetBrowsables(), TStreamerElement::GetClassPointer(), TMVA::RuleFit::GetCorrVars(), THtml::TFileDefinition::GetFileName(), TGFileContainer::GetFilePictures(), TAuthenticate::GetHostAuth(), THtml::GetHtmlFileName(), THtml::TPathDefinition::GetIncludeAs(), TUnixSystem::GetLinkedLibraries(), TProofLite::GetListOfQueries(), THtml::TPathDefinition::GetMacroPath(), THtml::TModuleDefinition::GetModule(), TDocDirective::GetName(), TGWindow::GetName(), TProofLite::GetNumberOfWorkers(), THtml::GetOutputDir(), TGPrintDialog::GetPrinters(), TDocMacroDirective::GetResult(), TDocLatexDirective::GetResult(), TVirtualBranchBrowsable::GetScope(), TSelector::GetSelector(), TProofMgrLite::GetSessionLogs(), TXProofMgr::GetSessionLogs(), TCling::GetSharedLibDeps(), TParallelCoord::GetTree(), GetWinNTSysInfo(), TProofServ::HandleCache(), TProofServ::HandleCheckFile(), TDocParser::HandleDirective(), TProofServ::HandleQueryList(), TAuthenticate::HasHostAuth(), TTabCom::Hook(), TROOT::IgnoreInclude(), TMVA::TMVAGlob::imgconv(), TDataSetManagerFile::Init(), TProofOutputFile::Init(), TMethodCall::Init(), TProofLite::Init(), TBranchElement::Init(), TProof::Init(), TBranchElement::InitializeOffsets(), ROOT::Internal::TBranchProxyClassDescriptor::IsEquivalent(), THttpServer::IsFileRequested(), IsInBaseN(), Krb5CheckCred(), Krb5InitCred(), TProofLite::Load(), TSystem::Load(), TProof::Load(), TCling::LoadLibraryMap(), TEntryListFromFile::LoadList(), TProof::LoadPackage(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), TQueryResultManager::LocateQuery(), TXProofServ::LockSession(), TQueryResultManager::LockSession(), TProofOutputList::ls(), TFolder::ls(), THtml::MakeAll(), THtml::MakeClass(), TClass::MakeCustomMenuList(), TFile::MakeProject(), TClassDocOutput::MakeTree(), TProofPlayerRemote::MergeOutputFiles(), TFileMerger::MergeRecursive(), TMVA::mvaweights(), TDocOutput::NameSpace2FileName(), ROOT::Internal::TBranchProxyClassDescriptor::NameToSymbol(), THtml::TFileDefinition::NormalizePath(), TNewQueryDlg::OnBtnSaveClicked(), TSessionOutputFrame::OnElementDblClicked(), TRootContextMenu::OnlineHelp(), TXNetFile::Open(), TFile::Open(), TProof::Open(), TGeoChecker::OpProgress(), ROOT::Internal::TBranchProxyClassDescriptor::OutputDecl(), TGLHistPainter::Paint(), TPie::Paint(), TMathText::PaintMathText(), TGraphPolargram::PaintPolarDivisions(), TXSlave::ParseBuffer(), TProof::ParseConfigField(), TMVA::Tools::ParseFormatLine(), TDataSetManager::ParseInitOpts(), TMVA::MethodANNBase::ParseLayoutString(), TMVA::Configurable::ParseOptions(), TXNetFile::ParseOptions(), TChain::ParseTreeFilename(), TDataSetManager::ParseUri(), TTreeFormula::ParseWithLeaf(), pq2register(), TProofOutputList::Print(), TEntryListFromFile::Print(), TQueryResult::Print(), THnBase::PrintBin(), TTreeFormula::PrintValue(), TProof::Process(), TDocOutput::ProcessDocInDir(), TApplication::ProcessLine(), TCling::ProcessLine(), TProofServ::ProcessNext(), TMVA::MethodCFMlpANN::ProcessOptions(), TRootSniffer::ProduceMulti(), TXMLPlayer::ProduceSTLstreamer(), TH3::Project3D(), TH3::Project3DProfile(), TAuthenticate::PromptPasswd(), TAuthenticate::PromptUser(), TBranchElement::ReadLeavesMakeClass(), TAuthenticate::ReadRootAuthrc(), ROOT::RegisterClassTemplate(), TProofPlayer::ReinitSelector(), Remove(), TUri::RemoveDotSegments(), TQueryResultManager::RemoveQuery(), TGTextBuffer::RemoveText(), TGTextEntry::RemoveText(), TParallelCoord::ResetTree(), Resize(), TProofLite::ResolveKeywords(), TGeoVolume::SaveAs(), TParallelCoord::SavePrimitive(), TGCompositeFrame::SavePrimitiveSubframes(), TQueryResult::SaveSelector(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TProofProgressLog::SaveToFile(), TTreePlayer::Scan(), TDataSetManagerFile::ScanDataSet(), TMVA::VariableTransformBase::SelectInput(), TProofPlayerRemote::SendSelector(), TUri::SetAuthority(), TChain::SetEntryListFile(), TH2GL::SetModel(), TH3GL::SetModel(), TGraphEditor::SetModel(), TPieEditor::SetModel(), TH1Editor::SetModel(), TH2Editor::SetModel(), TDocDirective::SetParameters(), TProofMonSender::SetSendOptions(), TGaxis::SetTimeOffset(), TAxis::SetTimeOffset(), THnBase::SetTitle(), TProofServLite::Setup(), TXProofServ::Setup(), ROOT::Detail::TBranchProxy::Setup(), TProofServ::Setup(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TDataSetManagerFile::ShowCache(), TDocParser::Strip(), TProofPerfAnalysis::Summary(), ROOT::Internal::TBranchDescriptor::TBranchDescriptor(), ROOT::Internal::TBranchProxyClassDescriptor::TBranchProxyClassDescriptor(), ROOT::Internal::TBranchProxyDescriptor::TBranchProxyDescriptor(), TDSet::TDSet(), THostAuth::THostAuth(), TDataSetManager::ToBytes(), TProofServ::TProofServ(), TSQLMonitoringWriter::TSQLMonitoringWriter(), TCling::UnloadLibraryMap(), TProofServ::UnloadPackage(), TProof::UnloadPackage(), TProof::UnloadPackageOnClient(), TSessionQueryFrame::UpdateInfos(), TProofMgr::UploadFiles(), TClassDocOutput::WriteClassDocHeader(), TDocOutput::WriteHtmlFooter(), TDocOutput::WriteLocation(), TClassDocOutput::WriteMethod(), TDocParser::WriteMethod(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), and TGFileBrowser::XXExecuteDefaultAction().
TString & TString::Remove | ( | EStripType | st, |
char | c | ||
) |
Remove char c at begin and/or end of string (like Strip()) but modifies directly the string.
Definition at line 1017 of file TString.cxx.
Definition at line 625 of file TString.h.
Referenced by Append(), Atof(), TAuthenticate::AuthExists(), ClassImp(), TAuthenticate::ClearAuth(), TSystem::CompileMacro(), TProofLite::CopyMacroToCache(), TProofLite::CreateSandbox(), TMVA::MethodBase::CreateVariableTransforms(), TFormula::DoEval(), TGraphEditor::DoShape(), TGraph::Draw(), TProofLite::DrawSelect(), TProof::DrawSelect(), TWinNTSystem::ExpandPathName(), TFileCollection::ExportInfo(), TFormula::ExtractFunctors(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TGWindow::GetName(), TProofMgrLite::GetSessionLogs(), TFormula::HandleExponentiation(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), Insert(), IsFloat(), TSystem::Load(), TProof::Load(), TFileIter::MapName(), TDocOutput::NameSpace2FileName(), OldSlaveAuthSetup(), TSubString::operator=(), operator=(), TMathText::PaintMathText(), TFileInfo::ParseInput(), Prepend(), TPad::Print(), TFormula::ProcessFormula(), TProofServ::ProcessNext(), TXMLFile::ProduceFileNames(), TEntryList::RelocatePaths(), Remove(), Replace(), ReplaceAll(), TDocOutput::ReplaceSpecialChars(), TProofServ::Reset(), TProofPlayer::SavePartialResults(), TAuthenticate::SetEnvironment(), TDsKey::SetKey(), TASImage::SetTitle(), TProofPerfAnalysis::TProofPerfAnalysis(), TProof::UploadPackage(), TDocOutput::WriteHtmlFooter(), and ROOT::Internal::TTreeProxyGenerator::WriteProxy().
Remove at most n1 characters from self beginning at pos, and replace them with the first n2 characters of cs.
Definition at line 937 of file TString.cxx.
Definition at line 635 of file TString.h.
Referenced by TRootDialog::Add(), TFileCollection::Add(), TUploadDataSetDlg::AddFiles(), TDocOutput::AddLink(), ROOT::Internal::TTreeReaderGenerator::AddReader(), RooStats::SamplingDistPlot::AddSamplingDistribution(), RooStats::SamplingDistPlot::AddSamplingDistributionShaded(), TMVA::DataSetInfo::AddSpectator(), TSQLStructure::AddStrBrackets(), TMVA::DataSetInfo::AddTarget(), TMVA::DataSetInfo::AddVariable(), TDocOutput::AdjustSourcePath(), TProofOutputFile::AdoptFile(), TWinNTSystem::AnnounceUnixService(), TProof::AssertDataSet(), TRootAuth::Authenticate(), TMVA::bdtcontrolplots(), TSelectorDraw::Begin(), benchmarks(), TTree::BranchOld(), TVirtualBranchBrowsable::Browse(), TAlienJobStatus::Browse(), TGeoVolume::Browse(), TBranchElement::Browse(), TMVA::Tools::CheckForSilentOption(), TMVA::Tools::CheckForVerboseOption(), TLatex::CheckLatexSyntax(), TAuthenticate::CheckNetrc(), TCondor::ClaimVM(), ClassImp(), RooAbsArg::cleanBranchName(), TQueryResultManager::CleanupSession(), TDataSetManagerFile::ClearCache(), TProof::ClearData(), TEfficiency::Combine(), CompareMasses(), TSystem::CompileMacro(), TTVLVEntry::ConvertAliases(), TMVA::correlationscatters(), TMVA::correlationscattersMultiClass(), TMVA::CorrGui(), TMVA::CorrGuiMultiClass(), TSocket::CreateAuthSocket(), TSQLFile::CreateClassTable(), TDocOutput::CreateModuleIndex(), TSQLFile::CreateRawTable(), TProofLite::CreateSandbox(), TRootSniffer::DecodeUrlOptionValue(), TMVA::Reader::DecodeVarNames(), TGraphAsymmErrors::Divide(), do_anadist(), do_put(), TFormula::DoEval(), TH2::DoFitSlices(), TGFileBrowser::DoubleClicked(), TGraphPolar::Draw(), TParallelCoord::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), TKDE::Draw(), TASImage::Draw(), TGraph::Draw(), TMVA::draw_network(), TMVA::DrawMLPoutputMovie(), TTreePlayer::DrawSelect(), DynamicPath(), TProof::EnablePackage(), TAlien::Escape(), TRootSniffer::ExecuteCmd(), TRootBrowserLite::ExecuteDefaultAction(), TUnixSystem::ExpandPathName(), TWinNTSystem::ExpandPathName(), TFormula::ExtractFunctors(), TAuthenticate::FileExpand(), TDataSetManagerFile::FillLsDataSet(), TUrl::FindFile(), TGContainer::FindFrameByName(), TEfficiency::Fit(), fit1(), ROOT::Fit::FitOptionsMake(), fitslicesy(), foam_demopers(), RooStats::HLFactory::fParseLine(), TMakeProject::GenerateIncludeForTemplate(), TGDMLWrite::GenName(), geometry(), GetAuthProto(), RooStats::HistFactory::GetChannelEstimateSummaries(), TStreamerInfo::GetCheckSum(), TClass::GetCheckSum(), TCling::GetClassSharedLibs(), TDataSetManagerFile::GetDataSet(), TDSetElement::GetEntries(), TDSet::GetEntries(), TXProofMgr::GetFile(), TMVA::StatDialogMVAEffs::GetFormula(), THtml::GetHtmlFileName(), TMVA::StatDialogMVAEffs::GetLatexFormula(), TWinNTSystem::GetLibraries(), TSystem::GetLibraries(), TROOT::GetMacroPath(), TMVA::TMVAGlob::GetMethodName(), THtml::TModuleDefinition::GetModule(), TGWindow::GetName(), TApplicationServer::GetOptions(), TProofBench::GetPerfSpecs(), TGPrintDialog::GetPrinters(), GetRange(), TDocMacroDirective::GetResult(), TDocLatexDirective::GetResult(), TProofMgrLite::GetSessionLogs(), TMVA::VariableTransformBase::GetShortName(), TProof::GetStatistics(), TUrl::GetUrl(), TProofServ::HandleArchive(), TProofServ::HandleCache(), TRootEmbeddedCanvas::HandleDNDDrop(), TRootCanvas::HandleDNDDrop(), TGTextView::HandleDNDDrop(), TProof::HandleInputMessage(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TFormula::HandleLinear(), TGListTree::HandleMotion(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TProofServ::HandleProcess(), TProofServ::HandleSocketInput(), hsimple(), TROOT::IgnoreInclude(), TDataSetManagerFile::Init(), TProofOutputFile::Init(), TProofLite::Init(), TDataSetManagerAliEn::Init(), TProof::Init(), TDataSetManagerFile::InitLocalCache(), TEveBrowser::InitPlugins(), TSystem::IsFileInIncludePath(), TCling::IsLoaded(), TMVA::likelihoodrefs(), TClassDocOutput::ListDataMembers(), TEventIterTree::Load(), TPluginManager::LoadHandlersFromPluginDirs(), TCling::LoadLibraryMap(), TEntryListFromFile::LoadList(), TProof::LoadPackageOnClient(), TQueryResultManager::LocateQuery(), TXProofServ::LockSession(), TQueryResultManager::LockSession(), TMVA::MethodTMlpANN::MakeClass(), TMVA::MethodFDA::MakeClassSpecific(), TMVA::MethodBDT::MakeClassSpecific(), TMVA::MethodBDT::MakeClassSpecificHeader(), TGeoElementRN::MakeName(), TFile::MakeProject(), TSPlot::MakeSPlot(), TMVA::RuleFit::MakeVisHists(), myfit(), TDocOutput::NameSpace2FileName(), ROOT::Internal::TBranchProxyClassDescriptor::NameToSymbol(), THtml::TFileDefinition::NormalizePath(), TFile::Open(), TMVA::operator>>(), TGeoManager::OptimizeVoxels(), TPaveStats::Paint(), THStack::Paint(), TMultiGraph::Paint(), TPie::Paint(), TGaxis::PaintAxis(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGraphPolar(), TLatex::PaintLatex(), TLatex::PaintLatex1(), TMathText::PaintMathText(), TMVA::paracoor(), TAlienJDL::Parse(), TProof::ParseConfigField(), TDataSetManagerAliEn::ParseCustomFindUri(), TTreeDrawArgsParser::ParseName(), TDataSetManagerAliEn::ParseOfficialDataUri(), ROOT::Internal::TTreeProxyGenerator::ParseOptions(), TMVA::Configurable::ParseOptions(), TApplication::ParseRemoteLine(), TNetXNGFileStager::ParseStagePriority(), TMVA::plot_efficiencies(), pq2register(), TXNetSystem::Prepare(), TFormula::PrepareFormula(), TWinNTSystem::PrependPathName(), TFormula::PreProcessFormula(), TEntryListFromFile::Print(), TTreeCache::Print(), TFileInfo::Print(), TTable::Print(), TSlaveInfo::Print(), TTree::Print(), TRootCanvas::PrintCanvas(), RooAbsCollection::printLatex(), TMVA::probas(), TSelEventGen::Process(), TProofLite::Process(), TProof::Process(), TDocOutput::ProcessDocInDir(), TFormula::ProcessFormula(), TGClient::ProcessLine(), TRootCanvas::ProcessMessage(), THttpServer::ProcessRequest(), TProofMgrLite::ReadBuffer(), TMVA::MethodPDEFoam::ReadFoamsFromFile(), TMVA::Configurable::ReadOptionsFromStream(), TMVA::MethodBase::ReadStateFromFile(), TMVA::MethodCompositeBase::ReadWeightsFromXML(), TMVA::PDF::ReadXML(), TProofLite::RegisterDataSet(), TProof::RegisterDataSet(), TProofPlayer::ReinitSelector(), TCling::ReloadAllSharedLibraryMaps(), ReplaceAll(), TFormula::ReplaceParamName(), TMVA::Tools::ReplaceRegularExpressions(), TProofMgr::ReplaceSubdirs(), TProofLite::ResolveKeywords(), TProofServ::ResolveKeywords(), TMVA::rulevisCorr(), TMVA::rulevisHists(), TRint::Run(), TAxis::SaveAttributes(), TGeoManager::SaveAttributes(), TPaveText::SaveLines(), TProofPlayer::SavePartialResults(), TPaveLabel::SavePrimitive(), TMacro::SavePrimitive(), TMathText::SavePrimitive(), TText::SavePrimitive(), TGLabel::SavePrimitive(), TGButton::SavePrimitive(), TGTextLBEntry::SavePrimitive(), TLatex::SavePrimitive(), TGNumberEntryField::SavePrimitive(), TGTextEntry::SavePrimitive(), TASImage::SavePrimitive(), TGListTreeItemStd::SavePrimitive(), TGTextButton::SavePrimitive(), TGNumberEntry::SavePrimitive(), TGCheckButton::SavePrimitive(), TH1::SavePrimitive(), TGRadioButton::SavePrimitive(), TTreeViewer::SaveSource(), scandir(), TSpectrum2::Search(), TSpectrum::Search(), TGHtmlBrowser::Selected(), TSQLMonitoringWriter::SendParameters(), TCling::SetClassSharedLibs(), TProof::SetFeedback(), TLinearFitter::SetFormula(), TMVA::MethodDT::SetMinNodeSize(), TMVA::MethodBDT::SetMinNodeSize(), TWebFile::SetMsgReadBuffer10(), THtml::SetOutputDir(), TEfficiency::SetTitle(), THnBase::SetTitle(), TH1::SetTitle(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TProof::SetupWorkersEnv(), TUrl::SetUrl(), TDataSetManagerFile::ShowCache(), TDataSetManager::ShowDataSets(), TMVA::Tools::SplitString(), TAuthenticate::SshAuth(), TXNetFileStager::Stage(), TSelectorDraw::TakeEstimate(), TApplicationRemote::TApplicationRemote(), tasks(), TAuthenticate::TAuthenticate(), ROOT::Internal::TBranchProxyDescriptor::TBranchProxyDescriptor(), TApplicationServer::Terminate(), TestSPlot(), TTeXDump::Text(), TF1Convolution::TF1Convolution(), TGFileDialog::TGFileDialog(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), THostAuth::THostAuth(), TLeaf::TLeaf(), TMVA::TMVAGui(), TMVA::TMVAMultiClassGui(), TMVA::TMVARegGui(), TParallelMergingFile::TParallelMergingFile(), TPerfStats::TPerfStats(), TMVA::Factory::TrainAllMethods(), TCling::UnloadLibraryMap(), TProofServ::UnloadPackage(), TProof::UnloadPackageOnClient(), TProofMgr::UploadFiles(), TMVA::variables(), TMVA::variablesMultiClass(), TProof::VerifyDataSet(), while(), TWinNTSystem::WinNTUnixConnect(), TClassDocOutput::WriteClassDocHeader(), TMVA::MethodPDEFoam::WriteFoamsToFile(), TDocOutput::WriteHtmlHeader(), TDocOutput::WriteModuleLinks(), TPluginManager::WritePluginMacros(), TPluginManager::WritePluginRecords(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), TMVA::MethodBase::WriteStateToFile(), TXMLSetup::XmlConvertClassName(), and TGFileBrowser::XXExecuteDefaultAction().
|
inline |
Find & Replace ls1 symbols of s1 with ls2 symbols of s2 if any.
Definition at line 1000 of file TString.cxx.
Resize the string. Truncate or add blanks as necessary.
Definition at line 1045 of file TString.cxx.
Referenced by TMVA::MethodTMlpANN::AddWeightsXMLTo(), authclient(), TServerSocket::Authenticate(), TDataSetManagerFile::BrowseDataSets(), TKey::Build(), TAuthenticate::CheckProofAuth(), TBufferJSON::ClassMember(), TBufferXML::ClassMember(), TBufferSQL2::ClassMember(), TSocket::CreateAuthSocket(), TTreeSQL::CreateBranches(), TMVA::Reader::DecodeVarNames(), TSQLTableData::DefineSQLName(), TSQLFile::DefineTableName(), do_ls_files_server(), TMVA::draw_network(), TMVA::DrawMLPoutputMovie(), TFileCollection::ExportInfo(), TStreamerInfo::GenerateDeclaration(), THttpServer::IsFileRequested(), Krb5CheckCred(), TMinuit::mncntr(), TMVA::paracoor(), THttpServer::ProcessRequest(), TRootSniffer::ProduceMulti(), TAuthenticate::ReadRootAuthrc(), THostAuth::RemoveMethod(), THostAuth::Reset(), TAuthenticate::SetEnvironment(), TGSplitButton::SetText(), TDataSetManagerFile::ShowCache(), THostAuth::THostAuth(), TPerfStats::TPerfStats(), and TTreePerfStats::TTreePerfStats().
Set default resize increment for all TStrings. Default is 16.
Definition at line 1565 of file TString.cxx.
|
inlineprivate |
Definition at line 228 of file TString.h.
Referenced by Append(), FormImp(), Prepend(), ReadFile(), ReadToDelim(), ReadToken(), TBufferFile::ReadTString(), and Replace().
|
virtual |
Returns size string will occupy on I/O buffer.
Reimplemented in TStringLong.
Definition at line 1284 of file TString.cxx.
Referenced by TFitEditor::CreateFunctionGroup(), TMVA::MethodBase::CreateVariableTransforms(), TFitEditor::DoAddition(), TFitEditor::DoEnteredFunction(), TFitEditor::DoFunction(), TMVA::DataSet::GetTree(), TObjString::Sizeof(), TNamed::Sizeof(), TKey::Sizeof(), and TMVA::VariableInfo::VariableInfo().
TSubString TString::Strip | ( | EStripType | s = kTrailing , |
char | c = ' ' |
||
) | const |
Return a substring of self stripped at beginning and/or end.
Definition at line 1056 of file TString.cxx.
Referenced by TProofNodes::ActivateWorkers(), RooStats::SamplingDistPlot::AddSamplingDistribution(), RooStats::SamplingDistPlot::AddSamplingDistributionShaded(), TMVA::MethodTMlpANN::AddWeightsXMLTo(), TASImage::Append(), BaseConvert(), TStreamerInfo::BuildOld(), TMVA::Configurable::CheckForUnusedOptions(), TGeoChecker::CheckOverlaps(), TProof::ClearData(), TSystem::CompileMacro(), ROOT::Internal::TTreeReaderValueBase::CreateProxy(), TGeoBuilder::Division(), TGeoManagerEditor::DoExportGeometry(), TASImage::DrawText(), TProof::Exec(), TTabCom::ExtendPath(), TASPluginGS::File2ASImage(), TGeoManager::FindVolumeFast(), TDocOutput::FixupAuthorSourceInfo(), TGLAxisPainter::FormAxisValue(), TStreamerElement::GetClassPointer(), TProof::GetFileInCmd(), TASImage::GetFileType(), TSystem::GetLibraries(), TGeoMCGeometry::GetMaterial(), TGeoManager::GetMaterial(), TGeoManager::GetMaterialIndex(), TGeoMCGeometry::GetMedium(), TGeoManager::GetMedium(), TGPicturePool::GetPicture(), TXProofMgr::GetSessionLogs(), TGeoManager::GetVolume(), TProofServ::HandleCheckFile(), TRint::HandleTermInput(), TBranchElement::InitializeOffsets(), TDocParser::LocateMethodInCurrentLine(), TFolder::ls(), TTask::ls(), TDirectoryFile::ls(), TDirectory::ls(), TTabCom::MakeClassFromVarName(), TTable::New(), TGeoBuilder::Node(), TPaveStats::Paint(), TMVA::Configurable::ParseOptions(), PoDCheckUrl(), TDocParser::ProcessComment(), TROOT::ProcessLine(), TROOT::ProcessLineFast(), TROOT::ProcessLineSync(), TSapDBServer::Query(), TProofMgrLite::ReadBuffer(), TProofResourcesStatic::ReadConfigFile(), TMVA::VariableInfo::ReadFromStream(), TASImage::ReadImage(), TMVA::MethodBase::ReadStateFromStream(), TTree::ReadStream(), TMethod::SetMenuItem(), TDocDirective::SetParameters(), TUrl::SetUrl(), TMVA::Tools::SplitString(), TUnixSystem::StackTrace(), TGeoMaterial::TGeoMaterial(), TGeoMedium::TGeoMedium(), TGeoVolume::TGeoVolume(), TGeoVolumeAssembly::TGeoVolumeAssembly(), TGFontDialog::UpdateStyleSize(), TProofMgr::UploadFiles(), TGeoBuilder::Volume(), while(), and TDocParser::WriteMethod().
TSubString TString::SubString | ( | const char * | pattern, |
Ssiz_t | startIndex = 0 , |
||
ECaseCompare | cmp = kExact |
||
) | const |
Returns a substring matching "pattern", or the null substring if there is no such match.
It would be nice if this could be yet another overloaded version of operator(), but this would result in a type conversion ambiguity with operator(Ssiz_t, Ssiz_t).
Definition at line 1620 of file TString.cxx.
Definition at line 647 of file TString.h.
Referenced by TUnixSystem::FindDynamicLibrary(), and TWinNTSystem::FindDynamicLibrary().
This function is used to isolate sequential tokens in a TString.
These tokens are separated in the string by at least one of the characters in delim. The returned array contains the tokens as TObjString's. The returned array is the owner of the objects, and must be deleted by the user.
Definition at line 2227 of file TString.cxx.
Referenced by ROOT::Internal::TTreeGeneratorBase::AddHeader(), TProof::AssertDataSet(), TFile::AsyncOpen(), TMultiLayerPerceptron::AttachData(), TCling::AutoLoad(), TCling::AutoParseImplRecurse(), TMultiLayerPerceptron::BuildFirstLayer(), TAlienPackage::CheckDependencies(), TDataSetManagerFile::CheckLocalCache(), ClassImp(), TProof::ClearData(), TProofDraw::CompileVariables(), RooAbsReal::createIntegral(), TDocMacroDirective::CreateSubprocessInputFile(), TUnfoldBinning::DecodeAxisSteering(), do_anadist_ds(), TMultiLayerPerceptron::Draw(), TMVA::DrawMLPoutputMovie(), TMVA::DrawNetworkMovie(), TSVG::DrawPS(), TImageDump::DrawPS(), TDocParser::ExpandCPPLine(), TDataSetManagerAliEn::ExpandRunSpec(), THtml::TFileDefinition::ExpandSearchPath(), TMultiLayerPerceptron::ExpandStructure(), TProofPerfAnalysis::FileRatePlot(), TRootContextMenu::FindHierarchy(), TDocOutput::FixupAuthorSourceInfo(), RooStats::HLFactory::fParseLine(), TDataSetManagerFile::GetDataSet(), TDataSetManagerFile::GetDataSets(), TProof::Getenv(), THtml::TFileDefinition::GetFileName(), TUnixSystem::GetLinkedLibraries(), THtml::TPathDefinition::GetMacroPath(), THtml::TModuleDefinition::GetModule(), TGPrintDialog::GetPrinters(), TProof::HandleInputMessage(), TProof::HandleLibIncPath(), TProof::HandleOutputOptions(), TProofLite::Init(), TProof::Init(), TAlienPackage::InstallAllPackages(), TProofPerfAnalysis::LatencyPlot(), TCling::LazyFunctionCreatorAutoload(), TEventIterTree::Load(), TSystem::Load(), TProof::Load(), THtml::LoadAllLibs(), TPluginManager::LoadHandlersFromPluginDirs(), TCling::LoadLibraryMap(), TProofBench::MakeDataSet(), TFileMerger::MergeRecursive(), TAlienFile::Open(), TFile::Open(), TFile::OpenFromCache(), TSpectrum2Painter::PaintSpectrum(), TAlienJDL::Parse(), TDataSetManager::ParseDataSetSrvMaps(), TFileInfo::ParseInput(), TProofProgressMemoryPlot::ParseLine(), TUrl::ParseOptions(), ROOT::Internal::TTreeReaderGenerator::ParseOptions(), TApplication::ParseRemoteLine(), TArchiveFile::ParseUrl(), TXProofMgr::QuerySessions(), TProofPerfAnalysis::RatePlot(), TProofResourcesStatic::ReadConfigFile(), TDataSetManager::ReadGroupConfig(), TTree::ReadStream(), TCling::ReloadAllSharedLibraryMaps(), TGLAnnotation::Render(), TProofLite::ResolveKeywords(), TProofLogElem::Retrieve(), TXProofMgr::Rm(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TSQLMonitoringWriter::SendParameters(), TProof::SetFeedback(), TLinearFitter::SetFormula(), ROOT::Quartz::SetLineStyle(), TPDF::SetLineStyle(), TGX11::SetLineStyle(), TDocDirective::SetParameters(), TProofServ::SetupCommon(), TDataSetManager::ShowDataSets(), THtml::TFileDefinition::SplitClassIntoDirFile(), TXProofMgr::Stat(), TF1Convolution::TF1Convolution(), TF1NormSum::TF1NormSum(), TPerfStats::TPerfStats(), TUnfoldBinning::TUnfoldBinning(), TCling::UnloadAllSharedLibraryMaps(), TCling::UnloadLibraryMap(), TGWin32::UpdateLineStyle(), and TRootSniffer::WithCurrentUserName().
Search for tokens delimited by regular expression 'delim' (default " ") in this string; search starts at 'from' and the token is returned in 'tok'.
Returns in 'from' the next position after the delimiter. Returns kTRUE if a token is found, kFALSE if not or if some inconsistency occurred. This method allows to loop over tokens in this way:
more convenient of the other Tokenize method when saving the tokens is not needed.
Definition at line 302 of file TRegexp.cxx.
void TString::ToLower | ( | ) |
Change string to lower-case.
Definition at line 1075 of file TString.cxx.
Referenced by TH1::Add(), TMVA::Factory::AddTree(), TGraphSmooth::Approx(), TGDMLParse::Arb8(), TGDMLParse::AssProcess(), ROOT::TSchemaRule::AsString(), TTimeStamp::AsString(), TTree::AutoSave(), TSpectrum::Background(), BaseConvert(), TSelectorDraw::Begin(), TMVA::MethodBoost::BookMethod(), TGDMLParse::BooSolid(), TGDMLParse::Box(), TEfficiency::CheckEntries(), TMVA::Tools::CheckForSilentOption(), TMVA::Tools::CheckForVerboseOption(), TGeoManager::CheckGeometryFull(), TGeoChecker::CheckOverlaps(), TGeoNode::CheckOverlaps(), TGeoVolume::CheckOverlaps(), ClassImp(), TCanvas::Clear(), TStreamerInfo::Clear(), TTree::CloneTree(), TXMLFile::Close(), TFile::Close(), TSQLFile::Close(), TGeoManager::CloseGeometry(), ROOT::MacOSX::X11::ColorParser::ColorParser(), TEfficiency::Combine(), TGDMLParse::Cone(), TGDMLParse::ConProcess(), THbookFile::Convert2root(), TTree::CopyEntries(), TRootBrowserLite::CreateBrowser(), TGDMLWrite::CreateMaterialN(), TGDMLParse::CutTube(), RooPrintable::defaultPrintStyle(), RooNumGenConfig::defaultPrintStyle(), RooNumIntConfig::defaultPrintStyle(), TBranch::DeleteBaskets(), THistPainter::DistancetoPrimitive(), TGraphPainter::DistancetoPrimitiveHelper(), TGraphAsymmErrors::Divide(), TProfile::Divide(), TProfile2D::Divide(), TProfile3D::Divide(), TGeoVolume::Divide(), TH1::Divide(), THnBase::Divide(), TGeoVolumeAssembly::Divide(), TH2::DoFitSlices(), TH1::DoIntegral(), TProfile2D::DoProfile(), TH2::DoProfile(), TH3::DoProject1D(), TH2::DoProjection(), TVolumeView::Draw(), TSpline::Draw(), TMultiGraph::Draw(), RooPlot::Draw(), THStack::Draw(), TPie::Draw(), TTreePerfStats::Draw(), TNode::Draw(), TVolume::Draw(), TParallelCoord::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), TF3::Draw(), TF2::Draw(), TEfficiency::Draw(), TKDE::Draw(), TGraph2D::Draw(), TASImage::Draw(), TGraph::Draw(), TTable::Draw(), TH1::Draw(), TF1::Draw(), TH1::DrawCopy(), TGeoPainter::DrawOnly(), TGeoPainter::DrawOverlap(), TMultiLayerPerceptron::DrawResult(), TTreePlayer::DrawSelect(), TGeoPainter::DrawShape(), TGeoPainter::DrawVolume(), TBranch::DropBaskets(), TGDMLParse::ElCone(), TGDMLParse::EleProcess(), TGDMLParse::Ellipsoid(), TGDMLParse::ElTube(), TGraph::Eval(), TH1::Eval(), TPad::ExecuteEventAxis(), TGeoManager::Export(), TASPluginGS::File2ASImage(), TEfficiency::FillGraph(), RooMinuit::fit(), RooMinimizer::fit(), TEfficiency::Fit(), TMultiDimFit::Fit(), TASImage::GetFileType(), TLegend::GetHeader(), TGraph2D::GetHistogram(), THStack::GetMaximum(), THStack::GetMinimum(), THistPainter::GetObjectInfo(), TH1::GetPainter(), TGPicturePool::GetPicture(), GetRange(), TGDMLParse::GetScaleVal(), TArrowEditor::GetShapeEntry(), TMySQLServer::GetTableInfo(), TGeoMCGeometry::Gspos(), TGeoMCGeometry::Gsposp(), TGDMLParse::Hype(), TASImage::Image2Drawable(), TDataSetManagerFile::InitLocalCache(), TH2Poly::Integral(), TCutG::IntegralHist(), TDocParser::IsDirective(), IsFloat(), TGDMLParse::IsoProcess(), TMVA::Option< T >::IsPreDefinedValLocal(), TXMLSetup::IsValidXmlSetup(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TGApplication::LoadGraphicsLibs(), TApplication::LoadGraphicsLibs(), ROOT::MacOSX::X11::ColorParser::LookupColorByName(), TNode::ls(), TGeometry::ls(), TTreePlayer::MakeClass(), TMultiDimFit::MakeHistograms(), TFile::MakeProject(), TGDMLParse::MatProcess(), TChain::Merge(), TH1::Multiply(), TGeoBuilder::Node(), TUri::Normalise(), TTree::OptimizeBaskets(), TMVA::OptionBase::OptionBase(), TGDMLParse::Orb(), TGraphTime::Paint(), TSpline::Paint(), THStack::Paint(), TGLHistPainter::Paint(), TGraph2DPainter::Paint(), TTreePerfStats::Paint(), TASImage::Paint(), TF3::Paint(), TF2::Paint(), TGraph2D::Paint(), TF1::Paint(), TArrow::PaintArrow(), THistPainter::PaintAxis(), TBox::PaintBox(), TEllipse::PaintEllipse(), THistPainter::PaintH3(), TPave::PaintPave(), TPave::PaintPaveArc(), TGraph2DPainter::PaintPolyMarker(), TLegend::PaintPrimitives(), THistPainter::PaintScatterPlot(), THistPainter::PaintTH2PolyBins(), TGeoTrack::PaintTrack(), TGraph2DPainter::PaintTriangles_new(), TGraph2DPainter::PaintTriangles_old(), TGDMLParse::Para(), TGDMLParse::Paraboloid(), RooAbsPdf::paramOn(), TTreeDrawArgsParser::ParseOption(), TMVA::Configurable::ParseOptions(), TGDMLParse::Polycone(), TGDMLParse::Polyhedra(), TGDMLParse::PosProcess(), TTreePlayer::Principal(), TFileCacheWrite::Print(), TXTRU::Print(), TObjectTable::Print(), TPolyLine3D::Print(), TPolyMarker3D::Print(), TTreePerfStats::Print(), TTreeCache::Print(), TFileCacheRead::Print(), TPMERegexp::Print(), TMultiDimFit::Print(), TH1::Print(), TXMLFile::ProduceFileNames(), TGraph2D::Project(), TH3::Project3D(), TH3::Project3DProfile(), TProfile::ProjectionX(), TProfile2D::ProjectionXY(), TProfile3D::ProjectionXYZ(), TGeoChecker::RandomPoints(), RooDataSet::read(), TASImage::ReadImage(), TMVA::MethodBase::ReadStateFromStream(), TMVA::MethodBase::ReadStateFromXML(), TMVA::MethodCompositeBase::ReadWeightsFromXML(), TPad::RedrawAxis(), TGDMLParse::Reflection(), RooMCStudy::RooMCStudy(), TGDMLParse::RotProcess(), TProofLog::Save(), TDirectoryFile::SaveObjectAs(), TDirectory::SaveObjectAs(), TH1K::SavePrimitive(), TParallelCoord::SavePrimitive(), TEfficiency::SavePrimitive(), TH1::SavePrimitive(), TH1::SavePrimitiveHelp(), TH1::Scale(), TTreePlayer::Scan(), TGDMLParse::SclProcess(), TSpectrum2::Search(), TSpectrum::Search(), TPaveText::SetAllWith(), TStyle::SetAxisColor(), TH1::SetAxisColor(), TKDE::SetDrawOptions(), TProfileHelper::SetErrorOption(), TGaxis::SetExponentOffset(), TLegend::SetHeader(), TGListView::SetHeader(), TStyle::SetLabelColor(), TH1::SetLabelColor(), TStyle::SetLabelFont(), TH1::SetLabelFont(), TStyle::SetLabelOffset(), TH1::SetLabelOffset(), TStyle::SetLabelSize(), TH1::SetLabelSize(), TF2GL::SetModel(), TH2GL::SetModel(), TH3GL::SetModel(), TStyle::SetNdivisions(), TH1::SetNdivisions(), Roo2DKeysPdf::setOptions(), RooNDKeysPdf::setOptions(), TKDE::SetOptions(), TEfficiency::SetPassedHistogram(), THistPainter::SetShowProjection(), TStyle::SetTickLength(), TH1::SetTickLength(), TGaxis::SetTimeOffset(), TAxis::SetTimeOffset(), TStyle::SetTitleColor(), TStyle::SetTitleFont(), TH1::SetTitleFont(), TStyle::SetTitleOffset(), TH1::SetTitleOffset(), TStyle::SetTitleSize(), TH1::SetTitleSize(), TEfficiency::SetTotalHistogram(), TProofServ::SetupCommon(), TMVA::Option< T >::SetValueLocal(), TGeoManager::SetVolumeAttribute(), TChain::SetWeight(), TH2::Smooth(), TH1::Smooth(), TGraphSmooth::SmoothKern(), TGraphSmooth::SmoothLowess(), TGDMLParse::Sphere(), THtml::TFileDefinition::SplitClassIntoDirFile(), TSQLFile::SQLTestTable(), TSelectorDraw::TakeEstimate(), TF12::TF12(), TFileDrawMap::TFileDrawMap(), THStack::THStack(), TMultiDimFit::TMultiDimFit(), TGDMLParse::Torus(), TMultiLayerPerceptron::Train(), TGDMLParse::Trap(), TGDMLParse::Trd(), TTreeCloner::TTreeCloner(), TGDMLParse::Tube(), TGDMLParse::TwistTrap(), TMVA::variables(), TMVA::variablesMultiClass(), TGDMLParse::VolProcess(), TGeoBuilder::Volume(), TGeoChecker::Weight(), TGeoManager::Weight(), TGDMLWrite::WriteGDMLfile(), TDirectoryFile::WriteObjectAny(), TDirectoryFile::WriteTObject(), and TGDMLParse::Xtru().
void TString::ToUpper | ( | ) |
Change string to upper case.
Definition at line 1088 of file TString.cxx.
Referenced by RooStats::SamplingDistPlot::AddSamplingDistribution(), RooStats::SamplingDistPlot::AddSamplingDistributionShaded(), RooPlot::addTH1(), TH1::AndersonDarlingTest(), TH1::Chi2Test(), TH1::Chi2TestX(), TGraph::Chisquare(), TH1::Chisquare(), ClassImp(), TNetFile::Create(), TRootGuiFactory::CreateBrowserImp(), TDocOutput::CreateModuleIndex(), TH2Editor::DoAddArr(), TH1Editor::DoAddB(), TH1Editor::DoAddBar(), TH2Editor::DoAddBB(), TH2Editor::DoAddBox(), TH2Editor::DoAddCol(), TH2Editor::DoAddError(), TH2Editor::DoAddFB(), TH1Editor::DoAddMarker(), TH2Editor::DoAddPalette(), TH2Editor::DoAddScat(), TH1Editor::DoAddSimple(), TH2Editor::DoAddText(), TH1Editor::DoHBar(), TH2Editor::DoHistChanges(), TH2Editor::DoHistComplex(), TH2Editor::DoHistSimple(), TGraphEditor::DoMarkerOnOff(), TH1Editor::DoPercent(), TGraphEditor::DoShape(), TF1Editor::DoSliderXMoved(), TF1Editor::DoSliderXPressed(), TF1Editor::DoSliderXReleased(), TGraphPolar::Draw(), RooStats::HypoTestInverterPlot::Draw(), TFitParametersDialog::DrawFunction(), TH1::DrawNormalized(), TBackCompFitter::ExecuteCommand(), TFumili::ExecuteCommand(), TTreeViewer::ExecuteDraw(), TMultiLayerPerceptron::Export(), TVirtualFFT::FFT(), TH1::FFT(), TGeoElementTable::FindElement(), TBinomialEfficiencyFitter::Fit(), ROOT::Fit::FitOptionsMake(), TOracleServer::GetColumns(), TEntryList::GetEntryList(), RooStats::HypoTestInverterResult::GetExpectedLimit(), TXProofMgr::GetFile(), TMatrixTBase< Element >::GetMatrix2Array(), TProof::GetQueryMode(), TVectorT< Element >::GetSub(), TMatrixTSym< Element >::GetSub(), TMatrixT< Element >::GetSub(), TMatrixTSparse< Element >::GetSub(), TOracleServer::GetTableInfo(), TUnuranSampler::Init(), TMVA::DataSetFactory::InitOptions(), IsInBaseN(), TH2::KolmogorovTest(), TH3::KolmogorovTest(), TMath::KolmogorovTest(), TH1::KolmogorovTest(), TProofOutputList::ls(), RooClassFactory::makeClass(), RooStats::HypoTestInverterPlot::MakePlot(), TSPlot::MakeSPlot(), TFFTComplex::MapFlag(), TFFTComplexReal::MapFlag(), TFFTRealComplex::MapFlag(), TFFTReal::MapFlag(), TMinuit::mncomd(), TMinuit::mnexcm(), TMinuit::mnhelp(), TMatrixT< Element >::NormByColumn(), TMatrixTBase< Element >::NormByDiag(), TMatrixT< Element >::NormByRow(), TAlienFile::Open(), TXNetFile::Open(), TGraphPolargram::Paint(), TMultiGraph::Paint(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGrapHist(), TGraphPainter::PaintGraphPolar(), TMVA::Tools::ParseANNOptionString(), TUri::PctDecodeUnreserved(), TUri::PctNormalise(), RooFitResult::plotOn(), pq2register(), TProofOutputList::Print(), TFitResult::Print(), TEntryListArray::Print(), TEntryListBlock::Print(), TEntryList::Print(), TF1::Print(), TGeoElementTable::Print(), TXProofMgr::PutFile(), TFunctionParametersDialog::RedrawFunction(), TWebFile::ReOpen(), TXMLFile::ReOpen(), TFile::ReOpen(), TSQLFile::ReOpen(), TH2::Reset(), TProfile::Reset(), TH3::Reset(), TProfile2D::Reset(), TProfile3D::Reset(), TH1::Reset(), RooStats::BayesianCalculator::SetIntegrationType(), TMatrixTBase< Element >::SetMatrixArray(), TAttMarkerEditor::SetModel(), TGraphEditor::SetModel(), TH1Editor::SetModel(), TH2Editor::SetModel(), TClassTree::ShowLinks(), TSQLFile::SQLTestTable(), RooAbsData::statOn(), TFile::TFile(), TFractionFitter::TFractionFitter(), TLinearFitter::TLinearFitter(), TMemFile::TMemFile(), TH1::TransformHisto(), TSQLFile::TSQLFile(), TXMLFile::TXMLFile(), TDocOutput::WriteLocation(), and TDocOutput::WriteModuleLinks().
Converts a UInt_t (twice the range of an Int_t) to a TString with respect to the base specified (2-36).
Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). In case of error returns the "!" string.
Definition at line 2082 of file TString.cxx.
Converts a ULong64_t (twice the range of an Long64_t) to a TString with respect to the base specified (2-36).
Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). In case of error returns the "!" string.
Definition at line 2134 of file TString.cxx.
Referenced by BaseConvert().
|
inlineprivate |
Definition at line 243 of file TString.h.
Referenced by Append(), Clobber(), Clone(), operator=(), Prepend(), TStringLong::ReadBuffer(), ReadBuffer(), TBufferFile::ReadTString(), Remove(), Replace(), and ~TString().
Write TString object to buffer.
Simplified version of TBuffer::WriteObject (does not keep track of multiple references to the same string). We need to have it here because TBuffer::ReadObject can only handle descendant of TObject
Definition at line 1311 of file TString.cxx.
Referenced by operator<<().
|
inlineprivate |
Definition at line 244 of file TString.h.
Referenced by Clobber(), operator=(), TStringLong::ReadBuffer(), ReadBuffer(), TBufferFile::ReadTString(), and Remove().
Use the special concatenation constructor.
Definition at line 1424 of file TString.cxx.
Use the special concatenation constructor.
Definition at line 1408 of file TString.cxx.
Use the special concatenation constructor.
Definition at line 1416 of file TString.cxx.
Add char to string.
Definition at line 1432 of file TString.cxx.
Add integer to string.
Definition at line 1440 of file TString.cxx.
Add integer to string.
Definition at line 1450 of file TString.cxx.
Add integer to string.
Definition at line 1460 of file TString.cxx.
Add integer to string.
Definition at line 1470 of file TString.cxx.
Add string to integer.
Definition at line 1480 of file TString.cxx.
Add string to integer.
Definition at line 1488 of file TString.cxx.
Add string to integer.
Definition at line 1498 of file TString.cxx.
Add string to integer.
Definition at line 1508 of file TString.cxx.
Add string to integer.
Definition at line 1518 of file TString.cxx.
Write TString or derived to TBuffer.
Definition at line 1353 of file TString.cxx.
Compare TString with a char *.
Definition at line 1365 of file TString.cxx.
|
friend |
|
friend |
|
friend |
Definition at line 140 of file TString.h.
Referenced by operator()(), Strip(), and SubString().
|
protected |
Definition at line 203 of file TString.h.
Referenced by GetLongCap(), GetLongPointer(), GetLongSize(), GetShortPointer(), GetShortSize(), IsLong(), operator=(), SetLongCap(), SetLongPointer(), SetLongSize(), SetShortSize(), Swap(), TString(), UnLink(), and Zero().
|
static |
Definition at line 258 of file TString.h.
Referenced by AssertElement(), Contains(), First(), Index(), IsFloat(), Last(), MaybeRegexp(), MaybeWildcard(), operator()(), ReplaceAll(), Strip(), SubString(), and Tokenize().