Home
last modified time | relevance | path

Searched refs:tu (Results 1 – 25 of 137) sorted by relevance

123456

/external/clang/bindings/python/tests/cindex/
Dtest_diagnostics.py7 tu = get_tu('int f0() {}\n')
8 assert len(tu.diagnostics) == 1
9 assert tu.diagnostics[0].severity == Diagnostic.Warning
10 assert tu.diagnostics[0].location.line == 1
11 assert tu.diagnostics[0].location.column == 11
12 assert (tu.diagnostics[0].spelling ==
17 tu = get_tu('#define A x\nvoid *A = 1;\n')
18 assert len(tu.diagnostics) == 1
19 assert tu.diagnostics[0].severity == Diagnostic.Warning
20 assert tu.diagnostics[0].location.line == 2
[all …]
Dtest_cursor.py33 tu = get_tu(kInput)
35 it = tu.cursor.get_children()
73 tu = get_tu('int x;')
74 cursors = list(tu.cursor.get_children())
81 del tu
90 tu = get_tu(source)
93 for cursor in tu.cursor.get_children():
104 tu = get_tu(source, lang='cpp')
106 cls = get_cursor(tu, 'X')
107 foo = get_cursor(tu, 'foo')
[all …]
Dtest_translation_unit.py21 tu = TranslationUnit.from_source(path)
22 assert tu.spelling == path
26 tu = get_tu(path)
27 c = tu.cursor
33 tu = TranslationUnit.from_source(path, ['-DDECL_ONE=hello', '-DDECL_TWO=hi'])
34 spellings = [c.spelling for c in tu.cursor.get_children()]
40 tu = TranslationUnit.from_source(path, ['-DDECL_ONE=hello', '-DDECL_TWO=hi'])
41 tu.reparse()
42 spellings = [c.spelling for c in tu.cursor.get_children()]
47 tu = TranslationUnit.from_source('fake.c', ['-I./'], unsaved_files = [
[all …]
Dtest_type.py28 tu = get_tu(kInput)
30 teststruct = get_cursor(tu, 'teststruct')
82 tu = get_tu('int x;')
83 children = list(tu.cursor.get_children())
92 del tu
105 tu = get_tu(constarrayInput)
107 teststruct = get_cursor(tu, 'teststruct')
119 tu = get_tu(source)
121 a = get_cursor(tu, 'a')
122 b = get_cursor(tu, 'b')
[all …]
Dtest_location.py16 tu = get_tu(baseInput)
17 one = get_cursor(tu, 'one')
18 two = get_cursor(tu, 'two')
27 tu = get_tu('\n' + baseInput)
28 one = get_cursor(tu, 'one')
29 two = get_cursor(tu, 'two')
38 tu = get_tu(' ' + baseInput)
39 one = get_cursor(tu, 'one')
40 two = get_cursor(tu, 'two')
47 tu = get_tu(baseInput)
[all …]
Dtest_tokens.py13 tu = get_tu('int i = 5;')
14 r = tu.get_extent('t.c', (0, 9))
15 tokens = list(tu.get_tokens(extent=r))
28 tu = get_tu('int foo = 10;')
29 r = tu.get_extent('t.c', (0, 11))
31 tokens = list(tu.get_tokens(extent=r))
42 tu = get_tu('int foo = 10;')
43 r = tu.get_extent('t.c', (0, 11))
45 tokens = list(tu.get_tokens(extent=r))
Dtest_access_specifiers.py12 tu = get_tu("""
23 test_class = get_cursor(tu, "test_class")
26 public = get_cursor(tu.cursor, "public_member_function")
29 protected = get_cursor(tu.cursor, "protected_member_function")
32 private = get_cursor(tu.cursor, "private_member_function")
Dtest_code_completion.py25 tu = TranslationUnit.from_source('fake.c', ['-std=c99'], unsaved_files=files,
28 cr = tu.codeComplete('fake.c', 9, 1, unsaved_files=files, include_brief_comments=True)
55 tu = TranslationUnit.from_source('fake.cpp', ['-std=c++98'], unsaved_files=files)
57 cr = tu.codeComplete('fake.cpp', 12, 5, unsaved_files=files)
68 cr = tu.codeComplete('fake.cpp', 13, 5, unsaved_files=files)
Dtest_comment.py18 tu = TranslationUnit.from_source('fake.c', ['-std=c99'], unsaved_files=files,
20 test1 = get_cursor(tu, 'test1')
28 test2 = get_cursor(tu, 'test2')
34 f = get_cursor(tu, 'f')
Dtest_file.py5 tu = index.parse('t.c', unsaved_files = [('t.c', "")])
6 file = File.from_name(tu, "t.c")
Dtest_index.py14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
15 assert isinstance(tu, TranslationUnit)
/external/icu/icu4c/source/data/locales/
Dvi.txt1399 "-1"{"Thứ Sáu tuần trước"}
1400 "0"{"Thứ Sáu tuần này"}
1401 "1"{"Thứ Sáu tuần sau"}
1406 "-1"{"Thứ Sáu tuần trước"}
1407 "0"{"Thứ Sáu tuần này"}
1408 "1"{"Thứ Sáu tuần sau"}
1413 "-1"{"Thứ Sáu tuần trước"}
1414 "0"{"Thứ Sáu tuần này"}
1415 "1"{"Thứ Sáu tuần sau"}
1486 "-1"{"Thứ Hai tuần trước"}
[all …]
Dlkt.txt64 dn{"Aŋpétu"}
66 "-1"{"Lé aŋpétu kiŋ"}
67 "0"{"Lé aŋpétu kiŋ"}
186 dn{"Okó-aŋpétu"}
Ddsb.txt1022 "0"{"tu sobotu"}
1029 "0"{"tu so."}
1036 "0"{"tu sob."}
1094 "0"{"tu njeźelu"}
1101 "0"{"tu nj."}
1108 "0"{"tu nje."}
1136 "0"{"tu wałtoru"}
1143 "0"{"tu wa."}
1150 "0"{"tu wałt."}
1157 "0"{"tu srjodu"}
[all …]
/external/clang/bindings/python/examples/cindex/
Dcindex-dump.py78 tu = index.parse(None, args)
79 if not tu:
82 pprint(('diags', map(get_diag_info, tu.diagnostics)))
83 pprint(('nodes', get_info(tu.cursor)))
Dcindex-includes.py33 tu = index.parse(None, args)
34 if not tu:
44 for i in tu.get_includes():
/external/libgsm/
DChangeLog19 Fri Jul 5 19:26:37 1996 Jutta Degener (jutta@cs.tu-berlin.de)
25 Tue Jul 2 12:18:20 1996 Jutta Degener (jutta@cs.tu-berlin.de)
39 Tue Mar 7 01:55:10 1995 Jutta Degener (jutta@cs.tu-berlin.de)
46 Fri Dec 30 23:33:50 1994 Jutta Degener (jutta@cs.tu-berlin.de)
52 Mon Nov 28 20:49:57 1994 Jutta Degener (jutta@cs.tu-berlin.de)
58 man/*: bug reports to {jutta,cabo}@cs.tu-berlin.de, not to toast@tub
DREADME28 Jutta Degener (jutta@cs.tu-berlin.de)
29 Carsten Bormann (cabo@cs.tu-berlin.de)
/external/clang/test/CodeGen/
Dnonnull.c41 int bar6(TransparentUnion tu) __attribute__((nonnull(1))) { in bar6() argument
42 return *tu.p; in bar6()
/external/clang/tools/libclang/
DCXTranslationUnit.h68 CXTUOwner(CXTranslationUnitImpl *tu) : TU(tu) { } in CXTUOwner() argument
/external/clang/bindings/python/clang/
Dcindex.py180 def from_position(tu, file, line, column): argument
185 return conf.lib.clang_getLocation(tu, file, line, column)
188 def from_offset(tu, file, offset): argument
195 return conf.lib.clang_getLocationForOffset(tu, file, offset)
420 def __init__(self, tu, memory, count): argument
421 self._tu = tu
429 def get_tokens(tu, extent): argument
438 conf.lib.clang_tokenize(tu, extent, byref(tokens_memory),
450 token_group = TokenGroup(tu, tokens_memory, tokens_count)
456 token._tu = tu
[all …]
/external/clang/test/Sema/
Dtransparent-union.c18 TU tu; in g() local
19 tu.ip = ip; in g()
/external/clang/test/Index/
Dindex-module-with-vfs.m18 // RUN: c-index-test -index-tu %t.cache/ModuleNeedsVFS.pcm | FileCheck %s -check-prefix=CHECK-MOD
24 // RUN: c-index-test -index-tu %t.cache/BaseModuleNeedsVFS.pcm | FileCheck %s -check-prefix=CHECK-M…
/external/icu/icu4c/source/data/translit/
DHan_Latin.txt1274 [汢莵]→tu;
1275 [䝎䵊䵎湍煓猯貒����]→tuān;
1276 [㩛䊜剸团団團慱抟摶槫檲漙篿糰鏄鷒鷻������������������������]→tuán;
1277 [䜝䵯疃����]→tuǎn;
1278 [彖湪褖��]→tuàn;
1279 [㞜推蓷藬����]→tuī;
1280 [㢈㢑㿗䀃䅪尵弚穨蘈蹪隤頹頺頽颓魋����������������������������������]→tuí;
1281 [㞂㱣㾼㿉俀僓腿蹆骽��]→tuǐ;
1282 [㥆㷟侻娧煺蛻蜕褪退駾����������������]→tuì;
1287 [䜏䴱乇仛侂咃托扡拕拖挩捝杔汑沰涶脫脱莌袥託讬飥饦驝魠����������������������������]→tuō;
[all …]
/external/e2fsprogs/po/
Dtr.po87 msgstr "- hatalı bloklar düğümünde doğruluk denetlenirken hata oluştu"
91 msgstr "- hatalı bloklar düğümü okunurken hata oluştu"
100 msgstr "- %s açılmaya çalışılırken hata oluştu"
105 msgstr "- '%s' veri yolu açılmaya çalışılırken hata oluştu"
109 msgstr "- dosyadan hatalı bloklar listesinin okunması sırasında hata oluştu"
113 msgstr "- hatalı bloklar düğümü güncellenirken hata oluştu"
123 msgstr "%3$s işlemi sırasında blok %1$lu okunurken hata oluştu (%2$s). "
128 msgstr "blok %lu okunurken hata oluştu (%s). "
141 msgstr "%3$s işlemi sırasında blok %1$lu yazılırken hata oluştu (%2$s). "
194 msgstr "%s temizlik için açılırken hata oluştu"
[all …]

123456