Searched defs:id (Results 401 - 425 of 4123) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/icu/source/test/intltest/
H A Didnaconf.h38 UnicodeString id; // for debug & error output member in class:IdnaConfTest
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Daudiotrack.cc46 const std::string& id, AudioSourceInterface* source) {
48 new rtc::RefCountedObject<AudioTrack>(id, source);
45 Create( const std::string& id, AudioSourceInterface* source) argument
H A Dmediastreamtrack.h45 virtual std::string id() const { return id_; } function in class:webrtc::MediaStreamTrack
67 explicit MediaStreamTrack(const std::string& id) argument
69 id_(id),
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DStatsReport.java50 public final String id; field in class:StatsReport
56 public StatsReport(String id, String type, double timestamp, Value[] values) { argument
57 this.id = id;
65 builder.append("id: ").append(id).append(", type: ").append(type)
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dmobiledevicemanager.cc56 char id[256]; local
59 if (info->GetDeviceName(i, name, ARRAY_SIZE(name), id, ARRAY_SIZE(id)))
61 devs->push_back(Device(name, id));
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dfakewebrtcvcmfactory.h46 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) { argument
H A Dfakewebrtcvideocapturemodule.h40 FakeWebRtcVideoCaptureModule(FakeWebRtcVcmFactory* factory, int32_t id) argument
42 id_(id),
53 virtual int32_t ChangeUniqueId(const int32_t id) OVERRIDE {
54 id_ = id;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_fence.h44 unsigned id; member in struct:lp_fence
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dcompute_memory_pool.h34 int64_t id; ///ID of the memory chunk member in struct:compute_memory_item
85 void compute_memory_free(struct compute_memory_pool* pool, int64_t id);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_syncobj.c49 intel_new_sync_object(struct gl_context *ctx, GLuint id) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_syncobj.c49 intel_new_sync_object(struct gl_context *ctx, GLuint id) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_syncobj.c49 intel_new_sync_object(struct gl_context *ctx, GLuint id) argument
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_queryobj.c51 st_NewQueryObject(struct gl_context *ctx, GLuint id) argument
55 stq->base.Id = id;
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_pause.cpp43 static void onCommand(HWND hWnd, int id, HWND hWndCtl, UINT codeNotify) argument
45 switch (id)
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
H A Dpython_descriptor.h70 PyObject* id; member in struct:google::protobuf::python::__anon14787
/external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dhelper.h11 SkFile(unsigned long id) { argument
15 set(id);
26 void set(unsigned long id) { argument
33 sprintf(sz, "%s\\%ul.callstacks.txt", getenv(CANVAS_PATH), id);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrStencilBuffer.cpp42 GrCacheID id; local
43 gen_cache_id(width, height, sampleCnt, &id);
46 return GrResourceKey(id, gStencilBufferResourceType, 0);
/external/chromium_org/third_party/sqlite/src/src/
H A Dmutex.c82 sqlite3_mutex *sqlite3_mutex_alloc(int id){ argument
86 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);
89 sqlite3_mutex *sqlite3MutexAlloc(int id){ argument
94 return sqlite3GlobalConfig.mutex.xMutexAlloc(id);
/external/chromium_org/third_party/webrtc/base/
H A Ddiskcache_win32.cc41 std::string id; local
42 if (!FilenameToId(ToUtf8(find_data.cFileName), &id, &index))
45 Entry* entry = GetOrCreateEntry(id, true);
/external/chromium_org/third_party/webrtc/
H A Dconfig.cc27 ss << ", id: " << id; local
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Daudio_coding_module.cc22 AudioCodingModule* AudioCodingModule::Create(int id) { argument
23 return Create(id, Clock::GetRealTimeClock());
26 AudioCodingModule* AudioCodingModule::Create(int id, Clock* clock) { argument
28 config.id = id;
38 // Get supported codec parameters with id
51 // Get the id of the codec from the database.
/external/chromium_org/third_party/webrtc/modules/audio_device/test/android/audio_device_android_test/gen/org/webrtc/voiceengine/test/
H A DR.java16 public static final class id { class in class:R
/external/chromium_org/third_party/webrtc/modules/desktop_capture/mac/
H A Ddesktop_configuration.h28 CGDirectDisplayID id; member in struct:webrtc::MacDisplayConfiguration
58 // Returns the pointer to the display configuration with the specified id.
60 CGDirectDisplayID id);
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dscreen_capturer.h46 // 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;
H A Dshared_memory.h49 int id() const { return id_; } function in class:webrtc::SharedMemory
54 SharedMemory(void* data, size_t size, Handle handle, int id);

Completed in 538 milliseconds

<<11121314151617181920>>