/external/clang/test/SemaCXX/ |
warn-thread-safety-analysis.cpp | 764 // expected-warning {{calling function 'aa_elr_fun' requires exclusive lock on 'aa_mu'}} 770 // expected-warning {{calling function 'aa_elr_fun' requires exclusive lock on 'aa_mu'}} 776 // expected-warning {{calling function 'aa_elr_fun_s' requires shared lock on 'aa_mu'}} 781 // expected-warning {{calling function 'test' requires exclusive lock on 'sls_mu'}} 786 // expected-warning {{calling function 'testShared' requires shared lock on 'sls_mu2'}} 792 // expected-warning {{calling function 'test' requires exclusive lock on 'sls_mu'}} 1211 x = foo(); // expected-warning {{calling function 'foo' requires exclusive lock on 'mu2'}} 1323 // expected-warning {{calling function 'bar' requires exclusive lock on 'child->lock_'}} \ [all...] |
/frameworks/base/media/java/android/media/ |
MediaPlayer.java | 163 * thrown to prevent programming errors such as calling {@link #prepare()}, 168 * <li>Calling 202 * of calling any method with side effect while a MediaPlayer object is 223 * <li>Calling {@link #start()} has not effect 236 * <li>Calling {@link #start()} to resume playback for a paused 241 * <li>Calling {@link #pause()} has no effect on 245 * <li>Calling {@link #stop()} stops playback and causes a 253 * <li>Calling {@link #stop()} has no effect on a MediaPlayer 289 * state, calling {@link #start()} can restart the playback from the 306 * Calling it does not change the object state. </p></td></tr [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
ServiceTest.java | 165 * In this mode, it's started by calling Context.startService() 166 * and stopped by calling Context.stopService(). 167 * It can stop itself by calling Service.stopSelf() or Service.stopSelfResult(). 173 * The connection is established by calling Context.bindService(), 174 * and is closed by calling Context.unbindService().
|
/external/chromium_org/media/audio/mac/ |
audio_low_latency_input_mac_unittest.cc | 184 // Test some additional calling sequences. 197 // Start(), Start() is a valid calling sequence (second call does nothing). 203 // Stop(), Stop() is a valid calling sequence (second call does nothing). 243 // Verify that the sink receieves OnClose() call when calling Close(). 285 // Verify that the sink receieves OnClose() call when calling Close().
|
/external/chromium_org/ppapi/cpp/ |
array_output.h | 168 // using the CompletionCallbackFactory. For example, if you're calling a 192 // using the CompletionCallbackFactory. For example, if you're calling a 218 // C++ resource objects in this array for passing to the calling code. 226 // using the CompletionCallbackFactory. For example, if you're calling a 266 // C++ resource objects in this array for passing to the calling code.
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
syscall.cc | 24 // ABI's calling conventions for passing arguments. We will only 26 // suitable calling conventions. 196 // N.B. These are not the calling conventions normally used by the ABI. 208 // N.B. These are not the calling conventions normally used by the ABI. 221 // N.B. These are not the calling conventions normally used by the ABI.
|
/external/icu4c/i18n/unicode/ |
region.h | 174 * or "ZZ" (Unknown region). For example, calling this method with region "IT" (Italy) returns the 184 * are not appropriate for use in this API. NULL will be returned in this case. For example, calling this method 194 * any sub-regions. For example, calling this method with region "150" (Europe) returns an enumeration containing 204 * sub-regions that match the given type. For example, calling this method with region "150" (Europe) and type 218 * regions for this region. Returns null for a non-deprecated region. For example, calling this method with region
|
/frameworks/base/core/java/android/hardware/camera2/ |
CameraDevice.java | 153 * before calling {@link android.view.SurfaceHolder#getSurface}.</li> 213 * #flush} and wait for the idle callback before calling configureOutputs. This will discard 223 * <p>Calling configureOutputs with the same arguments as the last call to 285 * {@link #configureOutputs} before calling this method.</p> 311 * is not null, and the calling thread has no looper. 331 * calling this method.</p> 333 * <p>The main difference between this method and simply calling 355 * is not null, and the calling thread has no looper. 385 * <p>To stop the repeating capture, call {@link #stopRepeating}. Calling 388 * <p>Calling this method will replace any earlier repeating request o [all...] |
/frameworks/base/core/java/android/os/ |
IBinder.java | 37 * expected behavior when calling an object that exists in the local 55 * process A to process B, the calling thread in A blocks in transact() as 67 * transaction to finish will take care of calling Binder.onTransact() on the 69 * calling remote binder object are the same as when calling local objects.
|
/frameworks/base/core/java/android/widget/ |
Filter.java | 31 * <p>Filtering operations performed by calling {@link #filter(CharSequence)} or 75 * <p>Starts an asynchronous filtering operation. Calling this method 88 * <p>Starts an asynchronous filtering operation. Calling this method 221 * <p>Handles filtering requests by calling 270 * UI thread. The processing involves calling
|
/frameworks/base/graphics/java/android/graphics/pdf/ |
PdfDocument.java | 93 * you can get by calling {@link Page#getCanvas()}. After you are done 94 * drawing the content you should finish the page by calling 100 * is not finished by calling {@link #finishPage(Page)}. 155 * PageInfo)} is not finished by calling {@link #finishPage(Page)}. 187 * calling {@link #finishPage(Page)}.
|
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarUtils.java | 195 * @param context The calling activity 263 * preferences and should cause the calling activity to refresh anything that 264 * depends on calling this method. 266 * @param context The calling activity 306 * @param context The calling activity
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/bigram/ |
dynamic_bigram_list_policy.cpp | 86 // The buffer address can be changed after calling buffer writing methods. 144 // The buffer address can be changed after calling buffer writing methods. 204 // The buffer address can be changed after calling buffer writing methods. 251 // The buffer address can be changed after calling buffer writing methods. 320 // The buffer address can be changed after calling buffer writing methods.
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
VoicemailContentProvider.java | 335 * /voicemail/?source_package=[source-package] where [source-package] is the same as the calling 355 * Gets the name of the calling package. 357 * It's possible (though unlikely) for there to be more than one calling package (requires that 360 * your calling package is, in which case we will return null. 391 * Creates a clause to restrict the selection to the calling provider or null if the caller has
|
/libcore/libart/src/main/java/java/lang/ |
Object.java | 215 * where typical calling code would have to deal with lots of temporaries. Unfortunately, 223 * calling {@code super.finalize()} yourself. 275 * calling one of the {@code wait()} methods) to be woken up. If more than 303 * of calling one of the {@code wait()} methods) to be woken up. The threads 320 * if the thread calling this method is not the owner of this 348 * Causes the calling thread to wait until another thread calls the {@code 365 * if the thread calling this method is not the owner of this 378 * Causes the calling thread to wait until another thread calls the {@code 400 * if the thread calling this method is not the owner of this 415 * Causes the calling thread to wait until another thread calls the {@cod [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
Object.java | 207 * where typical calling code would have to deal with lots of temporaries. Unfortunately, 215 * calling {@code super.finalize()} yourself. 263 * calling one of the {@code wait()} methods) to be woken up. If more than 291 * of calling one of the {@code wait()} methods) to be woken up. The threads 308 * if the thread calling this method is not the owner of this 336 * Causes the calling thread to wait until another thread calls the {@code 353 * if the thread calling this method is not the owner of this 368 * Causes the calling thread to wait until another thread calls the {@code 390 * if the thread calling this method is not the owner of this 405 * Causes the calling thread to wait until another thread calls the {@cod [all...] |
/external/llvm/include/llvm/Support/ |
TargetFolder.h | 170 return C; // avoid calling Fold 176 return C; // avoid calling Fold 181 return C; // avoid calling Fold 186 return C; // avoid calling Fold 200 return C; // avoid calling Fold 205 return C; // avoid calling Fold 210 return C; // avoid calling Fold
|
/external/llvm/lib/Target/Mips/ |
MipsCallingConv.td | 1 //===-- MipsCallingConv.td - Calling Conventions for Mips --*- tablegen -*-===// 9 // This describes the calling conventions for Mips architecture. 17 // Mips O32 Calling Convention 34 // Mips N32/64 Calling Convention 106 // Mips EABI Calling Convention 148 // Mips FastCC Calling Convention 207 // Mips Calling Convention Dispatch
|
/frameworks/base/core/tests/coretests/src/android/animation/ |
EventsTest.java | 59 // setup() method prior to calling the superclass setup() 248 * Verify that calling cancel on an unstarted animator does nothing. 257 * Verify that calling end on an unstarted animator starts/ends an animator. 267 * Verify that calling cancel on a started animator does the right thing. 290 * Verify that calling end on a started animator does the right thing. 463 // would have finished. This tests to make sure that we're not calling 490 // would have finished. This tests to make sure that we're not calling
|
/external/libnfc-nci/src/nfa/include/ |
nfa_api.h | [all...] |
/external/chromium_org/third_party/icu/source/test/letest/ |
letest.cpp | 66 log_err("Calling getGlyphCount() on an empty layout returned %d.\n", glyphCount); 76 log_err("Calling getGlyphs(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 83 log_err("Calling getGlyphs(glyphs, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 90 log_err("Calling getGlyphs(NULL, 0xFF000000L, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 97 log_err("Calling getGlyphs(glyphs, 0xFF000000L, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 104 log_err("Calling getCharIndices(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 111 log_err("Calling getCharIndices(indices, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 118 log_err("Calling getCharIndices(NULL, 1024, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 125 log_err("Calling getCharIndices(indices, 1024, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 132 log_err("Calling getGlyphPositions(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n") [all...] |
/external/icu4c/test/letest/ |
letest.cpp | 66 log_err("Calling getGlyphCount() on an empty layout returned %d.\n", glyphCount); 76 log_err("Calling getGlyphs(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 83 log_err("Calling getGlyphs(glyphs, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 90 log_err("Calling getGlyphs(NULL, 0xFF000000L, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 97 log_err("Calling getGlyphs(glyphs, 0xFF000000L, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 104 log_err("Calling getCharIndices(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 111 log_err("Calling getCharIndices(indices, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 118 log_err("Calling getCharIndices(NULL, 1024, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 125 log_err("Calling getCharIndices(indices, 1024, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 132 log_err("Calling getGlyphPositions(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n") [all...] |
/frameworks/base/core/java/android/hardware/location/ |
GeofenceHardwareImpl.java | 127 Log.e(TAG, "Remote Exception calling LocationManagerService"); 144 Log.e(TAG, "RemoteException calling LocationManagerService"); 244 Log.e(TAG, "AddGeofence: Remote Exception calling LocationManagerService"); 268 Log.e(TAG, "AddGeofence: RemoteException calling LocationManagerService"); 306 Log.e(TAG, "RemoveGeofence: Remote Exception calling LocationManagerService"); 318 Log.e(TAG, "RemoveGeofence: RemoteException calling LocationManagerService"); 345 Log.e(TAG, "PauseGeofence: Remote Exception calling LocationManagerService"); 357 Log.e(TAG, "PauseGeofence: RemoteException calling LocationManagerService"); 385 Log.e(TAG, "ResumeGeofence: Remote Exception calling LocationManagerService"); 397 Log.e(TAG, "ResumeGeofence: RemoteException calling LocationManagerService") [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prio.h | 497 * You may get a pointer to the default methods table by calling this function. 508 * A new layer may be allocated by calling PR_CreateIOLayerStub(). The 520 * A new stack may be created by calling PR_CreateIOLayer(). The 717 * by calling PR_GetError(). 749 * for the failure is obtained by calling PR_GetError(). 781 * for the failure is obtained by calling PR_GetError(). [all...] |
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/ |
PhoneNumberUtilTest.java | 108 // their country calling code. 287 // A number containing an invalid country calling code, which shouldn't have any NDC. 325 // RegionCode 001 is reserved for supporting non-geographical country calling code. We don't 617 // Testing the case of calling from a non-supported region. 621 // Testing the case with an invalid country calling code. [all...] |