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

1 2 34 5 6 7 8 91011>>

  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/solver/query/result/
TiledDataSourceQueryResultBinder.kt 24 import android.arch.persistence.room.ext.typeName
30 import com.squareup.javapoet.TypeName
37 val itemTypeName : TypeName = listAdapter?.rowAdapter?.out?.typeName() ?: TypeName.OBJECT
38 val typeName : ParameterizedTypeName = ParameterizedTypeName.get(
45 superclass(typeName)
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsMockResources.java 30 public void addResource(int resId, String packageName, String typeName, String entryName) {
32 mTypes.put(resId, typeName);
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 106 * @param typeName the type name to convert
107 * @return the type constant that corresponds to {@code typeName},
110 static int interpretType(String typeName) {
111 if ("unset".equals(typeName)) {
113 } else if ("boolean".equals(typeName)) {
115 } else if ("byte".equals(typeName)) {
117 } else if ("short".equals(typeName)) {
119 } else if ("int".equals(typeName)) {
121 } else if ("long".equals(typeName)) {
123 } else if ("float".equals(typeName)) {
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/writer/
FieldReadWriteWriter.kt 22 import android.arch.persistence.room.ext.typeName
31 import com.squareup.javapoet.TypeName
136 private fun construct(outVar : String, constructor : Constructor?, typeName : TypeName,
142 addStatement("$L = new $T()", outVar, typeName)
159 addStatement("$L = new $T($L)", outVar, typeName, args)
187 typeName = fieldParent.field.typeName,
194 typeName = outPojo.typeName,
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/config/
Configuration.java 131 * @param typeName the config object type name
134 static boolean isBuiltInObjType(String typeName) {
135 return getObjTypeMap().containsKey(typeName);
179 * @param typeName the config object type name
182 static boolean doesBuiltInObjSupportMultiDevice(String typeName) {
183 return getMultiDeviceSupportedTag().contains(typeName);
409 public List<?> getConfigurationObjectList(String typeName) {
410 return mConfigMap.get(typeName);
441 public Object getConfigurationObject(String typeName) {
442 List<?> configObjects = getConfigurationObjectList(typeName);
    [all...]
  /frameworks/av/media/libstagefright/
OmxInfoBuilder.cpp 227 const auto& typeName = role.type;
277 info->addMime(typeName.c_str());
279 node, typeName.c_str(), isEncoder, caps.get()) != OK) {
281 typeName.c_str(), nodeName.c_str());
282 info->removeMime(typeName.c_str());
308 info->addMime(typeName.c_str());
310 *node, typeName.c_str(), isEncoder, caps.get()) != OK) {
313 typeName.c_str(), nodeName.c_str());
314 info->removeMime(typeName.c_str());
  /external/doclava/src/com/google/doclava/
ParameterInfo.java 27 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg,
30 mTypeName = typeName;
54 String typeName() {
  /frameworks/av/services/audiopolicy/engineconfigurable/wrapper/include/
ParameterManagerWrapper.h 148 * @param[in] typeName of the PFW criterion type.
151 void addCriterionType(const std::string &typeName, bool isInclusive);
156 * @param[in] typeName criterion type name to which this value pair is added to.
160 void addCriterionTypeValuePair(const std::string &typeName, uint32_t numeric,
167 * @param[in] typeName criterion type name to which this criterion is associated to.
171 const std::string &typeName,
234 template <typename T>
246 template <typename T>
283 template <typename T>
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java 73 public String typeName() {
CstByte.java 82 public String typeName() {
CstChar.java 82 public String typeName() {
CstDouble.java 73 public String typeName() {
CstFieldRef.java 52 public String typeName() {
CstFloat.java 74 public String typeName() {
CstShort.java 83 public String typeName() {
CstString.java 86 public String typeName() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstAnnotation.java 73 public String typeName() {
CstByte.java 82 public String typeName() {
CstCallSiteRef.java 57 public String typeName() {
CstChar.java 82 public String typeName() {
CstDouble.java 73 public String typeName() {
CstFieldRef.java 52 public String typeName() {
CstFloat.java 74 public String typeName() {
CstShort.java 83 public String typeName() {
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/
UpdateMethodProcessor.kt 22 import android.arch.persistence.room.ext.typeName
24 import com.squareup.javapoet.TypeName
42 val returnTypeName = delegate.extractReturnType().typeName()
44 returnTypeName == TypeName.VOID || returnTypeName == TypeName.INT,
59 returnCount = returnTypeName == TypeName.INT,

Completed in 858 milliseconds

1 2 34 5 6 7 8 91011>>