Searched defs:typeName (Results 1 - 25 of 133) sorted by relevance

123456

/external/desugar/java/com/google/devtools/common/options/
H A DBoolOrEnumConverter.java37 * @param typeName The intuitive name of your enumeration, for example, the
42 protected BoolOrEnumConverter(Class<T> enumType, String typeName, T trueValue, T falseValue) { argument
43 super(enumType, typeName);
H A DEnumConverter.java33 private final String typeName; field in class:EnumConverter
42 * @param typeName The intuitive name of your enumeration, for example, the
45 protected EnumConverter(Class<T> enumType, String typeName) { argument
47 this.typeName = typeName;
60 throw new OptionsParsingException("Not a valid " + typeName + ": '"
/external/skia/src/sksl/ast/
H A DSkSLASTInterfaceBlock.h28 SkString typeName,
34 , fTypeName(std::move(typeName))
26 ASTInterfaceBlock(Position position, Modifiers modifiers, SkString typeName, std::vector<std::unique_ptr<ASTVarDeclarations>> declarations, SkString instanceName, std::vector<std::unique_ptr<ASTExpression>> sizes) argument
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
H A DEnumConstantLocator.java38 public EnumConstantLocator(String packageName, String typeName, String constantName) { argument
39 this(new TypeLocator(packageName, typeName), constantName);
H A DFieldLocator.java39 public FieldLocator(String packageName, String typeName, String fieldName) { argument
40 this(new TypeLocator(packageName, typeName), fieldName);
H A DTypeLocator.java55 public TypeLocator(TypeName typeName) { argument
56 this(typeName.packageName(), typeName.className());
/external/skia/src/sksl/ir/
H A DSkSLInterfaceBlock.h28 InterfaceBlock(Position position, const Variable& var, SkString typeName, SkString instanceName, argument
33 , fTypeName(std::move(typeName))
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DCoreLibraryRewriter.java54 private static boolean shouldPrefix(String typeName) { argument
55 return (typeName.startsWith("java/") || typeName.startsWith("sun/")) && !except(typeName);
58 private static boolean except(String typeName) { argument
59 if (typeName.startsWith("java/lang/invoke/")) {
63 switch (typeName) {
89 public String prefix(String typeName) { argument
90 if (prefix.length() > 0 && shouldPrefix(typeName)) {
91 return prefix + typeName;
97 unprefix(String typeName) argument
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotation.java80 * @param typeName the name of the annotation interface type.
85 public Annotation(String typeName, ConstPool cp) { argument
86 this(cp.addUtf8Info(Descriptor.of(typeName)), cp);
306 String typeName = pool.getUtf8Info(typeIndex);
308 writer.annotation(typeName, 0);
312 writer.annotation(typeName, members.size());
H A DAnnotationsWriter.java276 * @param typeName the type name of the enum constant.
279 public void enumConstValue(String typeName, String constName) argument
282 enumConstValue(pool.addUtf8Info(typeName),
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtokens.py250 typeName = property(lambda s: s.getTypeName()) variable in class:CommonToken
307 self.typeName, channelStr,
/external/autotest/frontend/client/src/autotest/tko/
H A DParameterizedField.java63 public static ParameterizedField newInstance(String typeName, String value) { argument
64 ParameterizedField prototype = getPrototype(typeName);
/external/deqp/modules/glshared/
H A DglsShaderConstExprTests.cpp141 string typeName = glu::getDataTypeName((glu::DataType)(inType + compCount)); // results in float, vec2, vec3, vec4 progression (same for other primitive types) local
145 const string caseName = string(cases[caseNdx].name) + (minComponents==maxComponents ? "" : ("_" + typeName));
148 expressionTemplateParams["T"] = typeName;
149 expressionTemplateParams["MT"] = typeName;
202 const string scalarCaseName = string(cases[caseNdx].name) + "_" + typeName + "_" + glu::getDataTypeName(inType);
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java27 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, argument
30 mTypeName = typeName;
54 String typeName() { method in class:ParameterInfo
/external/emma/core/java12/com/vladium/emma/report/
H A DItem.java114 ItemMetadata (final int typeID, final String typeName, final long attributeIDs) argument
117 if ($assert.ENABLED) $assert.ASSERT (typeName != null, "typeName = null");
121 m_typeName = typeName;
/external/gptfdisk/
H A Dparttypes.cc317 string typeName; local
321 typeName = theItem->name;
328 typeName = "Unknown";
330 return typeName;
338 UnicodeString typeName; local
342 typeName = theItem->name.c_str();
349 typeName = "Unknown";
351 return typeName;
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DUtils.java62 private static IRubyObject fieldTypeToRuby(ThreadContext context, String typeName) { argument
64 return context.runtime.newSymbol(typeName.replace("TYPE_", "").toLowerCase());
/external/skia/src/gpu/gl/builders/
H A DGrGLShaderStringBuilder.cpp122 const char* typeName = "Unknown"; local
124 case GR_GL_VERTEX_SHADER: typeName = "Vertex"; break;
125 case GR_GL_GEOMETRY_SHADER: typeName = "Geometry"; break;
126 case GR_GL_FRAGMENT_SHADER: typeName = "Fragment"; break;
128 SkDebugf("---- %s shader ----------------------------------------------------\n", typeName);
/external/deqp/framework/randomshaders/
H A DrsgVariableType.hpp134 VariableType (Type baseType, const char* typeName);
206 inline VariableType::VariableType (Type baseType, const char* typeName) argument
209 , m_typeName (typeName)
/external/deqp/modules/gles31/functional/
H A Des31fShaderSharedVarTests.cpp119 const char* typeName = getDataTypeName(m_basicType); local
128 << "shared " << precName << " " << typeName << " s_var;\n"
129 << "uniform " << precName << " " << typeName << " u_val[" << valArrayLength << "];\n"
130 << "uniform " << precName << " " << typeName << " u_ref[" << valArrayLength << "];\n"
H A Des31fUniformBlockTests.cpp207 const char* typeName = glu::getDataTypeName(type); local
213 createBlockBasicTypeCases(layoutGroup, m_context, typeName, parentType, layoutFlags[layoutFlagNdx].flags);
218 createBlockBasicTypeCases(layoutGroup, m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(),
238 const char* typeName = glu::getDataTypeName(type); local
246 createBlockBasicTypeCases(layoutGroup, m_context, typeName, parentType, layoutFlags[layoutFlagNdx].flags);
251 createBlockBasicTypeCases(layoutGroup, m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(),
/external/icu/icu4c/source/test/cintltst/
H A Dsprpdata.c57 const char* typeName; local
60 typeName = fields[2][0];
63 if(strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
70 }else if(strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
77 }else if(strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/external/icu/icu4c/source/test/intltest/
H A Dtestidn.cpp153 const char* typeName; local
168 typeName = fields[2][0];
171 if(uprv_strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
178 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
185 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/external/icu/icu4c/source/tools/gensprep/
H A Dgensprep.c349 const char* typeName; local
374 typeName = fields[2][0];
377 if(uprv_strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){
388 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){
399 }else if(uprv_strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java202 protected void setType(String typeName, ClassPool cp) throws BadBytecode { argument
203 if (update(cp, expectedName, typeName))
204 expectedName = typeName;
253 private boolean update(ClassPool cp, String oldName, String typeName) throws BadBytecode { argument
254 if (typeName == null)
258 else if (oldName.equals(typeName))
260 else if (typeName.charAt(0) == '['
273 CtClass cache2 = cp.get(typeName);
402 protected void setType(String typeName, ClassPool cp) throws BadBytecode { argument
403 super.setType(typeName, c
480 setType(String typeName, ClassPool cp) argument
[all...]

Completed in 600 milliseconds

123456