/external/clang/bindings/python/tests/cindex/ |
D | test_type.py | 36 assert fields[0].spelling == 'a' 41 assert fields[1].spelling == 'b' 45 assert fields[1].type.get_declaration().spelling == 'I' 47 assert fields[2].spelling == 'c' 52 assert fields[3].spelling == 'd' 57 assert fields[4].spelling == 'e' 62 assert fields[5].spelling == 'f' 67 assert fields[6].spelling == 'g' 72 assert fields[7].spelling == 'h' 110 assert fields[0].spelling == 'A' [all …]
|
D | util.py | 33 def get_cursor(source, spelling): argument 46 if cursor.spelling == spelling: 51 def get_cursors(source, spelling): argument 65 if cursor.spelling == spelling:
|
D | test_cursor.py | 44 assert tu_nodes[0].spelling == 's0' 55 assert s0_nodes[0].spelling == 'a' 58 assert s0_nodes[1].spelling == 'b' 62 assert tu_nodes[1].spelling == 's1' 67 assert tu_nodes[2].spelling == 'f0' 94 if cursor.spelling == 'X': 379 assert tokens[0].spelling == 'int' 380 assert tokens[1].spelling == 'foo' 388 assert arguments[0].spelling == "i" 389 assert arguments[1].spelling == "j" [all …]
|
D | test_translation_unit.py | 22 assert tu.spelling == path 34 spellings = [c.spelling for c in tu.cursor.get_children()] 42 spellings = [c.spelling for c in tu.cursor.get_children()] 57 spellings = [c.spelling for c in tu.cursor.get_children()] 65 spellings = [c.spelling for c in tu.cursor.get_children()] 224 assert tokens[0].spelling == 'int' 226 assert tokens[0].spelling == 'int' 230 assert tokens[0].spelling == 'int'
|
D | test_diagnostics.py | 12 assert (tu.diagnostics[0].spelling == 22 assert 'incompatible' in tu.diagnostics[0].spelling 34 assert tu.diagnostics[0].spelling.startswith('use of GNU old-style') 48 assert tu.diagnostics[0].spelling.startswith('incompatible pointer to') 92 assert children[0].spelling.endswith('declared here')
|
D | test_tokens.py | 18 assert tokens[1].spelling == 'i'
|
D | test_location.py | 66 for n in [n for n in tu.cursor.get_children() if n.spelling == 'one']:
|
/external/icu/icu4c/source/data/translit/ |
D | dsb_dsb_FONIPA.txt | 14 b\u0301 → bʲ ; # old spelling 15 bj → bʲ ; # modern spelling 33 ḿ → mʲ ; # old spelling 34 mj → mʲ ; # modern spelling 40 ṕ → pʲ ; # old spelling 41 pj → pʲ ; # modern spelling 51 ẃ → wʲ ; # old spelling 52 wj → wʲ ; # modern spelling
|
/external/icu/tools/icu4c_srcgen/ |
D | genutil.py | 286 diag.location.column, diag.spelling) 304 if decl.spelling in self.seen_functions: 322 visible = child.spelling == 'default' 341 cursor.spelling, 347 name = cursor.spelling 348 result_type = cursor.result_type.spelling 352 params.append((arg.type.spelling, arg.spelling)) 379 return decl.spelling in self.whitelisted_function_names 389 return decl.spelling not in self.blacklisted_function_names
|
/external/clang/include/clang/AST/ |
D | CommentHTMLTags.td | 1 class Tag<string spelling> { 2 string Spelling = spelling; 60 class Attribute<string spelling> { 61 string Spelling = spelling; 64 class EventHandlerContentAttribute<string spelling> : Attribute<spelling> {
|
D | CommentHTMLNamedCharacterReferences.td | 2 class NCR<string spelling, int codePoint> { 3 string Spelling = spelling;
|
/external/catch2/include/internal/ |
D | catch_list.cpp | 81 void TagInfo::add( std::string const& spelling ) { in add() argument 83 spellings.insert( spelling ); in add() 88 for( auto const& spelling : spellings ) in all() local 89 out += "[" + spelling + "]"; in all()
|
D | catch_list.h | 23 void add( std::string const& spelling );
|
/external/clang/bindings/python/examples/cindex/ |
D | cindex-dump.py | 20 'spelling' : diag.spelling, 48 'spelling' : node.spelling,
|
/external/python/cpython3/Lib/test/ |
D | test_pydoc.py | 1208 for spelling in self.curdir_spellings: 1209 for __ in range(clean_path.count(spelling)): 1210 clean_path.remove(spelling) 1240 for spelling in self.curdir_spellings: 1241 with self.subTest(curdir_spelling=spelling): 1243 leading_curdir = [spelling] + clean_path 1245 trailing_curdir = clean_path + [spelling]
|
/external/icu/icu4c/source/extra/uconv/samples/utf8/ |
D | simplechinese.txt | 7 …WinCALIS 是 CALIS 的延伸,涵盖了更多的功能。比如:运用视窗 (window) 及滑鼠 (mouse),让教师及学生更为有效地操作;"拼音更正 "(spelling check) 提…
|
/external/icu/icu4c/source/data/lang/ |
D | nl.txt | 1012 1901{"Traditionele Duitse spelling"} 1014 1994{"Gestandaardiseerde Resiaanse spelling"} 1015 1996{"Duitse spelling van 1996"} 1050 KKCOR{"Algemene spelling"} 1055 LUNA1918{"Russische spelling van 1917"} 1074 REVISED{"Gewijzigde spelling"} 1088 TARASK{"Taraskievica-spelling"} 1089 UCCOR{"Eenvormige spelling"} 1090 UCRCOR{"Eenvormig herziene spelling"}
|
/external/clang/include/clang/Sema/ |
D | CMakeLists.txt | 16 clang_tablegen(AttrSpellingListIndex.inc -gen-clang-attr-spelling-index
|
/external/hyphenation-patterns/la/ |
D | hyph-la.lic.txt | 62 % Patterns for the latin language mainly in modern spelling 63 % (u when u is needed and v when v is needed); medieval spelling 96 % cope also with the medieval Latin spelling, where the letter `V' played the
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | MakeTransliterator.java | 163 String spelling = spellout.transliterate(source); in main() local 202 if (target.equals(spelling)) { in main() 315 String spelling = spellout.transliterate(source); in main() local 316 if (bestTarget.equals(spelling)) { in main()
|
/external/clang/bindings/python/clang/ |
D | cindex.py | 323 def spelling(self): member in Diagnostic 404 self.severity, self.location, self.spelling) 1274 def spelling(self): member in Cursor 1697 def spelling(self): member in TypeKind 2000 def spelling(self): member in Type 2080 return "{'" + self.spelling + "', " + str(self.kind) + "}" 2083 def spelling(self): member in CompletionChunk 2086 return conf.lib.clang_getCompletionChunkText(self.cs, self.key).spelling 2192 + " || Brief comment: " + str(self.briefComment.spelling) 2452 def spelling(self): member in TranslationUnit [all …]
|
/external/e2fsprogs/doc/RelNotes/ |
D | v1.43.7.txt | 12 Fix many spelling mistakes in various man pages, code comments, and
|
D | v1.24.txt | 25 Fixed some minor texinfo, man pages nits for spelling errors,
|
/external/yapf/ |
D | pylintrc | 184 spelling-dict= 187 spelling-ignore-words= 190 spelling-private-dict-file= 193 # --spelling-private-dict-file option instead of raising a message. 194 spelling-store-unknown-words=no
|
/external/clang/test/ |
D | CMakeLists.txt | 101 # Add a legacy target spelling: clang-test
|