Home
last modified time | relevance | path

Searched refs:rootName (Results 1 – 25 of 43) sorted by relevance

12

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DDefaultSerializerProvider.java309 PropertyName rootName = _config.getFullRootName(); in serializeValue() local
310 if (rootName == null) { // not explicitly specified in serializeValue()
315 } else if (!rootName.isEmpty()) { in serializeValue()
316 _serialize(gen, value, ser, rootName); in serializeValue()
346 PropertyName rootName = _config.getFullRootName(); in serializeValue() local
347 if (rootName == null) { // not explicitly specified in serializeValue()
352 } else if (!rootName.isEmpty()) { in serializeValue()
353 _serialize(gen, value, ser, rootName); in serializeValue()
387 PropertyName rootName = _config.getFullRootName(); in serializeValue() local
388 if (rootName == null) { // not explicitly specified in serializeValue()
[all …]
/external/dagger2/java/dagger/hilt/processor/internal/root/
DRootProcessor.java119 .filter(rootName -> !processed.contains(rootName)) in postRoundProcess()
122 .map(rootName -> getElementUtils().getTypeElement(rootName.toString())) in postRoundProcess()
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DJimfsFileSystems.java101 Name rootName = path.root(); in createFileStore() local
103 Directory rootDir = fileFactory.createRootDirectory(rootName); in createFileStore()
105 roots.put(rootName, rootDir); in createFileStore()
DDirectory.java50 private Directory(int id, Name rootName) { in Directory() argument
52 linked(new DirectoryEntry(this, rootName, this)); in Directory()
/external/catch2/include/reporters/
Dcatch_reporter_sonarqube.hpp83 … void writeSection(std::string const& rootName, SectionNode const& sectionNode, bool okToFail) { in writeSection()
85 if(!rootName.empty()) in writeSection()
86 name = rootName + '/' + name; in writeSection()
Dcatch_reporter_junit.cpp177 std::string const& rootName, in writeSection() argument
180 if( !rootName.empty() ) in writeSection()
181 name = rootName + '/' + name; in writeSection()
Dcatch_reporter_junit.h45 std::string const& rootName,
/external/catch2/single_include/catch2/
Dcatch_reporter_sonarqube.hpp83 … void writeSection(std::string const& rootName, SectionNode const& sectionNode, bool okToFail) { in writeSection()
85 if(!rootName.empty()) in writeSection()
86 name = rootName + '/' + name; in writeSection()
/external/llvm-project/mlir/lib/IR/
DPatternMatch.cpp32 Pattern::Pattern(StringRef rootName, PatternBenefit benefit, in Pattern() argument
34 : rootKind(OperationName(rootName, context)), benefit(benefit) {} in Pattern()
37 Pattern::Pattern(StringRef rootName, ArrayRef<StringRef> generatedNames, in Pattern() argument
39 : Pattern(rootName, benefit, context) { in Pattern()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DMapperConfigBase.java209 protected MapperConfigBase(MapperConfigBase<CFG,T> src, PropertyName rootName) { in MapperConfigBase() argument
214 _rootName = rootName; in MapperConfigBase()
529 public abstract T withRootName(PropertyName rootName); in withRootName() argument
531 public T withRootName(String rootName) { in withRootName() argument
532 if (rootName == null) { in withRootName()
535 return withRootName(PropertyName.construct(rootName)); in withRootName()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DSerializationConfig.java229 private SerializationConfig(SerializationConfig src, PropertyName rootName) in SerializationConfig() argument
231 super(src, rootName); in SerializationConfig()
305 public SerializationConfig withRootName(PropertyName rootName) { in withRootName() argument
306 if (rootName == null) { in withRootName()
310 } else if (rootName.equals(_rootName)) { in withRootName()
313 return new SerializationConfig(this, rootName); in withRootName()
DDeserializationConfig.java241 private DeserializationConfig(DeserializationConfig src, PropertyName rootName) in DeserializationConfig() argument
243 super(src, rootName); in DeserializationConfig()
326 public DeserializationConfig withRootName(PropertyName rootName) { in withRootName() argument
327 if (rootName == null) { in withRootName()
331 } else if (rootName.equals(_rootName)) { in withRootName()
334 return new DeserializationConfig(this, rootName); in withRootName()
DObjectWriter.java527 public ObjectWriter withRootName(String rootName) { in withRootName() argument
528 return _new(this, _config.withRootName(rootName)); in withRootName()
534 public ObjectWriter withRootName(PropertyName rootName) { in withRootName() argument
535 return _new(this, _config.withRootName(rootName)); in withRootName()
DObjectReader.java665 public ObjectReader withRootName(String rootName) { in withRootName() argument
666 return _with(_config.withRootName(rootName)); in withRootName()
672 public ObjectReader withRootName(PropertyName rootName) { in withRootName() argument
673 return _with(_config.withRootName(rootName)); in withRootName()
/external/llvm/lib/Support/
DPath.cpp682 rootName = has_root_name(p); in is_absolute() local
684 rootName = true; in is_absolute()
687 return rootDir && rootName; in is_absolute()
811 rootName = path::has_root_name(p); in make_absolute() local
813 rootName = true; in make_absolute()
817 if (rootName && rootDirectory) in make_absolute()
828 if (!rootName && !rootDirectory) { in make_absolute()
836 if (!rootName && rootDirectory) { in make_absolute()
845 if (rootName && !rootDirectory) { in make_absolute()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp682 rootName = has_root_name(p); in is_absolute() local
684 rootName = true; in is_absolute()
687 return rootDir && rootName; in is_absolute()
813 rootName = path::has_root_name(p); in make_absolute() local
815 rootName = true; in make_absolute()
819 if (rootName && rootDirectory) in make_absolute()
830 if (!rootName && !rootDirectory) { in make_absolute()
838 if (!rootName && rootDirectory) { in make_absolute()
847 if (rootName && !rootDirectory) { in make_absolute()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DPath.cpp691 bool rootName = in is_absolute() local
694 return rootDir && rootName; in is_absolute()
881 bool rootName = path::has_root_name(p); in make_absolute() local
884 if ((rootName || real_style(Style::native) != Style::windows) && in make_absolute()
893 if (!rootName && !rootDirectory) { in make_absolute()
901 if (!rootName && rootDirectory) { in make_absolute()
910 if (rootName && !rootDirectory) { in make_absolute()
/external/llvm-project/llvm/lib/Support/
DPath.cpp674 bool rootName = in is_absolute() local
677 return rootDir && rootName; in is_absolute()
908 bool rootName = path::has_root_name(p); in make_absolute() local
911 if ((rootName || real_style(Style::native) != Style::windows) && in make_absolute()
920 if (!rootName && !rootDirectory) { in make_absolute()
928 if (!rootName && rootDirectory) { in make_absolute()
937 if (rootName && !rootDirectory) { in make_absolute()
/external/icu/icu4c/source/tools/ctestfw/
Dctest.c1295 ctest_xml_init(const char *rootName) { in ctest_xml_init() argument
1303 while(*rootName&&!isalnum((int)*rootName)) { in ctest_xml_init()
1304 rootName++; in ctest_xml_init()
1306 strcpy(XML_PREFIX,rootName); in ctest_xml_init()
/external/icu/icu4c/source/tools/ctestfw/unicode/
Dctest.h295 ctest_xml_init(const char *rootName);
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationUserDefinedIO.cpp116 std::string glslTraverseBasicTypes (const std::string& rootName, in glslTraverseBasicTypes() argument
123 return visit(rootName, rootType.getBasicType(), indentationDepth); in glslTraverseBasicTypes()
131 …glslTraverseBasicTypes(rootName + "[" + loopIndexName + "]", rootType.getElementType(), arrayNesti… in glslTraverseBasicTypes()
143 …result += glslTraverseBasicTypes(rootName + "." + member.getName(), member.getType(), arrayNesting… in glslTraverseBasicTypes()
/external/llvm-project/mlir/include/mlir/IR/
DPatternMatch.h100 Pattern(StringRef rootName, PatternBenefit benefit, MLIRContext *context);
109 Pattern(StringRef rootName, ArrayRef<StringRef> generatedNames,
/external/icu/icu4c/source/test/cintltst/
Dcldrtest.c77 TestKeyInRootRecursive(UResourceBundle *root, const char *rootName, in TestKeyInRootRecursive() argument
104 rootName, in TestKeyInRootRecursive()
168 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive()
423 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive()
/external/llvm-project/mlir/include/mlir/Transforms/
DDialectConversion.h351 ConversionPattern(StringRef rootName, PatternBenefit benefit, in ConversionPattern() argument
353 : RewritePattern(rootName, benefit, ctx), typeConverter(&typeConverter) {} in ConversionPattern()
/external/testng/ant/3rdparty/
DDTDDoc.jarMETA-INF/ META-INF/MANIFEST.MF DTDDoc/ DTDDoc/AntLogger.class AntLogger ...

12