/frameworks/base/core/java/android/net/ |
D | UidRange.java | 33 public final int stop; field in UidRange 40 stop = stopUid; in UidRange() 54 return stop / PER_USER_RANGE; in getEndUser() 58 return start <= uid && uid <= stop; in contains() 65 return 1 + stop - start; in count() 72 return start <= other.start && other.stop <= stop; in containsRange() 79 result = 31 * result + stop; in hashCode() 90 return start == other.start && stop == other.stop; in equals() 97 return start + "-" + stop; in toString() 111 dest.writeInt(stop); in writeToParcel() [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/ |
D | GPBCodedOutputStream.m | 443 //% [values enumerate##ACCESSOR_NAME##ValuesWithBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 444 //%#pragma unused(idx, stop) 449 //% [values enumerate##ACCESSOR_NAME##ValuesWithBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 450 //%#pragma unused(idx, stop) 454 //% [values enumerate##ACCESSOR_NAME##ValuesWithBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 455 //%#pragma unused(idx, stop) 477 [values enumerateValuesWithBlock:^(double value, NSUInteger idx, BOOL *stop) { 478 #pragma unused(idx, stop) 483 [values enumerateValuesWithBlock:^(double value, NSUInteger idx, BOOL *stop) { 484 #pragma unused(idx, stop) [all …]
|
D | GPBArray.h | 65 - (void)enumerateValuesWithBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block; 67 usingBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block; 105 - (void)enumerateValuesWithBlock:(void (^)(uint32_t value, NSUInteger idx, BOOL *stop))block; 107 usingBlock:(void (^)(uint32_t value, NSUInteger idx, BOOL *stop))block; 145 - (void)enumerateValuesWithBlock:(void (^)(int64_t value, NSUInteger idx, BOOL *stop))block; 147 usingBlock:(void (^)(int64_t value, NSUInteger idx, BOOL *stop))block; 185 - (void)enumerateValuesWithBlock:(void (^)(uint64_t value, NSUInteger idx, BOOL *stop))block; 187 usingBlock:(void (^)(uint64_t value, NSUInteger idx, BOOL *stop))block; 225 - (void)enumerateValuesWithBlock:(void (^)(float value, NSUInteger idx, BOOL *stop))block; 227 usingBlock:(void (^)(float value, NSUInteger idx, BOOL *stop))block; [all …]
|
D | GPBDictionary.m | 333 [dict enumerateKeysAndObjectsUsingBlock:^(NSString *key, id obj, BOOL *stop) { 334 #pragma unused(stop) 350 [dict enumerateKeysAndObjectsUsingBlock:^(NSString *key, id obj, BOOL *stop) { 351 #pragma unused(stop) 797 //% (void (^)(KEY_TYPE KisP##key, VALUE_TYPE value, BOOL *stop))block { 801 //% BOOL *stop) { 806 //% block(UNWRAP##KEY_NAME(aKey), unwrapped, stop); 865 //% (void (^)(KEY_TYPE KisP##key, VALUE_TYPE VNAME_VAR, BOOL *stop))block { 868 //% BOOL *stop) { 869 //% block(UNWRAP##KEY_NAME(aKey), UNWRAP##VALUE_NAME(a##VNAME_VAR$u), stop); [all …]
|
D | GPBDictionary.h | 80 (void (^)(uint32_t key, uint32_t value, BOOL *stop))block; 117 (void (^)(uint32_t key, int32_t value, BOOL *stop))block; 154 (void (^)(uint32_t key, uint64_t value, BOOL *stop))block; 191 (void (^)(uint32_t key, int64_t value, BOOL *stop))block; 228 (void (^)(uint32_t key, BOOL value, BOOL *stop))block; 265 (void (^)(uint32_t key, float value, BOOL *stop))block; 302 (void (^)(uint32_t key, double value, BOOL *stop))block; 351 (void (^)(uint32_t key, int32_t value, BOOL *stop))block; 361 (void (^)(uint32_t key, int32_t rawValue, BOOL *stop))block; 407 (void (^)(uint32_t key, ObjectType object, BOOL *stop))block; [all …]
|
D | GPBUnknownField.m | 162 enumerateValuesWithBlock:^(uint64_t value, NSUInteger idx, BOOL *stop) { 163 #pragma unused(idx, stop) 168 enumerateValuesWithBlock:^(uint32_t value, NSUInteger idx, BOOL *stop) { 169 #pragma unused(idx, stop) 174 enumerateValuesWithBlock:^(uint64_t value, NSUInteger idx, BOOL *stop) { 175 #pragma unused(idx, stop) 208 enumerateValuesWithBlock:^(uint64_t value, NSUInteger idx, BOOL *stop) { 209 #pragma unused(idx, stop) 214 enumerateValuesWithBlock:^(uint32_t value, NSUInteger idx, BOOL *stop) { 215 #pragma unused(idx, stop) [all …]
|
D | GPBArray.m | 197 …enumerate##ACCESSOR_NAME##ValuesWithBlock:(void (^)(TYPE value, NSUInteger idx, BOOL *stop))block { 202 … ACCESSOR_NAME$S usingBlock:(void (^)(TYPE value, NSUInteger idx, BOOL *stop))block { 204 //% BOOL stop = NO; 207 //% block(_values[i], i, &stop); 208 //% if (stop) break; 212 //% block(_values[i - 1], (i - 1), &stop); 213 //% if (stop) break; 408 - (void)enumerateValuesWithBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block { argument 413 usingBlock:(void (^)(int32_t value, NSUInteger idx, BOOL *stop))block { argument 415 BOOL stop = NO; [all …]
|
/frameworks/base/core/java/android/speech/tts/ |
D | AudioPlaybackHandler.java | 41 private void stop(PlaybackQueueItem item) { in stop() method in AudioPlaybackHandler 46 item.stop(TextToSpeech.STOPPED); in stop() 64 stop(current); in stopForApp() 68 public void stop() { in stop() method in AudioPlaybackHandler 72 stop(mCurrentWorkItem); in stop() 88 stop(mCurrentWorkItem); in quit() 109 stop(item); in removeWorkItemsFor()
|
/frameworks/rs/tests/cpp_api/latency/ |
D | latency.cpp | 75 struct timeval start, stop; in main() local 85 gettimeofday(&stop, nullptr); in main() 87 …long long elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_… in main() 101 gettimeofday(&stop, nullptr); in main() 102 elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec); in main()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/ |
D | GPBArrayTests.m | 99 //% [array enumerateValuesWithBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 100 //% #pragma unused(value, idx, stop) 104 //% usingBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 105 //% #pragma unused(value, idx, stop) 117 //% [array enumerateValuesWithBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 120 //% XCTAssertNotEqual(stop, NULL); 123 //% usingBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 126 //% XCTAssertNotEqual(stop, NULL); 143 //% [array enumerateValuesWithBlock:^(TYPE value, NSUInteger idx, BOOL *stop) { 146 //% XCTAssertNotEqual(stop, NULL); [all …]
|
/frameworks/base/libs/hwui/utils/ |
D | Timing.h | 28 struct timeval stop; in ~MethodTimer() local 29 gettimeofday(&stop, nullptr); in ~MethodTimer() 30 long long elapsed = (stop.tv_sec * 1000000) - (mStart.tv_sec * 1000000) + in ~MethodTimer() 31 (stop.tv_usec - mStart.tv_usec); in ~MethodTimer()
|
/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | IdleTimerTest.cpp | 79 mIdleTimer->stop(); in TEST_F() 101 mIdleTimer->stop(); in TEST_F() 132 mIdleTimer->stop(); in TEST_F() 144 mIdleTimer->stop(); in TEST_F() 164 mIdleTimer->stop(); in TEST_F() 176 mIdleTimer->stop(); in TEST_F() 186 mIdleTimer->stop(); in TEST_F() 199 mIdleTimer->stop(); in TEST_F()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/display/ |
D | AmbientBrightnessStatsTrackerTest.java | 68 statsTracker.stop(); in testBrightnessStatsTrackerOverSingleDay() 83 statsTracker.stop(); in testBrightnessStatsTrackerOverSingleDay() 107 statsTracker.stop(); in testBrightnessStatsTrackerOverMultipleDays() 115 statsTracker.stop(); in testBrightnessStatsTrackerOverMultipleDays() 145 statsTracker.stop(); in testBrightnessStatsTrackerOverMultipleUsers() 153 statsTracker.stop(); in testBrightnessStatsTrackerOverMultipleUsers() 184 statsTracker.stop(); in testBrightnessStatsTrackerOverMaxDays() 306 statsTracker.stop(); in testWriteThenReadAmbientBrightnessStats() 316 statsTracker.stop(); in testWriteThenReadAmbientBrightnessStats() 323 statsTracker.stop(); in testWriteThenReadAmbientBrightnessStats() [all …]
|
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/ |
D | ScoAudioTest.java | 184 mMediaControllers[0].stop(); in onPause() 185 mMediaControllers[1].stop(); in onPause() 282 ImageButton stop = findViewById(stopButtonId); in SimpleMediaController() local 286 if (stop != null) { in SimpleMediaController() 287 stop.setOnClickListener(this); in SimpleMediaController() 298 ImageButton stop = findViewById(stopButtonId); in SimpleMediaController() local 302 if (stop != null) { in SimpleMediaController() 303 stop.setOnClickListener(this); in SimpleMediaController() 312 stop(); in onClick() 319 public void stop() { in stop() method in ScoAudioTest.SimpleMediaController [all …]
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | InstallerTest.java | 62 public void stop() { in stop() method in InstallerTest.Timer 123 mManual.stop(); in testGetAppSize() 128 mQuota.stop(); in testGetAppSize() 145 mManual.stop(); in testGetUserSize() 150 mQuota.stop(); in testGetUserSize() 162 mManual.stop(); in testGetExternalSize() 167 mQuota.stop(); in testGetExternalSize()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | containers.py | 303 self.__setslice__(key.start, key.stop, value) 308 def __getslice__(self, start, stop): argument 310 return self._values[start:stop] 312 def __setslice__(self, start, stop, values): argument 317 self._values[start:stop] = new_values 325 def __delslice__(self, start, stop): argument 327 del self._values[start:stop] 410 def __getslice__(self, start, stop): argument 412 return self._values[start:stop] 419 def __delslice__(self, start, stop): argument [all …]
|
/frameworks/base/services/tests/servicestests/src/com/android/server/location/ |
D | ComprehensiveCountryDetectorTest.java | 68 public void stop() { in createLocationBasedCountryDetector() method in ComprehensiveCountryDetectorTest.TestCountryDetector 159 countryDetector.stop(); 183 countryDetector.stop(); 203 countryDetector.stop(); 222 countryDetector.stop(); 248 countryDetector.stop(); 264 countryDetector.stop();
|
/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
D | SoundPoolTest.java | 142 mSoundPool.stop(id); in TestSounds() 164 mSoundPool.stop(id); in TestScales() 191 mSoundPool.stop(id); in TestRates() 217 mSoundPool.stop(id); in TestPriority() 232 mSoundPool.stop(id); in TestPriority() 239 mSoundPool.stop(normalId); in TestPriority() 271 mSoundPool.stop(id); in TestPauseResume() 299 mSoundPool.stop(ids[i]); in TestPauseResume() 327 mSoundPool.stop(id); in TestVolume()
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
D | StopWatchMap.java | 51 public void stop() { in stop() method in StopWatch 90 public void stop(String stopWatchName) { in stop() method in StopWatchMap 98 mStopWatches.get(stopWatchName).stop(); in stop()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | ScanOnlyModeManagerTest.java | 157 mScanOnlyModeManager.stop(); in scanModeStopCleansUpState() 183 mScanOnlyModeManager.stop(); in scanModeStopWhenNotStartedDoesNotUpdateScanStateUpdates() 188 mScanOnlyModeManager.stop(); in scanModeStopWhenNotStartedDoesNotUpdateScanStateUpdates() 231 mScanOnlyModeManager.stop(); in noCallbackOnInterfaceDestroyedWhenAlreadyStopped() 258 mScanOnlyModeManager.stop(); in scanModeExitStopsWakeupController() 264 inOrder.verify(mWakeupController).stop(); in scanModeExitStopsWakeupController()
|
/frameworks/av/media/libstagefright/webm/ |
D | WebmFrameThread.h | 40 virtual status_t stop(); 41 virtual ~WebmFrameThread() { stop(); } in ~WebmFrameThread() 78 status_t stop(); 140 status_t stop();
|
/frameworks/base/tests/FlickerTests/lib/test/src/com/android/server/wm/flicker/monitor/ |
D | WindowManagerTraceMonitorTest.java | 48 mWindowManagerTraceMonitor.stop(); in teardown() 62 mWindowManagerTraceMonitor.stop(); in canStopWindowTrace() 69 mWindowManagerTraceMonitor.stop(); in captureWindowTrace()
|
D | LayersTraceMonitorTest.java | 48 mLayersTraceMonitor.stop(); in teardown() 62 mLayersTraceMonitor.stop(); in canStopLayersTrace() 69 mLayersTraceMonitor.stop(); in captureLayersTrace()
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
D | SimplePlayer.java | 84 ImageButton stop = (ImageButton) stopButton; in set() local 88 stop.setOnClickListener(this); in set() 102 stop(); in onClick() 159 public void stop() { in stop() method in SimplePlayer 161 mMediaPlayer.stop(); in stop()
|
/frameworks/av/media/libstagefright/ |
D | AudioPlayer.cpp | 232 mSource->stop(); in start() 260 mSource->stop(); in start() 283 mAudioSink->stop(); in pause() 285 mAudioTrack->stop(); in pause() 325 mAudioSink->stop(); in reset() 341 mAudioTrack->stop(); in reset() 365 mSource->stop(); in reset() 533 mAudioSink->stop(); in fillBuffer() 535 mAudioTrack->stop(); in fillBuffer()
|