Home
last modified time | relevance | path

Searched refs:tagValue (Results 1 – 14 of 14) sorted by relevance

/external/testng/src/main/java/org/testng/internal/annotations/
DConverter.java18 public static boolean getBoolean(String tagValue, boolean def) { in getBoolean() argument
20 if (tagValue != null) { in getBoolean()
21 result = Boolean.valueOf(tagValue); in getBoolean()
26 public static int getInt(String tagValue, int def) { in getInt() argument
28 if (tagValue != null) { in getInt()
29 result = Integer.parseInt(tagValue); in getInt()
34 public static String getString(String tagValue, String def) { in getString() argument
36 if (tagValue != null) { in getString()
37 result = tagValue; in getString()
42 public static long getLong(String tagValue, long def) { in getLong() argument
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DTagUtilities.java32 int tagValue = 0; in makeTag() local
35 tagValue <<= 8; in makeTag()
36 tagValue += (int) ((i < tag.length()? tag.charAt(i) : ' ') & 0xFF); in makeTag()
39 return "0x" + Utility.hex(tagValue, 8); in makeTag()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestExtended.java120 int tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local
312 tagValue = 0; in TestExtended()
390 if (tagValue == 0) { in TestExtended()
391 tagValue = -1; in TestExtended()
394 tp.expectedBreaks[breakIdx] = tagValue; in TestExtended()
401 tagValue = tagValue*10 + UCharacter.digit(c); in TestExtended()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestExtended.java117 int tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local
309 tagValue = 0; in TestExtended()
387 if (tagValue == 0) { in TestExtended()
388 tagValue = -1; in TestExtended()
391 tp.expectedBreaks[breakIdx] = tagValue; in TestExtended()
398 tagValue = tagValue*10 + UCharacter.digit(c); in TestExtended()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMetricUtils.java82 for (/*@Nullable*/ TagValue tagValue : tagValues) { in tagValuesToLabelValues()
83 labelValues.add(LabelValue.create(tagValue == null ? null : tagValue.asString())); in tagValuesToLabelValues()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1StreamParser.java38 ASN1Encodable readIndef(int tagValue) throws IOException in readIndef() argument
43 switch (tagValue) in readIndef()
54 … throw new ASN1Exception("unknown BER object encountered: 0x" + Integer.toHexString(tagValue)); in readIndef()
DASN1Object.java103 protected static boolean hasEncodedTagValue(Object obj, int tagValue) in hasEncodedTagValue() argument
105 return (obj instanceof byte[]) && ((byte[])obj)[0] == tagValue; in hasEncodedTagValue()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DASN1StreamParser.java40 ASN1Encodable readIndef(int tagValue) throws IOException in readIndef() argument
45 switch (tagValue) in readIndef()
56 … throw new ASN1Exception("unknown BER object encountered: 0x" + Integer.toHexString(tagValue)); in readIndef()
DASN1Object.java112 protected static boolean hasEncodedTagValue(Object obj, int tagValue) in hasEncodedTagValue() argument
114 return (obj instanceof byte[]) && ((byte[])obj)[0] == tagValue; in hasEncodedTagValue()
/external/opencensus-java/contrib/zpages/src/main/java/io/opencensus/contrib/zpages/
DRpczZPageHandler.java353 TagValue tagValue; in getStatsSnapshots() local
356 tagValue = tagValues.get(0); in getStatsSnapshots()
358 tagValue = tagValues.get(1); in getStatsSnapshots()
360 String method = tagValue == null ? "" : tagValue.asString(); in getStatsSnapshots()
DStatszZPageHandler.java452 for (/*@Nullable*/ TagValue tagValue : entry.getKey()) { in emitViewDataRow()
453 String tagValueStr = tagValue == null ? "" : tagValue.asString(); in emitViewDataRow()
/external/opencensus-java/exporters/stats/prometheus/src/main/java/io/opencensus/exporter/stats/prometheus/
DPrometheusExportUtils.java165 for (TagValue tagValue : tagValues) {
166 String labelValue = tagValue == null ? "" : tagValue.asString();
/external/opencensus-java/contrib/zpages/src/test/java/io/opencensus/contrib/zpages/
DStatszZPageHandlerTest.java241 for (TagValue tagValue : tagValues) { in assertContainsViewData()
242 String tagValueStr = tagValue == null ? "" : tagValue.asString(); in assertContainsViewData()
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp736 int32_t tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local
962 tagValue = 0; in TestExtended()
1035 if (tagValue == 0) { in TestExtended()
1036 tagValue = -1; in TestExtended()
1040 tp.expectedBreaks->setElementAt(tagValue, breakIdx); in TestExtended()
1049 tagValue = tagValue*10 + u_charDigitValue(c); in TestExtended()