HomeSort by relevance Sort by last modified time
    Searched refs:get_cursor (Results 1 - 17 of 17) sorted by null

  /external/clang/bindings/python/tests/cindex/
test_access_specifiers.py 6 from .util import get_cursor
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")
test_comment.py 2 from tests.cindex.util import get_cursor
20 test1 = get_cursor(tu, 'test1')
28 test2 = get_cursor(tu, 'test2')
34 f = get_cursor(tu, 'f')
test_location.py 5 from .util import get_cursor
17 one = get_cursor(tu, 'one')
18 two = get_cursor(tu, 'two')
28 one = get_cursor(tu, 'one')
29 two = get_cursor(tu, 'two')
39 one = get_cursor(tu, 'one')
40 two = get_cursor(tu, 'two')
53 one = get_cursor(tu, 'one')
74 one = get_cursor(tu, 'one')
75 two = get_cursor(tu, 'two'
    [all...]
test_type.py 7 from .util import get_cursor
30 teststruct = get_cursor(tu, 'teststruct')
107 teststruct = get_cursor(tu, 'teststruct')
121 a = get_cursor(tu, 'a')
122 b = get_cursor(tu, 'b')
123 v = get_cursor(tu, 'v')
138 c = get_cursor(tu, 'c')
139 i = get_cursor(tu, 'i')
140 x = get_cursor(tu, 'x')
141 v = get_cursor(tu, 'v'
    [all...]
test_cursor.py 8 from .util import get_cursor
105 cls = get_cursor(tu, 'X')
106 foo = get_cursor(tu, 'foo')
107 bar = get_cursor(tu, 'bar')
202 cls = get_cursor(tu, 'X')
203 x_ = get_cursor(tu, 'x_')
204 y_ = get_cursor(tu, 'y_')
218 cls = get_cursor(tu, 'X')
219 foo = get_cursor(tu, 'foo')
220 bar = get_cursor(tu, 'bar'
    [all...]
util.py 33 def get_cursor(source, spelling): function
72 'get_cursor',
test_translation_unit.py 14 from .util import get_cursor
140 foo = get_cursor(tu2, 'foo')
  /external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/
linq_skip.hpp 19 cursor get_cursor() const { function in struct:cpplinq::linq_skip
22 auto cur = c.get_cursor();
linq_take.hpp 46 return linq_take_cursor<typename Collection::cursor>(c.get_cursor(), n);
57 auto cur = c.get_cursor();
78 cursor get_cursor() const { function in struct:cpplinq::linq_take
87 auto get_cursor(
linq_select.hpp 45 cursor get_cursor() const { return cursor(c.get_cursor(), sel); } function in class:cpplinq::linq_select
linq_where.hpp 58 cursor get_cursor() const { function in class:cpplinq::linq_where
59 return cursor(c.get_cursor(), pred);
linq.hpp 287 bool any() const { auto cur = c.get_cursor(); return !cur.empty(); }
336 auto cur = c.get_cursor();
346 auto cur = c.get_cursor();
363 auto cur = c.get_cursor();
370 auto cur = c.get_cursor();
379 auto cur = c.get_cursor();
386 auto cur = c.get_cursor();
406 return linq_last_(c.get_cursor(), typename Collection::cursor::cursor_category());
412 auto cur = c.where(pred).get_cursor();
418 return linq_last_or_default_(c.get_cursor(), typename Collection::cursor::cursor_category())
542 cursor get_cursor() { return c.get_cursor(); } function in class:cpplinq::linq_driver
    [all...]
linq_selectmany.hpp 116 cur2 = from(store->get()).get_cursor();
146 cur2 = from(store->get()).get_cursor();
156 cursor get_cursor() const function in class:cpplinq::linq_select_many
158 return cursor(c1.get_cursor(), fn, fn2);
linq_cursor.hpp 20 /// get_cursor(range) -> cur
195 iter_cursor get_cursor() const { return *this; } function in class:cpplinq::iter_cursor
289 virtual dynamic_cursor<T> get_cursor() const = 0;
306 dynamic_cursor<T> get_cursor() const function in struct:cpplinq::dynamic_collection::instance
308 return c.get_cursor();
336 dynamic_cursor<T> get_cursor() const { function in class:cpplinq::dynamic_collection
337 return container ? container->get_cursor() : dynamic_cursor<T>();
linq_groupby.hpp 184 cursor get_cursor() const { return cursor(c.get_cursor(), keyFn, comp); } function in class:cpplinq::linq_groupby
linq_iterators.hpp 185 return iterator(c.get_cursor());
  /external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/
testbench.cpp 356 auto cur = range2.get_cursor();

Completed in 3983 milliseconds