Home
last modified time | relevance | path

Searched defs:str (Results 2276 - 2300 of 2890) sorted by relevance

1...<<919293949596979899100>>...116

/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dinstruction.cpp826 std::ostream& operator<<(std::ostream& str, const Instruction& inst) { in operator <<() argument
/third_party/skia/third_party/externals/icu/source/extra/uconv/
H A Duconv.cpp811 UnicodeString str; convertFile() local
991 UnicodeString str; convertFile() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationbuilder.cpp294 CollationBuilder::addReset(int32_t strength, const UnicodeString &str, in addReset() argument
482 CollationBuilder::getSpecialResetPosition(const UnicodeString &str, in getSpecialResetPosition() argument
647 addRelation(int32_t strength, const UnicodeString &prefix, const UnicodeString &str, const UnicodeString &extension, const char *&parserErrorReason, UErrorCode &errorCode) addRelation() argument
1122 UnicodeString str = stringIter.next(); addOnlyClosure() local
1138 UnicodeString str = stringIter.next(); addOnlyClosure() local
1345 addIfDifferent(const UnicodeString &prefix, const UnicodeString &str, const int64_t newCEs[], int32_t newCEsLength, uint32_t ce32, UErrorCode &errorCode) addIfDifferent() argument
[all...]
H A Dcollationdatabuilder.cpp171 DataBuilderCollationIterator::fetchCEs(const UnicodeString &str, int32_t start, in fetchCEs() argument
H A Dnumber_patternstring.cpp724 UnicodeString str = incrementQuantity.toPlainString(); in propertiesToPatternString() local
H A Drbt_pars.cpp925 UnicodeString str; // scratch in parseRules() local
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/
H A Dctest.c296 void T_CTEST_EXPORT2 str_timeDelta(char *str, UDate deltaTime) { in str_timeDelta() argument
312 char str[256]; in print_timeDelta() local
[all...]
/third_party/skia/src/ports/
H A DSkFontMgr_android_parser.cpp141 char* str = s->writable_str(); in trim_string() local
/third_party/skia/src/ports/skia_ohos/
H A DFontConfig_ohos.cpp462 SkString str; in dumpFont() local
831 const char* str = root[key].asCString(); in parseVariation() local
/third_party/skia/third_party/externals/angle2/src/third_party/trace_event/
H A Dtrace_event.h610 explicit TraceStringWithCopy(const char *str) : m_str(str) {} in TraceStringWithCopy() argument
/third_party/skia/third_party/externals/angle2/src/tests/test_expectations/
H A DGPUTestExpectationsParser.cpp216 inline bool StartsWithASCII(const std::string &str, const std::string &search, bool caseSensitive) in StartsWithASCII() argument
/third_party/openssl/test/helpers/
H A Dssltestlib.c244 static int tls_dump_puts(BIO *bio, const char *str) in tls_dump_puts() argument
708 static int mempacket_test_puts(BIO *bio, const char *str) in mempacket_test_puts() argument
801 static int always_retry_puts(BIO *bio, const char *str) in always_retry_puts() argument
[all...]
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dafmparse.c133 char* str; in afm_stream_read_one() local
174 char* str; in afm_stream_read_string() local
386 char* str; in FT_LOCAL_DEF() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-cff1-table.hh1313 const char *str; in get_glyph_name() local
H A Dhb-subset-cff-common.hh256 const byte_str_t str = (*acc.charStrings)[glyph]; in flatten() local
630 const byte_str_t str = (*acc.charStrings)[glyph]; subset() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp560 assert(bitPosition < BitWidth && �); if ((*this)[bitPosition]) clearBit(bitPosition); else setBit(bitPosition); } unsigned APInt::getBitsNeeded(StringRef str, uint8_t radix) { assert(!str.empty() && �); assert((radix == 10 || radix == 8 || radix == 16 || radix == 2 || radix == 36) && �); size_t slen = str.size(); StringRef::iterator p = str.begin(); unsigned isNegative = *p == �; if (*p == � || *p == �) { p++; slen--; assert(slen && �); } if (radix == 2) return slen + isNegative; if (radix == 8) return slen * 3 + isNegative; if (radix == 16) return slen * 4 + isNegative; unsigned sufficient = radix == 10? (slen == 1 ? 4 : slen * 64/18) : (slen == 1 ? 7 : slen * 16/3); APInt tmp(sufficient, StringRef(p, slen), radix); unsigned log = tmp.logBase2(); if (log == (unsigned)-1) { return isNegative + 1; } else { return isNegative + log + 1; } } hash_code llvm::hash_value(const APInt &Arg) { if (Arg.isSingleWord()) return hash_combine(Arg.VAL); return hash_combine_range(Arg.pVal, Arg.pVal + Arg.getNumWords()); } bool APInt::isSplat(unsigned SplatSizeInBits) const { assert(getBitWidth() % SplatSizeInBits == 0 && �); return *this == rotl(SplatSizeInBits); } APInt APInt::getHiBits(unsigned numBits) const { return APIntOps::lshr(*this, BitWidth - numBits); } APInt APInt::getLoBits(unsigned numBits) const { return APIntOps::lshr(APIntOps::shl(*this, BitWidth - numBits), BitWidth - numBits); } unsigned APInt::countLeadingZerosSlowCase() const { unsigned Count = 0; for (int i = getNumWords()-1; i >= 0; --i) flipBit() argument
[all...]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl.cc73 ast::Builtin ident_to_builtin(const std::string& str) { in ident_to_builtin() argument
[all...]
/third_party/spirv-headers/tools/buildHeaders/
H A DjsonToSpirv.cpp447 bool IsTypeOrResultId(const std::string& str, bool* isType, bool* isResult) in IsTypeOrResultId() argument
458 unsigned int NumberStringToBit(const std::string& str) in NumberStringToBit() argument
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocdspnm.cpp39 char *str; in ncat() local
H A Dustring.cpp1525 ustr_hashUCharsN(const UChar *str, int32_t length) { in ustr_hashUCharsN() argument
1530 ustr_hashCharsN(const char *str, int32_t length) { in ustr_hashCharsN() argument
1535 ustr_hashICharsN(const char *str, int32_t length) { in ustr_hashICharsN() argument
/third_party/toybox/lib/
H A Dxwrap.c956 time_t xvali_date(struct tm *tm, char *str) in xvali_date() argument
968 void xparsedate(char *str, time_ argument
[all...]
/third_party/toybox/toys/pending/
H A Dvi.c121 static char* utf8_last(char* str, int size) in utf8_last() argument
483 static size_t text_strstr(size_t offset, char *str) in text_strstr() argument
647 char *str; in vi_yank() local
936 i_insert(char *str, int len) i_insert() argument
1312 crunch_nstr(char **str, int width, int n, FILE *out, char *escmore, int (*escout)(FILE *out, int cols, int wc)) crunch_nstr() argument
[all...]
/third_party/tzdata/
H A Dzdump.c155 xstrsize(char const *str) in xstrsize() argument
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_database.cc431 StringPiece DecodeString(const String& str, int) const { return str; } in DecodeString() argument
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dstorage.c861 const char *str = upb_fielddef_defaultstr(field, &size); in layout_get_default() local
1176 VALUE str = rb_str_new2(""); in layout_inspect() local
[all...]

Completed in 42 milliseconds

1...<<919293949596979899100>>...116