HomeSort by relevance Sort by last modified time
    Searched refs:typeName (Results 1 - 25 of 354) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/apkcheck/src/com/android/apkcheck/
TypeUtils.java 105 static String classNameOnly(String typeName) {
106 int start = typeName.lastIndexOf(".");
108 return typeName;
110 return typeName.substring(start+1);
117 static String packageNameOnly(String typeName) {
118 int end = typeName.lastIndexOf(".");
123 return typeName.substring(0, end);
144 public static String ambiguousToBinaryName(String typeName, ApiList apiList) {
163 typeName = stripAngleBrackets(typeName);
    [all...]
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/node/
TypeCastingGenerator.java 53 final String typeName = nodeMetaModel.getTypeName();
57 generateIsType(baseCu, nodeCoid, baseCoid, typeName);
58 generateAsType(baseCu, nodeCoid, baseCoid, typeName);
59 generateToType(nodeCu, baseCu, nodeCoid, baseCoid, typeName);
60 generateIfType(nodeCu, baseCu, nodeCoid, baseCoid, typeName);
63 private void generateAsType(CompilationUnit baseCu, ClassOrInterfaceDeclaration nodeCoid, ClassOrInterfaceDeclaration baseCoid, String typeName) {
64 final MethodDeclaration asTypeBaseMethod = (MethodDeclaration) parseBodyDeclaration(f("public %s as%s() { throw new IllegalStateException(f(\"%%s is not an %s\", this)); }", typeName, typeName, typeName));
65 final MethodDeclaration asTypeNodeMethod = (MethodDeclaration) parseBodyDeclaration(f("@Override public %s as%s() { return this; }", typeName, typeName))
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
CorePackageRenamer.java 41 public String map(String typeName) {
42 return isRenamed(typeName) ? support.renameCoreLibrary(typeName) : typeName;
  /device/generic/opengl-transport/host/commands/emugen/
Parser.h 30 // (e.g. 'const char**'). On success return true and sets |*typeName| to
41 std::string* typeName,
64 std::string* typeName,
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
ErrorMessagesTest.java 27 String typeName = "com.google.common.collect.ImmutableList<java.lang.Boolean>";
28 assertThat(ErrorMessages.stripCommonTypePrefixes(typeName)).isEqualTo("ImmutableList<Boolean>");
  /external/desugar/java/com/google/devtools/common/options/
EnumConverter.java 33 private final String typeName;
42 * @param typeName The intuitive name of your enumeration, for example, the
45 protected EnumConverter(Class<T> enumType, String typeName) {
47 this.typeName = typeName;
60 throw new OptionsParsingException("Not a valid " + typeName + ": '"
BoolOrEnumConverter.java 37 * @param typeName The intuitive name of your enumeration, for example, the
42 protected BoolOrEnumConverter(Class<T> enumType, String typeName, T trueValue, T falseValue) {
43 super(enumType, typeName);
  /external/desugar/java/com/google/devtools/build/android/desugar/io/
CoreLibraryRewriter.java 55 static boolean shouldPrefix(String typeName) {
56 return (typeName.startsWith("java/") || typeName.startsWith("sun/")) && !except(typeName);
59 private static boolean except(String typeName) {
60 if (typeName.startsWith("java/lang/invoke/")) {
64 switch (typeName) {
94 public String unprefix(String typeName) {
95 if (prefix.isEmpty() || !typeName.startsWith(prefix)) {
96 return typeName;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstMethodRef.java 36 public String typeName() {
CstInterfaceMethodRef.java 43 public String typeName() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstMethodRef.java 36 public String typeName() {
CstInterfaceMethodRef.java 43 public String typeName() {
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
ValueContainer.java 39 String typeName();
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ItemType.java 52 private final String typeName;
61 * @param typeName {@code non-null;} name of the type
63 private ItemType(int mapValue, String typeName) {
65 this.typeName = typeName;
68 String human = typeName;
90 return typeName;
Item.java 46 public final String typeName() {
  /dalvik/dx/src/com/android/dx/dex/file/
ItemType.java 54 private final String typeName;
63 * @param typeName {@code non-null;} name of the type
65 private ItemType(int mapValue, String typeName) {
67 this.typeName = typeName;
70 String human = typeName;
92 return typeName;
Item.java 46 public final String typeName() {
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
CurrentApiHelper.java 154 String typeName = ((Element) nodes.item(i)).getAttribute(ATTRIBUTE_TYPE);
155 paramTypes[i] = getClassByName(typeName);
163 private static Class getClassByName(String typeName) throws ClassNotFoundException {
164 // Check if typeName represents an array
166 while (typeName.endsWith("[]")) {
168 typeName = typeName.substring(0, typeName.length() - 2);
172 typeName = typeName.replaceAll("([A-Z].*)\\.", "$1\\$")
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/
Field.java 56 String typeName();
LocalVariable.java 68 String typeName();
  /external/opencensus-java/contrib/agent/src/main/java/io/opencensus/contrib/agent/
AgentBuilderListener.java 53 String typeName,
58 logger.log(Level.WARNING, "Failed to handle " + typeName, throwable);
63 String typeName, ClassLoader classLoader, JavaModule module, boolean loaded) {}
67 String typeName, ClassLoader classLoader, JavaModule module, boolean loaded) {}
  /external/deqp-deps/glslang/glslang/MachineIndependent/
Initialize.h 95 void addSubpassSampling(TSampler, const TString& typeName, int version, EProfile profile);
96 void addQueryFunctions(TSampler, const TString& typeName, int version, EProfile profile);
97 void addImageFunctions(TSampler, const TString& typeName, int version, EProfile profile);
98 void addSamplingFunctions(TSampler, const TString& typeName, int version, EProfile profile);
99 void addGatherFunctions(TSampler, const TString& typeName, int version, EProfile profile);
  /external/skia/tests/
TracingTest.cpp 25 TRACE_EVENT_OBJECT_CREATED_WITH_ID("skia.objects", this->typeName(), this);
28 TRACE_EVENT_OBJECT_DELETED_WITH_ID("skia.objects", this->typeName(), this);
42 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID("skia.objects", this->typeName(), this,
46 virtual const char* typeName() { return "TracingShape"; }
52 const char* typeName() override { return "TracingCircle"; }
63 const char* typeName() override { return "TracingRect"; }
  /external/skqp/tests/
TracingTest.cpp 25 TRACE_EVENT_OBJECT_CREATED_WITH_ID("skia.objects", this->typeName(), this);
28 TRACE_EVENT_OBJECT_DELETED_WITH_ID("skia.objects", this->typeName(), this);
42 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID("skia.objects", this->typeName(), this,
46 virtual const char* typeName() { return "TracingShape"; }
52 const char* typeName() override { return "TracingCircle"; }
63 const char* typeName() override { return "TracingRect"; }
  /external/skia/src/sksl/ast/
SkSLASTEnum.h 15 ASTEnum(int offset, StringFragment typeName, std::vector<StringFragment> names,
18 , fTypeName(typeName)

Completed in 609 milliseconds

1 2 3 4 5 6 7 8 91011>>