HomeSort by relevance Sort by last modified time
    Searched full:tagvalue (Results 1 - 25 of 45) sorted by null

1 2

  /external/testng/src/main/java/org/testng/internal/annotations/
Converter.java 18 public static boolean getBoolean(String tagValue, boolean def) {
20 if (tagValue != null) {
21 result = Boolean.valueOf(tagValue);
26 public static int getInt(String tagValue, int def) {
28 if (tagValue != null) {
29 result = Integer.parseInt(tagValue);
34 public static String getString(String tagValue, String def) {
36 if (tagValue != null) {
37 result = tagValue;
42 public static long getLong(String tagValue, long def)
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
TagUtilities.java 32 int tagValue = 0;
35 tagValue <<= 8;
36 tagValue += (int) ((i < tag.length()? tag.charAt(i) : ' ') & 0xFF);
39 return "0x" + Utility.hex(tagValue, 8);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Object.java 100 * @param tagValue tag value to check for.
103 protected static boolean hasEncodedTagValue(Object obj, int tagValue)
105 return (obj instanceof byte[]) && ((byte[])obj)[0] == tagValue;
ASN1StreamParser.java 38 ASN1Encodable readIndef(int tagValue) throws IOException
43 switch (tagValue)
54 throw new ASN1Exception("unknown BER object encountered: 0x" + Integer.toHexString(tagValue));
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbol.h 33 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
34 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDBSymbol.h 51 #define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue) \
52 static const PDB_SymType Tag = TagValue; \
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITestExtended.java 120 int tagValue = 0; // The numeric value of a <nnn> tag.
312 tagValue = 0;
390 if (tagValue == 0) {
391 tagValue = -1;
394 tp.expectedBreaks[breakIdx] = tagValue;
401 tagValue = tagValue*10 + UCharacter.digit(c);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITestExtended.java 117 int tagValue = 0; // The numeric value of a <nnn> tag.
309 tagValue = 0;
387 if (tagValue == 0) {
388 tagValue = -1;
391 tp.expectedBreaks[breakIdx] = tagValue;
398 tagValue = tagValue*10 + UCharacter.digit(c);
  /prebuilts/tools/common/m2/repository/io/opentracing/opentracing-api/0.13.0/
opentracing-api-0.13.0.jar 
  /cts/tests/tests/media/src/android/media/cts/
ExifInterfaceTest.java 221 String tagValue = exifInterface.getAttribute(tagKey);
222 Log.v(TAG, fileName + " Key{" + tagKey + "} = '" + tagValue + "'");
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ExifInterfaceTest.java 235 String tagValue = exifInterface.getAttribute(tagKey);
236 Log.v(TAG, fileName + " Key{" + tagKey + "} = '" + tagValue + "'");
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/doc/
pprof.md 146 `tagName:tagValue` string matching specified regexp. In the future, this
147 will change to accept sample iff it has any string tag with `tagValue` string

Completed in 725 milliseconds

1 2