Searched refs:tagValue (Results 1 – 7 of 7) sorted by relevance
18 public static boolean getBoolean(String tagValue, boolean def) { in getBoolean() argument20 if (tagValue != null) { in getBoolean()21 result = Boolean.valueOf(tagValue); in getBoolean()26 public static int getInt(String tagValue, int def) { in getInt() argument28 if (tagValue != null) { in getInt()29 result = Integer.parseInt(tagValue); in getInt()34 public static String getString(String tagValue, String def) { in getString() argument36 if (tagValue != null) { in getString()37 result = tagValue; in getString()42 public static long getLong(String tagValue, long def) { in getLong() argument[all …]
32 int tagValue = 0; in makeTag() local35 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()
117 int tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local309 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()
120 int tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local312 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()
38 ASN1Encodable readIndef(int tagValue) throws IOException in readIndef() argument43 switch (tagValue) in readIndef()54 … throw new ASN1Exception("unknown BER object encountered: 0x" + Integer.toHexString(tagValue)); in readIndef()
103 protected static boolean hasEncodedTagValue(Object obj, int tagValue) in hasEncodedTagValue() argument105 return (obj instanceof byte[]) && ((byte[])obj)[0] == tagValue; in hasEncodedTagValue()
1134 int32_t tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local1360 tagValue = 0; in TestExtended()1433 if (tagValue == 0) { in TestExtended()1434 tagValue = -1; in TestExtended()1438 tp.expectedBreaks->setElementAt(tagValue, breakIdx); in TestExtended()1447 tagValue = tagValue*10 + u_charDigitValue(c); in TestExtended()