/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | DefaultSerializerProvider.java | 309 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/ir/ |
D | ComponentTreeDepsIrCreator.kt | 65 val rootName = if (isDefaultRoot) { in <lambda>() constant 81 name = componentNameGenerator.generate(rootName), in <lambda>() 210 fun generate(rootName: ClassName): ClassName = in <lambda>() 212 destinationPackage ?: rootName.packageName(), in <lambda>() 214 rootName.enclosedName() in <lambda>() 216 simpleNameMap.getValue(rootName) in <lambda>()
|
/external/dagger2/java/dagger/internal/codegen/writing/ |
D | ComponentNames.java | 60 private final ClassName rootName; field in ComponentNames 67 this.rootName = getRootComponentClassName(graph.componentDescriptor()); in ComponentNames() 76 ? rootName in get() 77 : rootName.nestedClass(namesByPath.get(componentPath) + "Impl"); in get() 101 return rootName.nestedClass(creatorNamesByPath.get(componentPath)); in getCreatorName()
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | JimfsFileSystems.java | 101 Name rootName = path.root(); in createFileStore() local 103 Directory rootDir = fileFactory.createRootDirectory(rootName); in createFileStore() 105 roots.put(rootName, rootDir); in createFileStore()
|
D | Directory.java | 50 private Directory(int id, Name rootName) { in Directory() argument 52 linked(new DirectoryEntry(this, rootName, this)); in Directory()
|
/external/catch2/single_include/catch2/ |
D | catch_reporter_sonarqube.hpp | 83 … 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/catch2/include/reporters/ |
D | catch_reporter_sonarqube.hpp | 83 … 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()
|
D | catch_reporter_junit.cpp | 177 std::string const& rootName, in writeSection() argument 180 if( !rootName.empty() ) in writeSection() 181 name = rootName + '/' + name; in writeSection()
|
D | catch_reporter_junit.h | 45 std::string const& rootName,
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/ |
D | MapperConfigBase.java | 209 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/ |
D | SerializationConfig.java | 229 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()
|
D | DeserializationConfig.java | 241 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()
|
D | ObjectWriter.java | 527 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()
|
D | ObjectReader.java | 665 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/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Path.cpp | 682 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/llvm/lib/Support/ |
D | Path.cpp | 682 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/deqp/scripts/ |
D | mustpass.py | 161 rootName = processedLine[7:processedLine.rfind('.')] 162 groupTree[rootName] = {} 163 groupStack = [groupTree[rootName]] 214 rootName = list(oldDict.keys())[0] 215 newDict = {rootName : {}}
|
/external/cronet/third_party/icu/source/tools/ctestfw/ |
D | ctest.c | 1281 ctest_xml_init(const char *rootName) { in ctest_xml_init() argument 1289 while(*rootName&&!isalnum((int)*rootName)) { in ctest_xml_init() 1290 rootName++; in ctest_xml_init() 1292 strcpy(XML_PREFIX,rootName); in ctest_xml_init()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Path.cpp | 691 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/icu/icu4c/source/tools/ctestfw/ |
D | ctest.c | 1304 ctest_xml_init(const char *rootName) { in ctest_xml_init() argument 1312 while(*rootName&&!isalnum((int)*rootName)) { in ctest_xml_init() 1313 rootName++; in ctest_xml_init() 1315 strcpy(XML_PREFIX,rootName); in ctest_xml_init()
|
/external/icu/icu4c/source/tools/ctestfw/unicode/ |
D | ctest.h | 302 ctest_xml_init(const char *rootName);
|
/external/cronet/third_party/icu/source/tools/ctestfw/unicode/ |
D | ctest.h | 302 ctest_xml_init(const char *rootName);
|
/external/skia/src/codec/ |
D | SkJpegXmp.cpp | 471 const char* rootName = dom.getName(root); in find_uri_namespaces() local 472 if (!rootName || strcmp(rootName, "x:xmpmeta") != 0) { in find_uri_namespaces()
|
/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationUserDefinedIO.cpp | 118 std::string glslTraverseBasicTypes (const std::string& rootName, in glslTraverseBasicTypes() argument 125 return visit(rootName, rootType.getBasicType(), indentationDepth); in glslTraverseBasicTypes() 133 …glslTraverseBasicTypes(rootName + "[" + loopIndexName + "]", rootType.getElementType(), arrayNesti… in glslTraverseBasicTypes() 145 …result += glslTraverseBasicTypes(rootName + "." + member.getName(), member.getType(), arrayNesting… in glslTraverseBasicTypes()
|
/external/cronet/third_party/icu/source/test/cintltst/ |
D | cldrtest.c | 79 TestKeyInRootRecursive(UResourceBundle *root, const char *rootName, in TestKeyInRootRecursive() argument 106 rootName, in TestKeyInRootRecursive() 170 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive() 429 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive()
|