HomeSort by: relevance | last modified time | path
    Searched refs:tu (Results 1 - 25 of 90) sorted by relevancy

1 2 3 4

  /src/external/bsd/ipf/dist/lib/
ipf_dotuning.c 21 ipftune_t tu; local
24 bzero((char *)&tu, sizeof(tu));
26 obj.ipfo_size = sizeof(tu);;
27 obj.ipfo_ptr = (void *)&tu;
38 if (tu.ipft_cookie == NULL)
41 tu.ipft_name[sizeof(tu.ipft_name) - 1] = '\0';
42 printtunable(&tu);
45 tu.ipft_cookie = NULL
    [all...]
  /src/usr.bin/make/unit-tests/
varmod-to-upper.exp 1 mod-tu-space: A B
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
debug-names-tu-dwarf5.exp 18 source $srcdir/$subdir/debug-names-tu.exp.tcl
debug-names-tu.exp 18 source $srcdir/$subdir/debug-names-tu.exp.tcl
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
debug-names-tu-dwarf5.exp 18 source $srcdir/$subdir/debug-names-tu.exp.tcl
debug-names-tu.exp 18 source $srcdir/$subdir/debug-names-tu.exp.tcl
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_diagnostics.py 17 tu = get_tu('int f0() {}\n')
18 self.assertEqual(len(tu.diagnostics), 1)
19 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Warning)
20 self.assertEqual(tu.diagnostics[0].location.line, 1)
21 self.assertEqual(tu.diagnostics[0].location.column, 11)
22 self.assertEqual(tu.diagnostics[0].spelling,
27 tu = get_tu('#define A x\nvoid *A = 1;\n')
28 self.assertEqual(len(tu.diagnostics), 1)
29 self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Warning)
30 self.assertEqual(tu.diagnostics[0].location.line, 2
    [all...]
test_translation_unit.py 32 def save_tu(tu):
38 tu.save(t.name)
43 def save_tu_pathlike(tu):
49 tu.save(str_to_path(t.name))
56 tu = TranslationUnit.from_source(path)
57 self.assertEqual(tu.spelling, path)
61 tu = get_tu(path)
62 c = tu.cursor
68 tu = TranslationUnit.from_source(path, ['-DDECL_ONE=hello', '-DDECL_TWO=hi'])
69 spellings = [c.spelling for c in tu.cursor.get_children()
    [all...]
test_tls_kind.py 20 tu = get_tu("""
26 tls_none = get_cursor(tu.cursor, 'tls_none')
29 tls_dynamic = get_cursor(tu.cursor, 'tls_dynamic')
32 tls_static = get_cursor(tu.cursor, 'tls_static')
40 tu = get_tu("""
44 tls_declspec_msvc18 = get_cursor(tu.cursor, 'tls_declspec_msvc18')
49 tu = get_tu("""
53 tls_declspec_msvc19 = get_cursor(tu.cursor, 'tls_declspec_msvc19')
test_tokens.py 20 tu = get_tu('int i = 5;')
21 r = tu.get_extent('t.c', (0, 9))
22 tokens = list(tu.get_tokens(extent=r))
35 tu = get_tu('int foo = 10;')
36 r = tu.get_extent('t.c', (0, 11))
38 tokens = list(tu.get_tokens(extent=r))
49 tu = get_tu('int foo = 10;')
50 r = tu.get_extent('t.c', (0, 11))
52 tokens = list(tu.get_tokens(extent=r))
test_location.py 26 tu = get_tu(baseInput)
27 one = get_cursor(tu, 'one')
28 two = get_cursor(tu, 'two')
37 tu = get_tu('\n' + baseInput)
38 one = get_cursor(tu, 'one')
39 two = get_cursor(tu, 'two')
48 tu = get_tu(' ' + baseInput)
49 one = get_cursor(tu, 'one')
50 two = get_cursor(tu, 'two')
57 tu = get_tu(baseInput
    [all...]
test_index.py 23 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
24 self.assertIsInstance(tu, TranslationUnit)
25 tu = index.parse(None, ['-c', os.path.join(kInputsDir, 'hello.cpp')])
26 self.assertIsInstance(tu, TranslationUnit)
test_cursor.py 58 tu = get_tu(kInput)
60 it = tu.cursor.get_children()
98 tu = get_tu('int x;')
99 cursors = list(tu.cursor.get_children())
105 # Delete reference to TU and perform a full GC.
106 del tu
110 # If the TU was destroyed, this should cause a segfault.
115 tu = get_tu(source)
118 for cursor in tu.cursor.get_children():
128 tu = get_tu(source, lang='cpp'
    [all...]
test_type.py 43 tu = get_tu(kInput)
45 teststruct = get_cursor(tu, 'teststruct')
119 tu = get_tu('int x;')
120 children = list(tu.cursor.get_children())
129 del tu
133 # If the TU was destroyed, this should cause a segfault.
137 tu = get_tu(constarrayInput)
139 teststruct = get_cursor(tu, 'teststruct')
151 tu = get_tu(source)
153 a = get_cursor(tu, 'a'
    [all...]
test_code_completion.py 36 tu = TranslationUnit.from_source('fake.c', ['-std=c99'], unsaved_files=files,
39 cr = tu.codeComplete('fake.c', 9, 1, unsaved_files=files, include_brief_comments=True)
62 tu = TranslationUnit.from_source(str_to_path('fake.c'), ['-std=c99'], unsaved_files=files,
65 cr = tu.codeComplete(str_to_path('fake.c'), 9, 1, unsaved_files=files, include_brief_comments=True)
92 tu = TranslationUnit.from_source('fake.cpp', ['-std=c++98'], unsaved_files=files)
94 cr = tu.codeComplete('fake.cpp', 12, 5, unsaved_files=files)
105 cr = tu.codeComplete('fake.cpp', 13, 5, unsaved_files=files)
test_access_specifiers.py 20 tu = get_tu("""
31 test_class = get_cursor(tu, "test_class")
34 public = get_cursor(tu.cursor, "public_member_function")
37 protected = get_cursor(tu.cursor, "protected_member_function")
40 private = get_cursor(tu.cursor, "private_member_function")
test_linkage.py 20 tu = get_tu("""
28 no_linkage = get_cursor(tu.cursor, 'no_linkage')
31 internal = get_cursor(tu.cursor, 'internal')
34 unique_external = get_cursor(tu.cursor, 'unique_external')
37 external = get_cursor(tu.cursor, 'external')
  /src/external/gpl3/gcc/dist/gcc/analyzer/
analyzer-language.cc 51 run_callbacks (logger *logger, const translation_unit &tu)
55 cb (logger, tu);
59 /* Call into TU to try to find a value for NAME.
64 const translation_unit &tu,
73 if (tree t = tu.lookup_constant_by_id (id))
87 /* Call into TU to try to find values for the names we care about.
91 stash_named_constants (logger *logger, const translation_unit &tu)
96 maybe_stash_named_constant (logger, tu, "O_ACCMODE");
97 maybe_stash_named_constant (logger, tu, "O_RDONLY");
98 maybe_stash_named_constant (logger, tu, "O_WRONLY")
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ctf/
cross-tu-cyclic.exp 20 standard_testfile cross-tu-cyclic-1.c cross-tu-cyclic-2.c \
21 cross-tu-cyclic-3.c cross-tu-cyclic-4.c
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ctf/
cross-tu-cyclic.exp 20 standard_testfile cross-tu-cyclic-1.c cross-tu-cyclic-2.c \
21 cross-tu-cyclic-3.c cross-tu-cyclic-4.c
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
etime.c 35 GFC_REAL_4 tu, ts, tt, *tp; local
43 tu = (GFC_REAL_4)(user_sec + 1.e-6 * user_usec);
45 tt = tu + ts;
49 tu = (GFC_REAL_4)-1.0;
56 *tp = tu;
dtime.c 44 GFC_REAL_4 tu, ts, tt; local
52 tu = (GFC_REAL_4) ((user_sec - us) + 1.e-6 * (user_usec - uu));
54 tt = tu + ts;
62 tu = -1;
69 *tp = tu;
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
etime.c 35 GFC_REAL_4 tu, ts, tt, *tp; local
43 tu = (GFC_REAL_4)(user_sec + 1.e-6 * user_usec);
45 tt = tu + ts;
49 tu = (GFC_REAL_4)-1.0;
56 *tp = tu;
dtime.c 44 GFC_REAL_4 tu, ts, tt; local
52 tu = (GFC_REAL_4) ((user_sec - us) + 1.e-6 * (user_usec - uu));
54 tt = tu + ts;
62 tu = -1;
69 *tp = tu;
  /src/sys/arch/x68k/stand/xxboot/fdboot_ustarfs/
Makefile 4 BOOTCPPFLAGS+= -DXXBOOT_$(FS:tu)

Completed in 21 milliseconds

1 2 3 4