HomeSort by relevance Sort by last modified time
    Searched defs:rewrites (Results 1 - 2 of 2) sorted by null

  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 70 * rewrites from a single pass over the input. Just name the instruction
91 /** What index into rewrites List are we? */
246 List<? super RewriteOperation> rewrites = getProgram(programName); local
247 op.instructionIndex = rewrites.size();
248 rewrites.add(op);
272 List<? super RewriteOperation> rewrites = getProgram(programName); local
273 op.instructionIndex = rewrites.size();
274 rewrites.add(op);
368 List<RewriteOperation> rewrites = programs.get(programName); local
374 if ( rewrites==null || rewrites.isEmpty() )
    [all...]
  /external/tensorflow/tensorflow/compiler/aot/
codegen.cc 127 std::vector<std::pair<string, string>>* rewrites) {
143 rewrites->push_back({"{{I}}", absl::StrCat(i)});
144 rewrites->push_back({"{{TYPE}}", type});
145 rewrites->push_back({"{{DIM_VARS}}", absl::StrJoin(dim_vars, ", ")});
146 rewrites->push_back({"{{DIM_SIZES}}", dim_sizes});
147 rewrites->push_back({"{{INDICES}}", indices});
153 // the size of the code and M is the number of rewrites. It's fine for now
160 const std::vector<std::pair<string, string>>& rewrites) {
161 absl::StrReplaceAll(rewrites, &code);
177 std::vector<std::pair<string, string>> rewrites; local
223 std::vector<std::pair<string, string>> rewrites; local
255 std::vector<std::pair<string, string>> rewrites; local
269 std::vector<std::pair<string, string>> rewrites; local
645 const std::vector<std::pair<string, string>> rewrites = { local
    [all...]

Completed in 652 milliseconds