HomeSort by relevance Sort by last modified time
    Searched refs:firstTime (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/tpm2/include/tpm2/
Manufacture_fp.h 14 BOOL firstTime // IN: indicates if this is the first call from main()
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllocationRecorder.java 27 private boolean firstTime = true;
35 if (firstTime) {
46 firstTime = false;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StringUtils.java 27 boolean firstTime = true;
29 if (firstTime) {
30 firstTime = false;
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/text/
TextUtils.java 72 boolean firstTime = true;
74 if (firstTime) {
75 firstTime = false;
91 boolean firstTime = true;
93 if (firstTime) {
94 firstTime = false;
  /system/chre/apps/chqts/src/general_test/
get_time_test.cc 43 uint64_t firstTime = chreGetTime();
44 if (firstTime == UINT64_C(0)) {
48 uint64_t prevTime = firstTime;
53 for (size_t i = 0; (prevTime == firstTime && i < kMaxGetTimeCount); i++) {
66 if (prevTime == firstTime) {
  /external/skia/src/core/
SkDrawLooper.cpp 45 for (bool firstTime = true;; firstTime = false) {
54 if (firstTime) {
  /external/skqp/src/core/
SkDrawLooper.cpp 45 for (bool firstTime = true;; firstTime = false) {
54 if (firstTime) {
  /external/webrtc/webrtc/modules/video_coding/test/
plotReceiveTrace.m 115 firstTime = packetTime(1,3);
116 plot(x, packetTime(:,3) - firstTime - slope, 'b.');
124 firstTime = firstPacketTime(1,2);
125 plot(x, firstPacketTime(:,2) - firstTime - slope, 'b.');
134 plot(x, completeTime(:,3) - firstTime - slope, 'ks');
143 plot(x, decodeTime(:,2) - firstTime - slope, 'r.');
152 plot(x, decodeCompleteTime(:,4) - firstTime - slope, 'g.');
161 plot(x, renderTime(:,2) - firstTime - slope, 'c-');
168 plot(x, renderTime(:,2) - firstTime - slope - renderTime(:, 3) - renderTime(:, 5), 'c--');
175 plot(x, renderTime(:,2) - firstTime - slope - renderTime(:, 3) - renderTime(:, 5), 'b-')
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeIterator.java 45 protected boolean firstTime = true;
72 firstTime = true;
78 if ( firstTime ) return root!=null;
86 if ( firstTime ) { // initial condition
87 firstTime = false;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 45 protected bool firstTime = true;
90 if (firstTime) {
92 firstTime = false;
145 firstTime = true;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 47 protected bool firstTime = true;
98 if ( firstTime )
101 firstTime = false;
173 firstTime = true;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeIterator.h 40 BOOL firstTime;
51 @property BOOL firstTime;
  /external/tpm2/
Manufacture.c 28 BOOL firstTime // IN: indicates if this is the first call from
35 if(!firstTime && g_manufactured)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService.java 64 long firstTime = SystemClock.elapsedRealtime();
69 firstTime, 30*1000, mAlarmSender);
AlarmController.java 141 long firstTime = SystemClock.elapsedRealtime();
142 firstTime += 15*1000;
147 firstTime, 15*1000, sender);
  /system/nfc/src/adaptation/
libmain.cc 170 static bool firstTime = true;
172 if ((firstTime == false) && (forceDelete == false)) return;
173 firstTime = false;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestTimer.java 94 public void schedule(TimerTask task, Date firstTime, long period) {
110 public void scheduleAtFixedRate(TimerTask task, Date firstTime, long period) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeIterator.h 43 BOOL firstTime;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeIterator.h 43 BOOL firstTime;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeIterator.h 43 BOOL firstTime;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
EmbeddedRungeKuttaIntegrator.java 225 boolean firstTime = true;
241 if (firstTime || !fsal) {
246 if (firstTime) {
259 firstTime = false;
  /external/jmdns/src/javax/jmdns/impl/
DNSTaskStarter.java 236 public synchronized void schedule(TimerTask task, Date firstTime, long period) {
238 super.schedule(task, firstTime, period);
256 public synchronized void scheduleAtFixedRate(TimerTask task, Date firstTime, long period) {
258 super.scheduleAtFixedRate(task, firstTime, period);
  /libcore/ojluni/src/main/java/java/util/
Timer.java 283 * @param firstTime First time at which task is to be executed.
285 * @throws IllegalArgumentException if {@code firstTime.getTime() < 0}, or
289 * @throws NullPointerException if {@code task} or {@code firstTime} is null
291 public void schedule(TimerTask task, Date firstTime, long period) {
294 sched(task, firstTime.getTime(), -period);
365 * @param firstTime First time at which task is to be executed.
367 * @throws IllegalArgumentException if {@code firstTime.getTime() < 0} or
371 * @throws NullPointerException if {@code task} or {@code firstTime} is null
373 public void scheduleAtFixedRate(TimerTask task, Date firstTime,
377 sched(task, firstTime.getTime(), period)
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
ZenOnboardingActivityTest.java 196 long firstTime = System.currentTimeMillis();
199 firstTime -= ALWAYS_SHOW_THRESHOLD / 2;
201 firstTime -= ALWAYS_SHOW_THRESHOLD * 2;
205 firstTime).commit();
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertReminder.java 122 * @param firstTime True if entering this method for the first time, otherwise false.
126 static boolean queueAlertReminder(Context context, boolean firstTime) {
146 if (interval == 0 || (interval == 1 && !firstTime)) {

Completed in 1141 milliseconds

1 2 3 4 5