HomeSort by relevance Sort by last modified time
    Searched defs:region (Results 26 - 50 of 681) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
Utils.java 19 String region = ""; local
24 region = language.substring(x+1);
27 x = region.indexOf("_");
29 variant = region.substring(x+1);
30 region = region.substring(0, x);
32 return new Locale(language, region, variant);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
Utils.java 15 String region = ""; local
20 region = language.substring(x+1);
23 x = region.indexOf("_");
25 variant = region.substring(x+1);
26 region = region.substring(0, x);
28 return new Locale(language, region, variant);
  /external/libchrome/base/trace_event/
process_memory_maps_dump_provider.cc 27 ProcessMemoryMaps::VMRegion* region) {
29 bool res = true; // Whether this region should be appended or skipped.
35 &region->start_address, &end_addr, protection_flags,
39 if (end_addr > region->start_address) {
40 region->size_in_bytes = end_addr - region->start_address;
43 region->size_in_bytes = 0;
47 region->protection_flags = 0;
49 region->protection_flags |=
53 region->protection_flags |
111 ProcessMemoryMaps::VMRegion region; local
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
PixmapTest.java 31 TextureRegion region; field in class:PixmapTest
56 region = new TextureRegion(texture, 0, 0, 800, 480);
72 batch.draw(region, 0, 0);
RotationTest.java 29 TextureRegion region; field in class:RotationTest
35 region = new TextureRegion(texture);
45 batch.draw(region, 128, 0, 64, 64, 128, 128, 1, 1, 90);
46 batch.draw(region, 128, 128, 64, 64, 128, 128, 1, 1, 180);
47 batch.draw(region, 0, 128, 64, 64, 128, 128, 1, 1, 270);
  /external/libunwind/src/mi/
Gdyn-remote.c 32 free_regions (unw_dyn_region_info_t *region)
34 if (region->next)
35 free_regions (region->next);
36 free (region);
59 unw_dyn_region_info_t *region; local
66 return 0; /* NULL region-list */
73 region = calloc (1, _U_dyn_region_info_size (op_count));
74 if (!region)
80 region->insn_count = insn_count;
81 region->op_count = op_count
    [all...]
  /external/libunwind/tests/
Gtest-dyn1.c 170 unw_dyn_region_info_t *region; local
195 region = alloca (_U_dyn_region_info_size (2));
196 region->next = NULL;
197 region->insn_count = 3 * (MAX_FUNC_SIZE / 16);
198 region->op_count = 2;
199 _U_dyn_op_alias (&region->op[0], 0, -1, fdesc.code);
200 _U_dyn_op_stop (&region->op[1]);
204 di.end_ip = (long) mem + 16*region->insn_count/3;
208 di.u.pi.regions = region;
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_buffer.c 64 struct vmw_region *region; member in struct:vmw_gmr_buffer
102 vmw_ioctl_region_unmap(buf->region);
104 vmw_ioctl_region_destroy(buf->region);
187 buf->region = vmw_ioctl_region_create(vws, size);
188 if(!buf->region)
191 buf->map = vmw_ioctl_region_map(buf->region);
198 vmw_ioctl_region_destroy(buf->region);
254 *ptr = vmw_ioctl_region_ptr(gmr_buf->region);
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_misc_state.c 71 intel_region_get_tile_masks(depth_mt->region,
76 intel_region_get_tile_masks(hiz_mt->region,
156 struct intel_region *region = depth_mt->region; local
182 offset = intel_region_get_aligned_offset(region,
187 assert(region->tiling == I915_TILING_Y);
192 OUT_BATCH(((region->pitch * region->cpp) - 1) |
198 OUT_RELOC(region->bo,
217 intel_region_get_aligned_offset(hiz_mt->region,
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 59 parameter.region(s, string.length());
  /external/opencv3/samples/cpp/
detect_blob.cpp 12 cout << "\n This program demonstrates how to use BLOB to detect and filter region \n"
182 vector<vector <Point> > region; local
  /external/webrtc/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.cc 73 void ScreenCapturerWinGdi::Capture(const DesktopRegion& region) {
111 DesktopRegion region; local
113 &region);
114 helper_.InvalidateRegion(region);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 52 matcher.region(mOffset, mInput.length());
86 matcher.region(mOffset, mInput.length());
94 matcher.region(mOffset, mInput.length());
  /frameworks/compile/mclinker/unittests/
ELFReaderTest.cpp 68 llvm::StringRef region = local
70 const char* ELF_hdr = region.begin();
129 llvm::StringRef region = mem->request(offset, size); local
133 ASSERT_TRUE(m_pELFReader->readRela(*m_pInput, **rs, region));
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
BmsgTokenizer.java 77 mMatcher.region(mPos, mMatcher.regionEnd());
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/utils/
BmsgTokenizer.java 77 mMatcher.region(mPos, mMatcher.regionEnd());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlCharacterMatcher.java 26 import org.eclipse.jface.text.Region;
65 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(offset); local
66 if (region == null) {
70 ITextRegion subRegion = region.getRegionAtCharacterOffset(offset);
74 ITextRegionList subRegions = region.getRegions();
86 (subRegion.getStart() + region.getStartOffset() == offset)) {
91 region = doc.getRegionAtCharacterOffset(offset);
92 if (region == null) {
95 subRegion = region.getRegionAtCharacterOffset(offset);
101 subRegions = region.getRegions()
149 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(offset); local
201 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(start); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ObsoleteLayoutParamsFix.java 60 IndexedRegion region = (IndexedRegion) attribute; local
61 if (region.getStartOffset() == start) {
TypographyFix.java 66 IndexedRegion region = (IndexedRegion) child; local
72 document.replace(edit.offset + region.getStartOffset(),
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
BatchTiledMapRenderer.java 189 TextureRegion region = layer.getTextureRegion(); local
191 if (region == null) {
199 final float x2 = x1 + region.getRegionWidth() * unitScale;
200 final float y2 = y1 + region.getRegionHeight() * unitScale;
205 final float u1 = region.getU();
206 final float v1 = region.getV2();
207 final float u2 = region.getU2();
208 final float v2 = region.getV();
234 batch.draw(region.getTexture(), vertices, 0, NUM_VERTICES);
HexagonalTiledMapRenderer.java 179 TextureRegion region = tile.getTextureRegion(); local
183 float x2 = x1 + region.getRegionWidth() * unitScale;
184 float y2 = y1 + region.getRegionHeight() * unitScale;
186 float u1 = region.getU();
187 float v1 = region.getV2();
188 float u2 = region.getU2();
189 float v2 = region.getV();
245 batch.draw(region.getTexture(), vertices, 0, NUM_VERTICES);
IsometricStaggeredTiledMapRenderer.java 79 TextureRegion region = tile.getTextureRegion(); local
83 float x2 = x1 + region.getRegionWidth() * unitScale;
84 float y2 = y1 + region.getRegionHeight() * unitScale;
86 float u1 = region.getU();
87 float v1 = region.getV2();
88 float u2 = region.getU2();
89 float v2 = region.getV();
180 batch.draw(region.getTexture(), vertices, 0, NUM_VERTICES);
IsometricTiledMapRenderer.java 125 TextureRegion region = tile.getTextureRegion(); local
129 float x2 = x1 + region.getRegionWidth() * unitScale;
130 float y2 = y1 + region.getRegionHeight() * unitScale;
132 float u1 = region.getU();
133 float v1 = region.getV2();
134 float u2 = region.getU2();
135 float v2 = region.getV();
224 batch.draw(region.getTexture(), vertices, 0, NUM_VERTICES);
OrthogonalTiledMapRenderer.java 102 TextureRegion region = tile.getTextureRegion(); local
106 float x2 = x1 + region.getRegionWidth() * unitScale;
107 float y2 = y1 + region.getRegionHeight() * unitScale;
109 float u1 = region.getU();
110 float v1 = region.getV2();
111 float u2 = region.getU2();
112 float v2 = region.getV();
201 batch.draw(region.getTexture(), vertices, 0, NUM_VERTICES);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Region_Delegate.java 33 * Delegate implementing the native methods of android.graphics.Region
35 * Through the layoutlib_create tool, the original native methods of Region have been replaced
40 * it and the original Region class.
42 * This also serve as a base class for all Region delegate classes.
70 * to the given {@link Region.Op}.
80 if (regionOp == Region.Op.DIFFERENCE.nativeInt) {
91 } else if (regionOp == Region.Op.INTERSECT.nativeInt) {
102 } else if (regionOp == Region.Op.UNION.nativeInt) {
113 } else if (regionOp == Region.Op.XOR.nativeInt) {
124 } else if (regionOp == Region.Op.REVERSE_DIFFERENCE.nativeInt)
330 Region_Delegate region = sManager.getDelegate(native_region); local
350 Region_Delegate region = sManager.getDelegate(native_region); local
372 Region_Delegate region = sManager.getDelegate(native_dst); local
390 Region_Delegate region = sManager.getDelegate(native_dst); local
473 Region_Delegate region = sManager.getDelegate(native_region); local
    [all...]

Completed in 579 milliseconds

12 3 4 5 6 7 8 91011>>