Searched refs:tagValue (Results 1 – 8 of 8) sorted by relevance
/external/testng/src/main/java/org/testng/internal/annotations/ |
D | Converter.java | 18 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/ |
D | TagUtilities.java | 30 int tagValue = 0; in makeTag() local 33 tagValue <<= 8; in makeTag() 34 tagValue += (int) ((i < tag.length()? tag.charAt(i) : ' ') & 0xFF); in makeTag() 37 return "0x" + Utility.hex(tagValue, 8); in makeTag()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITestExtended.java | 123 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/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBITestExtended.java | 127 int tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local 278 tagValue = 0; in TestExtended() 356 if (tagValue == 0) { in TestExtended() 357 tagValue = -1; in TestExtended() 360 tp.expectedBreaks[breakIdx] = tagValue; in TestExtended() 367 tagValue = tagValue*10 + UCharacter.digit(c); in TestExtended()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
D | ASN1Object.java | 103 protected static boolean hasEncodedTagValue(Object obj, int tagValue) in hasEncodedTagValue() argument 105 return (obj instanceof byte[]) && ((byte[])obj)[0] == tagValue; in hasEncodedTagValue()
|
D | ASN1StreamParser.java | 38 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/ |
D | rbbitst.cpp | 1238 int32_t tagValue = 0; // The numeric value of a <nnn> tag. in TestExtended() local 1426 tagValue = 0; in TestExtended() 1499 if (tagValue == 0) { in TestExtended() 1500 tagValue = -1; in TestExtended() 1504 tp.expectedBreaks->setElementAt(tagValue, breakIdx); in TestExtended() 1513 tagValue = tagValue*10 + u_charDigitValue(c); in TestExtended()
|
/external/v8/test/cctest/ |
D | test-api.cc | 12960 #define TEST_TOSTRINGTAG(type, tagValue, expected) \ in TEST() argument 12964 ->Set(context.local(), toStringTag, tagValue) \ in TEST() 12974 #define TEST_TOSTRINGTAG_TYPES(tagValue) \ in TEST() argument 12975 TEST_TOSTRINGTAG(Array, tagValue, Array); \ in TEST() 12976 TEST_TOSTRINGTAG(Object, tagValue, Object); \ in TEST() 12977 TEST_TOSTRINGTAG(Function, tagValue, Function); \ in TEST() 12978 TEST_TOSTRINGTAG(Date, tagValue, Date); \ in TEST() 12979 TEST_TOSTRINGTAG(RegExp, tagValue, RegExp); \ in TEST() 12980 TEST_TOSTRINGTAG(Error, tagValue, Error); \ in TEST()
|