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

1 2 3

  /external/protobuf/src/google/protobuf/compiler/java/
java_name_resolver.h 78 string GetClassName(const Descriptor* descriptor, bool immutable);
79 string GetClassName(const EnumDescriptor* descriptor, bool immutable);
80 string GetClassName(const ServiceDescriptor* descriptor, bool immutable);
81 string GetClassName(const FileDescriptor* descriptor, bool immutable);
85 return GetClassName(descriptor, true);
89 return GetClassName(descriptor, false);
java_name_resolver.cc 183 string ClassNameResolver::GetClassName(const FileDescriptor* descriptor,
201 result = GetClassName(file, immutable);
210 string ClassNameResolver::GetClassName(const Descriptor* descriptor,
217 string ClassNameResolver::GetClassName(const EnumDescriptor* descriptor,
224 string ClassNameResolver::GetClassName(const ServiceDescriptor* descriptor,
241 result = GetClassName(file, immutable);
250 return GetClassName(descriptor->containing_type(), immutable) + "." +
java_extension.cc 73 name_resolver->GetClassName(descriptor->containing_type(), immutable);
88 singular_type = name_resolver->GetClassName(descriptor->message_type(),
93 singular_type = name_resolver->GetClassName(descriptor->enum_type(),
java_helpers.cc 216 return name_resolver.GetClassName(descriptor, true);
221 return name_resolver.GetClassName(descriptor, true);
226 return name_resolver.GetClassName(descriptor, true);
231 return name_resolver.GetClassName(descriptor, true);
451 return name_resolver->GetClassName(field->enum_type(), immutable) + "." +
455 return name_resolver->GetClassName(field->message_type(), immutable) +
  /external/pdfium/fpdfsdk/pwl/
cpwl_special_button.cpp 15 ByteString CPWL_PushButton::GetClassName() const {
28 ByteString CPWL_CheckBox::GetClassName() const {
57 ByteString CPWL_RadioButton::GetClassName() const {
cpwl_special_button.h 18 ByteString GetClassName() const override;
28 ByteString GetClassName() const override;
45 ByteString GetClassName() const override;
cpwl_button.h 18 ByteString GetClassName() const override;
cpwl_button.cpp 14 ByteString CPWL_Button::GetClassName() const {
cpwl_caret.h 18 ByteString GetClassName() const override;
cpwl_scroll_bar.h 52 ByteString GetClassName() const override;
124 ByteString GetClassName() const override;
cpwl_caret.cpp 22 ByteString CPWL_Caret::GetClassName() const {
cpwl_combo_box.h 51 ByteString GetClassName() const override;
cpwl_edit.h 50 ByteString GetClassName() const override;
cpwl_list_box.h 45 ByteString GetClassName() const override;
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_names.h 66 string GetClassName(const Descriptor* descriptor);
csharp_helpers.h 77 std::string GetClassName(const EnumDescriptor* descriptor);
csharp_reflection_class.cc 192 printer->Print("typeof($type_name$), ", "type_name", GetClassName(file_->enum_type(i)));
237 printer->Print("new pbr::GeneratedClrTypeInfo(typeof($type_name$), $type_name$.Parser, ", "type_name", GetClassName(descriptor));
267 enums.push_back(GetClassName(descriptor->enum_type(i)));
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/csharp/
csharp_names.h 66 string GetClassName(const Descriptor* descriptor);
  /art/test/907-get-loaded-classes/
get_loaded_classes.cc 37 static jstring GetClassName(JNIEnv* jni_env, jclass cls) {
57 jstring class_name = GetClassName(env, classes[i]);
  /art/test/904-object-allocation/
tracking.cc 38 static std::string GetClassName(JNIEnv* jni_env, jclass cls) {
56 std::string object_klass_descriptor = GetClassName(jni_env, object_klass);
58 std::string object_klass_descriptor2 = GetClassName(jni_env, object_klass2.get());
  /cts/hostsidetests/jvmti/base/jni/
tracking.cpp 31 static std::string GetClassName(JNIEnv* jni_env, jclass cls) {
49 std::string object_klass_descriptor = GetClassName(jni_env, object_klass);
51 std::string object_klass_descriptor2 = GetClassName(jni_env, object_klass2.get());
  /development/testrunner/test_defs/
host_test.py 56 def GetClassName(self):
104 self.GetClassName(), serial_number,
  /cts/hostsidetests/jvmti/attaching/app/jni/
cts_agent.cpp 34 static std::string GetClassName(jvmtiEnv* jenv, JNIEnv* jni_env, jclass klass) {
95 std::string name = GetClassName(jenv, jni_env, klass);
  /external/pdfium/xfa/fxfa/parser/
cxfa_object.h 85 WideStringView GetClassName() const { return m_elementName; }
  /external/webrtc/webrtc/base/
win32windowpicker.cc 54 ::GetClassName(hwnd, class_name_w, 500);

Completed in 312 milliseconds

1 2 3