/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
UnbufferedTokenStream.cs | 67 get { 73 get { 88 public IToken Get(int i) {
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_mutexset.cc | 84 MutexSet::Desc MutexSet::Get(uptr i) const {
|
/external/flatbuffers/python/flatbuffers/ |
table.py | 37 vtable = self.Pos - self.Get(N.SOffsetTFlags, self.Pos) 38 vtableEnd = self.Get(N.VOffsetTFlags, vtable) 40 return self.Get(N.VOffsetTFlags, vtable + vtableOffset) 46 return off + encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 51 off += encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 53 length = encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 62 off += encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 63 ret = encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 72 x = off + self.Get(N.UOffsetTFlags, off) 84 t2.Pos = off + self.Get(N.UOffsetTFlags, off [all...] |
/external/libbrillo/brillo/dbus/ |
dbus_property.h | 30 void Get(dbus::PropertySet::GetCallback callback) { 31 property_set()->Get(this, callback); 34 // Synchronous vesion of Get().
|
/external/libchrome/base/posix/ |
global_descriptors.cc | 29 return GlobalDescriptorsSingleton::get(); 32 int GlobalDescriptors::Get(Key key) const {
|
/external/libchrome/base/threading/ |
thread_local.h | 5 // WARNING: Thread local storage is a bit tricky to get right. Please make 18 // to Get() on a thread will return NULL. You can update the pointer with a 36 // DCHECK(Singleton<ThreadLocalPointer<MyClass> >::get()->Get() == NULL); 37 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(this); 41 // DCHECK(Singleton<ThreadLocalPointer<MyClass> >::get()->Get() != NULL); 42 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(NULL); 48 // return Singleton<ThreadLocalPointer<MyClass> >::get()->Get(); [all...] |
/external/libchrome/sandbox/win/src/ |
policy_engine_params.h | 65 bool Get(uint32_t* destination) const { 74 bool Get(const void** destination) const { 83 bool Get(const wchar_t** destination) const {
|
/external/libmojo/mojo/edk/system/ |
atomic_flag.h | 42 bool Get() const { 46 operator const bool() const { return Get(); }
|
/external/libmojo/mojo/public/tests/ |
test_support_private.cc | 66 TestSupport* TestSupport::Get() {
|
/external/libvpx/libvpx/test/ |
md5_helper.h | 50 const char *Get(void) {
|
/external/llvm/tools/dsymutil/ |
BinaryHolder.h | 48 /// Get the MemoryBufferRefs for the file specification in \p 85 /// Get the ObjectFiles designated by the \p Filename. This 119 ErrorOr<const object::ObjectFile &> Get(const Triple &T) { 127 auto ErrOrObj = Get(T);
|
/external/pdfium/core/fpdfapi/ |
cpdf_modulemgr.cpp | 20 CPDF_ModuleMgr* CPDF_ModuleMgr::Get() {
|
/external/pdfium/core/fxcrt/ |
cfx_maybe_owned.h | 25 : m_pOwnedObj(std::move(ptr)), m_pObj(m_pOwnedObj.get()) {} 35 m_pObj = m_pOwnedObj.get(); 43 T* Get() const { return m_pObj; } 66 return Get() == that.Get(); 69 return Get() == ptr.get(); 71 bool operator==(T* ptr) const { return Get() == ptr; }
|
/external/pdfium/xfa/fxbarcode/common/ |
BC_CommonBitArray.cpp | 50 bool CBC_CommonBitArray::Get(int32_t i) { 107 if (Get(size - i - 1)) {
|
BC_CommonByteMatrix.cpp | 44 uint8_t CBC_CommonByteMatrix::Get(int32_t x, int32_t y) {
|
/external/piex/src/tiff_directory/ |
tiff_directory.cc | 44 bool TiffDirectory::Get(const Tag tag, std::vector<std::uint8_t>* value) const { 56 bool TiffDirectory::Get(const Tag tag, std::string* value) const { 66 bool TiffDirectory::Get(const Tag tag, std::uint32_t* value) const { 68 if (!Get(tag, &my_values) || my_values.size() != 1) { 75 bool TiffDirectory::Get(const Tag tag, 104 bool TiffDirectory::Get(const Tag tag, Rational* value) const { 106 if (!Get(tag, &my_values) || my_values.size() != 1) { 113 bool TiffDirectory::Get(const Tag tag, std::vector<Rational>* value) const { 159 bool TiffDirectory::Get(const Tag tag, SRational* value) const { 161 if (!Get(tag, &my_values) || my_values.size() != 1) [all...] |
/external/toolchain-utils/crosperf/ |
field.py | 31 def Get(self):
|
/external/v8/src/compiler/ |
node-marker.h | 23 V8_INLINE Mark Get(Node* node) { 55 // (efficiently) detect invalid use of an older NodeMarker. Namely, if you get 56 // or set a node with a NodeMarker, and then get or set that node 57 // with an older NodeMarker you will get a crash. 67 V8_INLINE State Get(Node* node) { 68 return static_cast<State>(NodeMarkerBase::Get(node));
|
/external/webrtc/webrtc/base/ |
event_tracer_unittest.cc | 34 static TestStatistics* Get() { 58 TestStatistics::Get()->Increment(); 69 EXPECT_FALSE(TestStatistics::Get()->Count()); 70 TestStatistics::Get()->Reset(); 78 EXPECT_EQ(2, TestStatistics::Get()->Count()); 79 TestStatistics::Get()->Reset();
|
/external/webrtc/webrtc/modules/audio_device/android/ |
opensles_common.h | 37 SLType Get() const { return obj_; }
|
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/ |
epoll_file_descriptor.h | 23 bool IsValid() const { return fd_.get() >= 0; } 33 if (fd_.get() < 0) 40 if (epoll_ctl(fd_.get(), op, target_fd, ev) < 0) 47 int ret = epoll_wait(fd_.get(), events, maxevents, timeout); 55 int Get() const { return fd_.get(); }
|
/hardware/qcom/display/msm8998/libdrmutils/ |
drm_logger.h | 46 static DRMLogger *Get() { return s_instance; } 53 if (drm_utils::DRMLogger::Get()) { \ 54 drm_utils::DRMLogger::Get()->method(format, ##__VA_ARGS__); \
|
/prebuilts/go/darwin-x86/doc/progs/ |
error2.go | 22 if err := datastore.Get(c, key, record); err != nil { 46 func (ds) Get(*ctx, string, *Record) error { return nil }
|
error3.go | 24 if err := datastore.Get(c, key, record); err != nil { 55 func (ds) Get(*ctx, string, *Record) error { return nil }
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug242.go | 41 Get() byte 47 func (p S1) Get() byte { return p.i }
|