Home
last modified time | relevance | path

Searched refs:subType (Results 1 – 25 of 25) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/util/
DMeasureUnit.java60 protected final String subType; field in MeasureUnit
68 protected MeasureUnit(String type, String subType) { in MeasureUnit() argument
70 this.subType = subType; in MeasureUnit()
85 return subType; in getSubtype()
95 return 31 * type.hashCode() + subType.hashCode(); in hashCode()
110 return type.equals(c.type) && subType.equals(c.subType); in equals()
118 return type + "-" + subType; in toString()
168 public static MeasureUnit internalGetInstance(String type, String subType) { in internalGetInstance() argument
169 if (type == null || subType == null) { in internalGetInstance()
173 if (!ASCII.containsAll(type) || !ASCII_HYPHEN_DIGITS.containsAll(subType)) { in internalGetInstance()
[all …]
DCurrency.java421 return subType; in getCurrencyCode()
438 UResourceBundle numCode = codeMap.get(subType); in getNumericCode()
522 return nameStyle == SYMBOL_NAME ? names.getSymbol(subType) : names.getName(subType); in getName()
569 return names.getPluralName(subType, pluralCount); in getName()
759 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getDefaultFractionDigits()
781 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getRoundingIncrement()
807 return subType; in toString()
940 return new MeasureUnitProxy(type, subType); in writeReplace()
DTimeUnit.java40 return new MeasureUnitProxy(type, subType); in writeReplace()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DMeasureUnit.java58 protected final String subType; field in MeasureUnit
65 protected MeasureUnit(String type, String subType) { in MeasureUnit() argument
67 this.subType = subType; in MeasureUnit()
86 return subType; in getSubtype()
98 return 31 * type.hashCode() + subType.hashCode(); in hashCode()
115 return type.equals(c.type) && subType.equals(c.subType); in equals()
125 return type + "-" + subType; in toString()
179 public static MeasureUnit internalGetInstance(String type, String subType) { in internalGetInstance() argument
180 if (type == null || subType == null) { in internalGetInstance()
184 if (!ASCII.containsAll(type) || !ASCII_HYPHEN_DIGITS.containsAll(subType)) { in internalGetInstance()
[all …]
DCurrency.java438 return subType; in getCurrencyCode()
456 UResourceBundle numCode = codeMap.get(subType); in getNumericCode()
545 return nameStyle == SYMBOL_NAME ? names.getSymbol(subType) : names.getName(subType); in getName()
594 return names.getPluralName(subType, pluralCount); in getName()
787 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getDefaultFractionDigits()
811 CurrencyDigits digits = info.currencyDigits(subType, Usage); in getRoundingIncrement()
838 return subType; in toString()
974 return new MeasureUnitProxy(type, subType); in writeReplace()
DTimeUnit.java42 return new MeasureUnitProxy(type, subType); in writeReplace()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowNetworkInfo.java31 …blic static NetworkInfo newInstance(NetworkInfo.DetailedState detailedState, int type, int subType, in newInstance() argument
37 info.setSubType(subType); in newInstance()
110 public void setSubType(int subType) { in setSubType() argument
111 this.connectionSubType = subType; in setSubType()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DContentTypeParser.java74 Token subType = lexer.getNextToken(); in parse() local
76 contentType.setContentSubType(subType.getTokenValue()); in parse()
/external/opencv3/modules/videoio/src/cap_winrt/
DMediaStreamSink.cpp361 GUID subType; in _IsMediaTypeSupported() local
363 SUCCEEDED(mt->GetGUID(MF_MT_SUBTYPE, &subType)) && in _IsMediaTypeSupported()
365 (subType == _subType)) in _IsMediaTypeSupported()
/external/deqp/modules/gles31/functional/
Des31fUniformLocationTests.cpp327 const glu::VarType subType = glu::getVarType(uniformInfo.type, subTypeIter.getPath()); in genShaderSources() local
328 const glu::DataType scalarType = glu::getDataTypeScalarType(subType.getBasicType()); in genShaderSources()
348 << getFirstComponentName(subType) << "), " << expectValue << ");\n"; in genShaderSources()
352 << getFirstComponentName(subType) << "), " << expectValue << ");\n"; in genShaderSources()
/external/nist-sip/java/gov/nist/javax/sip/message/
DSIPMessage.java1213 public void setMessageContent(String type, String subType, String messageContent) { in setMessageContent() argument
1216 ContentType ct = new ContentType(type, subType); in setMessageContent()
1275 public void setMessageContent(String type, String subType, byte[] messageContent) { in setMessageContent() argument
1276 ContentType ct = new ContentType(type, subType); in setMessageContent()
/external/webrtc/webrtc/modules/rtp_rtcp/include/
Drtp_rtcp.h465 virtual int32_t SetRTCPApplicationSpecificData(uint8_t subType,
/external/webrtc/webrtc/modules/rtp_rtcp/mocks/
Dmock_rtp_rtcp.h182 int32_t(const uint8_t subType,
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_sender.h138 int32_t SetApplicationSpecificData(uint8_t subType,
Drtcp_sender.cc962 int32_t RTCPSender::SetApplicationSpecificData(uint8_t subType, in SetApplicationSpecificData() argument
973 app_sub_type_ = subType; in SetApplicationSpecificData()
/external/llvm/lib/Target/
DREADME.txt1643 int test1(int mainType, int subType) {
1645 subType = 4;
1647 subType = 6;
1649 subType = 9;
1650 return subType;
1653 int test2(int mainType, int subType) {
1655 subType = 4;
1657 subType = 6;
1659 subType = 9;
1660 return subType;
/external/deqp/modules/gles3/functional/
Des3fTransformFeedbackTests.cpp392 glu::VarType subType = glu::getVarType(type, vecIter.getPath()); in genShaderSources() local
395 DE_ASSERT(subType.isBasicType() && glu::isDataTypeScalarOrVector(subType.getBasicType())); in genShaderSources()
401 int scalarSize = glu::getDataTypeScalarSize(subType.getBasicType()); in genShaderSources()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.cpp182 DIType *subType = Ty; in getType() local
186 subType = resolve(cast<DIDerivedType>(Ty)->getBaseType()); in getType()
188 auto Elements = cast<DICompositeType>(subType)->getElements(); in getType()
/external/webrtc/webrtc/voice_engine/
Dchannel.h346 int SendApplicationDefinedRTCPPacket(unsigned char subType,
Dchannel.cc3080 Channel::SendApplicationDefinedRTCPPacket(unsigned char subType, in SendApplicationDefinedRTCPPacket() argument
3118 subType, in SendApplicationDefinedRTCPPacket()
/external/opencv3/modules/videoio/src/
Dcap_msmf.cpp2527 String subType((*i).pMF_MT_SUBTYPEName); in buildLibraryofTypes() local
2528 vectorNum VN = STM[subType]; in buildLibraryofTypes()
2530 STM[subType] = VN; in buildLibraryofTypes()
/external/icu/icu4j/tools/build/
Dicu4j54.api3.gz
Dicu4j53.api3.gz12;ICU4J 53.1.0;; 2ST@3.6;PB;NS;NF; ...
Dicu4j56.api3.gz
Dicu4j55.api3.gz