File tree 3 files changed +52
-3
lines changed
src/processing/mode/android
3 files changed +52
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Android-specific keywords
2
+
3
+ # For an explanation of these tags, see Token.java
4
+ # processing/app/src/processing/app/syntax/Token.java
5
+
6
+ VR LITERAL2
7
+ AR LITERAL2
8
+ STEREO LITERAL2
9
+ MONO LITERAL2
10
+ PORTRAIT LITERAL2
11
+ LANDSCAPE LITERAL2
12
+ displayDensity KEYWORD4
13
+
14
+ orientation FUNCTION1
15
+ hasPermission FUNCTION1
16
+ requestPermission FUNCTION1
17
+ touches KEYWORD4
18
+ touchEnded FUNCTION4
19
+ touchMoved FUNCTION4
20
+ touchStarted FUNCTION4
21
+ closeKeyboard FUNCTION1
22
+ openKeyboard FUNCTION1
23
+ wallpaperHomeCount FUNCTION1
24
+ wallpaperOffset FUNCTION1
25
+ wallpaperPreview FUNCTION1
26
+ wearAmbient FUNCTION1
27
+ wearBurnIn FUNCTION1
28
+ wearInsets FUNCTION1
29
+ wearInteractive FUNCTION1
30
+ wearLowBit FUNCTION1
31
+ wearRound FUNCTION1
32
+ wearSquare FUNCTION1
33
+ cameraUp FUNCTION1
34
+ eye FUNCTION1
35
+ getEyeMatrix FUNCTION1
36
+ getObjectMatrix FUNCTION1
37
+ getRayFromScreen FUNCTION1
38
+ intersectsSphere FUNCTION1
39
+ intersectsBox FUNCTION1
40
+ intersectsPlane FUNCTION1
41
+ calculate FUNCTION1
42
+ push FUNCTION1
43
+ pop FUNCTION1
44
+ circle FUNCTION1
45
+ square FUNCTION1
46
+
47
+ VRCamera KEYWORD5
48
+ ARTracker KEYWORD5
49
+ ARTrackable KEYWORD5
50
+ ARAnchor KEYWORD5
Original file line number Diff line number Diff line change @@ -92,7 +92,8 @@ public String getTitle() {
92
92
93
93
public File [] getKeywordFiles () {
94
94
return new File [] {
95
- Platform .getContentFile ("modes/java/keywords.txt" )
95
+ Platform .getContentFile ("modes/java/keywords.txt" ),
96
+ getContentFile ("keywords.txt" )
96
97
};
97
98
}
98
99
Original file line number Diff line number Diff line change 33
33
34
34
import java .io .File ;
35
35
import java .io .IOException ;
36
- import java .io .InputStream ;
37
36
import java .util .*;
38
37
import java .util .regex .Matcher ;
39
38
import java .util .regex .Pattern ;
@@ -257,7 +256,6 @@ public boolean isEmulator() {
257
256
258
257
public void setPackageName (String pkgName ) {
259
258
packageName = pkgName ;
260
- System .out .println ("setting package name to " + packageName );
261
259
}
262
260
263
261
// I/Process ( 9213): Sending signal. PID: 9213 SIG: 9
You can’t perform that action at this time.
0 commit comments