Home
last modified time | relevance | path

Searched refs:tagValue (Results 1 – 7 of 7) 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.java123 int tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local
274 tagValue = 0; in TestExtended()
352 if (tagValue == 0) { in TestExtended()
353 tagValue = -1; in TestExtended()
356 tp.expectedBreaks[breakIdx] = tagValue; in TestExtended()
363 tagValue = tagValue*10 + UCharacter.digit(c); in TestExtended()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestExtended.java122 int tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local
273 tagValue = 0; in TestExtended()
351 if (tagValue == 0) { in TestExtended()
352 tagValue = -1; in TestExtended()
355 tp.expectedBreaks[breakIdx] = tagValue; in TestExtended()
362 tagValue = tagValue*10 + UCharacter.digit(c); in TestExtended()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1Object.java103 protected static boolean hasEncodedTagValue(Object obj, int tagValue) in hasEncodedTagValue() argument
105 return (obj instanceof byte[]) && ((byte[])obj)[0] == tagValue; in hasEncodedTagValue()
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()
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp1188 int32_t tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local
1376 tagValue = 0; in TestExtended()
1449 if (tagValue == 0) { in TestExtended()
1450 tagValue = -1; in TestExtended()
1454 tp.expectedBreaks->setElementAt(tagValue, breakIdx); in TestExtended()
1463 tagValue = tagValue*10 + u_charDigitValue(c); in TestExtended()