HomeSort by relevance Sort by last modified time
    Searched refs:spelling (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/bindings/python/tests/cindex/
util.py 33 def get_cursor(source, spelling):
37 spelling within a source. The first argument can be either a
46 if cursor.spelling == spelling:
51 def get_cursors(source, spelling):
52 """Obtain all cursors from a source object with a specific spelling.
55 specific spelling within a source. The first argument can be either a
65 if cursor.spelling == spelling:
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...]
test_diagnostics.py 12 assert (tu.diagnostics[0].spelling ==
22 assert 'incompatible' in tu.diagnostics[0].spelling
26 # assert tu.diagnostics[1].spelling == 'instantiated from'
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')
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'
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...]
test_tokens.py 18 assert tokens[1].spelling == 'i'
test_location.py 66 for n in [n for n in tu.cursor.get_children() if n.spelling == 'one']:
  /external/catch2/include/internal/
catch_list.h 23 void add( std::string const& spelling );
catch_list.cpp 81 void TagInfo::add( std::string const& spelling ) {
83 spellings.insert( spelling );
88 for( auto const& spelling : spellings )
89 out += "[" + spelling + "]";
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 20 'spelling' : diag.spelling,
48 'spelling' : node.spelling,
  /external/icu/tools/icu4c_srcgen/
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_name
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 150 _fields_ = [("spelling", c_char_p), ("free", c_int)]
323 def spelling(self): member in class:Diagnostic
403 return "<Diagnostic severity %r, location %r, spelling %r>" % (
404 self.severity, self.location, self.spelling)
621 # declaration; one can extract their location information, spelling, find their
798 # expression; one can extract their location information, spelling, children,
990 # one can extract their location information, spelling, children, etc. However,
1274 def spelling(self): member in class:Cursor
1697 def spelling(self): member in class:TypeKind
2000 def spelling(self): member in class:Type
2083 def spelling(self): member in class:CompletionChunk
2452 def spelling(self): member in class:TranslationUnit
2863 def spelling(self): member in class:Token
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
MakeTransliterator.java 163 String spelling = spellout.transliterate(source); local
202 if (target.equals(spelling)) {
315 String spelling = spellout.transliterate(source); local
316 if (bestTarget.equals(spelling)) {
  /external/python/cpython3/Lib/test/
test_pydoc.py     [all...]
  /external/clang/soong/
tblgen.go 104 return "-gen-clang-attr-spelling-index"
  /external/syzkaller/vendor/golang.org/x/oauth2/internal/
token.go 64 Expires expirationTime `json:"expires"` // broken Facebook spelling of expires_in
  /bionic/libc/kernel/tools/
cpp.py 96 new spelling of the token. The spelling property in the base class is
125 return self.spelling
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 2077 StringRef spelling = "__attribute__((objc_method_family(none)))"; local
    [all...]
  /external/u-boot/scripts/
checkpatch.pl 55 my $spelling_file = "$D/spelling.txt";
115 --codespell Use the codespell dictionary for spelling/typos
644 # Load common spelling mistakes and build regular expression list.
648 if (open(my $spelling, '<', $spelling_file)) {
649 while (<$spelling>) {
662 close($spelling);
668 if (open(my $spelling, '<', $codespellfile)) {
669 while (<$spelling>) {
685 close($spelling);
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 3700 CXString spelling = clang_getTokenSpelling(TU, tokens[i]); local
    [all...]
  /external/catch2/single_include/catch2/
catch.hpp     [all...]
  /external/dagger2/lib/
auto-value-1.4.1.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/
topics.py     [all...]
  /external/bcc/tests/cc/
catch.hpp     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/pydoc_data/
topics.py     [all...]

Completed in 938 milliseconds

1 2