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

1 2 3 4 5

  /external/chromium_org/media/midi/
usb_midi_device.h 63 virtual std::vector<uint8> GetDescriptor() = 0;
usb_midi_device_android.h 29 virtual std::vector<uint8> GetDescriptor() OVERRIDE;
usb_midi_device_android.cc 29 std::vector<uint8> UsbMidiDeviceAndroid::GetDescriptor() {
  /external/protobuf/src/google/protobuf/
message.cc 62 const Descriptor* descriptor = GetDescriptor();
63 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor)
66 "from:" << from.GetDescriptor()->full_name();
75 const Descriptor* descriptor = GetDescriptor();
76 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor)
79 "from:" << from.GetDescriptor()->full_name();
84 return GetDescriptor()->full_name();
107 << "Message of type \"" << GetDescriptor()->full_name()
152 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name()
reflection_ops.cc 53 const Descriptor* descriptor = from.GetDescriptor();
54 GOOGLE_CHECK_EQ(to->GetDescriptor(), descriptor)
136 const Descriptor* descriptor = message.GetDescriptor();
221 const Descriptor* descriptor = message.GetDescriptor();
service.h 139 virtual const ServiceDescriptor* GetDescriptor() = 0;
146 // * method->service() == GetDescriptor()
180 // service->GetDescriptor()->FindMethodByName("Foo");
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message.cc 63 const Descriptor* descriptor = GetDescriptor();
64 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor)
67 "from:" << from.GetDescriptor()->full_name();
76 const Descriptor* descriptor = GetDescriptor();
77 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor)
80 "from:" << from.GetDescriptor()->full_name();
85 return GetDescriptor()->full_name();
108 << "Message of type \"" << GetDescriptor()->full_name()
153 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name()
reflection_ops.cc 57 const Descriptor* descriptor = from.GetDescriptor();
58 GOOGLE_CHECK_EQ(to->GetDescriptor(), descriptor)
140 const Descriptor* descriptor = message.GetDescriptor();
226 const Descriptor* descriptor = message.GetDescriptor();
service.h 139 virtual const ServiceDescriptor* GetDescriptor() = 0;
146 // * method->service() == GetDescriptor()
180 // service->GetDescriptor()->FindMethodByName("Foo");
  /art/runtime/
field_helper.cc 44 return field_->GetDeclaringClass()->GetDescriptor(&declaring_class_descriptor_);
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
service_reflection_test.py 77 service_descriptor = unittest_pb2.TestService.GetDescriptor()
121 # GetDescriptor now static, still works as instance method for compatability
122 self.assertEqual(unittest_pb2.TestService_Stub.GetDescriptor(),
123 stub.GetDescriptor())
132 self.assertEqual(stub.GetDescriptor().methods[0], channel.method)
  /external/protobuf/python/google/protobuf/internal/
service_reflection_test.py 77 service_descriptor = unittest_pb2.TestService.GetDescriptor()
121 # GetDescriptor now static, still works as instance method for compatability
122 self.assertEqual(unittest_pb2.TestService_Stub.GetDescriptor(),
123 stub.GetDescriptor())
132 self.assertEqual(stub.GetDescriptor().methods[0], channel.method)
  /external/chromium_org/device/bluetooth/
bluetooth_gatt_characteristic.h 154 virtual BluetoothGattDescriptor* GetDescriptor(
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_gatt_characteristic.h 42 MOCK_CONST_METHOD1(GetDescriptor,
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
service.py 61 def GetDescriptor():
76 * method_descriptor.service == GetDescriptor
101 method = service.GetDescriptor().FindMethodByName("Foo")
service_reflection.py 149 cls.GetDescriptor = staticmethod(lambda: self.descriptor)
150 cls.GetDescriptor.__doc__ = "Returns the service descriptor."
  /external/chromium_org/third_party/webrtc/base/
physicalsocketserver.h 52 virtual int GetDescriptor() = 0;
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugArangeSet.h 51 const Descriptor* GetDescriptor(uint32_t i) const
DWARFDebugPubnamesSet.h 64 const DWARFDebugPubnamesSet::Descriptor* GetDescriptor(uint32_t i) const
  /external/protobuf/python/google/protobuf/
service.py 61 def GetDescriptor():
76 * method_descriptor.service == GetDescriptor
101 method = service.GetDescriptor().FindMethodByName("Foo")
service_reflection.py 149 cls.GetDescriptor = staticmethod(lambda: self.descriptor)
150 cls.GetDescriptor.__doc__ = "Returns the service descriptor."
  /external/lldb/source/Host/common/
File.cpp 107 File::GetDescriptor() const
170 m_descriptor = ::fcntl(rhs.GetDescriptor(), F_DUPFD);
287 if (::fcntl(GetDescriptor(), F_GETPATH, path) == -1)
299 if (::snprintf(proc, sizeof(proc), "/proc/self/fd/%d", GetDescriptor()) < 0)
563 int fd = GetDescriptor();
598 int fd = GetDescriptor();
648 int fd = GetDescriptor();
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.cc 197 Span* next = GetDescriptor(p+len);
221 ASSERT(GetDescriptor(span->start) == span);
222 ASSERT(GetDescriptor(span->start + span->length - 1) == span);
260 Span* prev = GetDescriptor(p-1);
280 Span* next = GetDescriptor(p+n);
397 ASSERT(GetDescriptor(span->start) == span);
398 ASSERT(GetDescriptor(span->start+span->length-1) == span);
540 CHECK_CONDITION(GetDescriptor(s->start) == s);
541 CHECK_CONDITION(GetDescriptor(s->start+s->length-1) == s);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.cc 190 ASSERT(GetDescriptor(span->start) == span);
191 ASSERT(GetDescriptor(span->start + span->length - 1) == span);
214 Span* prev = GetDescriptor(p-1);
226 Span* next = GetDescriptor(p+n);
336 ASSERT(GetDescriptor(span->start) == span);
337 ASSERT(GetDescriptor(span->start+span->length-1) == span);
477 CHECK_CONDITION(GetDescriptor(s->start) == s);
478 CHECK_CONDITION(GetDescriptor(s->start+s->length-1) == s);
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python-proto2.cc 51 ((message)->GetDescriptor() == (field_descriptor)->containing_type())
411 child_cmessage->message->GetDescriptor());
    [all...]

Completed in 234 milliseconds

1 2 3 4 5