Lines Matching defs:index
50 int index = idlFilePath_.LastIndexOf('\\');
52 int index = idlFilePath_.LastIndexOf('/');
56 name_ = idlFilePath_.Substring((index == -1) ? 0 : (index + 1), end);
63 int index = 0;
64 while ((index = nspaceStr.IndexOf('.', begin)) != -1) {
65 String ns = nspaceStr.Substring(begin, index);
81 begin = index + 1;
104 AutoPtr<ASTNamespace> ASTModule::GetNamespace(size_t index)
106 if (index >= namespaces_.size()) {
110 return namespaces_[index];
123 AutoPtr<ASTInterfaceType> ASTModule::GetInterface(size_t index)
125 if (index >= interfaces_.size()) {
129 return interfaces_[index];
152 AutoPtr<ASTSequenceableType> ASTModule::GetSequenceable(size_t index)
154 if (index >= sequenceables_.size()) {
158 return sequenceables_[index];