HomeSort by relevance Sort by last modified time
    Searched full:projections (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/
Terrain.frag 36 // blend the results of the 3 planar projections.
42 // blend the results of the 3 planar projections.
48 // blend the results of the 3 planar projections.
TerrainLighting.frag 345 // blend the results of the 3 planar projections.
361 // blend the results of the 3 planar projections.
365 // blend the results of the 3 planar projections.
369 // blend the results of the 3 planar projections.
373 // blend the results of the 3 planar projections.
377 // blend the results of the 3 planar projections.
381 // blend the results of the 3 planar projections.
385 // blend the results of the 3 planar projections.
389 // blend the results of the 3 planar projections.
393 // blend the results of the 3 planar projections.
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
ordered_commit_set.cc 47 // Some projections may refer to indices that are getting chopped.
48 // Since projections are in increasing order, it's easy to fix. Except
51 Projections::iterator it = projections_.begin();
81 Projections::const_iterator proj = projections_.find(group->second);
ordered_commit_set.h 85 typedef std::map<browser_sync::ModelSafeGroup, Projection> Projections;
101 Projections projections_;
ordered_commit_set_unittest.cc 27 TEST_F(OrderedCommitSetTest, Projections) {
47 // First, we should verify the projections are correct. Second, we want to
69 << "of sizes of projections should equal full expected size!";
  /external/chromium_org/chrome/browser/history/android/
android_provider_backend_unittest.cc 426 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
428 projections.push_back(HistoryAndBookmarkRow::ID);
429 projections.push_back(HistoryAndBookmarkRow::URL);
430 projections.push_back(HistoryAndBookmarkRow::TITLE);
431 projections.push_back(HistoryAndBookmarkRow::CREATED);
432 projections.push_back(HistoryAndBookmarkRow::LAST_VISIT_TIME);
433 projections.push_back(HistoryAndBookmarkRow::VISIT_COUNT);
434 projections.push_back(HistoryAndBookmarkRow::FAVICON);
435 projections.push_back(HistoryAndBookmarkRow::BOOKMARK);
438 projections, std::string(), std::vector<base::string16>()
546 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
653 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1281 std::vector<SearchRow::ColumnID> projections; local
1316 std::vector<SearchRow::ColumnID> projections; local
1420 std::vector<SearchRow::ColumnID> projections; local
1522 std::vector<SearchRow::ColumnID> projections; local
1675 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1733 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1826 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1995 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
    [all...]
sqlite_cursor_unittest.cc 174 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
175 projections.push_back(HistoryAndBookmarkRow::URL);
176 projections.push_back(HistoryAndBookmarkRow::LAST_VISIT_TIME);
177 projections.push_back(HistoryAndBookmarkRow::VISIT_COUNT);
178 projections.push_back(HistoryAndBookmarkRow::FAVICON);
181 service_->QueryHistoryAndBookmarks(projections, std::string(),
android_history_provider_service_unittest.cc 168 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
169 projections.push_back(HistoryAndBookmarkRow::ID);
172 service_->QueryHistoryAndBookmarks(projections, std::string(),
224 std::vector<SearchRow::ColumnID> projections; local
225 projections.push_back(SearchRow::ID);
228 service_->QuerySearchTerms(projections, std::string(),
android_provider_backend.cc 138 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
142 if (projections.empty())
152 return QueryHistoryAndBookmarksInternal(projections, selection,
495 const std::vector<SearchRow::ColumnID>& projections,
499 if (projections.empty())
507 AppendSearchResultColumn(projections, &sql);
851 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
854 // Attach the projections
858 projections.begin(); i != projections.end(); ++i)
953 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
    [all...]
android_history_provider_service.cc 23 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
36 projections, selection, selection_args, sort_order);
216 const std::vector<history::SearchRow::ColumnID>& projections,
228 &HistoryBackend::QuerySearchTerms, NULL, request, projections,
android_provider_backend.h 59 // the |projections| is empty.
61 // |projections| is the vector of the result columns.
66 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
108 // |projections| specifies the result columns, can not be empty, otherwise
114 const std::vector<SearchRow::ColumnID>& projections,
267 // Append the specified result columns in |projections| to the given
272 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
275 // Append the specified search result columns in |projections| to the given
278 const std::vector<SearchRow::ColumnID>& projections,
303 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
    [all...]
android_history_provider_service.h 65 // |projections| is the vector of the result columns.
70 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
161 // |projections| specifies the result columns, can not be empty, otherwise
167 const std::vector<history::SearchRow::ColumnID>& projections,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImageTest.java 774 Projection[][] projections = null; local
775 projections = image.getProjections(width, height, projections);
777 assertEquals(chunks.length, projections.length);
779 assertEquals(chunks[i].length, projections[i].length);
782 for (int y = 0; y < projections.length; y++) {
783 for (int x = 0; x < projections[y].length; x++) {
784 assertEquals(projections[y][x].src, chunks[y][x].rect);
788 if (projections[y][x].chunk.type == Chunk.TYPE_FIXED) {
789 assertEquals(projections[y][x].dest.width, chunks[y][x].rect.width)
    [all...]
  /external/chromium_org/chrome/browser/history/
history_backend_android.cc 26 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
36 projections, selection, selection_args, sort_order);
168 const std::vector<SearchRow::ColumnID>& projections,
177 statement = android_provider_backend_->QuerySearchTerms(projections,
  /cts/tests/tests/content/src/android/content/cts/
AsyncQueryHandlerTest.java 64 private static final String[] PROJECTIONS = new String[] {
131 cursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, ORDER_BY);
148 PROJECTIONS, null, null, ORDER_BY, NO_CANCEL);
173 PROJECTIONS, null, null, ORDER_BY, CANCELABLE);
206 cursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, ORDER_BY);
246 cursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, ORDER_BY);
332 DummyProvider.CONTENT_URI_MOCK_OPERATION, PROJECTIONS, null, null, ORDER_BY);
ContentQueryMapTest.java 48 private static final String[] PROJECTIONS = new String[] {
71 mCursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, null);
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 56 * Each row is then populated with columns that are also defined as XPath-like projections. These
57 * projections fetch attributes values or text in the matching row node or its children.
123 * <p>Defining the projections as <code>/title</code>, <code>/author</code> and <code>@id</code>
340 public XMLCursor(String selection, String[] projections) {
341 super(projections);
342 // The first column in projections is used for the _ID
343 mNumberOfProjections = projections.length - 1;
345 createProjectionPattern(projections);
353 private void createProjectionPattern(String[] projections) {
362 String projection = projections[i + 1]; // +1 to skip the _ID colum
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImage.java 174 private static final void recycleProjections(Projection[][] projections, List<Projection> bin) {
175 int yLen = projections.length;
178 xLen = projections[0].length;
184 bin.add(projections[y][x]);
186 projections[y][x] = null;
717 public Projection[][] getProjections(int width, int height, Projection[][] projections) {
730 if (projections == null) {
731 projections = new Projection[lenY][lenX];
733 int y = projections.length;
734 int x = projections[0].length
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsActor.java 447 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_RAW_CONTACTS, null,
453 final long aggId = cursor.getLong(Projections.COL_CONTACTS_ID);
462 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null,
473 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null,
523 * Various internal database projections.
525 private interface Projections {
GroupsTest.java 115 Projections.PROJ_SUMMARY, null, null, null);
121 final long groupId = cursor.getLong(Projections.COL_ID);
122 final int summaryCount = cursor.getInt(Projections.COL_SUMMARY_COUNT);
123 final int summaryWithPhones = cursor.getInt(Projections.COL_SUMMARY_WITH_PHONES);
215 private interface Projections {
  /frameworks/base/core/java/android/provider/
SearchRecentSuggestions.java 93 /** Index into the provided query projections. For use with Cursor.update methods. */
95 /** Index into the provided query projections. For use with Cursor.update methods. */
97 /** Index into the provided query projections. For use with Cursor.update methods. */
99 /** Index into the provided query projections. For use with Cursor.update methods. */
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProviderValidator.java 28 * A helper class to validate projections for the UIProvider queries.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 30 import com.android.providers.contacts.ContactsDatabaseHelper.Projections;
231 Cursor c = db.query(Tables.GROUPS, Projections.ID,
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.cpp 307 // For ref. see "Efficient Projections into the l1-ball for Learning
378 // entire vector. This stops projections from sending the vector
  /external/opencv/cvaux/src/
cvfindhandregion.cpp 107 /* alloc memory for the point's projections on the line */
327 /* alloc memory for the point's projections on the line */

Completed in 3475 milliseconds

1 2 3