Searched refs:spelling (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/chrome/browser/resources/options/
H A Dspelling_confirm_overlay.css6 #spelling-confirm-overlay {
/external/clang/bindings/python/tests/cindex/
H A Dutil.py33 def get_cursor(source, spelling):
37 spelling within a source. The first argument can be either a
50 if cursor.spelling == spelling:
54 result = get_cursor(cursor, spelling)
60 def get_cursors(source, spelling):
61 """Obtain all cursors from a source object with a specific spelling.
64 spelling within a source. The first argument can be either a
78 if cursor.spelling == spelling
[all...]
H A Dtest_cursor.py38 while it.next().spelling != 'start_decl':
49 assert tu_nodes[0].spelling == 's0'
60 assert s0_nodes[0].spelling == 'a'
63 assert s0_nodes[1].spelling == 'b'
67 assert tu_nodes[1].spelling == 's1'
72 assert tu_nodes[2].spelling == 'f0'
99 if cursor.spelling == 'X':
242 assert tokens[0].spelling == 'int'
243 assert tokens[1].spelling == 'foo'
251 assert arguments[0].spelling
[all...]
H A Dtest_type.py36 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
[all...]
H A Dtest_diagnostics.py12 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')
H A Dtest_translation_unit.py21 assert tu.spelling == path
33 spellings = [c.spelling for c in tu.cursor.get_children()]
41 spellings = [c.spelling for c in tu.cursor.get_children()]
56 spellings = [c.spelling for c in tu.cursor.get_children()]
64 spellings = [c.spelling for c in tu.cursor.get_children()]
231 assert tokens[0].spelling == 'int'
233 assert tokens[0].spelling == 'int'
237 assert tokens[0].spelling == 'int'
H A Dtest_tokens.py18 assert tokens[1].spelling == 'i'
H A Dtest_location.py66 for n in [n for n in tu.cursor.get_children() if n.spelling == 'one']:
/external/clang/include/clang/Lex/
H A DMakefile12 $(Verb) $(ClangTableGen) -gen-clang-attr-spelling-list -o $(call SYSPATH, $@) \
/external/clang/bindings/python/examples/cindex/
H A Dcindex-dump.py20 'spelling' : diag.spelling,
48 'spelling' : node.spelling,
/external/clang/include/clang/Sema/
H A DMakefile30 $(Echo) "Building Clang attribute spelling list index with tablegen"
31 $(Verb) $(ClangTableGen) -gen-clang-attr-spelling-index -o \
/external/clang/bindings/python/clang/
H A Dcindex.py150 _fields_ = [("spelling", c_char_p), ("free", c_int)]
300 def spelling(self): member in class:Diagnostic
363 return "<Diagnostic severity %r, location %r, spelling %r>" % (
364 self.severity, self.location, self.spelling)
569 # declaration; one can extract their location information, spelling, find their
746 # expression; one can extract their location information, spelling, children,
938 # one can extract their location information, spelling, children, etc. However,
1136 def spelling(self): member in class:Cursor
1137 """Return the spelling of the entity pointed at by the cursor."""
1429 def spelling(sel member in class:TypeKind
1761 def spelling(self): member in class:CompletionChunk
2130 def spelling(self): member in class:TranslationUnit
2528 def spelling(self): member in class:Token
[all...]
/external/clang/
H A Dclang-tblgen-rules.mk37 $(call transform-host-clang-td-to-out,clang-attr-spelling-list)
44 $(call transform-host-clang-td-to-out,clang-attr-spelling-index)
/external/clang/tools/c-index-test/
H A Dc-index-test.c3206 CXString spelling = clang_getTokenSpelling(TU, tokens[i]); local
3221 printf("%s: \"%s\" ", kind, clang_getCString(spelling));
3222 clang_disposeString(spelling);

Completed in 604 milliseconds