Searched refs:fullName (Results 1 - 25 of 90) sorted by relevance

1234

/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DDescriptorBase.cs41 private readonly string fullName; field in class:Google.Protobuf.Reflection.DescriptorBase
44 internal DescriptorBase(FileDescriptor file, string fullName, int index) argument
47 this.fullName = fullName;
74 get { return fullName; }
H A DPackageDescriptor.cs43 private readonly string fullName; field in class:Google.Protobuf.Reflection.PackageDescriptor
46 internal PackageDescriptor(string name, string fullName, FileDescriptor file) argument
49 this.fullName = fullName;
60 get { return fullName; }
H A DDescriptorPool.cs86 /// <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);
103 dependency.DescriptorPool.descriptorsByName.TryGetValue(fullName, out result);
120 internal void AddPackage(string fullName, FileDescriptor file) argument
122 int dotpos = fullName.LastIndexOf('.');
126 AddPackage(fullName.Substring(0, dotpos), file);
127 name = fullName.Substring(dotpos + 1);
131 name = fullName;
135 if (descriptorsByName.TryGetValue(fullName, ou
[all...]
H A DTypeRegistry.cs57 /// <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) argument
65 fullNameToMessageMap.TryGetValue(fullName, out ret);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncSystemProperty.java59 String fullName = m_arg0.execute(xctxt).str();
60 int indexOfNSSep = fullName.indexOf(':');
73 ? fullName.substring(0, indexOfNSSep) : "";
78 ? fullName : fullName.substring(indexOfNSSep + 1);
88 new Object[]{ fullName }); //"XSL Property not supported: "+fullName);
97 fullName }); //"Don't currently do anything with namespace "+namespace+" in property: "+fullName);
109 new Object[]{ fullName }); //"SecurityExceptio
[all...]
H A DFuncExtFunctionAvailable.java55 String fullName = m_arg0.execute(xctxt).str();
56 int indexOfNSSep = fullName.indexOf(':');
62 methName = fullName;
66 prefix = fullName.substring(0, indexOfNSSep);
70 methName = fullName.substring(indexOfNSSep + 1);
H A DFuncExtElementAvailable.java54 String fullName = m_arg0.execute(xctxt).str();
55 int indexOfNSSep = fullName.indexOf(':');
61 methName = fullName;
65 prefix = fullName.substring(0, indexOfNSSep);
69 methName= fullName.substring(indexOfNSSep + 1);
/external/icu/icu4c/source/common/
H A Dlocid.cpp253 if (baseName != fullName) {
257 /*if fullName is on the heap, we free it*/
258 if (fullName != fullNameBuffer)
260 uprv_free(fullName);
261 fullName = NULL;
266 : UObject(), fullName(fullNameBuffer), baseName(NULL)
277 : UObject(), fullName(fullNameBuffer), baseName(NULL)
287 : UObject(), fullName(fullNameBuffer), baseName(NULL)
421 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
433 if (baseName != fullName) {
[all...]
H A Dlocdispnames.cpp65 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
77 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
105 length=uloc_getDisplayScript(fullName, displayLocale.fullName,
117 length=uloc_getDisplayScript(fullName, displayLocale.fullName,
145 length=uloc_getDisplayCountry(fullName, displayLocale.fullName,
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistry.h105 void addChecker(InitializationFunction fn, StringRef fullName,
111 void addChecker(StringRef fullName, StringRef desc) { argument
114 addChecker(&CheckerRegistry::initializeManager<T>, fullName, desc);
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DExtensionRegistry.java139 public ExtensionInfo findExtensionByName(final String fullName) { argument
140 return findImmutableExtensionByName(fullName);
145 * in the proto namespace. i.e. {@code result.descriptor.fullName()} will
146 * match {@code fullName} if a match is found.
151 public ExtensionInfo findImmutableExtensionByName(final String fullName) { argument
152 return immutableExtensionsByName.get(fullName);
157 * in the proto namespace. i.e. {@code result.descriptor.fullName()} will
158 * match {@code fullName} if a match is found.
163 public ExtensionInfo findMutableExtensionByName(final String fullName) { argument
164 return mutableExtensionsByName.get(fullName);
208 getAllMutableExtensionsByExtendedType(final String fullName) argument
226 getAllImmutableExtensionsByExtendedType(final String fullName) argument
[all...]
H A DDescriptors.java621 return fullName;
711 file.pool.findSymbol(fullName + '.' + name);
736 file.pool.findSymbol(fullName + '.' + name);
751 file.pool.findSymbol(fullName + '.' + name);
761 private final String fullName; field in class:Descriptors.Descriptor
783 this.fullName = fullname;
803 fullName = computeFullName(file, parent, proto.getName());
925 return fullName;
1131 private final String fullName; field in class:Descriptors.FieldDescriptor
1251 fullName
1659 private final String fullName; field in class:Descriptors.EnumDescriptor
1765 private final String fullName; field in class:Descriptors.EnumValueDescriptor
1872 private final String fullName; field in class:Descriptors.ServiceDescriptor
1965 private final String fullName; field in class:Descriptors.MethodDescriptor
2160 findSymbol(final String fullName) argument
2167 findSymbol(final String fullName, final SearchFilter filter) argument
2365 PackageDescriptor(final String name, final String fullName, final FileDescriptor file) argument
2373 private final String fullName; field in class:Descriptors.DescriptorPool.PackageDescriptor
2383 addPackage(final String fullName, final FileDescriptor file) argument
2541 private final String fullName; field in class:Descriptors.OneofDescriptor
[all...]
/external/skia/tests/
H A DOSPathTest.cpp29 // fullName should be "dir<SkOSPath::SEPARATOR>file"
30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str()); local
32 // fullName should be the combined size of dir and file, plus one if
38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize);
40 SkString basename = SkOSPath::Basename(fullName.c_str());
41 SkString dirname = SkOSPath::Dirname(fullName.c_str());
/external/doclava/src/com/google/doclava/
H A DTypeInfo.java153 mFullName = other.fullName();
190 public String fullName() { method in class:TypeInfo
194 return fullName(new HashSet<String>());
203 result += arg.fullName(typeVars);
213 public String fullName(HashSet<String> typeVars) { method in class:TypeInfo
235 String fullName = null;
240 * if (fullName != null) { return fullName; }
242 fullName = mQualifiedTypeName;
244 fullName
[all...]
H A DAnnotationValueInfo.java60 return ((TypeInfo) v).fullName();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DKeyAgreementSpi.java247 String fullName = clazz.getName();
249 return fullName.substring(fullName.lastIndexOf('.') + 1);
/external/mockito/src/test/java/org/mockitousage/constructor/
H A DCreatingMocksWithConstructorTest.java112 String fullName() { method in class:CreatingMocksWithConstructorTest.AbstractThing
120 assertEquals("abstract null", thing.fullName());
127 assertEquals("abstract me", thing.fullName());
/external/skia/src/sksl/
H A DSkSLCPPCodeGenerator.cpp428 const char* fullName = fFullName.c_str(); local
438 this->writef(" const %s& _outer = _proc.cast<%s>();\n", fullName, fullName);
482 this->writef(" const %s& _outer = _proc.cast<%s>();\n", fullName,
483 fullName);
582 const char* fullName = fFullName.c_str(); local
583 this->writef(kFragmentProcessorHeader, fullName);
585 "#if SK_SUPPORT_GPU\n", fullName);
620 fullName, baseName);
625 fullName, fullNam
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dlocid.h749 char* fullName; member in class:Locale
804 return fullName;
/external/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp111 std::string fullName = getPackageFullName(R); local
112 if (!fullName.empty()) {
113 GroupInfo &info = groupInfoByName[fullName];
142 std::string fullName = getCheckerFullName(R); local
143 GroupInfo &info = groupInfoByName[fullName];
/external/mdnsresponder/mDNSWindows/DLLX/
H A DDNSSDService.cpp740 STDMETHODIMP CDNSSDService::RegisterRecord(DNSSDFlags flags, ULONG ifIndex, BSTR fullName, DNSSDRRType rrtype, DNSSDRRClass rrclass, VARIANT rdata, ULONG ttl, IDNSSDEventManager* eventManager, IDNSSDRecord** record) argument
774 ok = BSTRToUTF8( fullName, fullNameUTF8 );
950 STDMETHODIMP CDNSSDService::ReconfirmRecord(DNSSDFlags flags, ULONG ifIndex, BSTR fullName, DNSSDRRType rrtype, DNSSDRRClass rrclass, VARIANT rdata) argument
970 ok = BSTRToUTF8( fullName, fullNameUTF8 );
1562 CComBSTR fullName; local
1576 ok = UTF8ToBSTR( fullNameUTF8, fullName );
1620 eventManager->Fire_ServiceResolved( service, ( DNSSDFlags ) flags, ifIndex, fullName, hostName, ntohs( port ), record );
1748 CComBSTR fullName; local
1756 ok = UTF8ToBSTR( fullNameUTF8, fullName );
1766 eventManager->Fire_QueryRecordAnswered( service, ( DNSSDFlags ) flags, ifIndex, fullName, ( DNSSDRRTyp
[all...]
/external/lzma/CPP/7zip/Archive/
H A DSplitHandler.cpp212 UString fullName; local
213 if (!seqName.GetNextName(fullName))
216 HRESULT result = volumeCallback->GetStream(fullName, &nextStream);
/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientlib.c98 // Note: Need to make sure we don't write more than kDNSServiceMaxDomainName (1009) bytes to fullName
104 char *const fullName,
111 char *fn = fullName;
112 char *const lim = fullName + 1005;
102 DNSServiceConstructFullName( char *const fullName, const char *const service, const char *const regtype, const char *const domain ) argument
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DServiceTest.java241 String fullName = innerClass.getName();
248 assertTrue(fullName.startsWith(outerName));
257 innerClassNames.add(fullName.substring(outerName.length() + 1));
/external/dng_sdk/source/
H A Ddng_xmp_sdk.h67 const char * fullName; member in struct:dng_xmp_namespace

Completed in 1223 milliseconds

1234