Home
last modified time | relevance | path

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

12345678

/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():
103 tu = get_tu(source, lang='cpp')
105 cls = get_cursor(tu, 'X')
106 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.txt801 other{"'tuần' W 'của' 'tháng' M"}
827 other{"'tuần' w 'của' 'năm' y"}
1600 "-1"{"Thứ Sáu tuần trước"}
1601 "0"{"Thứ Sáu tuần này"}
1602 "1"{"Thứ Sáu tuần sau"}
1615 "-1"{"Thứ Sáu tuần trước"}
1616 "0"{"Thứ Sáu tuần này"}
1617 "1"{"Thứ Sáu tuần sau"}
1630 "-1"{"Thứ Sáu tuần trước"}
1631 "0"{"Thứ Sáu tuần này"}
[all …]
Ddsb.txt1018 "0"{"tu sobotu"}
1025 "0"{"tu so."}
1032 "0"{"tu sob."}
1090 "0"{"tu njeźelu"}
1097 "0"{"tu nj."}
1104 "0"{"tu nje."}
1132 "0"{"tu wałtoru"}
1139 "0"{"tu wa."}
1146 "0"{"tu wałt."}
1153 "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
/external/protobuf/objectivec/
DGPBCodedInputStream.m266 format:@"byteLimit > oldLimit: %tu > %tu", byteLimit, oldLimit];
412 format:@"recursionDepth(%tu) >= %tu", state_.recursionDepth,
426 format:@"recursionDepth(%tu) >= %tu", state_.recursionDepth,
441 format:@"recursionDepth(%tu) >= %tu", state_.recursionDepth,
459 format:@"recursionDepth(%tu) >= %tu", state_.recursionDepth,
/external/clang/test/CodeGen/
Dnonnull.c41 int bar6(TransparentUnion tu) __attribute__((nonnull(1))) { in bar6() argument
42 return *tu.p; in bar6()
/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)
437 def __init__(self, tu, memory, count): argument
438 self._tu = tu
446 def get_tokens(tu, extent): argument
455 conf.lib.clang_tokenize(tu, extent, byref(tokens_memory),
467 token_group = TokenGroup(tu, tokens_memory, tokens_count)
473 token._tu = tu
[all …]
/external/clang/tools/libclang/
DCXTranslationUnit.h68 CXTUOwner(CXTranslationUnitImpl *tu) : TU(tu) { } in CXTUOwner() argument
/external/clang/test/Sema/
Dtransparent-union.c18 TU tu; in g() local
19 tu.ip = ip; in g()
/external/e2fsprogs/po/
Dtr.po91 msgstr "- hatalı bloklar düğümünde doğruluk denetlenirken hata oluştu"
95 msgstr "- hatalı bloklar düğümü okunurken hata oluştu"
104 msgstr "- %s açılmaya çalışılırken hata oluştu"
109 msgstr "- '%s' veri yolu açılmaya çalışılırken hata oluştu"
113 msgstr "- dosyadan hatalı bloklar listesinin okunması sırasında hata oluştu"
117 msgstr "- hatalı bloklar düğümü güncellenirken hata oluştu"
127 msgstr "%3$s işlemi sırasında blok %1$lu okunurken hata oluştu (%2$s). "
132 msgstr "blok %lu okunurken hata oluştu (%s). "
145 msgstr "%3$s işlemi sırasında blok %1$lu yazılırken hata oluştu (%2$s). "
203 msgstr "%s temizlik için açılırken hata oluştu"
[all …]
/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/
DHani_Latn.txt1176 [汢]→tu;
1177 [䝎䵊䵎湍煓猯貒����]→tuān;
1178 [㩛䊜剸团団團慱抟摶槫檲漙篿糰鏄鷒鷻������������������������]→tuán;
1179 [䜝䵯疃����]→tuǎn;
1180 [彖湪褖��]→tuàn;
1181 [㞜推蓷藬����]→tuī;
1182 [㢈㢑㿗䀃䅪尵弚穨蘈蹪隤頹頺頽颓魋����������������������������������]→tuí;
1183 [㞂㱣㾼㿉俀僓腿蹆骽��]→tuǐ;
1184 [㥆㷟侻娧煺蛻蜕褪退駾����������������]→tuì;
1189 [䜏䴱乇仛侂咃托扡拕拖挩捝杔汑沰涶脫脱莌袥託讬飥饦驝魠����������������������������]→tuō;
[all …]
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
Dexecutionengine.ml41 let tu = (1, 2) in
42 let ptrgv = GenericValue.of_pointer tu in
43 assert (tu = GenericValue.as_pointer ptrgv);

12345678