Home
last modified time | relevance | path

Searched refs:str (Results 4576 - 4600 of 9159) sorted by relevance

1...<<181182183184185186187188189190>>...367

/third_party/node/tools/
H A Dtest.py481 def Truncate(self, str, length):
482 if length and (len(str) > (length - 3)):
483 return str[:(length-3)] + "..."
485 return str
737 def PrintError(str):
738 sys.stderr.write(str)
753 PrintError("os.unlink() " + str(e))
1057 def IsAlpha(str):
1058 for char in str:
1479 def match(self, str)
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dunistr.cpp1634 // char16_t *buffer=str.getAppendBuffer(...); in doAppend()
1636 // str.append(buffer, length); in doAppend()
1638 // str.appendString(buffer, length) in doAppend()
1947 return str.doAppend(&c, 0, 1).isWritable(); in appendCodeUnit()
1956 return !isError && str.doAppend(buffer, 0, cLength).isWritable(); in appendCodePoint()
1961 return str.doAppend(s, 0, length).isWritable(); in appendString()
1966 return str.cloneArrayIfNeeded(str.length() + appendCapacity); in reserveAppendCapacity()
1978 int32_t oldLength = str.length(); in getAppendBuffer()
1981 str in getAppendBuffer()
1995 const UnicodeString *str = (const UnicodeString*) key.pointer; uhash_hashUnicodeString() local
[all...]
/third_party/node/deps/v8/src/objects/
H A Djs-number-format.cc771 std::string str; in UnitFromSkeleton() local
772 str = skeleton.toUTF8String<std::string>(str); in UnitFromSkeleton()
774 size_t begin = str.find(search); in UnitFromSkeleton()
775 if (begin == str.npos) { in UnitFromSkeleton()
777 if (str.find("percent") != str.npos) { in UnitFromSkeleton()
789 if (begin == str.npos) { in UnitFromSkeleton()
793 size_t end = str.find(" ", begin); in UnitFromSkeleton()
800 if (end == str in UnitFromSkeleton()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingComplexControlFlowTests.cpp205 static inline std::string replace(const std::string& str, const std::string& from, const std::string& to) in replace() argument
207 std::string result(str); in replace()
1016 log << tcu::TestLog::Message << css.str() << tcu::TestLog::EndMessage; in iterate()
1412 programCollection.glslSources.add("rgen") << glu::RaygenSource(css.str()) << buildOptions; in initPrograms()
1436 programCollection.glslSources.add("chit") << glu::ClosestHitSource(css.str()) << buildOptions; in initPrograms()
1461 programCollection.glslSources.add("miss") << glu::MissSource(css.str()) << buildOptions; in initPrograms()
1487 programCollection.glslSources.add("rgen") << glu::RaygenSource(css.str()) << buildOptions; in initPrograms()
1503 programCollection.glslSources.add("call") << glu::CallableSource(css.str()) << buildOptions; in initPrograms()
1552 programCollection.glslSources.add("rgen") << glu::RaygenSource(css.str()) << buildOptions; in initPrograms()
1582 programCollection.glslSources.add("chit") << glu::ClosestHitSource(css.str()) << buildOption in initPrograms()
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocid.cpp1111 inline bool notEmpty(const char* str) {
1112 return str && str[0] != NULL_CHAR;
1225 CharString* str = new CharString(
1230 if (str == nullptr) {
1234 toBeFreed.addElement(str, status);
1235 char* data = str->data();
1548 const char* str = transformedExtensions.data();
1549 const char* tkey = ultag_getTKeyStart(str);
1550 int32_t tlangLen = (tkey == str)
[all...]
H A Dunistr.cpp1591 // UChar *buffer=str.getAppendBuffer(...); in doAppend()
1593 // str.append(buffer, length); in doAppend()
1595 // str.appendString(buffer, length) in doAppend()
1904 return str.doAppend(&c, 0, 1).isWritable(); in appendCodeUnit()
1913 return !isError && str.doAppend(buffer, 0, cLength).isWritable(); in appendCodePoint()
1918 return str.doAppend(s, 0, length).isWritable(); in appendString()
1923 return str.cloneArrayIfNeeded(str.length() + appendCapacity); in reserveAppendCapacity()
1935 int32_t oldLength = str.length(); in getAppendBuffer()
1938 str in getAppendBuffer()
1952 const UnicodeString *str = (const UnicodeString*) key.pointer; uhash_hashUnicodeString() local
[all...]
/third_party/python/Lib/unittest/test/
H A Dtest_result.py221 self.assertIsInstance(formatted_exc, str)
380 self.assertIsInstance(formatted_exc, str)
919 self.assertEqual(str(test_case), description)
941 self.assertEqual(str(test_case), description)
964 self.assertEqual(str(test_case), description)
970 self.assertEqual(str(test_case), description)
995 self.assertEqual(str(test_case), description)
1003 self.assertEqual(str(test_case), description)
1010 self.assertEqual(str(test_case), description)
1038 self.assertEqual(str(test_cas
[all...]
/third_party/python/Objects/
H A Dobmalloc.c657 _PyMem_RawWcsdup(const wchar_t *str) in _PyMem_RawWcsdup() argument
659 assert(str != NULL); in _PyMem_RawWcsdup()
661 size_t len = wcslen(str); in _PyMem_RawWcsdup()
672 memcpy(str2, str, size); in _PyMem_RawWcsdup()
677 _PyMem_RawStrdup(const char *str) in _PyMem_RawStrdup() argument
679 assert(str != NULL); in _PyMem_RawStrdup()
680 size_t size = strlen(str) + 1; in _PyMem_RawStrdup()
685 memcpy(copy, str, size); in _PyMem_RawStrdup()
690 _PyMem_Strdup(const char *str) in _PyMem_Strdup() argument
692 assert(str ! in _PyMem_Strdup()
[all...]
/third_party/python/Lib/test/
H A Dtest_urlparse.py909 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
911 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
913 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
915 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
917 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
919 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
921 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
923 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
925 with self.assertRaisesRegex(TypeError, "Cannot mix str"):
927 with self.assertRaisesRegex(TypeError, "Cannot mix str")
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp173 std::ostream& operator<< (std::ostream& str, const DrawCall& call) in operator <<() argument
175 return str << "(" << call.numElements << ", " << (call.transformFeedbackEnabled ? "resumed" : "paused") << ")"; in operator <<()
301 std::ostringstream str; in getAttributeName() local
303 str << "a_" << (deStringBeginsWith(varyingName, "v_") ? varyingName+2 : varyingName); in getAttributeName()
319 str << prefix << iter->index; in getAttributeName()
322 return str.str(); in getAttributeName()
360 std::ostringstream& str = ndx ? frag : vtx; in genShaderSources() local
367 str << glu::declare(structPtr) << ";\n"; in genShaderSources()
371 str << getInterpolationNam in genShaderSources()
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsShaderExecUtil.cpp168 return src.str(); in generateVertexShader()
250 return src.str(); in generateGeometryShader()
267 return src.str(); in generateEmptyFragmentSource()
295 return src.str(); in generatePassthroughVertexShader()
416 return src.str(); in generateFragmentShader()
452 return src.str(); in generatePassthroughFragmentShader()
1193 return src.str(); in generateComputeShader()
1255 return src.str(); in generateVertexShaderForTess()
1331 return src.str(); in generateTessControlShader()
1349 return src.str(); in generateEmptyTessEvalShader()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/
H A DvktRayTracingComplexControlFlowTests.cpp205 static inline std::string replace(const std::string& str, const std::string& from, const std::string& to) in replace() argument
207 std::string result(str); in replace()
1016 log << tcu::TestLog::Message << css.str() << tcu::TestLog::EndMessage; in iterate()
1412 programCollection.glslSources.add("rgen") << glu::RaygenSource(css.str()) << buildOptions; in initPrograms()
1436 programCollection.glslSources.add("chit") << glu::ClosestHitSource(css.str()) << buildOptions; in initPrograms()
1461 programCollection.glslSources.add("miss") << glu::MissSource(css.str()) << buildOptions; in initPrograms()
1487 programCollection.glslSources.add("rgen") << glu::RaygenSource(css.str()) << buildOptions; in initPrograms()
1503 programCollection.glslSources.add("call") << glu::CallableSource(css.str()) << buildOptions; in initPrograms()
1552 programCollection.glslSources.add("rgen") << glu::RaygenSource(css.str()) << buildOptions; in initPrograms()
1582 programCollection.glslSources.add("chit") << glu::ClosestHitSource(css.str()) << buildOption in initPrograms()
[all...]
/third_party/node/deps/v8/src/api/
H A Dapi.cc697 void V8::SetFlagsFromString(const char* str) { in SetFlagsFromString() argument
698 SetFlagsFromString(str, strlen(str)); in SetFlagsFromString()
701 void V8::SetFlagsFromString(const char* str, size_t length) { in SetFlagsFromString() argument
702 i::FlagList::SetFlagsFromString(str, length); in SetFlagsFromString()
2435 i::Handle<i::String> str = i_isolate->factory()->InternalizeString( in CreateSyntheticModule() local
2437 i_export_names->set(i, *str); in CreateSyntheticModule()
2497 i::Handle<i::String> str = Utils::OpenHandle(*(source->source_string)); in CompileUnboundInternal() local
2516 isolate, str, script_details, deserialize_task.get(), options, in CompileUnboundInternal()
2526 isolate, str, script_detail in CompileUnboundInternal()
2736 i::Handle<i::String> str = Utils::OpenHandle(*(full_source_string)); CompileStreamedSource() local
4212 i::Handle<i::String> str = i::Handle<i::String>::cast(string_obj); ToArrayIndex() local
5406 i::Handle<i::String> str = Utils::OpenHandle(this); Length() local
5411 i::Handle<i::String> str = Utils::OpenHandle(this); IsOneByte() local
5526 i::Handle<i::String> str = Utils::OpenHandle(this); Unaligned() local
5533 i::Handle<i::String> str = Utils::OpenHandle(this); Unaligned() local
5686 i::Handle<i::String> str = Utils::OpenHandle(this); WriteUtf8() local
5709 i::Handle<i::String> str = Utils::OpenHandle(string); WriteHelper() local
5736 i::Handle<i::String> str = Utils::OpenHandle(this); IsExternal() local
5741 i::Handle<i::String> str = Utils::OpenHandle(this); IsExternalTwoByte() local
5746 i::Handle<i::String> str = Utils::OpenHandle(this); IsExternalOneByte() local
5753 i::String str = *Utils::OpenHandle(this); VerifyExternalStringResource() local
5772 i::String str = *Utils::OpenHandle(this); VerifyExternalStringResourceBase() local
5839 i::String str = *Utils::OpenHandle(this); GetExternalStringResourceBaseSlow() local
5863 i::String str = *Utils::OpenHandle(this); GetExternalOneByteStringResource() local
9639 Local<String> str; Utf8Value() local
9656 Local<String> str; Value() local
[all...]
/third_party/node/deps/v8/src/d8/
H A Dd8.cc422 String::Utf8Value str(isolate, v->ToString(context).ToLocalChecked()); in UpdateIncludedCategoriesList()
423 trace_config->AddIncludedCategory(*str); in UpdateIncludedCategoriesList()
689 i::Handle<i::String> str = Utils::OpenHandle(*(source)); in ExecuteString() local
707 i_isolate, str, i::kNullMaybeHandle, ScriptOriginOptions()); in ExecuteString()
832 v8::String::Utf8Value str(isolate, result); in ExecuteString()
833 fwrite(*str, sizeof(**str), str.length(), stdout); in ExecuteString()
837 v8::String::Utf8Value str(isolate, Stringify(isolate, result)); in ExecuteString()
838 fwrite(*str, sizeo in ExecuteString()
1976 Local<String> str; RealmTakeWebSnapshot() local
3656 Local<String> str; ReadLines() local
4389 ConvertUtf16StringToUtf8(const wchar_t* str) ConvertUtf16StringToUtf8() argument
4678 const char* str = argv[i]; SetOptions() local
[all...]
/device/soc/rockchip/common/sdk_linux/include/linux/usb/
H A Dch9.h56 extern const char *usb_decode_ctrl(char *str, size_t size, __u8 bRequestType, __u8 bRequest, __u16 wValue, __u16 wIndex,
/third_party/ffmpeg/libavutil/
H A Ddict.h154 int av_dict_parse_string(AVDictionary **pm, const char *str,
/third_party/ffmpeg/libavformat/
H A Dimg2.h69 const char *str; member
/third_party/gn/infra/recipe_modules/target/examples/
H A Dfull.py26 step_result.presentation.logs['string'] = [str(target)]
/third_party/gn/src/base/
H A Dmd5.h73 std::string MD5String(std::string_view str);
/third_party/curl/lib/
H A Dpop3.h95 CURLcode Curl_pop3_write(struct Curl_easy *data, char *str, size_t nread);
/third_party/icu/icu4c/source/test/intltest/
H A Dcpdtrtst.h52 UnicodeString* split(const UnicodeString& str, UChar seperator, int32_t& count);
H A Ddtfmrgts.h32 void aux917( SimpleDateFormat *fmt, UnicodeString& str );
H A Dcallimts.h86 UnicodeString& ymdToString(const Calendar& cal, UnicodeString& str);
/third_party/icu/icu4c/source/test/fuzzer/
H A Dunicode_string_codepage_create_fuzzer.cpp81 icu::UnicodeString str(fuzzbuff.get(), size, in LLVMFuzzerTestOneInput()
/third_party/alsa-lib/include/
H A Dinput.h75 char *snd_input_gets(snd_input_t *input, char *str, size_t size);

Completed in 50 milliseconds

1...<<181182183184185186187188189190>>...367