Home
last modified time | relevance | path

Searched refs:newCursor (Results 1 – 5 of 5) sorted by relevance

/external/clang/unittests/Format/
DSortIncludesTest.cpp38 unsigned newCursor(llvm::StringRef Code, unsigned Cursor) { in newCursor() function in clang::format::__anon67712d250111::SortIncludesTest
280 EXPECT_EQ(31u, newCursor(Code, 0)); in TEST_F()
281 EXPECT_EQ(13u, newCursor(Code, 15)); in TEST_F()
282 EXPECT_EQ(0u, newCursor(Code, 33)); in TEST_F()
284 EXPECT_EQ(41u, newCursor(Code, 10)); in TEST_F()
285 EXPECT_EQ(23u, newCursor(Code, 25)); in TEST_F()
286 EXPECT_EQ(10u, newCursor(Code, 43)); in TEST_F()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/draft/
DRegexTransformState.java100 int newCursor = rule.append(processedAlready, prematcher, postmatcher); in match() local
105 final int delta = newCursor - processedAlready.length(); in match()
111 0, processedAlready.subSequence(newCursor, processedAlready.length())); in match()
112 processedAlready.setLength(newCursor); in match()
/external/clang/tools/libclang/
DCXCursor.h274 CXCursor newCursor = cursor; in getTypeRefedCallExprCursor() local
276 newCursor.xdata = 1; in getTypeRefedCallExprCursor()
277 return newCursor; in getTypeRefedCallExprCursor()
DCXCursor.cpp1007 CXCursor newCursor = cursor; in getSelectorIdentifierCursor() local
1013 newCursor.xdata = -1; in getSelectorIdentifierCursor()
1015 newCursor.xdata = SelIdx; in getSelectorIdentifierCursor()
1021 newCursor.xdata = -1; in getSelectorIdentifierCursor()
1023 newCursor.xdata = SelIdx; in getSelectorIdentifierCursor()
1026 return newCursor; in getSelectorIdentifierCursor()
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowCursorAdapterTest.java92 try (Cursor newCursor = database.rawQuery("SELECT * FROM table_name;", null)) { in shouldNotErrorOnCursorChangeWhenNoFlagsAreSet() argument
94 adapter.changeCursor(newCursor); in shouldNotErrorOnCursorChangeWhenNoFlagsAreSet()