Home
last modified time | relevance | path

Searched refs:COMMENT (Results 1 – 25 of 122) sorted by relevance

12345

/third_party/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-lex.l181 %x COMMENT DEFINE DONE HASH NEWLINE_CATCHUP UNREACHABLE
271 <INITIAL,DEFINE,HASH>"/*" { yy_push_state(COMMENT, yyscanner); }
272 <COMMENT>[^*\r\n]*
273 <COMMENT>[^*\r\n]*{NEWLINE} { yylineno++; yycolumn = 0; parser->commented_newlines++; }
274 <COMMENT>"*"+[^*/\r\n]*
275 <COMMENT>"*"+[^*/\r\n]*{NEWLINE} { yylineno++; yycolumn = 0; parser->commented_newlines++; }
276 <COMMENT>"*"+"/" {
587 <INITIAL,COMMENT,DEFINE,HASH><<EOF>> {
588 if (YY_START == COMMENT)
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
Dtypes.js4 …= exports.ROOT = exports.PSEUDO = exports.NESTING = exports.ID = exports.COMMENT = exports.COMBINA…
19 var COMMENT = 'comment'; variable
20 exports.COMMENT = COMMENT;
Dguards.js16 …types.CLASS] = true, _IS_TYPE[_types.COMBINATOR] = true, _IS_TYPE[_types.COMMENT] = true, _IS_TYPE…
29 var isComment = isNodeType.bind(null, _types.COMMENT);
/third_party/json/cmake/
Dci.cmake423 COMMENT "Compile and test with GCC using maximal warning flags"
433 COMMENT "Compile and test with Clang using maximal warning flags"
449 COMMENT "Compile and test with GCC for C++${CXX_STANDARD}"
460 COMMENT "Compile and test with Clang for C++${CXX_STANDARD}"
475 COMMENT "Compile and test with exceptions switched off"
489 COMMENT "Compile and test with implicit conversions switched off"
503 COMMENT "Compile and test with improved diagnostics enabled"
517 COMMENT "Compile and test with legacy discarded value comparison enabled"
532 COMMENT "Compile and test with global UDLs disabled"
559 COMMENT "Compile and test with coverage"
[all …]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
DTokenizer.l104 %x COMMENT
126 "/*" { BEGIN(COMMENT); }
127 <COMMENT>[^*\r\n]+
128 <COMMENT>"*"
129 <COMMENT>{NEWLINE} {
137 <COMMENT>"*/" {
302 else if (YY_START == COMMENT)
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DIcuDataDumper.java119 private LineType lastType = LineType.COMMENT;
184 case COMMENT: in processLine()
324 COMMENT("(?://|/\\*)\\s*(.*)"), enumConstant
338 .putAll(COMMENT, COMMENT)
339 .putAll(INLINE_VALUE, COMMENT, INLINE_VALUE, GROUP_START, GROUP_END)
340 .putAll(GROUP_START, COMMENT, GROUP_START, GROUP_END, INLINE_VALUE)
365 return new LineMatch(COMMENT, ImmutableList.of(line)::get); in match()
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
Dpreprocessor.l104 %x COMMENT
126 "/*" { BEGIN(COMMENT); }
127 <COMMENT>[^*\r\n]+
128 <COMMENT>"*"
129 <COMMENT>{NEWLINE} {
137 <COMMENT>"*/" {
302 else if (YY_START == COMMENT)
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
DOperatorsTableSchema.java73 public static final Column<String> COMMENT = RangesTableSchema.COMMENT; field in OperatorsTableSchema
81 .add(COMMENT)
DCommentsSchema.java55 private static final String COMMENT = "Comment"; field in CommentsSchema
57 public static final ImmutableList<String> HEADER = ImmutableList.of(REGION, LABEL, COMMENT);
102 if (row.containsKey(COMMENT)) { in getRowCallback()
106 row.get(COMMENT))); in getRowCallback()
DFormatsTableSchema.java53 public static final Column<String> COMMENT = Column.ofString("Comment"); field in FormatsTableSchema
64 .add(COMMENT)
82 toComment(formats.getOrDefault(id, COMMENT)))); in toFormatSpecs()
DAltFormatsSchema.java63 private static final String COMMENT = "Comment"; field in AltFormatsSchema
65 public static final ImmutableList<String> HEADER = ImmutableList.of(FORMAT, PARENT, COMMENT);
108 row -> altFormats.add(parseAltFormat(row.get(FORMAT), row.get(PARENT), row.get(COMMENT)))); in getRowCallback()
DShortcodesTableSchema.java170 public static final Column<String> COMMENT = RangesTableSchema.COMMENT; field in ShortcodesTableSchema
181 .add(COMMENT)
/third_party/python/Tools/scripts/
Dcleanfuture.py159 COMMENT = tokenize.COMMENT
168 while type in (COMMENT, NL, NEWLINE):
178 while type in (COMMENT, NL, NEWLINE):
206 if type is COMMENT:
Dreindent.py289 COMMENT=tokenize.COMMENT, argument
306 elif type == COMMENT:
/third_party/openssl/crypto/conf/
Dkeysets.pl24 my $COMMENT = 0x0080;
44 $v |= $COMMENT if $c =~ /\#/;
86 #define CONF_COMMENT $COMMENT
/third_party/node/deps/openssl/openssl/crypto/conf/
Dkeysets.pl24 my $COMMENT = 0x0080;
44 $v |= $COMMENT if $c =~ /\#/;
86 #define CONF_COMMENT $COMMENT
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/
DCsvTableTest.java22 import static com.google.i18n.phonenumbers.metadata.model.RangesTableSchema.COMMENT;
73 ImmutableList.of(TYPE, AREA_CODE_LENGTH, REGION_CA, REGION_US, COMMENT); in testRangeTableExport()
108 ImmutableList<Column<?>> columns = ImmutableList.of(COMMENT); in testDiff()
146 ImmutableList<Column<?>> columns = ImmutableList.of(COMMENT); in testEscaping()
165 ImmutableList.of(TYPE, AREA_CODE_LENGTH, REGION_US, COMMENT); in testOrdering()
196 csv.putRow(4, ImmutableMap.of(COMMENT, "Foo Bar")); in testOptionalRowOrdering()
/third_party/mtdev/patch/
Dapply_patch.sh17 <<COMMENT heredoc
28 COMMENT
/third_party/libinput/patch/
Dapply_patch.sh17 <<COMMENT heredoc
28 COMMENT
/third_party/python/Lib/xml/dom/
Dpulldom.py6 COMMENT = "COMMENT" variable
134 self.lastEvent[1] = [(COMMENT, node), None]
137 event = [(COMMENT, s), None]
178 elif e[0][0] == COMMENT:
180 e[0] = (COMMENT, n)
/third_party/parse5/packages/parse5/lib/common/
Dtoken.ts9 COMMENT, enumerator
93 readonly type: TokenType.COMMENT;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
DCMakeLists.txt44 COMMENT "Generate info tables for SPIR-V v${CONFIG_VERSION} core instructions and operands.")
65 COMMENT "Generate enum-string mapping for SPIR-V v${CONFIG_VERSION}.")
84 COMMENT "Generate spvasm.vim: Vim syntax file for SPIR-V assembly.")
96 COMMENT "Generate info tables for GLSL extended instructions and operands v${CONFIG_VERSION}.")
109COMMENT "Generate info tables for OpenCL extended instructions and operands v${CONFIG_VERSION}.")
125 COMMENT "Generate extended instruction tables for ${VENDOR_TABLE}.")
138 COMMENT "Generate language specific header for ${NAME}.")
172 COMMENT "Generate tables based on the SPIR-V XML registry.")
203 COMMENT "Update build-version.inc in the SPIRV-Tools build directory (if necessary).")
/third_party/spirv-tools/source/
DCMakeLists.txt44 COMMENT "Generate info tables for SPIR-V v${CONFIG_VERSION} core instructions and operands.")
65 COMMENT "Generate enum-string mapping for SPIR-V v${CONFIG_VERSION}.")
84 COMMENT "Generate spvasm.vim: Vim syntax file for SPIR-V assembly.")
96 COMMENT "Generate info tables for GLSL extended instructions and operands v${CONFIG_VERSION}.")
109COMMENT "Generate info tables for OpenCL extended instructions and operands v${CONFIG_VERSION}.")
125 COMMENT "Generate extended instruction tables for ${VENDOR_TABLE}.")
138 COMMENT "Generate language specific header for ${NAME}.")
172 COMMENT "Generate tables based on the SPIR-V XML registry.")
203 COMMENT "Update build-version.inc in the SPIRV-Tools build directory (if necessary).")
/third_party/skia/third_party/externals/spirv-tools/source/
DCMakeLists.txt44 COMMENT "Generate info tables for SPIR-V v${CONFIG_VERSION} core instructions and operands.")
65 COMMENT "Generate enum-string mapping for SPIR-V v${CONFIG_VERSION}.")
84 COMMENT "Generate spvasm.vim: Vim syntax file for SPIR-V assembly.")
96 COMMENT "Generate info tables for GLSL extended instructions and operands v${CONFIG_VERSION}.")
109COMMENT "Generate info tables for OpenCL extended instructions and operands v${CONFIG_VERSION}.")
125 COMMENT "Generate extended instruction tables for ${VENDOR_TABLE}.")
138 COMMENT "Generate language specific header for ${NAME}.")
172 COMMENT "Generate tables based on the SPIR-V XML registry.")
203 COMMENT "Update build-version.inc in the SPIRV-Tools build directory (if necessary).")
/third_party/python/Tools/peg_generator/pegen/
Dtokenizer.py35 if tok.type in (tokenize.NL, tokenize.COMMENT):
51 if tok.type in (tokenize.NL, tokenize.COMMENT):

12345