| /buildroot/utils/checkpackagelib/ |
| A D | test_lib_mk.py | 24 def test_DoNotInstallToHostdirUsr(testname, filename, string, expected): argument 72 def test_Ifdef(testname, filename, string, expected): argument 73 warnings = util.check_file(m.Ifdef, filename, string) 164 def test_Indent(testname, filename, string, expected): argument 165 warnings = util.check_file(m.Indent, filename, string) 237 def test_OverriddenVariable(testname, filename, string, expected): argument 310 def test_PackageHeader(testname, filename, string, expected): argument 311 warnings = util.check_file(m.PackageHeader, filename, string) 494 def test_TrailingBackslash(testname, filename, string, expected): argument 628 def test_UselessFlag(testname, filename, string, expected): argument [all …]
|
| A D | test_lib_config.py | 101 def test_AttributesOrder(testname, filename, string, expected): argument 102 warnings = util.check_file(m.AttributesOrder, filename, string) 261 def test_CommentsMenusPackagesOrder(testname, filename, string, expected): argument 262 warnings = util.check_file(m.CommentsMenusPackagesOrder, filename, string) 316 def test_HelpText(testname, filename, string, expected): argument 317 warnings = util.check_file(m.HelpText, filename, string) 385 def test_Indent(testname, filename, string, expected): argument 386 warnings = util.check_file(m.Indent, filename, string) 463 def test_RedefinedConfig(testname, filename, string, expected): argument 464 warnings = util.check_file(m.RedefinedConfig, filename, string)
|
| A D | test_lib_patch.py | 43 def test_ApplyOrder(testname, filename, string, expected): argument 44 warnings = util.check_file(m.ApplyOrder, filename, string) 72 def test_NumberedSubject(testname, filename, string, expected): argument 73 warnings = util.check_file(m.NumberedSubject, filename, string) 94 def test_Sob(testname, filename, string, expected): argument 95 warnings = util.check_file(m.Sob, filename, string) 116 def test_Upstream(testname, filename, string, expected): argument 117 warnings = util.check_file(m.Upstream, filename, string)
|
| A D | test_tool.py | 10 def check_file(tool, filename, string, permissions=None): argument 14 f.write(string.encode()) 39 def test_NotExecutable(testname, filename, permissions, string, expected): argument 40 warnings = check_file(m.NotExecutable, filename, string, permissions) 61 def test_NotExecutable_hint(testname, hint, filename, permissions, string, expected): argument 65 warnings = check_file(NotExecutable, filename, string, permissions) 92 def test_Flake8(testname, filename, string, expected): argument 93 warnings = check_file(m.Flake8, filename, string) 138 def test_Shellcheck(testname, filename, string, expected): argument 139 warnings = check_file(m.Shellcheck, filename, string)
|
| A D | test_lib_hash.py | 58 def test_HashNumberOfFields(testname, filename, string, expected): argument 59 warnings = util.check_file(m.HashNumberOfFields, filename, string) 131 def test_HashType(testname, filename, string, expected): argument 132 warnings = util.check_file(m.HashType, filename, string) 181 def test_HashSpaces(testname, filename, string, expected): argument 182 warnings = util.check_file(m.HashSpaces, filename, string)
|
| A D | test_lib.py | 41 def test_ConsecutiveEmptyLines(testname, filename, string, expected): argument 42 warnings = util.check_file(m.ConsecutiveEmptyLines, filename, string) 83 def test_EmptyLastLine(testname, filename, string, expected): argument 84 warnings = util.check_file(m.EmptyLastLine, filename, string) 120 def test_NewlineAtEof(testname, filename, string, expected): argument 121 warnings = util.check_file(m.NewlineAtEof, filename, string) 163 def test_TrailingSpace(testname, filename, string, expected): argument 164 warnings = util.check_file(m.TrailingSpace, filename, string) 195 def test_Utf8Characters(testname, filename, string, expected): argument 196 warnings = util.check_file(m.Utf8Characters, filename, string)
|
| A D | test_lib_sysv.py | 53 def test_Indent(testname, filename, string, expected): argument 54 warnings = util.check_file(m.Indent, filename, string) 69 def test_NotExecutable(testname, filename, permissions, string, expected): argument 70 warnings = tool_check_file(m.NotExecutable, filename, string, permissions) 129 def test_Variables(testname, filename, string, expected): argument 130 warnings = util.check_file(m.Variables, filename, string)
|
| A D | test_lib_ignore.py | 16 def test_IgnoreMissingFile(testname, filename, string, expected): argument 17 warnings = util.check_file(m.IgnoreMissingFile, filename, string)
|
| A D | test_util.py | 1 def check_file(check_function, filename, string): argument 5 for i, line in enumerate(string.splitlines(True)):
|
| /buildroot/support/testing/tests/package/br2-external/openjdk/package/openjdk-jni-test/ |
| A D | native.c | 18 void write_internal_string(const char* string) in write_internal_string() argument 20 snprintf(buffer, CHAR_BUFFER_SIZE, "%s", string); in write_internal_string() 22 void write_external_string(char* string, size_t maxLength) in write_external_string() argument 24 snprintf(string, maxLength, "Set from C"); in write_external_string()
|
| A D | native.h | 7 void write_internal_string(const char* string); 8 void write_external_string(char* string, size_t maxLength);
|
| A D | JniWrapper.java | 10 public static native String write_string(String string); in write_string() argument 11 public static native String write_char_array(char[] string); in write_char_array() argument
|
| A D | jni_helper.c | 18 jstring write_jstring(JNIEnv* env, jstring string) in write_jstring() argument 20 const char* utf8_string = (*env)->GetStringUTFChars(env, string, NULL); in write_jstring() 23 (*env)->ReleaseStringUTFChars(env, string, utf8_string); in write_jstring() 44 jstring string = (*env)->GetObjectField(env, helper, fieldID); in write_string_member() local 46 return write_jstring(env, string); in write_string_member() 51 jstring string = (*env)->NewStringUTF(env, utf8_string); in set_string_member_helper() local 52 (*env)->SetObjectField(env, helper, fieldID, string); in set_string_member_helper()
|
| /buildroot/package/luainterpreter/ |
| A D | Config.in | 5 string 9 string 24 string
|
| /buildroot/package/patchelf/ |
| A D | 0001-Add-option-to-make-the-rpath-relative-under-a-specif.patch | 63 static std::string outputFileName; 69 +static bool absolutePathExists(const std::string & path, std::string & canonicalPath) 81 +static std::string makePathRelative(const std::string & path, 82 + const std::string & refPath) 127 …ath(RPathOp op, std::string rootDir, const std::vector<std::string> & allowedRpathPrefixes, std::s… 131 @@ -1041,8 +1092,28 @@ static void concatToRPath(string & rpath, const string & path) 136 - const std::vector<std::string> & allowedRpathPrefixes, std::string newRPath) 158 + const std::vector<std::string> & allowedRpathPrefixes, std::string newRPath, const std::string… 279 static std::string newRPath; 280 +static std::string rootDir; [all …]
|
| /buildroot/package/pulseview/ |
| A D | 0001-Replace-obsolete-deprecated-Qt-methods.patch | 42 @@ -281,5 +281,22 @@ vector<string> split_string(string text, string separator) 47 + * Return the width of a string in a given font. 50 + * @param[in] string the string whose width should be determined 52 + * @return width of the string in pixels 57 + return metric.horizontalAdvance(string); 59 + return metric.width(string); 75 using std::string; 79 vector<string> split_string(string text, string separator); 82 + * Return the width of a string in a given font. 84 + * @param[in] string the string whose width should be determined [all …]
|
| /buildroot/package/gettext/ |
| A D | Config.in | 15 string 18 string
|
| /buildroot/fs/oci/ |
| A D | Config.in | 26 string "author name and/or email address" 33 string "image tag" 40 string "entrypoint" 45 Spaces must be quoted or escaped, like for a shell string: 54 string "command (or entrypoint arguments)" 58 Spaces must be quoted or escaped, like for a shell string: 67 string "working directory" 73 string "username or UID" 79 string "environment variables" 85 string "ports" [all …]
|
| /buildroot/package/python-inflection/ |
| A D | Config.in | 5 A string transformation library that singularizes and 7 CamelCase to underscored string.
|
| /buildroot/boot/syslinux/ |
| A D | 0017-Replace-builtin-strlen-that-appears-to-get-optimized.patch | 9 dos/string.h | 12 +++++++++++- 12 diff --git a/dos/string.h b/dos/string.h 14 --- a/dos/string.h 15 +++ b/dos/string.h
|
| /buildroot/fs/btrfs/ |
| A D | Config.in | 11 string "filesystem label" 14 string "filesystem size" 22 string "sector size" 34 string "btree node size" 43 string "Filesystem Features" 45 A comma separated string of features that can be enabled
|
| /buildroot/package/go/ |
| A D | 0001-build.go-explicit-option-for-crosscompilation.patch | 25 func compilerEnv(envName, def string) map[string]string { 26 m := map[string]string{"": def}
|
| /buildroot/support/testing/tests/package/ |
| A D | test_octave.py | 57 string = "Hello World" 58 cmd = self.octave_cmd("printf(\"{}\\n\")".format(string)) 61 self.assertEqual(output, [string])
|
| /buildroot/package/ntpsec/ |
| A D | 0001-wscript-remove-checks-for-bsd-string.h-fixes-host-co.patch | 4 Subject: [PATCH] wscript: remove checks for bsd/string.h, fixes host-compile 13 ../../include/ntp_stdlib.h:20:10: fatal error: bsd/string.h: No such file or directory 14 20 | #include <bsd/string.h> 33 -#include <bsd/string.h> 50 - prerequisites=['bsd/string.h']) 56 - prerequisites=['bsd/string.h']) 67 - "bsd/string.h", # bsd emulation
|
| /buildroot/package/leveldb/ |
| A D | Config.in | 8 that provides an ordered mapping from string keys to string
|