HomeSort by relevance Sort by last modified time
    Searched refs:typeName (Results 126 - 150 of 1268) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MessagePatternUtil.java 241 return typeName;
268 sb.append(',').append(typeName);
290 private String typeName;
502 node.typeName = pattern.getSubstring(pattern.getPart(start++));
509 node.typeName = "choice";
513 node.typeName = "plural";
517 node.typeName = "select";
521 node.typeName = "selectordinal";
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
FieldLocator.java 39 public FieldLocator(String packageName, String typeName, String fieldName) {
40 this(new TypeLocator(packageName, typeName), fieldName);
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 276 * @param typeName the type name of the enum constant.
279 public void enumConstValue(String typeName, String constName)
282 enumConstValue(pool.addUtf8Info(typeName),
  /libcore/ojluni/src/main/java/java/sql/
Connection.java     [all...]
  /system/tools/hidl/
FmqType.cpp 30 std::string FmqType::typeName() const {
31 return mName + " of " + mElementType->typeName();
  /tools/tradefederation/core/src/com/android/tradefed/config/
IGlobalConfiguration.java 92 * @param typeName the unique name of the config object type.
96 public void setConfigurationObjectList(String typeName, List<?> configList)
249 * @param typeName the unique type of the configuration object
252 public Object getConfigurationObject(String typeName);
  /art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java 142 private int findFieldIdInsertionPoint(String className, String typeName, String fieldName) {
144 int typeIdx = findTypeId(typeName);
404 private int createFieldId(String className, String typeName, String fieldName) {
413 int typeIdx = findOrCreateTypeId(typeName);
428 int newFieldIdIdx = findFieldIdInsertionPoint(className, typeName, fieldName);
445 className, typeName, fieldName, newFieldIdIdx));
455 private int findFieldId(String className, String typeName, String fieldName) {
460 int typeIdx = findTypeId(typeName);
485 public int findOrCreateFieldId(String className, String typeName, String fieldName) {
486 int fieldIdx = findFieldId(className, typeName, fieldName)
    [all...]
  /frameworks/rs/
rsg_generator.c 65 fprintf(f, "%s", vt->typeName);
171 if (api->sync || api->ret.typeName[0]) {
221 if (api->ret.typeName[0]) {
255 if (api->ret.typeName[0]) {
270 if (!api->ret.typeName[0]) {
320 if (api->ret.typeName[0] || api->sync) {
329 } else if (api->ret.typeName[0]) {
353 if (api->ret.typeName[0]) {
411 if (api->ret.typeName[0]) {
423 vt->name, vt->typeName, vt->name)
    [all...]
spec.l 33 sprintf(currType->typeName, "%s", "size_t");
167 memcpy(currType->typeName, yytext, yyleng);
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/writer/
DaoWriter.kt 24 import android.arch.persistence.room.ext.typeName
40 import com.squareup.javapoet.TypeName
56 : ClassWriter(dao.typeName) {
64 private fun typeNameToFieldName(typeName: TypeName?): String {
65 if (typeName is ClassName) {
66 return typeName.simpleName()
68 return typeName.toString().replace('.', '_').stripNonJava()
94 addSuperinterface(dao.typeName)
96 superclass(dao.typeName)
    [all...]
EntityCursorConverterWriter.kt 32 import com.squareup.javapoet.TypeName
37 "entityCursorConverter_${entity.typeName.toString().stripNonJava()}") {
48 returns(entity.typeName)
66 scope.builder().addStatement("final $T $L", entity.typeName, entityVar)
71 TypeName.INT, indexVar, cursorParam, it.columnName)
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedValueImpl.java 165 String typeName = stringPool[typeIds[fieldIdItem.type_idx]];
166 return typeName + "!" + constantName;
190 String typeName = stringPool[typeIds[fieldIdItem.type_idx]];
191 return typeName + "!" + fieldName;
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstInteger.java 99 public String typeName() {
CstMemberRef.java 91 return typeName() + '{' + toHuman() + '}';
CstNat.java 98 public String typeName() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstArray.java 73 public String typeName() {
CstCallSite.java 95 public String typeName() {
CstInteger.java 99 public String typeName() {
CstMemberRef.java 91 return typeName() + '{' + toHuman() + '}';
CstMethodHandle.java 189 public String typeName() {
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 320 static String classNameOnly(String typeName) {
321 String dotted = descriptorToDot(typeName);
335 static String packageNameOnly(String typeName) {
336 String dotted = descriptorToDot(typeName);
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
SubclassBytecodeGenerator.java 113 String typeName = type.getName();
117 typeName = "codegen." + typeName;
119 return String.format("%s$%s$%d", typeName, "MockitoMock", Math.abs(random.nextInt()));
  /frameworks/base/core/java/android/net/
NetworkInfo.java 128 public NetworkInfo(int type, int subtype, String typeName, String subtypeName) {
135 mTypeName = typeName;
442 String typeName = in.readString();
444 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/solver/binderprovider/
RxCallableQueryResultBinderProvider.kt 20 import android.arch.persistence.room.ext.typeName
50 val match = erasure.typeName() == rxType.className
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/vo/
RelationCollector.kt 24 import android.arch.persistence.room.ext.typeName
41 import com.squareup.javapoet.TypeName
54 val keyTypeName: TypeName,
145 val collectionTypeName = if (relation.field.typeName is ParameterizedTypeName) {
146 val paramType = relation.field.typeName as ParameterizedTypeName
149 relation.pojo.typeName)
152 relation.pojo.typeName)
155 relation.pojo.typeName)
159 relation.pojo.typeName)
249 private fun keyTypeFor(context : Context, affinity: SQLTypeAffinity): TypeName {
    [all...]

Completed in 414 milliseconds

1 2 3 4 56 7 8 91011>>