OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstTime
(Results
1 - 25
of
58
) 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
;
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
NonVolatileStore.cpp
190
static bool
firstTime
= true;
195
if (
firstTime
== false)
197
firstTime
= false;
/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;
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertReminder.java
103
static boolean queueAlertReminder(Context context, boolean
firstTime
) {
123
if (interval == 0 || (interval == 1 && !
firstTime
)) {
/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;
195
if(
firstTime
){
197
if(
firstTime
){
199
firstTime
= false;
/libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java
66
private static boolean
firstTime
= true;
175
if(
firstTime
){
177
if(
firstTime
){
179
firstTime
= false;
/external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoaderClient.h
92
void authRequired(scoped_refptr<net::AuthChallengeInfo>, bool
firstTime
, bool suppressDialog);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
TvStatusBar.java
124
protected void tick(IBinder key, StatusBarNotification n, boolean
firstTime
) {
/external/libnfc-nci/src/adaptation/
libmain.c
204
static BOOLEAN
firstTime
= TRUE;
207
if (
firstTime
== FALSE)
209
firstTime
= FALSE;
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c
278
double
firstTime
;
291
s->
firstTime
= 0.;
310
if (now - s->
firstTime
>= MAX_PERIOD_MS) {
342
s->
firstTime
= now;
/development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c
287
double
firstTime
;
300
s->
firstTime
= 0.;
319
if (now - s->
firstTime
>= MAX_PERIOD_MS) {
351
s->
firstTime
= now;
/external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp
198
static bool
firstTime
= true;
199
if (
firstTime
) {
200
firstTime
= false;
Completed in 3243 milliseconds
1
2
3