/external/chromium_org/third_party/webrtc/modules/desktop_capture/ |
screen_capturer.h | 46 // Use a struct to represent a screen although it has only an id for now, 49 ScreenId id; member in struct:webrtc::ScreenCapturer::Screen 97 // if there is no screen with the specified id). If this is never called, the 99 virtual bool SelectScreen(ScreenId id) = 0;
|
shared_memory.h | 49 int id() const { return id_; } function in class:webrtc::SharedMemory 54 SharedMemory(void* data, size_t size, Handle handle, int id);
|
window_capturer.h | 31 WindowId id; member in struct:webrtc::WindowCapturer::Window 50 // there is no window with the specified id). 51 virtual bool SelectWindow(WindowId id) = 0;
|
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/helpers/ |
vie_fake_camera.cc | 67 unsigned int id; local 68 camera_thread_->Start(id);
|
/external/chromium_org/tools/memory_inspector/memory_inspector/core/ |
backends_unittest.py | 20 def id(self): member in class:MockDevice
|
/external/chromium_org/ui/accessibility/ |
ax_node.h | 15 // The constructor requires a parent, id, and index in parent, but 18 AXNode(AXNode* parent, int32 id, int32 index_in_parent); 22 int32 id() const { return data_.id; } function in class:ui::AXNode
|
ax_node_data.h | 45 int32 id; member in struct:ui::AXNodeData
|
/external/chromium_org/ui/base/models/ |
list_model_unittest.cc | 16 explicit FooItem(int id) : id_(id) {} 18 int id() const { return id_; } function in class:ui::FooItem 92 EXPECT_EQ(2, model.GetItemAt(0)->id()); 93 EXPECT_EQ(0, model.GetItemAt(1)->id()); 94 EXPECT_EQ(1, model.GetItemAt(2)->id()); 112 EXPECT_EQ(0, model.GetItemAt(0)->id()); 113 EXPECT_EQ(2, model.GetItemAt(1)->id()); 152 EXPECT_EQ(1, model.GetItemAt(0)->id()); 153 EXPECT_EQ(2, model.GetItemAt(1)->id()); [all...] |
/external/chromium_org/ui/events/gesture_detection/ |
velocity_tracker_state.cc | 43 uint32_t id = id_bits.clear_first_marked_bit(); local 46 velocity_tracker_.GetVelocity(id, &vx, &vy); 67 float VelocityTrackerState::GetXVelocity(int32_t id) const { 69 GetVelocity(id, &vx, NULL); 73 float VelocityTrackerState::GetYVelocity(int32_t id) const { 75 GetVelocity(id, NULL, &vy); 79 void VelocityTrackerState::GetVelocity(int32_t id, 83 if (id == ACTIVE_POINTER_ID) 84 id = velocity_tracker_.GetActivePointerId(); 87 if (id >= 0 && id <= MotionEvent::MAX_POINTER_ID & [all...] |
/external/chromium_org/ui/events/test/ |
mock_motion_event.h | 90 int id; member in struct:ui::test::MockMotionEvent
|
/external/chromium_org/ui/gfx/ |
sequential_id_generator.cc | 43 int id = GetNextAvailableID(); local 44 number_to_id_.insert(std::make_pair(number, id)); 45 id_to_number_.insert(std::make_pair(id, number)); 46 return id; 53 void SequentialIDGenerator::ReleaseGeneratedID(uint32 id) { 54 UpdateNextAvailableIDAfterRelease(id); 55 Remove(id, &id_to_number_, &number_to_id_); 75 void SequentialIDGenerator::UpdateNextAvailableIDAfterRelease(uint32 id) { 76 if (id < min_available_id_) { 77 min_available_id_ = id; [all...] |
/external/chromium_org/ui/surface/ |
transport_dib_posix.cc | 58 bool TransportDIB::is_valid_id(Id id) { 60 return is_valid_handle(id); 62 return id != 0; 100 TransportDIB::Id TransportDIB::id() const { function in class:TransportDIB 104 return shared_memory_.id();
|
transport_dib_win.cc | 62 bool TransportDIB::is_valid_id(TransportDIB::Id id) { 63 return is_valid_handle(id.handle); 110 TransportDIB::Id TransportDIB::id() const { function in class:TransportDIB 111 return Id(handle(), sequence_num_);
|
/external/chromium_org/ui/views/accessibility/ |
ax_aura_obj_cache.cc | 60 AXAuraObjWrapper* AXAuraObjCache::Get(int32 id) { 61 std::map<int32, AXAuraObjWrapper*>::iterator it = cache_.find(id); 69 void AXAuraObjCache::Remove(int32 id) { 70 AXAuraObjWrapper* obj = Get(id); 72 if (id == -1 || !obj) 75 cache_.erase(id); 123 int32 id = GetID(aura_view); local 124 if (id == -1) 127 Remove(id);
|
/external/chromium_org/win8/metro_driver/ |
toast_notification_handler.h | 23 std::string id; member in struct:ToastNotificationHandler::DesktopNotification
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_stackdepot.h | 28 u32 id(); 40 // Retrieves a stored stack trace by the id. 41 const uptr *StackDepotGet(u32 id, uptr *size); 50 const uptr *Get(u32 id, uptr *size); 54 u32 id; member in struct:__sanitizer::StackDepotReverseMap::IdDescPair
|
/external/conscrypt/src/test/java/org/conscrypt/ |
FileClientSessionCacheTest.java | 38 final int id = i; local 43 cache.putSessionData(new FakeSSLSession(id + "" + i), new byte[10]);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
PlatformStatus.java | 22 private String id; field in class:PlatformStatus 30 this.id = (String) attributes.getNamedItem("id").getNodeValue(); 37 * Gets the id. 41 return id;
|
/external/eigen/test/ |
eigensolver_complex.cpp | 79 MatrixType id = MatrixType::Identity(rows, cols); local 80 VERIFY_IS_APPROX(id.operatorNorm(), RealScalar(1));
|
/external/elfutils/0.153/libdwfl/ |
dwfl_build_id_find_elf.c | 1 /* Find an ELF file for a module from its build ID. 67 const uint8_t *id = mod->build_id_bits; local 69 /* Search debuginfo_path directories' .build-id/ subdirectories. */ 71 char id_name[sizeof "/.build-id/" + 1 + id_len * 2 + sizeof ".debug" - 1]; 72 strcpy (id_name, "/.build-id/"); 73 int n = snprintf (&id_name[sizeof "/.build-id/" - 1], 74 4, "%02" PRIx8 "/", (uint8_t) id[0]); 78 n = snprintf (&id_name[sizeof "/.build-id/" - 1 + 3 + (i - 1) * 2], 79 3, "%02" PRIx8, (uint8_t) id[i]); 83 strcpy (&id_name[sizeof "/.build-id/" - 1 + 3 + (id_len - 1) * 2] [all...] |
/external/fdlibm/ |
s_atan.c | 93 int ix,hx,id; local 107 id = -1; 112 id = 0; x = (2.0*x-one)/(2.0+x); 114 id = 1; x = (x-one)/(x+one); 118 id = 2; x = (x-1.5)/(one+1.5*x); 120 id = 3; x = -1.0/x; 129 if (id<0) return x - x*(s1+s2); 131 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/data/ |
ByteArrayFetcher.java | 9 * A simple resource fetcher to convert byte arrays into input stream. Requires an id to be passed in to identify the 10 * data in the byte array because there is no cheap/simple way to obtain a useful id from the data itself. 14 private final String id; field in class:ByteArrayFetcher 16 public ByteArrayFetcher(byte[] bytes, String id) { 18 this.id = id; 33 return id;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
OriginalEngineKey.java | 9 private String id; field in class:OriginalEngineKey 11 public OriginalEngineKey(String id) { 12 this.id = id; 26 if (!id.equals(that.id)) { 35 return id.hashCode(); 40 messageDigest.update(id.getBytes("UTF-8"));
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
ImageVideoWrapperEncoder.java | 12 private String id; field in class:ImageVideoWrapperEncoder 31 if (id == null) { 32 id = streamEncoder.getId() + fileDescriptorEncoder.getId(); 34 return id;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
StreamBitmapDecoder.java | 15 private static final String ID = "StreamBitmapDecoder.com.bumptech.glide.load.resource.bitmap"; 19 private String id; field in class:StreamBitmapDecoder 47 if (id == null) { 48 id = new StringBuilder() 49 .append(ID) 54 return id;
|