Home
last modified time | relevance | path

Searched refs:str (Results 9226 - 9250 of 12945) sorted by relevance

1...<<361362363364365366367368369370>>...518

/third_party/openssl/apps/
H A Dopenssl.c196 static void setup_trace(const char *str) in setup_trace() argument
208 val = OPENSSL_strdup(str); in setup_trace()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-use-table.py198 return self.name == (other if isinstance(other, str) else other.name)
202 return hash(str(self))
H A Dhb-buffer-serialize.cc58 * @str: (array length=len) (element-type uint8_t): a string to parse
59 * @len: length of @str, or -1 if string is %NULL terminated
62 * @str is a valid buffer serialization format, use
71 hb_buffer_serialize_format_from_string (const char *str, int len) in hb_buffer_serialize_format_from_string() argument
74 return (hb_buffer_serialize_format_t) (hb_tag_from_string (str, len) & ~0x20202020u); in hb_buffer_serialize_format_from_string()
H A Dhb-ot-cff2-table.hh250 void init (const byte_str_t &str) in init()
252 num_interp_env_t::init (str); in init()
/third_party/python/Lib/
H A Dwave.py278 if isinstance(f, str):
424 if isinstance(f, str):
/third_party/python/Lib/test/
H A Dtest_dbm_dumb.py215 self.assertEqual(str(cm.exception),
224 self.assertEqual(str(cm.exception),
237 stream.write("str(print('Hacked!')), 0\n")
H A Dtest_reprlib.py166 '<built-in method split of str object at 0x'))
378 return '<' + ', '.join(map(str, self.values)) + '>'
383 return '<' + ', '.join(map(str, self.values)) + '>'
H A Dtest_unparse.py279 self.check_ast_roundtrip(str(-(2 ** 31)))
280 self.check_ast_roundtrip(str(-(2 ** 63)))
/third_party/python/Lib/email/
H A Dfeedparser.py325 if (str(self._cur.get('content-transfer-encoding', '8bit')).lower()
407 if isinstance(payload, str):
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/
H A DOptTable.cpp299 std::string Candidate = (CandidatePrefix + CandidateName).str(); in findNearest()
315 NearestString = (Candidate + RHS).str(); in findNearest()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DYAMLTraits.cpp377 KeyStr = StringStorage.str().copy(StringAllocator); in createHNodes()
409 KeyStr = StringStorage.str().copy(StringAllocator); in createHNodes()
885 Val = Scalar.str(); in input()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp326 ? CPUAttr.getValueAsString().str() in getSubtargetImpl()
329 ? FSAttr.getValueAsString().str() in getSubtargetImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMTargetMachine.cpp257 ? CPUAttr.getValueAsString().str() in getSubtargetImpl()
260 ? FSAttr.getValueAsString().str() in getSubtargetImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp235 ? CPUAttr.getValueAsString().str() in getSubtargetImpl()
238 ? FSAttr.getValueAsString().str() in getSubtargetImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp392 if (!isCPUValid(CPUName.str())) { in createHexagonMCSubtargetInfo()
393 errs() << "error: invalid CPU \"" << CPUName.str().c_str() in createHexagonMCSubtargetInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.cpp316 ? CPUAttr.getValueAsString().str() in getSubtargetImpl()
319 ? FSAttr.getValueAsString().str() in getSubtargetImpl()
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dparser_impl.h151 const std::string error() { return errors_.str(); } in error()
584 /// @param str a candidate identifier
586 static bool IsValidIdentifier(const std::string& str);
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dintrinsic_validation_test.cc278 EXPECT_EQ(r()->error(), err.str()); in TEST_P()
313 EXPECT_EQ(r()->error(), err.str()); in TEST_P()
/third_party/skia/tools/gpu/gl/interface/
H A Dgen_interface.go261 func addLine(str, line string) string {
262 return str + SPACER + line + "\n"
/third_party/skia/third_party/externals/icu/source/common/
H A Dcharacterproperties.cpp69 _set_addString(USet *set, const UChar *str, int32_t length) { in _set_addString() argument
70 ((UnicodeSet *)set)->add(icu::UnicodeString((UBool)(length<0), str, length)); in _set_addString()
/third_party/typescript/tests/verify_3rd_libs/
H A Dverify_3rd_libs.py289 log = "Exception: " + str(err)
317 log = str(df['log'][i])
/third_party/tzdata/
H A Dstrftime.c619 _add(const char *str, char *pt, const char *ptlim) in _add() argument
621 while (pt < ptlim && (*pt = *str++) != '\0') in _add()
/third_party/protobuf/src/google/protobuf/compiler/ruby/
H A Druby_generator.cc67 return os.str(); in NumberToString()
166 return os.str(); in DefaultValueForField()
/third_party/python/Parser/
H A Dpegen_errors.c251 * is stored in p->tok->str. */ in get_error_line_from_tokenizer_buffers()
252 assert((p->tok->fp == NULL && p->tok->str != NULL) || p->tok->fp == stdin); in get_error_line_from_tokenizer_buffers()
254 char *cur_line = p->tok->fp_interactive ? p->tok->interactive_src_start : p->tok->str; in get_error_line_from_tokenizer_buffers()
/third_party/python/Modules/
H A Dgetpath.py691 if isinstance(v, str):
699 if isinstance(v, str):

Completed in 32 milliseconds

1...<<361362363364365366367368369370>>...518