Searched refs:strings (Results 1 - 25 of 375) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Ddeferred_character_4.f9010 character(len=:), dimension(:), allocatable :: strings variable in program:chk_alloc_string
14 allocate( character(10):: strings(1:3) )
16 strings = [ "A ", "C ", "ABCD", "V " ]
18 if (len(strings) .ne. 4) call abort
19 if (size(strings, 1) .ne. 4) call abort
20 if (any (strings .ne. [character(len=4) :: "A", "C", "ABCD", "V"])) call abort
22 strings = [character(len=4) :: "A", "C", "ABCDE", "V", "zzzz"]
24 if (len(strings) .ne. 4) call abort
25 if (size(strings, 1) .ne. 5) call abort
26 if (any (strings
[all...]
H A Dmapping_3.f9026 subroutine process (strings)
27 character(*), intent(in) :: strings(:) local in subroutine:process
29 if (any (strings .ne. indata)) call abort ()
H A Dmove_alloc_16.f9015 type strings type in program:str
17 end type strings
19 type(strings) :: teststrs
/haiku-buildtools/binutils/ld/testsuite/ld-x86-64/
H A Dpr20550b.s1 .globl strings
7 .type strings, @object
8 .size strings, 8
9 strings: label
H A Dpr20550a.s4 movabsq $strings@SIZE, %rdx
6 .quad strings
/haiku-buildtools/legacy/binutils/opcodes/
H A Dsysdep.h41 #include <strings.h>
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.ext/
H A Dpretty4.C8 static void const *strings[4]; variable
22 strings[pos] = objRef;
69 // Check the names of fn. They should all be distinct strings (though two
71 if (strings[0] == strings[1])
73 if (strings[0] == strings[2])
75 if (strings[1] == strings[2])
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A D_Pragma2.c12 #error Do not allow directives in _Pragma strings
/haiku-buildtools/cloog/osl/source/
H A Dstrings.c5 ** strings.c **
71 # include <osl/strings.h>
81 * this function displays an array of strings into a file (file, possibly
86 * \param[in] strings The array of strings that has to be printed.
89 void osl_strings_idump(FILE * file, osl_strings_p strings, int level) { argument
95 if (strings != NULL) {
96 nb_strings = osl_strings_size(strings);
99 fprintf(file, " %s", strings->string[i]);
103 fprintf(file, "+-- NULL strings\
119 osl_strings_dump(FILE * file, osl_strings_p strings) argument
131 osl_strings_sprint(osl_strings_p strings) argument
166 osl_strings_print(FILE * file, osl_strings_p strings) argument
200 osl_strings_p strings = NULL; local
260 osl_strings_p strings; local
283 osl_strings_p strings; local
297 osl_strings_free(osl_strings_p strings) argument
326 osl_strings_clone(osl_strings_p strings) argument
380 osl_strings_size(osl_strings_p strings) argument
443 char ** strings = NULL; local
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/macros/
H A Dstrings.d2 #name: strings
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/macros/
H A Dstrings.d2 #name: strings
/haiku-buildtools/jam/
H A Djcache.c26 char** strings; // null terminated array of strings member in struct:string_list
27 int count; // number of strings in the array, not counting the
109 list->strings = 0;
126 All strings the list contains are freed as well.
135 if (list->strings) {
138 if (list->strings[i])
139 free(list->strings[i]);
141 free(list->strings);
169 char** newStrings = (char**)realloc(list->strings,
247 string_list* strings; // contents of the file member in struct:jcache_entry
736 char** strings = 0; local
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/z80/
H A Dquotes.s1 ;; test the parsing of strings and character constants
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/z80/
H A Dquotes.s1 ;; test the parsing of strings and character constants
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/cons/
H A D6513.cc31 std::vector<std::string> strings(c_strings, c_strings + 5);
/haiku-buildtools/binutils/gas/testsuite/gas/all/
H A Dstring.d2 #name : .strings tests
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostringstream/assign/
H A D1.cc26 const std::string strings[] = { variable
46 append(s1, exp, strings[0]);
51 append(s2, exp, strings[1]);
57 append(s3, exp, strings[2]);
64 append(s1, exp, strings[3]);
74 append(s1, exp, strings[0]);
80 append(s2, exp, strings[1]);
87 append(s3, exp, strings[2]);
96 append(s1, exp, strings[3]);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostringstream/cons/
H A Dmove.cc26 const std::string strings[] = { variable
45 append(s1, exp, strings[0]);
51 append(s2, exp, strings[1]);
58 append(s3, exp, strings[2]);
64 append(s1, exp, strings[3]);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_stringstream/cons/
H A Dmove.cc26 const std::string strings[] = { variable
45 append(s1, exp, strings[0]);
51 append(s2, exp, strings[1]);
58 append(s3, exp, strings[2]);
64 append(s1, exp, strings[3]);
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dinit3.C3 // Bug: strings does not get initialized.
17 const My_string strings[4] = { variable
40 My_string str1 = strings[0];
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dcrlf.go7 // Test source files and strings containing \r and \r\n.
13 "strings"
17 prog = strings.Replace(prog, "BQ", "`", -1)
18 prog = strings.Replace(prog, "CR", "\r", -1)
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug447.go15 "strings"
34 seg := strings.Replace(testSegment, "$F", ftype, -1)
35 seg = strings.Replace(seg, "$I", itype, -1)
38 body := strings.Replace(testFunc, "$I", itype, -1)
40 body = strings.Replace(body, "$TEST", " || i < 0", 1)
42 body = strings.Replace(body, "$TEST", "", 1)
44 body = strings.Replace(body, "$TESTSEGMENTS", segs.String(), 1)
49 program = strings.Replace(program, "$NAMES", names.String(), 1)
50 program = strings.Replace(program, "$FUNCS", funcs.String(), 1)
/haiku-buildtools/binutils/opcodes/
H A Dsysdep.h44 #include <strings.h>
50 #include <strings.h>
/haiku-buildtools/binutils/gas/testsuite/gas/cris/
H A Dstring-2.s1 ; Test that strings are evaluated as in the manual (slightly modified).
/haiku-buildtools/binutils/libiberty/
H A Dxstrdup.c24 # include <strings.h>

Completed in 265 milliseconds

1234567891011>>