/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | DescriptorPool.cs | 86 /// <param name="fullName">Fully-qualified name to look up</param> 89 internal T FindSymbol<T>(string fullName) where T : class 92 descriptorsByName.TryGetValue(fullName, out result); in descriptorsByName.TryGetValue() 103 dependency.DescriptorPool.descriptorsByName.TryGetValue(fullName, out result); 120 internal void AddPackage(string fullName, FileDescriptor file) in AddPackage() argument 122 int dotpos = fullName.LastIndexOf('.'); in AddPackage() 126 AddPackage(fullName.Substring(0, dotpos), file); in AddPackage() 127 name = fullName.Substring(dotpos + 1); in AddPackage() 131 name = fullName; in AddPackage() 135 if (descriptorsByName.TryGetValue(fullName, ou in AddPackage() [all...] |
H A D | PackageDescriptor.cs | 43 private readonly string fullName; field in Google.Protobuf.Reflection.PackageDescriptor 46 internal PackageDescriptor(string name, string fullName, FileDescriptor file) in PackageDescriptor() argument 49 this.fullName = fullName; in PackageDescriptor() 60 get { return fullName; }
|
H A D | DescriptorBase.cs | 42 internal DescriptorBase(FileDescriptor file, string fullName, int index) in DescriptorBase() argument 45 FullName = fullName; in DescriptorBase()
|
H A D | TypeRegistry.cs | 57 /// <param name="fullName">The full name of the message, which is the dot-separated 59 /// <returns>The message descriptor corresponding to <paramref name="fullName"/> or null 61 public MessageDescriptor Find(string fullName) in Find() argument 65 fullNameToMessageMap.TryGetValue(fullName, out ret); in Find()
|
/third_party/icu/icu4c/source/common/ |
H A D | locid.cpp | 257 if ((baseName != fullName) && (baseName != fullNameBuffer)) { in ~Locale() 261 /*if fullName is on the heap, we free it*/ in ~Locale() 262 if (fullName != fullNameBuffer) in ~Locale() 264 uprv_free(fullName); in ~Locale() 265 fullName = NULL; in ~Locale() 270 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 281 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 291 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 405 : UObject(other), fullName(fullNameBuffer), baseName(NULL) in Locale() 411 : UObject(other), fullName(fullNameBuffe 450 if (fullName != fullNameBuffer) uprv_free(fullName); global() variable [all...] |
H A D | locdispnames.cpp | 68 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 80 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 108 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 120 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 148 length=uloc_getDisplayCountry(fullName, displayLocale.fullName, in getDisplayCountry() [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | locid.cpp | 257 if ((baseName != fullName) && (baseName != fullNameBuffer)) { in ~Locale() 261 /*if fullName is on the heap, we free it*/ in ~Locale() 262 if (fullName != fullNameBuffer) in ~Locale() 264 uprv_free(fullName); in ~Locale() 265 fullName = nullptr; in ~Locale() 270 : UObject(), fullName(fullNameBuffer), baseName(nullptr) in Locale() 281 : UObject(), fullName(fullNameBuffer), baseName(nullptr) in Locale() 291 : UObject(), fullName(fullNameBuffer), baseName(nullptr) in Locale() 405 : UObject(other), fullName(fullNameBuffer), baseName(nullptr) in Locale() 411 : UObject(other), fullName(fullNameBuffe 450 if (fullName != fullNameBuffer) uprv_free(fullName); global() variable [all...] |
H A D | locdispnames.cpp | 68 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 80 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 108 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 120 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 148 length=uloc_getDisplayCountry(fullName, displayLocale.fullName, in getDisplayCountry() [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | locid.cpp | 257 if ((baseName != fullName) && (baseName != fullNameBuffer)) { in ~Locale() 261 /*if fullName is on the heap, we free it*/ in ~Locale() 262 if (fullName != fullNameBuffer) in ~Locale() 264 uprv_free(fullName); in ~Locale() 265 fullName = NULL; in ~Locale() 270 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 281 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 291 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale() 425 : UObject(other), fullName(fullNameBuffer), baseName(NULL) in Locale() 431 : UObject(other), fullName(fullNameBuffe 470 if (fullName != fullNameBuffer) uprv_free(fullName); global() variable [all...] |
H A D | locdispnames.cpp | 68 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 80 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName, in getDisplayLanguage() 108 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 120 length=uloc_getDisplayScript(fullName, displayLocale.fullName, in getDisplayScript() 148 length=uloc_getDisplayCountry(fullName, displayLocale.fullName, in getDisplayCountry() [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | ExtensionRegistry.java | 133 public ExtensionInfo findExtensionByName(final String fullName) { in findExtensionByName() argument 134 return findImmutableExtensionByName(fullName); in findExtensionByName() 139 * i.e. {@code result.descriptor.fullName()} will match {@code fullName} if a match is found. 143 public ExtensionInfo findImmutableExtensionByName(final String fullName) { in findImmutableExtensionByName() argument 144 return immutableExtensionsByName.get(fullName); in findImmutableExtensionByName() 149 * {@code result.descriptor.fullName()} will match {@code fullName} if a match is found. 153 public ExtensionInfo findMutableExtensionByName(final String fullName) { in findMutableExtensionByName() argument 154 return mutableExtensionsByName.get(fullName); in findMutableExtensionByName() 190 getAllMutableExtensionsByExtendedType(final String fullName) getAllMutableExtensionsByExtendedType() argument 207 getAllImmutableExtensionsByExtendedType(final String fullName) getAllImmutableExtensionsByExtendedType() argument [all...] |
H A D | Descriptors.java | 676 return fullName; in getFullName() 771 final GenericDescriptor result = file.pool.findSymbol(fullName + '.' + name); in findFieldByName() 796 final GenericDescriptor result = file.pool.findSymbol(fullName + '.' + name); in findNestedTypeByName() 811 final GenericDescriptor result = file.pool.findSymbol(fullName + '.' + name); in findEnumTypeByName() 821 private final String fullName; field in Descriptors.Descriptor 847 this.fullName = fullname; in Descriptor() 869 fullName = computeFullName(file, parent, proto.getName()); in Descriptor() 1004 return fullName; in getFullName() 1205 String.format("This field is not an extension. (%s)", fullName)); in getExtensionScope() 1214 String.format("This field is not of message type. (%s)", fullName)); in getMessageType() 1255 private final String fullName; global() field in Descriptors.FieldDescriptor 1780 private final String fullName; global() field in Descriptors.EnumDescriptor 1892 private final String fullName; global() field in Descriptors.EnumValueDescriptor 2000 private final String fullName; global() field in Descriptors.ServiceDescriptor 2107 private final String fullName; global() field in Descriptors.MethodDescriptor 2305 findSymbol(final String fullName) findSymbol() argument 2313 findSymbol(final String fullName, final SearchFilter filter) findSymbol() argument 2517 PackageDescriptor(final String name, final String fullName, final FileDescriptor file) PackageDescriptor() argument 2524 private final String fullName; global() field in Descriptors.DescriptorPool.PackageDescriptor 2533 addPackage(final String fullName, final FileDescriptor file) addPackage() argument 2725 private final String fullName; global() field in Descriptors.OneofDescriptor [all...] |
/third_party/skia/tests/ |
H A D | OSPathTest.cpp | 29 // fullName should be "dir<SkOSPath::SEPARATOR>file" in test_dir_with_file() 30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str()); in test_dir_with_file() local 32 // fullName should be the combined size of dir and file, plus one if in test_dir_with_file() 38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize); in test_dir_with_file() 40 SkString basename = SkOSPath::Basename(fullName.c_str()); in test_dir_with_file() 41 SkString dirname = SkOSPath::Dirname(fullName.c_str()); in test_dir_with_file()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource9.js | 41 "A export class may only extend other classes, " + type.extendsList[i].symbol.fullName() + " is an interface."); 47 "An interface may only extend other interfaces, " + type.extendsList[i].symbol.fullName() + " is a class."); 61 "A class may only implement an interface; " + iface.symbol.fullName() + " is a class."); 250 this.checker.errorReporter.simpleErrorFromSym(type.symbol, "A export class may only extend other classes, " + type.extendsList[i].symbol.fullName() + " is an interface.");
255 this.checker.errorReporter.simpleErrorFromSym(type.symbol, "An interface may only extend other interfaces, " + type.extendsList[i].symbol.fullName() + " is a class.");
266 this.checker.errorReporter.simpleErrorFromSym(type.symbol, "A class may only implement an interface; " + iface.symbol.fullName() + " is a class.");
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ShaderVars.cpp | 304 const sh::ShaderVariable *ShaderVariable::findField(const std::string &fullName, in findField() argument 311 size_t pos = fullName.find_first_of("."); in findField() 322 fieldName = fullName; in findField() 327 topName = fullName.substr(0, pos); in findField() 332 fieldName = fullName.substr(pos + 1); in findField()
|
/third_party/lzma/CPP/7zip/Archive/ |
H A D | SplitHandler.cpp | 212 UString fullName;
in Open2() local 213 if (!seqName.GetNextName(fullName))
in Open2() 216 const HRESULT result = volumeCallback->GetStream(fullName, &nextStream);
in Open2()
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
H A D | ServiceTest.java | 240 String fullName = innerClass.getName(); in testNoGenericServices() 247 assertTrue(fullName.startsWith(outerName)); in testNoGenericServices() 256 innerClassNames.add(fullName.substring(outerName.length() + 1)); in testNoGenericServices()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
H A D | EOTWriter.java | 65 byte[] fullName = convertUTF16StringToLittleEndian(name.nameAsBytes(3, 1, 0x409, 4)); in convert() 75 familyName.length, styleName.length, versionName.length, fullName.length, fontData.length); in convert() 114 index += writeUTF16String(index, fullName, writableFontData); in convert()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | ServiceTest.java | 235 String fullName = innerClass.getName(); in testNoGenericServices() 242 assertTrue(fullName.startsWith(outerName)); in testNoGenericServices() 251 innerClassNames.add(fullName.substring(outerName.length() + 1)); in testNoGenericServices()
|
/third_party/glslang/glslang/HLSL/ |
H A D | hlslGrammar.cpp | 404 TString *fullName = idToken.string; in acceptDeclaration() local 406 parseContext.getFullNamespaceName(fullName); in acceptDeclaration() 414 parseContext.renameShaderFunction(fullName); in acceptDeclaration() 417 declarator.function = new TFunction(fullName, declaredType); in acceptDeclaration() 490 parseContext.declareTypedef(idToken.loc, *fullName, variableType); in acceptDeclaration() 494 parseContext.declareBlock(idToken.loc, variableType, fullName); in acceptDeclaration() 495 parseContext.declareStructBufferCounter(idToken.loc, variableType, *fullName); in acceptDeclaration() 499 parseContext.growGlobalUniformBlock(idToken.loc, variableType, *fullName); in acceptDeclaration() 505 parseContext.declareVariable(idToken.loc, *fullName, variableType, expressionNode), in acceptDeclaration() 3409 TString* fullName in acceptPostfixExpression() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineImageViewTests.cpp | 357 const std::string fullName = getFormatName(format); in getFormatCaseName() local 359 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 361 return de::toLower(fullName.substr(10)); in getFormatCaseName() 612 const std::string fullName = getComponentSwizzleName(componentSwizzle); in getComponentSwizzleCaseName() local 614 DE_ASSERT(de::beginsWith(fullName, "VK_COMPONENT_SWIZZLE_")); in getComponentSwizzleCaseName() 616 return de::toLower(fullName.substr(21)); in getComponentSwizzleCaseName()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineImageViewTests.cpp | 351 const std::string fullName = getFormatName(format); in getFormatCaseName() local 353 DE_ASSERT(de::beginsWith(fullName, "VK_FORMAT_")); in getFormatCaseName() 355 return de::toLower(fullName.substr(10)); in getFormatCaseName() 608 const std::string fullName = getComponentSwizzleName(componentSwizzle); in getComponentSwizzleCaseName() local 610 DE_ASSERT(de::beginsWith(fullName, "VK_COMPONENT_SWIZZLE_")); in getComponentSwizzleCaseName() 612 return de::toLower(fullName.substr(21)); in getComponentSwizzleCaseName()
|
/third_party/skia/tools/debugger/ |
H A D | JsonWriteBuffer.cpp | 13 SkString fullName = SkStringPrintf("%02d_%s", fCount++, type); in append() local 14 fWriter->appendName(fullName.c_str()); in append()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | VaryingPacking.h | 104 std::string fullName(ShaderType stage) const in fullName() function 176 return packedVarying->fullName(packedVarying->frontVarying.stage); in tfVaryingName()
|
/third_party/skia/third_party/externals/freetype/builds/mac/ |
H A D | ftmac.c | 242 char fullName[256]; in FT_EXPORT_DEF() local 246 ft_strcpy( fullName, famName ); in FT_EXPORT_DEF() 248 ft_strcat( fullName, " Bold" ); in FT_EXPORT_DEF() 250 ft_strcat( fullName, " Italic" ); in FT_EXPORT_DEF() 253 if ( ft_strcmp( fullName, fontName ) == 0 ) in FT_EXPORT_DEF()
|