Searched defs:id (Results 501 - 525 of 4123) sorted by relevance

<<21222324252627282930>>

/external/protobuf/examples/
H A Dadd_person.cc12 int id; local
13 cin >> id; local
14 person->set_id(id);
/external/qemu/distrib/sdl-1.2.15/src/thread/beos/
H A DSDL_syssem.c32 sem_id id; member in struct:SDL_semaphore
42 sem->id = create_sem(initial_value, "SDL semaphore");
43 if ( sem->id < B_NO_ERROR ) {
58 if ( sem->id >= B_NO_ERROR ) {
59 delete_sem(sem->id);
77 val = acquire_sem(sem->id);
80 val = acquire_sem_etc(sem->id, 1, B_RELATIVE_TIMEOUT, timeout);
121 get_sem_count(sem->id, &count);
137 if ( release_sem(sem->id) != B_NO_ERROR ) {
/external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
H A DSDL_sysmutex.c34 pthread_mutex_t id; member in struct:SDL_mutex
57 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
71 pthread_mutex_destroy(&mutex->id);
96 We set the locking thread id after we obtain the lock
99 if ( pthread_mutex_lock(&mutex->id) == 0 ) {
108 if ( pthread_mutex_lock(&mutex->id) < 0 ) {
138 pthread_mutex_unlock(&mutex->id);
146 if ( pthread_mutex_unlock(&mutex->id) < 0 ) {
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
H A DSDL_sysmutex.c35 pthread_mutex_t id; member in struct:SDL_mutex
56 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
70 pthread_mutex_destroy(&mutex->id);
95 We set the locking thread id after we obtain the lock
98 if ( pthread_mutex_lock(&mutex->id) == 0 ) {
107 if ( pthread_mutex_lock(&mutex->id) < 0 ) {
137 pthread_mutex_unlock(&mutex->id);
145 if ( pthread_mutex_unlock(&mutex->id) < 0 ) {
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/
H A DSDL_syssem.c37 SYNCHHANDLE id; member in struct:SDL_semaphore
39 HANDLE id;
55 sem->id = CreateSemaphoreCE(NULL, initial_value, 32*1024, NULL);
57 sem->id = CreateSemaphore(NULL, initial_value, 32*1024, NULL);
60 if ( ! sem->id ) {
75 if ( sem->id ) {
77 CloseSynchHandle(sem->id);
79 CloseHandle(sem->id);
81 sem->id = 0;
103 switch (WaitForSemaphoreCE(sem->id, dwMillisecond
[all...]
/external/qemu/include/sysemu/
H A Dblockdev.h23 char *id; member in struct:DriveInfo
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowExpandableListView.java17 public boolean performItemClick(View view, int position, long id) { argument
19 mChildClickListener.onChildClick(mExpandable, null, 0, position, id);
H A DShadowLayerDrawable.java39 public boolean setDrawableByLayerId(int id, Drawable drawable) { argument
40 if (!indexForId.containsKey(id)) {
43 drawables[indexForId.get(id)] = drawable;
48 public void setId(int index, int id) { argument
49 indexForId.put(id, index);
H A DShadowNotificationManager.java21 public void notify(int id, Notification notification) argument
23 notify(null, id, notification);
27 public void notify(String tag, int id, Notification notification) { argument
29 idForTag.put(tag, id);
31 notifications.put(id, notification);
35 public void cancel(int id) argument
37 cancel(null, id);
41 public void cancel(String tag, int id) { argument
42 // I can't make sense of this method signature. I'm guessing that the id is optional and if it's bogus you are supposed to use the tag instead, but that references to both should be gone. PG
44 if (notifications.containsKey(id)) {
61 getNotification(int id) argument
[all...]
H A DShadowRadioGroup.java25 public void check(int id) { argument
26 checkedRadioButtonId = id;
/external/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/skia/src/core/
H A DSkFontDescriptor.cpp36 uint32_t id) {
38 stream->writePackedUInt(id);
64 SkDEBUGFAIL("Unknown id used by a font descriptor");
35 write_string(SkWStream* stream, const SkString& string, uint32_t id) argument
/external/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/smack/src/org/jivesoftware/smackx/packet/
H A DPEPItem.java35 String id; field in class:PEPItem
43 public PEPItem(String id) { argument
45 this.id = id;
73 * &lt;message id="MlIpV-4" to="gato1@gato.home" from="gato3@gato.home/Smack"&gt;
86 buf.append("<").append(getElementName()).append(" id=\"").append(id).append("\">");
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DItem.java25 * <li>Will always have an id (either user or server generated) unless node configuration has both
31 * <li>The id is optional, since the server will generate one if necessary, but should be used if it is
33 * resending an item with the same id will overwrite the one that already exists if the items are persisted.
44 private String id; field in class:Item
47 * Create an empty <tt>Item</tt> with no id. This is a valid item for nodes which are configured
48 * so that {@link ConfigureForm#isDeliverPayloads()} is false. In most cases an id will be generated by the server.
59 * Create an <tt>Item</tt> with an id but no payload. This is a valid item for nodes which are configured
62 * @param itemId The id if the item. It must be unique within the node unless overwriting and existing item.
69 id = itemId;
73 * Create an <tt>Item</tt> with an id an
[all...]
H A DOptionsExtension.java26 protected String id; field in class:OptionsExtension
42 id = subscriptionId;
52 return id;
65 if (id != null)
66 XmlUtils.appendAttribute(builder, "subid", id);
H A DRetractItem.java26 private String id; field in class:RetractItem
29 * Construct a <tt>RetractItem</tt> with the specified id.
31 * @param itemId The id if the item deleted
37 id = itemId;
42 return id;
57 return "<retract id='" + id + "'/>";
H A DUnsubscribeExtension.java27 protected String id; field in class:UnsubscribeExtension
43 id = subscriptionId;
53 return id;
66 if (id != null)
67 XmlUtils.appendAttribute(builder, "subid", id);
/external/srec/srec/AcousticModels/src/
H A DAcousticModels.c76 ESR_ReturnCode SR_AcousticModelsGetID(SR_AcousticModels* self, size_t index, SR_AcousticModelID* id, size_t* size) argument
83 return self->getID(self, index, id, size);
86 ESR_ReturnCode SR_AcousticModelsSetID(SR_AcousticModels* self, size_t index, SR_AcousticModelID* id) argument
93 return self->setID(self, index, id);
/external/srec/srec/Nametag/src/
H A DNametags.c53 ESR_ReturnCode SR_NametagsRemove(SR_Nametags* self, const LCHAR* id) argument
60 return self->remove(self, id);
73 ESR_ReturnCode SR_NametagsGet(SR_Nametags* self, const LCHAR* id, SR_Nametag** nametag) argument
80 return self->get(self, id, nametag);
93 ESR_ReturnCode SR_NametagsContains(SR_Nametags* self, const LCHAR* id, ESR_BOOL* result) argument
100 return self->contains(self, id, result);
/external/stlport/stlport/stl/
H A D_num_put.h104 static locale::id id; member in class:num_put
H A D_numpunct.h62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
91 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpecRegistry.java90 * @param id the identifier of the {@link CookieSpec cookie specification} to unregister
92 public synchronized void unregister(final String id) { argument
93 if (id == null) {
96 registeredSpecs.remove(id.toLowerCase(Locale.ENGLISH));
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_pars_ct.c120 UINT16 id; local
133 status = avrc_pars_pass_thru(&p_msg->pass, &id);
136 p_result->pdu = (UINT8)id;
H A Davrc_pars_tg.c285 UINT16 id; local
296 status = avrc_pars_pass_thru(&p_msg->pass, &id);
299 p_result->pdu = (UINT8)id;

Completed in 2172 milliseconds

<<21222324252627282930>>