HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 76 - 100 of 1246) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
IdentifiedReferenceValue.java 26 * This LongValue represents a reference value that is identified by a unique ID.
33 private final int id; field in class:IdentifiedReferenceValue
37 * Creates a new long value with the given ID.
43 int id)
48 this.id = id;
75 this.id == ((IdentifiedReferenceValue)object).id;
83 id;
89 return super.toString()+'#'+id;
    [all...]
  /external/protobuf/gtest/test/
gtest_stress_test.cc 55 String IdToKey(int id, const char* suffix) {
57 key << "key_" << id << "_" << suffix;
61 String IdToString(int id) {
63 id_message << id; local
68 int id,
70 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
73 << "expecting " << suffix << " value for id " << id; local
74 EXPECT_STREQ(IdToString(id).c_str(), property->value());
79 void ManyAsserts(int id) {
80 ::std::cout << "Thread #" << id << " running...\\n"; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/beos/
SDL_syssem.c 32 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.12/src/thread/epoc/
SDL_systhread.cpp 100 TThreadId id = current.Id(); local
101 return id;
  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_sysmutex.c 34 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.12/src/thread/riscos/
SDL_sysmutex.c 35 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.12/src/thread/win32/
SDL_syssem.c 37 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, dwMilliseconds))
    [all...]
  /external/qemu/hw/
goldfish_device.h 21 uint32_t id; member in struct:goldfish_device
43 int goldfish_tty_add(CharDriverState *cs, int id, uint32_t base, int irq);
44 void goldfish_fb_init(DisplayState *ds, int id);
45 void goldfish_audio_init(uint32_t base, int id, const char* input_source);
49 void goldfish_mmc_init(uint32_t base, int id, BlockDriverState* bs);
50 void *goldfish_switch_add(char *name, uint32_t (*writefn)(void *opaque, uint32_t state), void *writeopaque, int id);
  /external/stlport/stlport/stl/
_collate.h 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
98 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
_num_get.h 123 static locale::id id; member in class:num_get
_numpunct.h 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
91 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
  /external/webkit/WebCore/css/
CSSProperty.h 51 int id() const { return m_id; } function in class:WebCore::CSSProperty
SVGCSSParser.cpp 46 int id = value->id; local
58 if (id == CSSValueAuto || id == CSSValueBaseline || id == CSSValueMiddle ||
59 (id >= CSSValueBeforeEdge && id <= CSSValueMathematical))
65 if (id == CSSValueBaseline || id == CSSValueSub ||
66 id >= CSSValueSuper
    [all...]
  /external/webkit/WebCore/inspector/
InspectorDOMStorageResource.h 69 long id() const { return m_id; } function in class:WebCore::InspectorDOMStorageResource
InspectorDatabaseResource.h 57 long id() const { return m_id; } function in class:WebCore::InspectorDatabaseResource
  /external/webkit/WebCore/platform/wx/
PopupMenuWx.cpp 68 int id = s_menuStartId + i; local
  /external/webkit/WebCore/svg/
SVGTextPathElement.cpp 115 String id = SVGURIReference::getTarget(href()); local
116 Element* targetElement = ownerDocument()->getElementById(id);
118 document()->accessSVGExtensions()->addPendingResource(id, this);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_md5.c 41 u8 *rpos, id; local
93 id = eap_get_id(resp);
95 chap_md5(id, password, password_len, challenge, challenge_len, rpos);
  /frameworks/base/core/java/android/net/
LocalSocketAddress.java 45 /** The id matches with a #define in include/cutils/sockets.h */
46 private int id; field in class:LocalSocketAddress.Namespace
47 Namespace (int id) {
48 this.id = id;
55 return id;
  /frameworks/base/core/java/com/android/internal/view/
InputBindResult.java 35 * The ID for this input method, as found in InputMethodInfo; null if
38 public final String id; field in class:InputBindResult
47 id = _id;
53 id = source.readString();
59 return "InputBindResult{" + method + " " + id
71 dest.writeString(id);
  /frameworks/base/core/jni/
android_os_Power.cpp 39 throw_NullPointerException(env, "id is null");
43 const char *id = env->GetStringUTFChars(idObj, NULL); local
45 acquire_wake_lock(lock, id);
47 env->ReleaseStringUTFChars(idObj, id);
54 throw_NullPointerException(env, "id is null");
58 const char *id = env->GetStringUTFChars(idObj, NULL); local
60 release_wake_lock(id);
62 env->ReleaseStringUTFChars(idObj, id);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
Item.java 30 public int id; field in class:Item
36 public Item(int id, String text) {
37 this.id = id;
43 id = in.readInt();
53 dest.writeInt(id);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeXmlPullAttributes.java 107 Integer id = null; local
109 id = Bridge.getResourceValue(resource.getType(), resource.getName());
111 id = mContext.getProjectCallback().getResourceValue(
115 if (id != null) {
116 return id;
  /frameworks/base/tools/localize/
localize.h 20 string id; member in struct:Settings
  /ndk/sources/android/stlport/stlport/stl/
_collate.h 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
98 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate

Completed in 347 milliseconds

1 2 34 5 6 7 8 91011>>