Home
last modified time | relevance | path

Searched refs:universe (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/docs/docker/
H A Dsources.list15 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
16 # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
17 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
18 # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multi…
19 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
20 # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe mul…
21 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
22 # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe mult…
25 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
26 # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe mult…
/ohos5.0/foundation/multimedia/media_foundation/engine/pipeline/core/
H A Dcompatible_check.cpp127 bool IsSubsetMime(const std::string& subset, const std::string& universe) in IsSubsetMime() argument
135 if (universe == "*") { in IsSubsetMime()
139 size_t devLinePosInCap = universe.find_first_of('/'); in IsSubsetMime()
146 …if (!StringEqIgnoreCase(subset.substr(0, devLinePosInMeta), universe.substr(0, devLinePosInCap))) { in IsSubsetMime()
150 if (universe.substr(devLinePosInCap + 1) == "*") { in IsSubsetMime()
154 …if (!StringEqIgnoreCase(universe.substr(devLinePosInCap + 1), subset.substr(devLinePosInMeta + 1))… in IsSubsetMime()