Searched refs:id (Results 1 - 25 of 9147) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DCaptureActivity.java85 statusView = (TextView) findViewById(R.id.status_view);
101 viewfinderView = (ViewfinderView) findViewById(R.id.viewfinder_view);
106 SurfaceView surfaceView = (SurfaceView) findViewById(R.id.preview_view);
149 SurfaceView surfaceView = (SurfaceView) findViewById(R.id.preview_view);
H A DCaptureActivityHandler.java68 if (message.what == R.id.auto_focus) {
73 cameraManager.requestAutoFocus(this, R.id.auto_focus);
75 } else if (message.what == R.id.restart_preview) {
78 } else if (message.what == R.id.decode_succeeded) {
85 } else if (message.what == R.id.decode_failed) {
88 cameraManager.requestPreviewFrame(decodeThread.getHandler(), R.id.decode);
89 } else if (message.what == R.id.return_scan_result) {
93 } else if (message.what == R.id.launch_product_query) {
105 Message quit = Message.obtain(decodeThread.getHandler(), R.id.quit);
115 removeMessages(R.id
[all...]
H A DDecodeHandler.java53 if (message.what == R.id.decode) {
55 } else if (message.what == R.id.quit) {
90 Message message = Message.obtain(handler, R.id.decode_succeeded, rawResult);
98 Message message = Message.obtain(handler, R.id.decode_failed);
/external/yaffs2/yaffs2/
H A Dyaffs_fs.c107 static int yaffs_file_flush(struct file *file, fl_owner_t id);
453 static int yaffs_file_flush(struct file *file, fl_owner_t id) argument
/external/zlib/src/examples/
H A Dgzlog.c290 char id[4]; /* contains LOGID to detect inadvertent overwrites */ member in struct:log
295 int back; /* location of first block id in bits back from first */
307 0x1f, 0x8b, /* magic gzip id */
878 strcpy(log->id, LOGID);
917 if (log == NULL || strcmp(log->id, LOGID))
1001 if (log == NULL || strcmp(log->id, LOGID))
1047 if (log == NULL || strcmp(log->id, LOGID))
1056 strcpy(log->id, "bad");
/external/zlib/src/test/
H A Dinfcover.c507 local int try(char *hex, char *id, int err) argument
525 prefix = malloc(strlen(id) + 6);
529 strcpy(prefix, id);
548 assert(strcmp(id, strm.msg) == 0);
555 strcpy(prefix, id);
566 assert(strcmp(id, strm.msg) == 0);
/external/webrtc/src/modules/audio_processing/
H A Daudio_processing_impl.cc39 AudioProcessing* AudioProcessing::Create(int id) { argument
42 id,
45 AudioProcessingImpl* apm = new AudioProcessingImpl(id);
58 AudioProcessingImpl::AudioProcessingImpl(int id) argument
59 : id_(id),
555 WebRtc_Word32 AudioProcessingImpl::ChangeUniqueId(const WebRtc_Word32 id) { argument
560 "ChangeUniqueId(new id = %d)",
561 id);*/
562 id_ = id;
H A Daudio_processing_impl.h50 explicit AudioProcessingImpl(int id);
83 virtual WebRtc_Word32 ChangeUniqueId(const WebRtc_Word32 id);
/external/webrtc/src/modules/audio_processing/interface/
H A Daudio_processing.h110 // Creates a APM instance, with identifier |id|. Use one instance for every
115 static AudioProcessing* Create(int id);
/external/webrtc/src/modules/interface/
H A Dmodule.h23 virtual int32_t ChangeUniqueId(const int32_t id) = 0;
H A Dmodule_common_types.h734 const WebRtc_Word32 id,
793 const WebRtc_Word32 id,
804 _id = id;
792 UpdateFrame( const WebRtc_Word32 id, const WebRtc_UWord32 timeStamp, const WebRtc_Word16* payloadData, const WebRtc_UWord16 payloadDataLengthInSamples, const int frequencyInHz, const SpeechType speechType, const VADActivity vadActivity, const WebRtc_UWord8 audioChannel, const WebRtc_Word32 volume, const WebRtc_Word32 energy) argument
/external/webrtc/src/system_wrappers/interface/
H A Dmap_wrapper.h24 MapItem(int id, void* ptr);
42 // Puts a pointer to anything in the map and associates it with id. Note, id
44 int Insert(int id, void* ptr);
49 // Finds item with associated with id and removes it from the map.
50 int Erase(int id);
67 // Returns a pointer to the MapItem associated with id from the map.
68 MapItem* Find(int id) const;
H A Dthread_wrapper.h70 virtual bool Start(unsigned int& id) = 0;
H A Dtrace.h65 // id is an identifier that should be unique for that set of classes that
71 const WebRtc_Word32 id,
/external/webrtc/src/system_wrappers/source/
H A Dcondition_variable_unittest.cc165 unsigned int id = 42; local
166 ASSERT_TRUE(thread_->Start(id));
H A Dcritical_section_unittest.cc105 unsigned int id = 42; local
107 ASSERT_TRUE(thread->Start(id));
137 unsigned int id = 42; local
139 ASSERT_TRUE(thread->Start(id));
H A Devent_posix.cc232 unsigned int id = 0; local
233 if (_timerThread->Start(id))
H A Dmap.cc16 MapItem::MapItem(int id, void* item) : item_id_(id), item_pointer_(item) argument
68 int MapWrapper::Insert(int id, void* ptr) argument
70 map_[id] = new MapItem(id,ptr);
129 MapItem* MapWrapper::Find(int id) const
131 std::map<int, MapItem*>::const_iterator it = map_.find(id);
155 int MapWrapper::Erase(const int id) argument
157 std::map<int, MapItem*>::iterator it = map_.find(id);
H A Dmap_no_stl.cc17 MapNoStlItem::MapNoStlItem(int id, void* item) argument
20 item_id_(id),
74 int MapNoStl::Insert(int id, void* ptr) argument
76 MapNoStlItem* new_item = new MapNoStlItem(id, ptr);
93 if (item->GetId() > id)
145 MapNoStlItem* MapNoStl::Find(int id) const
148 MapNoStlItem* item = Locate(id);
162 int MapNoStl::Erase(const int id) argument
165 MapNoStlItem* item = Locate(id);
173 MapNoStlItem* MapNoStl::Locate(int id) cons
[all...]
H A Dmap_no_stl.h24 MapNoStlItem(int id, void* ptr);
48 int Insert(int id, void* ptr);
50 int Erase(int id);
56 MapNoStlItem* Find(int id) const;
59 MapNoStlItem* Locate(int id) const;
H A Dmap_unittest.cc89 const int id = item->GetId(); local
92 sprintf(print_buffer, "(%3i,%3i) ", id, value);
172 // Erase using int id
H A Dthread_posix.h34 virtual bool Start(unsigned int& id);
H A Dthread_unittest.cc70 unsigned int id = 42; local
71 ASSERT_TRUE(thread->Start(id));
87 unsigned int id = 42; local
88 ASSERT_TRUE(thread->Start(id));
H A Dthread_win.h29 virtual bool Start(unsigned int& id);

Completed in 4761 milliseconds

1234567891011>>