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

1 2 3

  /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;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService.java 64 long firstTime = SystemClock.elapsedRealtime();
69 firstTime, 30*1000, mAlarmSender);
AlarmController.java 128 long firstTime = SystemClock.elapsedRealtime();
129 firstTime += 15*1000;
134 firstTime, 15*1000, sender);
  /external/webkit/Source/JavaScriptCore/runtime/
TimeoutChecker.cpp 103 static double firstTime = currentTime();
104 return static_cast<unsigned> ((currentTime() - firstTime) * 1000);
  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 37 private boolean firstTime = true;
62 if (firstTime) {
63 firstTime = false;
IntKeyframeSet.java 37 private boolean firstTime = true;
62 if (firstTime) {
63 firstTime = false;
  /frameworks/base/core/java/android/net/
LinkCapabilities.java 306 boolean firstTime = true;
308 if (firstTime) {
309 firstTime = false;
  /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/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/luni/src/main/java/javax/xml/datatype/
FactoryFinder.java 54 private static boolean firstTime = true;
183 if (firstTime) {
185 if (firstTime) {
187 firstTime = false;
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactoryFinder.java 59 private static boolean firstTime = true;
193 if(firstTime){
195 if(firstTime){
197 firstTime = false;
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 66 private static boolean firstTime = true;
173 if(firstTime){
175 if(firstTime){
177 firstTime = false;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoaderClient.h 92 void authRequired(scoped_refptr<net::AuthChallengeInfo>, bool firstTime, bool suppressDialog);
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 279 double firstTime;
292 s->firstTime = 0.;
311 if (now - s->firstTime >= MAX_PERIOD_MS) {
343 s->firstTime = now;
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 288 double firstTime;
301 s->firstTime = 0.;
320 if (now - s->firstTime >= MAX_PERIOD_MS) {
352 s->firstTime = now;
  /gdk/samples/bitmap-plasma-llvm/jni/
plasmaLLVM.cpp 281 double firstTime;
294 s->firstTime = 0.;
313 if (now - s->firstTime >= MAX_PERIOD_MS) {
345 s->firstTime = now;
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 198 static bool firstTime = true;
199 if (firstTime) {
200 firstTime = false;
  /external/icu4c/common/
punycode.c 159 adaptBias(int32_t delta, int32_t length, UBool firstTime) {
162 if(firstTime) {
  /external/webkit/Source/WebCore/inspector/front-end/
Drawer.js 62 var firstTime = !this._visibleView;
68 if (x && !firstTime) {
  /packages/apps/Settings/src/com/android/settings/users/
UserDetailsSettings.java 206 boolean firstTime = mAppStates.isEmpty();
221 if (firstTime) {

Completed in 1944 milliseconds

1 2 3