Home
last modified time | relevance | path

Searched refs:charType (Results 1 – 20 of 20) sorted by relevance

/external/lzma/CPP/Common/
DStringToInt.cpp11 #define CONVERT_STRING_TO_UINT_FUNC(uintType, charType, charTypeUnsigned) \ argument
12 uintType ConvertStringTo ## uintType(const charType *s, const charType **end) throw() { \
DIntToString.cpp9 #define CONVERT_INT_TO_STR(charType, tempSize) \ argument
12 *s++ = (charType)('0' + (unsigned)val); \
/external/golang-protobuf/internal/encoding/text/
Dencode_test.go518 charType := "UTF-8"
520 charType = "ASCII"
525 t.Fatalf("[%s] NewEncoder returned error: %v", charType, err)
530 t.Errorf("[%s] WriteString(%q)\n<got>\n%v\n<want>\n%v\n", charType, in, got, want)
/external/javassist/src/main/javassist/
DCtClass.java99 public static CtClass charType; field in CtClass
154 charType = new CtPrimitiveType("char", 'C', "java.lang.Character",
157 primitiveTypes[1] = charType;
/external/lzma/C/
DAlloc.c26 #define CONVERT_INT_TO_STR(charType, tempSize) \ argument
29 *s++ = (charType)('0' + (unsigned)val); \
/external/javassist/src/main/javassist/bytecode/analysis/
DType.java53 public static final Type CHAR = new Type(CtClass.charType);
106 prims.put(CtClass.charType, CHAR); in prims.put() argument
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
DPrimitiveType.java57 public static PrimitiveType charType() { in charType() method in PrimitiveType
/external/clang/utils/ABITest/
DABITestGen.py517 charType = BuiltinType('char',1)
523 sbtg = FixedTypeGenerator([charType, intType, floatType, doubleType])
549 type = { 'i8' : charType,
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotation.java133 else if (type == CtClass.charType) in createMemberValue()
/external/javassist/src/main/javassist/expr/
DNewArray.java121 return CtClass.charType; in getPrimitiveType()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUCharacterName.java1373 int charType = getType(result); in getExtendedChar() local
1378 if (charType == i) { in getExtendedChar()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUCharacterName.java1374 int charType = getType(result); in getExtendedChar() local
1379 if (charType == i) { in getExtendedChar()
/external/icu/icu4c/source/i18n/
Dplurrule.cpp1382 type = charType(ch); in getNextToken()
1419 type = charType(ch); in getNextToken()
1427 type = charType(ch); in getNextToken()
1460 PluralRuleParser::charType(UChar ch) { in charType() function in PluralRuleParser
Dplurrule_impl.h167 static tokenType charType(UChar ch);
/external/javassist/src/main/javassist/bytecode/
DBytecode.java742 if (type == CtClass.booleanType || type == CtClass.charType in addLoad()
775 if (type == CtClass.booleanType || type == CtClass.charType in addStore()
DDescriptor.java582 type = CtClass.charType; in toPrimitiveClass()
/external/icu/libicu/cts_headers/
Dplurrule_impl.h167 static tokenType charType(UChar ch);
/external/bcc/src/cc/vendor/
Dtinyformat.hpp342 #define TINYFORMAT_DEFINE_FORMATVALUE_CHAR(charType) \ argument
344 const char* fmtEnd, int /**/, charType value) \
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
DLzmaSpec.cpp578 #define CONVERT_INT_TO_STR(charType, tempSize) \ argument
/external/javassist/src/test/javassist/
DJvstTest3.java773 CtField fc = new CtField(CtClass.charType, "c", cc); in testStaticFinalField()