HomeSort by relevance Sort by last modified time
    Searched refs:projections (Results 1 - 9 of 9) sorted by 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.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...]
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
ChannelUtils.java 55 String[] projections = new String[ChannelInfo.PROJECTION.length + 1]; local
56 projections[0] = Channels._ID;
57 System.arraycopy(ChannelInfo.PROJECTION, 0, projections, 1, ChannelInfo.PROJECTION.length);
59 .query(uri, projections, null, null, null)) {
  /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...]
  /external/v8/src/compiler/
node-properties.cc 266 void NodeProperties::CollectControlProjections(Node* node, Node** projections,
270 std::memset(projections, 0, sizeof(*projections) * projection_count);
307 DCHECK_NULL(projections[index]);
308 projections[index] = use;
312 DCHECK_NOT_NULL(projections[index]);
js-typed-lowering.cc 447 Node* projections[2]; local
450 NodeProperties::CollectControlProjections(node_, projections, 2);
451 Node* if_exception = projections[1];
452 Node* if_success = projections[0];
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/provider/
DvrDatabaseHelper.java 218 public Cursor query(String tableName, String[] projections) {
222 return builder.query(db, projections, null, null, null, null, null);
  /packages/apps/TV/src/com/android/tv/search/
TvProviderSearch.java 516 String[] projections = new String[] { local
522 try (Cursor c = mContentResolver.query(uri, projections, selection, selectionArgs,
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-dynamodb/1.11.18/
aws-java-sdk-dynamodb-1.11.18.jar 

Completed in 825 milliseconds