Searched defs:TypeName (Results 1 - 25 of 44) sorted by relevance

12

/external/clang/include/clang/Tooling/Core/
H A DQualTypeNames.h65 namespace TypeName { namespace in namespace:clang
77 } // end namespace TypeName
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DTypeName.java18 public interface TypeName extends HasClassReferences, Writable { interface in inherits:HasClassReferences,Writable
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/match/
H A DTypeName.java22 public final class TypeName { class
28 public TypeName(String packageName, String className) { method in class:TypeName
41 public static TypeName fromFullyQualifiedClassName(String fullyQualifiedClassName) {
52 return new TypeName(packageName, className);
/external/libtextclassifier/common/
H A Dworkspace.cc55 std::string VectorIntWorkspace::TypeName() { return "Vector"; } function in class:libtextclassifier::nlp_core::VectorIntWorkspace
60 std::string VectorVectorIntWorkspace::TypeName() { return "VectorVector"; } function in class:libtextclassifier::nlp_core::VectorVectorIntWorkspace
H A Dworkspace.h37 // function TypeName() which returns a human readable std::string name for the
76 workspace_types_[id] = W::TypeName();
182 static std::string TypeName() { return "SingletonInt"; } function in class:libtextclassifier::nlp_core::SingletonIntWorkspace
209 static std::string TypeName();
229 static std::string TypeName();
/external/clang/lib/AST/
H A DInheritViz.cpp80 std::string TypeName = Type.getAsString(); local
81 Out << " [ shape=\"box\", label=\"" << llvm::DOT::EscapeString(TypeName);
86 if (TypeName != CanonType.getAsString()) {
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeDumper.h58 StringRef saveName(StringRef TypeName) { argument
59 return TypeNames.insert(TypeName).first->getKey();
/external/llvm/tools/llvm-pdbdump/
H A DLinePrinter.cpp73 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName) { argument
74 return IsItemExcluded(TypeName, IncludeTypeFilters, ExcludeTypeFilters);
/external/vixl/tools/test_generator/
H A Ddata_types.py283 Subclasses should implement `TypeName()`, `Pri()` and `NDigit()` to specify
289 def TypeName(): member in class:Scalar
314 return "{type_name} {name};".format(type_name=self.TypeName(),
328 return code.format(type_name=self.TypeName(), name=self.name, suffix=suffix)
332 return code.format(type_name=self.TypeName(), name=self.name, suffix=suffix)
336 return code.format(type_name=self.TypeName(), name=self.name, suffix=suffix)
351 def TypeName(): member in class:U32
/external/gptfdisk/
H A Dparttypes.cc307 cout << hex << ID << "; assigning type code for\n'" << TypeName() << "'\n" << dec;
314 string PartType::TypeName(void) const { function in class:PartType
331 } // PartType::TypeName()
352 } // PartType::TypeName()
/external/llvm/lib/Target/AMDGPU/
H A DSITypeRewriter.cpp117 std::string TypeName = "i32"; local
121 std::string VecTypeName = "v1" + TypeName;
122 Name = Name.replace(Name.find(VecTypeName), VecTypeName.length(), TypeName);
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_map_field.cc45 string TypeName(const Params& params, const FieldDescriptor* field, function in namespace:google::protobuf::compiler::javanano::__anon16366
93 (*variables)["key_type"] = TypeName(params, key, false);
94 (*variables)["boxed_key_type"] = TypeName(params,key, true);
96 "TYPE_" + ToUpper(FieldDescriptor::TypeName(key->type()));
98 (*variables)["value_type"] = TypeName(params, value, false);
99 (*variables)["boxed_value_type"] = TypeName(params, value, true);
101 "TYPE_" + ToUpper(FieldDescriptor::TypeName(value->type()));
/external/clang/include/clang/Analysis/Analyses/
H A DConsumed.h87 /// \param TypeName -- The name of the unconsumable type.
89 StringRef TypeName) {}
88 warnReturnTypestateForUnconsumableType(SourceLocation Loc, StringRef TypeName) argument
/external/clang/lib/Tooling/Core/
H A DQualTypeNames.cpp25 namespace TypeName { namespace in namespace:clang
235 return TypeName::createNestedNameSpecifier(
242 return TypeName::createNestedNameSpecifier(
264 return TypeName::createNestedNameSpecifier(Ctx, TD,
268 return TypeName::createNestedNameSpecifier(Ctx, TDD->getDecl(),
478 } // end namespace TypeName
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h94 char TypeName[1]; member in class:__ubsan::TypeDescriptor
111 const char *getTypeName() const { return TypeName; }
H A Dubsan_diag.cc397 bool __ubsan::IsVptrCheckSuppressed(const char *TypeName) { argument
401 return suppression_ctx->Match(TypeName, kVptrCheck, &s);
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java122 protected static abstract class TypeName extends TypeData { class in class:TypeData
129 protected TypeName() { method in class:TypeData.TypeName
141 if (!(neighbor instanceof TypeName))
144 TypeName neighbor2 = (TypeName)neighbor;
152 TypeName tn = (TypeName)list2.get(i);
189 if (obj instanceof TypeName) {
191 TypeName tn = (TypeName)ob
[all...]
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_map_field.cc60 string TypeName(const FieldDescriptor* field, function in namespace:google::protobuf::compiler::java::__anon16339
91 (*variables)["key_type"] = TypeName(key, name_resolver, false);
92 (*variables)["boxed_key_type"] = TypeName(key, name_resolver, true);
103 (*variables)["value_enum_type"] = TypeName(value, name_resolver, false);
115 (*variables)["value_type"] = TypeName(value, name_resolver, false);
116 (*variables)["boxed_value_type"] = TypeName(value, name_resolver, true);
H A Djava_map_field_lite.cc60 string TypeName(const FieldDescriptor* field, function in namespace:google::protobuf::compiler::java::__anon16340
91 (*variables)["key_type"] = TypeName(key, name_resolver, false);
92 (*variables)["boxed_key_type"] = TypeName(key, name_resolver, true);
103 (*variables)["value_enum_type"] = TypeName(value, name_resolver, false);
115 (*variables)["value_type"] = TypeName(value, name_resolver, false);
116 (*variables)["boxed_value_type"] = TypeName(value, name_resolver, true);
/external/protobuf/src/google/protobuf/compiler/ruby/
H A Druby_generator.cc53 std::string TypeName(google::protobuf::FieldDescriptor* field);
91 std::string TypeName(const google::protobuf::FieldDescriptor* field) { function in namespace:google::protobuf::compiler::ruby
127 "key_type", TypeName(key_field),
128 "value_type", TypeName(value_field),
150 "type", TypeName(field),
/external/v8/src/wasm/
H A Dwasm-opcodes.h664 static const char* TypeName(LocalType type) { function in class:v8::internal::wasm::WasmOpcodes
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp50 SmallString<256> TypeName; local
51 llvm::raw_svector_ostream OS(TypeName);
/external/flatbuffers/src/
H A Didl_gen_go.cpp45 static std::string TypeName(const FieldDef &field);
198 code += "() " + TypeName(field) + " {\n";
212 code += "() " + TypeName(field) + " ";
227 code += "(obj *" + TypeName(field);
228 code += ") *" + TypeName(field);
231 code += "\t\tobj = new(" + TypeName(field) + ")\n";
248 code += TypeName(field);
249 code += ") *" + TypeName(field) + " " + OffsetPrefix(field);
256 code += "\t\t\tobj = new(" + TypeName(field) + ")\n";
270 code += "() " + TypeName(fiel
709 static std::string TypeName(const FieldDef &field) { function in namespace:flatbuffers::go
[all...]
H A Didl_gen_python.cpp36 static std::string TypeName(const FieldDef &field);
183 code += "from ." + TypeName(field) + " import " + TypeName(field) + "\n";
184 code += Indent + Indent + Indent + "obj = " + TypeName(field) + "()\n";
214 bool is_native_table = TypeName(field) == "*flatbuffers.Table";
219 code += "from ." + TypeName(field) + " import " + TypeName(field) + "\n";
245 code += "from ." + TypeName(field) + " import " + TypeName(field) + "\n";
246 code += Indent + Indent + Indent + "obj = " + TypeName(fiel
579 static std::string TypeName(const FieldDef &field) { function in namespace:flatbuffers::python
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp66 int getLastSpecialID(const std::string& TypeName);
119 int R600KernelParameters::getLastSpecialID(const std::string &TypeName) { argument
123 if (i->SpecialType == TypeName) {

Completed in 837 milliseconds

12