Home
last modified time | relevance | path

Searched refs:gsub (Results 1 – 25 of 82) sorted by relevance

1234

/third_party/mindspore/mindspore/ccsrc/debug/
Danf_ir_dump.cc142 void DumpKernelInfo(const CNodePtr &node, const std::shared_ptr<SubGraphIRInfo> &gsub) { in DumpKernelInfo() argument
143 if (node == nullptr || gsub == nullptr) { in DumpKernelInfo()
151 gsub->buffer << " : ("; in DumpKernelInfo()
155 gsub->buffer << ", "; in DumpKernelInfo()
160 PrintKernelFormatAndType(gsub->buffer, format, type, shape); in DumpKernelInfo()
162 gsub->buffer << ") -> ("; in DumpKernelInfo()
166 gsub->buffer << ", "; in DumpKernelInfo()
171 PrintKernelFormatAndType(gsub->buffer, format, type, shape); in DumpKernelInfo()
173 gsub->buffer << ")"; in DumpKernelInfo()
174 gsub->buffer << std::endl; in DumpKernelInfo()
[all …]
Ddraw.cc71 auto gsub = (*sub_graphs)[sub_graph]; in DrawNodes() local
72 if (gsub == nullptr) { in DrawNodes()
74 gsub = std::make_shared<ModelDigraph>(sub_graph->ToString()); in DrawNodes()
76 gsub = std::make_shared<Digraph>(sub_graph->ToString()); in DrawNodes()
78 (*sub_graphs)[sub_graph] = gsub; in DrawNodes()
81 gsub->Node(nd); in DrawNodes()
172 for (const auto &gsub : sub_graphs) { in DrawByOpt() local
173 digraph->SubGraph(gsub.first, gsub.second); in DrawByOpt()
350 void BaseDigraph::SubGraph(const FuncGraphPtr &key, const std::shared_ptr<BaseDigraph> &gsub) { in SubGraph() argument
351 if (key == nullptr || gsub == nullptr) { in SubGraph()
[all …]
/third_party/skia/third_party/externals/brotli/research/
DBUILD.libdivsufsort25 "gsub(/#cmakedefine/, \"#define\"); " +
26 "gsub(/@DIVSUFSORT_EXPORT@/, \"\"); " +
27 "gsub(/@DIVSUFSORT_IMPORT@/, \"\"); " +
28 "gsub(/@INLINE@/, \"inline\"); " +
29 "gsub(/@INCFILE@/, \"#include <inttypes.h>\"); " +
30 "gsub(/@SAUCHAR_TYPE@/, \"uint8_t\"); " +
31 "gsub(/@SAINT32_TYPE@/, \"int32_t\"); " +
32 "gsub(/@SAINT_PRId@/, \"PRId32\"); "
40 "gsub(/@HAVE_IO_H 1@/, \"HAVE_IO_H 0\"); " +
50 "gsub(/@W64BIT@/, \"\"); " +
[all …]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
DGSubTable.java30 private final GsubCommonTable gsub; field in GSubTable
48 gsub = new GsubCommonTable(data, dataIsCanonical); in GSubTable()
58 scriptListTable.compareAndSet(null, gsub.createScriptList()); in scriptList()
70 featureListTable.compareAndSet(null, gsub.createFeatureList()); in featureList()
82 lookupListTable.compareAndSet(null, gsub.createLookupList()); in lookupList()
91 private final GsubCommonTable.Builder gsub; field in GSubTable.Builder
118 gsub = new GsubCommonTable.Builder(data, false); in Builder()
123 return gsub.subSerialize(newData); in subSerialize()
128 return gsub.subReadyToSerialize(); in subReadyToSerialize()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
DGSubTable.java30 private final GsubCommonTable gsub; field in GSubTable
48 gsub = new GsubCommonTable(data, dataIsCanonical); in GSubTable()
58 scriptListTable.compareAndSet(null, gsub.createScriptList()); in scriptList()
70 featureListTable.compareAndSet(null, gsub.createFeatureList()); in featureList()
82 lookupListTable.compareAndSet(null, gsub.createLookupList()); in lookupList()
91 private final GsubCommonTable.Builder gsub; field in GSubTable.Builder
118 gsub = new GsubCommonTable.Builder(data, false); in Builder()
123 return gsub.subSerialize(newData); in subSerialize()
128 return gsub.subReadyToSerialize(); in subReadyToSerialize()
/third_party/tzdata/
Dzishrink.awk162 gsub(/[\t ]+/, " ", line)
193 gsub(/ max /, " ma ", line)
194 gsub(/ min /, " mi ", line)
195 gsub(/ only /, " o ", line)
196 gsub(/ Jan /, " Ja ", line)
197 gsub(/ Feb /, " F ", line)
198 gsub(/ Apr /, " Ap ", line)
199 gsub(/ Aug /, " Au ", line)
200 gsub(/ Sep /, " S ", line)
201 gsub(/ Oct /, " O ", line)
[all …]
/third_party/flutter/skia/third_party/externals/sdl/premake/util/
Dsdl_dependency_checkers.lua68 libpath = libpath:gsub("\\", "/"):gsub("//", "/")
82 incpath = incpath:gsub("%$%(DXSDK_DIR%)", os.getenv("DXSDK_DIR")):gsub("\\", "/"):gsub("//", "/")
83 libpath = libpath:gsub("%$%(DXSDK_DIR%)", os.getenv("DXSDK_DIR")):gsub("\\", "/"):gsub("//", "/")
Dsdl_depends.lua65 abs_path = abs_path:gsub("\\", "/")
66 env_path = env_path:gsub("\\", "/")
/third_party/freetype/src/otvalid/
Dotvmod.c79 FT_Byte* volatile gsub; in otv_validate() local
88 base = gdef = gpos = gsub = jstf = math = NULL; in otv_validate()
128 error = otv_load_table( face, TTAG_GSUB, &gsub, &len_gsub ); in otv_validate()
169 if ( gsub ) in otv_validate()
171 ft_validator_init( &valid, gsub, gsub + len_gsub, FT_VALIDATE_DEFAULT ); in otv_validate()
173 otv_GSUB_validate( gsub, num_glyphs, &valid ); in otv_validate()
183 otv_GDEF_validate( gdef, gsub, gpos, num_glyphs, &valid ); in otv_validate()
193 otv_JSTF_validate( jstf, gsub, gpos, num_glyphs, &valid ); in otv_validate()
212 *ot_gsub = (FT_Bytes)gsub; in otv_validate()
224 FT_FREE( gsub ); in otv_validate()
Dotvalid.h42 FT_Bytes gsub,
61 FT_Bytes gsub,
/third_party/flutter/skia/third_party/externals/freetype/src/otvalid/
Dotvmod.c80 FT_Byte* volatile gsub; in otv_validate() local
89 base = gdef = gpos = gsub = jstf = math = NULL; in otv_validate()
129 error = otv_load_table( face, TTAG_GSUB, &gsub, &len_gsub ); in otv_validate()
170 if ( gsub ) in otv_validate()
172 ft_validator_init( &valid, gsub, gsub + len_gsub, FT_VALIDATE_DEFAULT ); in otv_validate()
174 otv_GSUB_validate( gsub, num_glyphs, &valid ); in otv_validate()
184 otv_GDEF_validate( gdef, gsub, gpos, num_glyphs, &valid ); in otv_validate()
194 otv_JSTF_validate( jstf, gsub, gpos, num_glyphs, &valid ); in otv_validate()
213 *ot_gsub = (FT_Bytes)gsub; in otv_validate()
225 FT_FREE( gsub ); in otv_validate()
Dotvalid.h43 FT_Bytes gsub,
62 FT_Bytes gsub,
Dotvjstf.c206 FT_Bytes gsub, in otv_JSTF_validate() argument
234 if ( gsub ) in otv_JSTF_validate()
235 otvalid->extra1 = otv_GSUBGPOS_get_Lookup_count( gsub ); in otv_JSTF_validate()
/third_party/skia/third_party/externals/freetype/src/otvalid/
Dotvmod.c79 FT_Byte* volatile gsub; in otv_validate() local
88 base = gdef = gpos = gsub = jstf = math = NULL; in otv_validate()
128 error = otv_load_table( face, TTAG_GSUB, &gsub, &len_gsub ); in otv_validate()
169 if ( gsub ) in otv_validate()
171 ft_validator_init( &valid, gsub, gsub + len_gsub, FT_VALIDATE_DEFAULT ); in otv_validate()
173 otv_GSUB_validate( gsub, num_glyphs, &valid ); in otv_validate()
183 otv_GDEF_validate( gdef, gsub, gpos, num_glyphs, &valid ); in otv_validate()
193 otv_JSTF_validate( jstf, gsub, gpos, num_glyphs, &valid ); in otv_validate()
212 *ot_gsub = (FT_Bytes)gsub; in otv_validate()
224 FT_FREE( gsub ); in otv_validate()
Dotvalid.h42 FT_Bytes gsub,
61 FT_Bytes gsub,
/third_party/flutter/skia/third_party/externals/sdl/premake/
Dpremake4.lua64 baseLoc = _OPTIONS["to"]:gsub("\\", "/")
195 local propPath = v:gsub("\\", "/")
346 fromPath = path.translate(fromPath, "/"):gsub("/", "\\\\")
347 toPath = path.translate(toPath, "/"):gsub("/", "\\\\")
348 toPathParent = path.translate(toPathParent, "/"):gsub("/", "\\\\")
352 fromPath = path.translate(fromPath, nil):gsub("\\", "/")
353 toPath = path.translate(toPath, nil):gsub("\\", "/")
381 fromPath = path.translate(fromPath, "/"):gsub("/", "\\\\")
382 toPath = path.translate(toPath, "/"):gsub("/", "\\\\")
383 toPathParent = path.translate(toPathParent, "/"):gsub("/", "\\\\")
[all …]
/third_party/musl/tools/
Dadd-cfi.i386.awk65 gsub(/(#|\/\/).*/, "")
68 gsub(/[ \t]+/, " ") # mawk doesn't understand \s
69 gsub(/ *, */, ",")
70 gsub(/ *: */, ": ")
71 gsub(/ $/, "")
72 gsub(/^ /, "")
Dadd-cfi.x86_64.awk60 gsub(/(#|\/\/).*/, "")
63 gsub(/[ \t]+/, " ") # mawk doesn't understand \s
64 gsub(/ *, */, ",")
65 gsub(/ *: */, ": ")
66 gsub(/ $/, "")
67 gsub(/^ /, "")
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/
DHtmlViewer.java22 GSubTable gsub = fonts[0].getTable(Tag.GSUB); in main() local
23 tag(gsub, args[1]); in main()
26 …public static void tag(GSubTable gsub, String outFileName) throws FileNotFoundException, Unsupport… in tag() argument
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/
DHtmlViewer.java22 GSubTable gsub = fonts[0].getTable(Tag.GSUB); in main() local
23 tag(gsub, args[1]); in main()
26 …public static void tag(GSubTable gsub, String outFileName) throws FileNotFoundException, Unsupport… in tag() argument
/third_party/boost/libs/graph/test/
Dsubgraph_props.cpp48 GlobalVertMap gsub = get(global(vertex_name), sg); in run() local
50 BOOST_ASSERT(get(gsub, v) == 5); in run()
51 put(gsub, v, 10); in run()
53 BOOST_ASSERT(get(gsub, v) == 10); in run()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DRule.java125 GSubTable gsub = font.getTable(Tag.GSUB); in featuredLookups() local
126 if (gsub == null) { in featuredLookups()
130 ScriptListTable scripts = gsub.scriptList(); in featuredLookups()
131 FeatureListTable featureList = gsub.featureList(); in featuredLookups()
132 LookupListTable lookupList = gsub.lookupList(); in featuredLookups()
156 GSubTable gsub = font.getTable(Tag.GSUB); in featuredRules() local
157 if (gsub == null) { in featuredRules()
161 LookupListTable lookupList = gsub.lookupList(); in featuredRules()
438 GSubTable gsub = font.getTable(Tag.GSUB); in dumpLookups() local
439 Map<Integer, Set<Rule>> ruleMap = RuleExtractor.extract(gsub.lookupList()); in dumpLookups()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DRule.java125 GSubTable gsub = font.getTable(Tag.GSUB); in featuredLookups() local
126 if (gsub == null) { in featuredLookups()
130 ScriptListTable scripts = gsub.scriptList(); in featuredLookups()
131 FeatureListTable featureList = gsub.featureList(); in featuredLookups()
132 LookupListTable lookupList = gsub.lookupList(); in featuredLookups()
156 GSubTable gsub = font.getTable(Tag.GSUB); in featuredRules() local
157 if (gsub == null) { in featuredRules()
161 LookupListTable lookupList = gsub.lookupList(); in featuredRules()
438 GSubTable gsub = font.getTable(Tag.GSUB); in dumpLookups() local
439 Map<Integer, Set<Rule>> ruleMap = RuleExtractor.extract(gsub.lookupList()); in dumpLookups()
/third_party/harfbuzz/src/
Dhb-subset-plan.cc87 hb_blob_ptr_t<OT::GSUB> gsub = hb_sanitize_context_t ().reference_table<OT::GSUB> (face); in _gsub_closure_glyphs_lookups_features() local
88 gsub->closure_lookups (face, in _gsub_closure_glyphs_lookups_features()
102 gsub->prune_features (gsub_lookups, &feature_indices); in _gsub_closure_glyphs_lookups_features()
104 gsub->find_duplicate_features (gsub_lookups, &feature_indices, &duplicate_feature_map); in _gsub_closure_glyphs_lookups_features()
107 gsub->prune_langsys (&duplicate_feature_map, gsub_langsys, &feature_indices); in _gsub_closure_glyphs_lookups_features()
110 gsub.destroy (); in _gsub_closure_glyphs_lookups_features()
/third_party/boost/libs/hana/
Dhana.sublime-project20 , "-e", "target = file.sub_ext('').to_s.gsub('/', '.')"
30 , "-e", "target = file.sub_ext('').to_s.gsub('/', '.')"

1234