Searched defs:start (Results 251 - 275 of 555) sorted by relevance

<<11121314151617181920>>

/frameworks/base/keystore/tests/src/android/security/keystore/
H A DAndroidKeyPairGeneratorTest.java331 AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end)
399 assertDateEquals("The notBefore date should be the one passed into the params", start,
330 assertKeyPairCorrect(KeyPair pair, String alias, String keyType, int keySize, AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end) argument
/frameworks/base/libs/hwui/
H A DFrameInfo.h130 inline int64_t duration(FrameInfoIndex start, FrameInfoIndex end) const { argument
132 int64_t starttime = get(start);
136 start < FrameInfoIndex::SyncQueued) {
H A DFrameInfoVisualizer.cpp44 FrameInfoIndex start; member in struct:android::uirenderer::BarSegment
168 void FrameInfoVisualizer::nextBarSegment(FrameInfoIndex start, FrameInfoIndex end) { argument
192 rect[ri + 1] -= mVerticalUnit * durationMS(fi, start, end);
199 nextBarSegment(Bar[i].start, Bar[i].end);
H A DGradientCache.cpp208 void GradientCache::mixBytes(GradientColor& start, GradientColor& end, float amount, argument
211 const float alpha = start.a * oppAmount + end.a * amount;
214 *dst++ = uint8_t(a * (start.r * oppAmount + end.r * amount));
215 *dst++ = uint8_t(a * (start.g * oppAmount + end.g * amount));
216 *dst++ = uint8_t(a * (start.b * oppAmount + end.b * amount));
220 void GradientCache::mixFloats(GradientColor& start, GradientColor& end, float amount, argument
223 const float a = start.a * oppAmount + end.a * amount;
226 *d++ = a * (start.r * oppAmount + end.r * amount);
227 *d++ = a * (start.g * oppAmount + end.g * amount);
228 *d++ = a * (start
251 GradientColor start; local
[all...]
H A DJankTracker.cpp38 FrameInfoIndex start; member in struct:android::uirenderer::Comparison
73 // If a frame is > this, start counting in increments of 2ms
75 // If a frame is > this, start counting in increments of 4ms
94 // If index was < minThreshold at the start of all this it's going to
226 int64_t delta = frame.duration(COMPARISONS[i].start, COMPARISONS[i].end);
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.cpp102 void* start() { function in class:android::uirenderer::LinearAllocator::Page
107 return (void*) (((size_t)start()) + pageSize);
142 void* LinearAllocator::start(Page* p) { function in class:android::uirenderer::LinearAllocator
170 mNext = start(mCurrentPage);
184 return start(page);
231 if (ptr >= start(mCurrentPage) && ptr < end(mCurrentPage)
/frameworks/base/media/java/android/media/
H A DMediaMuxer.java53 * muxer.start();
158 * <p>This method should be called before {@link #start}. Calling this
183 * This method should be called before {@link #start}. The geodata is stored
194 * @throws IllegalStateException If this method is called after {@link #start}.
221 public void start() { method in class:MediaMuxer
229 throw new IllegalStateException("Can't start due to wrong state.");
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DRgbPlayerActivity.java244 public void start() { method in class:RgbPlayerActivity.RgbView
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DCopyService.java104 public static void start(Context context, List<DocumentInfo> srcDocs, DocumentStack dstStack) { method in class:CopyService
186 * Sets up the CopyService to start tracking and sending notifications for the given batch of
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPasswordView.java178 // If no icon is visible, reset the start margin on the password field so the text is
296 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
303 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerUI.java60 public void start() { method in class:PowerUI
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DServiceMonitor.java56 /** The service is about to start, this is a chance to perform cleanup and
57 * delay the start if necessary */
170 public void start() { method in class:ServiceMonitor
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DMobileDataControllerImpl.java123 final long start, end;
134 start = policyTime.toMillis(false);
137 start = addMonth(policyTime, -1).toMillis(false);
143 start = now - DateUtils.WEEK_IN_MILLIS * 4;
146 final NetworkStatsHistory.Entry entry = history.getValues(start, end, now, null);
149 new Date(start), new Date(end), new Date(now), callEnd - callStart,
157 usage.period = formatDateRange(start, end);
225 private String formatDateRange(long start, long end) { argument
229 return DateUtils.formatDateRange(mContext, PERIOD_FORMATTER, start, end, flags, null)
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerService.java64 public void start() { method in class:TunerService
166 sInstance.start();
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java151 public void start() { method in class:StorageNotification
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeUI.java67 public void start() { method in class:VolumeUI
78 mReceiver.start();
82 mVolumeControllerService.start();
175 public void start() { method in class:VolumeUI.Receiver
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java58 public void start(Attributes attributes) { method in class:SafeSaxTest.ElementCounter
71 public void start(Attributes attributes) { method in class:SafeSaxTest.TextElementCounter
173 long start = System.currentTimeMillis();
176 long elapsed = System.currentTimeMillis() - start;
181 long start = System.currentTimeMillis();
184 long elapsed = System.currentTimeMillis() - start;
190 long start = System.currentTimeMillis();
192 long elapsed = System.currentTimeMillis() - start;
245 public void start(Attributes attributes) {
255 public void start(Attribute
339 public void start(Attributes attributes) { method in class:SafeSaxTest.HandlerFactory.VideoListener
450 characters(char text[], int start, int length) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DServiceWatcher.java129 public boolean start() { method in class:ServiceWatcher
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DDeviceDiscoveryAction.java104 boolean start() { method in class:DeviceDiscoveryAction
H A DHdmiCecFeatureAction.java82 abstract boolean start(); method in class:HdmiCecFeatureAction
H A DHotplugDetectionAction.java68 boolean start() { method in class:HotplugDetectionAction
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DDisplaySourceService.java66 public void start() { method in class:DisplaySourceService
67 super.start();
140 mVirtualDisplayThread.start();
204 codec.start();
/frameworks/base/tools/aapt/
H A Dpseudolocalize.cpp84 out.append(mImpl->start());
206 String16 PseudoMethodAccent::start() { function in class:PseudoMethodAccent
367 // Word start
/frameworks/base/tools/aapt2/
H A DUtil.cpp38 StringPiece::const_iterator start = std::begin(str); local
41 current = std::find(start, end, sep);
42 parts.emplace_back(str.substr(start, current).toString());
47 start = current + 1;
65 const char16_t* start = str.data(); local
68 while (start != end && util::isspace16(*start)) {
69 start++;
72 while (end != start && util::isspace16(*(end - 1))) {
76 return StringPiece16(start, en
150 parseUnicodeCodepoint(const char16_t** start, const char16_t* end) argument
175 const char16_t* start = str.begin(); local
[all...]
H A DUtil.h239 const Char* start = token.end(); local
241 if (start == end) {
246 start += 1;
247 const Char* current = start;
250 token.assign(start, current - start);
255 token.assign(start, end - start);

Completed in 574 milliseconds

<<11121314151617181920>>