OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isComment
(Results
1 - 25
of
42
) sorted by null
1
2
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
TokenTypes.java
34
public static boolean
isComment
(int kind) {
35
return getCategory(kind).
isComment
();
JavaToken.java
219
public boolean
isComment
() {
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
ChildTextElement.java
96
public boolean
isComment
() {
TextElement.java
52
public abstract boolean
isComment
();
55
return isWhiteSpace() ||
isComment
();
TokenTextElement.java
102
public boolean
isComment
() {
103
return token.getCategory().
isComment
();
/external/boringssl/src/util/
doc.go
80
func
isComment
(line string) bool {
329
if len(lines) > 0 &&
isComment
(lines[0]) {
365
if
isComment
(line) {
400
if
isComment
(line) {
/external/proguard/src/proguard/
WordReader.java
146
isComment
(currentLine.charAt(currentIndex)))
173
isComment
(currentLine.charAt(currentIndex)))
225
isComment
(currentCharacter)) &&
257
isComment
(currentCharacter)) {
353
private boolean
isComment
(char character)
/prebuilts/go/darwin-x86/src/html/template/
context.go
175
//
isComment
is true for any state that contains content meant for template
177
func
isComment
(s state) bool {