/external/smack/src/org/jivesoftware/smackx/muc/ |
UserStatusListener.java | 32 * Called when a moderator kicked your user from the room. This means that you are no longer 41 * Called when a moderator grants voice to your user. This means that you were a visitor in 49 * Called when a moderator revokes voice from your user. This means that you were a 57 * Called when an administrator or owner banned your user from the room. This means that you 66 * Called when an administrator grants your user membership to the room. This means that you 73 * Called when an administrator revokes your user membership to the room. This means that you 80 * Called when an administrator grants moderator privileges to your user. This means that you 88 * Called when an administrator revokes moderator privileges from your user. This means that 96 * Called when an owner grants to your user ownership on the room. This means that you 104 * Called when an owner revokes from your user ownership on the room. This means that you [all...] |
/frameworks/base/core/java/android/database/ |
DataSetObserver.java | 20 * Receives call backs when a data set has been changed, or made invalid. The typically data sets 26 * This method is called when the entire data set has changed, 34 * This method is called when the entire data becomes invalid,
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
SipRegistrationListener.java | 24 * Called when a registration request is sent. 31 * Called when the registration succeeded. 39 * Called when the registration failed.
|
/frameworks/wilhelm/src/objects/ |
CAudioRecorder.c | 22 /** \brief Hook called by Object::Realize when an audio recorder is realized */ 37 /** \brief Hook called by Object::Resume when an audio recorder is resumed */ 45 /** \brief Hook called by Object::Destroy when an audio recorder is destroyed */
|
/libcore/dalvik/src/main/java/dalvik/system/ |
NativeStart.java | 22 * when the function returns. That gets a little weird when we're 29 * This also comes in handy when a native thread attaches itself with the
|
/libcore/luni/src/main/java/java/lang/ |
IllegalMonitorStateException.java | 21 * Thrown when a monitor operation is attempted when the monitor is not in the 22 * correct state, for example when a thread attempts to exit a monitor which it
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLSessionBindingListener.java | 23 * The interface to be implemented by any object that requires notification when 29 * Notifies this listener when a value is bound to an {@code SSLSession}. 37 * Notifies this listener when a value is unbound from an {@code SSLSession}.
|
/ndk/sources/host-tools/make-3.81/po/ |
en@boldquot.header | 14 # When output to an UTF-8 terminal, the quotation characters appear perfectly. 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are
|
en@quot.header | 14 # When output to an UTF-8 terminal, the quotation characters appear perfectly. 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
en@boldquot.header | 14 # When output to an UTF-8 terminal, the quotation characters appear perfectly. 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are
|
en@quot.header | 14 # When output to an UTF-8 terminal, the quotation characters appear perfectly. 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are
|
/packages/apps/InCallUI/src/com/android/incallui/ |
Presenter.java | 27 * Called after the UI view has been created. That is when fragment.onViewCreated() is called. 36 * Called when the UI view is destroyed in Fragment.onDestroyView(). 44 * To be overriden by Presenter implementations. Called when the fragment is being
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
errcode.h | 11 slightly different meaning when passed from the tokenizer to the 12 parser than when passed from the parser to the interpreter; e.g. 13 the parser only returns E_EOF when it hits EOF immediately, and it
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
errcode.h | 11 slightly different meaning when passed from the tokenizer to the 12 parser than when passed from the parser to the interpreter; e.g. 13 the parser only returns E_EOF when it hits EOF immediately, and it
|
/prebuilts/tools/common/m2/internal/com/google/code/findbugs/annotations/2.0.1/ |
annotations-2.0.1.jar | |
/external/chromium_org/components/autofill/core/common/ |
password_form.h | 31 // accurately. But it is not always possible, especially when importing from 37 // describe which fields are not strictly required when adding a saved password 59 // when two PasswordForms are matched when trying to find a login/pass pair 90 // When parsing an HTML form, this must always be set. 97 // When parsing an HTML form, this must always be set. 102 // When parsing an HTML form, this must always be set. 107 // When parsing an HTML form, this is typically empty unless the site 112 // elements that could possibly be the username. Used when our heuristics for 115 // When parsing an HTML form, this is typically empty [all...] |
/external/icu4c/samples/date/ |
date.c | 47 static void date(UDate when, const UChar *tz, UDateFormatStyle style, const char *format, UErrorCode *status); 76 UDate when; local 160 /* get the 'when' (or now) */ 161 when = getWhen(millis, seconds, format, style, parse, tz, &status); 167 date(when, tz, style, format, &status); 240 date(UDate when, 255 printf("%.0f\n", when); 258 printf("%.3f\n", when/1000.0); 268 len = udat_format(fmt, when, 0, len, 0, status); 273 udat_format(fmt, when, s, len + 1, 0, status) 296 UDate when=0; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastreamsignaling.h | 50 // A MediaStreamSignalingObserver is notified when events happen to 56 // Triggered when the remote SessionDescription has a new stream. 59 // Triggered when the remote SessionDescription removes a stream. 62 // Triggered when the remote SessionDescription has a new data channel. 65 // Triggered when the remote SessionDescription has a new audio track. 70 // Triggered when the remote SessionDescription has a new video track. 75 // Triggered when the remote SessionDescription has removed an audio track. 79 // Triggered when the remote SessionDescription has removed a video track. 83 // Triggered when the local SessionDescription has a new audio track. 88 // Triggered when the local SessionDescription has a new video track [all...] |
/external/clang/test/Sema/ |
uninit-variables.c | 8 return x; // expected-warning{{variable 'x' is uninitialized when used here}} 24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}} 30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}} 36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}} 55 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 74 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 82 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 90 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 94 for (unsigned i ; n ; ++i) ; // expected-warning{{variable 'i' is uninitialized when used here}} expected-note{{initialize the variable 'i' to silence this warning}} 115 int x = x; // expected-warning {{variable 'x' is uninitialized when used within its own initialization} [all...] |
/external/libnfc-nci/src/nfa/include/ |
nfa_rw_api.h | 118 ** When the entire message has been written, or if an error 178 ** Data is returned to the application using the NFA_TLV_DETECT_EVT. When 213 ** When tag is set as read only, or if an error occurs, the app will be 232 ** Data is returned to the application using the NFA_DATA_EVT. When the read 251 ** Data is returned to the application using the NFA_DATA_EVT. When the read 270 ** Data is returned to the application using the NFA_DATA_EVT. When the read 289 ** Data is returned to the application using the NFA_DATA_EVT. When the write 311 ** Data is returned to the application using the NFA_DATA_EVT. When the read 330 ** Data is returned to the application using the NFA_DATA_EVT. When the read 349 ** Data is returned to the application using the NFA_DATA_EVT. When the rea [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertPathValidator2Test.java | 114 * throws NullPointerException when algorithm is null 115 * throws NoSuchAlgorithmException when algorithm is not available 122 fail("NullPointerException or NoSuchAlgorithmException must be thrown when algorithm is null"); 146 * throws NullPointerException when algorithm is null 147 * throws NoSuchAlgorithmException when algorithm is not available 148 * throws IllegalArgumentException when provider is null or empty; 149 * throws NoSuchProviderException when provider is available; 157 fail("NullPointerException or NoSuchAlgorithmException must be thrown when algorithm is null"); 174 fail("IllegalArgumentException must be thrown when provider is null (type: " 180 fail("IllegalArgumentException must be thrown when provider is empty (type: [all...] |
/frameworks/base/core/tests/coretests/src/android/os/ |
MessageQueueTest.java | 210 if (newMsg.when != 0) { 212 "newMsg.when is %d should be 0 after copyFrom", newMsg.when))); 227 "msg.isInUse is false should be true after when processing %d", 232 "msg.arg1 is %d should be %d when processing # %d", 237 "msg.arg2 is %d should be %d when processing # %d", 242 "msg.obj should be 'this' when processing # %d", msg.what))); 246 "msg.replyTo should be null when processing # %d", msg.what))); 251 " mBundle.getString(\"key\") which is %s when processing # %d", 254 if (msg.when != 0) [all...] |
/frameworks/base/docs/html/training/managing-audio/ |
audio-focus.jd | 39 Likewise, it should know how to listen for a loss of audio focus and respond appropriately when that 51 permanent audio focus. Request transient focus when you expect to play audio for only a short time 52 (for example when playing navigation instructions). Request permanent audio focus when you 53 plan to play audio for the foreseeable future (for example, when playing music).</p> 56 request the audio focus immediately before you begin playback, such as when the user presses 83 // Abandon audio focus when playback complete 87 <p>When requesting transient audio focus you have an additional option: whether or not you want to 88 enable "ducking." Normally, when a well-behaved audio app loses audio focus it immediately 111 registered when requesting focus.</p [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
CertPathValidator2Test.java | 104 * throws NullPointerException when algorithm is null throws 105 * NoSuchAlgorithmException when algorithm is not available returns 112 fail("NullPointerException or NoSuchAlgorithmException must be thrown when algorithm is null"); 135 * method Assertions: throws NullPointerException when algorithm is null 136 * throws NoSuchAlgorithmException when algorithm is not available throws 137 * IllegalArgumentException when provider is null or empty; throws 138 * NoSuchProviderException when provider is available; returns 146 fail("NullPointerException or NoSuchAlgorithmException must be thrown when algorithm is null"); 162 fail("IllegalArgumentException must be thrown when provider is null (type: " 168 fail("IllegalArgumentException must be thrown when provider is empty (type: [all...] |
CertificateFactory2Test.java | 177 * throws NullPointerException when type is null 178 * throws CertificateException when type is not available 184 fail("NullPointerException or CertificateException must be thrown when type is null"); 208 * throws NullPointerException when type is null 209 * throws CertificateException when type is not available 210 * throws IllegalArgumentException when provider is null or empty; 211 * throws NoSuchProviderException when provider is available; 219 fail("NullPointerException or CertificateException must be thrown when type is null"); 236 fail("IllegalArgumentException must be thrown when provider is null (type: " 242 fail("IllegalArgumentException must be thrown when provider is empty (type: [all...] |