/external/chromium_org/third_party/skia/src/pathops/ |
SkOpEdgeBuilder.h | 31 if (fCurrentContour && fCurrentContour->segments().count()) {
|
/external/e2fsprogs/intl/ |
gmo.h | 95 /* The number of system dependent segments. */ 97 /* Offset of table describing system dependent segments. */ 130 /* Offset of static string segments in file. */ 132 /* Alternating sequence of static and system dependent segments. 140 } segments[1]; member in struct:sysdep_string 143 /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF,
|
/external/skia/src/pathops/ |
SkOpEdgeBuilder.h | 31 if (fCurrentContour && fCurrentContour->segments().count()) {
|
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
InteractionController.java | 473 * @param segments is Point array containing at least one Point object 477 public boolean swipe(Point[] segments, int segmentSteps) { 488 if(segments.length == 0) 492 ret = touchDown(segments[0].x, segments[0].y); 493 for(int seg = 0; seg < segments.length; seg++) { 494 if(seg + 1 < segments.length) { 496 xStep = ((double)(segments[seg+1].x - segments[seg].x)) / segmentSteps; 497 yStep = ((double)(segments[seg+1].y - segments[seg].y)) / segmentSteps [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
PreCompilerDeltaVisitor.java | 184 String[] segments = path.segments(); local 187 // segments.length = 1 188 if (segments.length == 1) { 192 } else if (segments.length == 2) { 198 if (SdkConstants.FD_RESOURCES.equalsIgnoreCase(segments[1])) { 207 } else if (SdkConstants.FN_ANDROID_MANIFEST_XML.equalsIgnoreCase(segments[1])) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
CreateAssetSetWizard.java | 194 List<Object> segments = new ArrayList<Object>(); local 195 segments.add(file); 198 segments.add(folder); 202 segments.add(folder); 206 segments.add(javaProject); 208 Collections.reverse(segments); 209 TreePath path = new TreePath(segments.toArray());
|
/external/guava/guava-tests/test/com/google/common/cache/ |
CacheBuilderTest.java | 91 assertEquals(4, map.segments.length); 92 assertEquals(2, map.segments[0].table.length()); 93 assertEquals(2, map.segments[1].table.length()); 94 assertEquals(2, map.segments[2].table.length()); 95 assertEquals(2, map.segments[3].table.length()); 105 assertEquals(4, map.segments.length); 107 assertEquals(1, map.segments[0].table.length()); 108 assertEquals(1, map.segments[1].table.length()); 109 assertEquals(1, map.segments[2].table.length()); 110 assertEquals(1, map.segments[3].table.length()) [all...] |
CacheTesting.java | 132 for (Segment segment : map.segments) { 154 for (LocalCache.Segment segment : cchm.segments) { 171 for (Segment<?, ?> segment : map.segments) { 190 for (Segment<?, ?> segment : cchm.segments) { 220 for (Segment<?, ?> segment : cchm.segments) { 282 for (Segment<?, ?> segment : map.segments) { 301 for (Segment segment : map.segments) { 331 for (Segment<?, ?> segment : cchm.segments) { 344 for (Segment<?, ?> segment : cchm.segments) { 383 Segment<?, ?> segment = cchm.segments[0] [all...] |
/frameworks/support/v4/java/android/support/v4/content/ |
ContextCompat.java | 289 private static File buildPath(File base, String... segments) { 291 for (String segment : segments) {
|
/external/chromium_org/native_client_sdk/src/tools/ |
decode_dump.py | 76 def _DecodeAddressSegment(self, segments, address): 80 segments: a list of phdr segments. 85 for segment in segments: 93 def _Addr2Line(self, segments, address): 97 segments: A list of phdr segments. 102 filename, address = self._DecodeAddressSegment(segments, address) 134 frame['scopes'] = self._Addr2Line(core['segments'], frame['prog_ctr']) 148 frame['scopes'] = self._Addr2Line(core['segments'], frame['prog_ctr'] [all...] |
/external/chromium_org/ppapi/tests/ |
test_ime_input_event.h | 32 const std::vector<uint32_t>& segments,
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afhints.c | 63 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) ) 69 segment = axis->segments + axis->num_segments++; 244 /* Dump the array of linked segments. */ 260 AF_Segment segments = axis->segments; local 261 AF_Segment limit = segments + axis->num_segments; 265 FT_TRACE7(( "Table of %s segments:\n", 275 for ( seg = segments; seg < limit; seg++ ) 279 seg - segments, 286 AF_INDEX_NUM( seg->link, segments ), 840 AF_Segment segments = axis->segments; local [all...] |
aflatin2.c | 62 /* scan the array of segments in each direction */ 119 seg = axhints->segments; 126 /* we only consider stem segments there! */ 876 /* now slightly increase the height of segments when this makes */ 879 AF_Segment segments = axis->segments; local 880 AF_Segment segments_end = segments + axis->num_segments; 883 for ( segment = segments; segment < segments_end; segment++ ) 923 /* place all segments with a negative direction to the start 927 AF_Segment segments = axis->segments local 968 AF_Segment segments = axis->segments; local 1072 AF_Segment segments = axis->segments; local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
rbt_rule.h | 43 * <p>A rule may contain segments in its input string and segment 99 * segments. If there are no segments this is null. N.B. This is 106 UnicodeFunctor** segments; member in class:TransliterationRule 109 * The number of elements in segments[] or zero if segments is NULL. 142 * lookup services for matchers and segments. 170 * segments, or null if there are none. The array itself is adopted,
|
msgfmt.cpp | 575 // The pattern is broken up into segments. Each time a subformat 576 // is encountered, 4 segments are recorded. For example, consider 579 // The first set of segments is: 580 // segments[0] = "There " 581 // segments[1] = "0" 582 // segments[2] = "choice" 583 // segments[3] = "0.0#are no files|1.0#is one file|1.0<are {0, number} files" 585 // During parsing, the plain text is accumulated into segments[0]. 586 // Segments 1..3 are used to parse each subpattern. Each time a 590 // segments[0] 598 UnicodeString segments[4]; local [all...] |
/external/freetype/src/autofit/ |
afhints.c | 63 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) ) 69 segment = axis->segments + axis->num_segments++; 244 /* Dump the array of linked segments. */ 260 AF_Segment segments = axis->segments; local 261 AF_Segment limit = segments + axis->num_segments; 265 FT_TRACE7(( "Table of %s segments:\n", 275 for ( seg = segments; seg < limit; seg++ ) 279 seg - segments, 286 AF_INDEX_NUM( seg->link, segments ), 840 AF_Segment segments = axis->segments; local [all...] |
aflatin2.c | 62 /* scan the array of segments in each direction */ 119 seg = axhints->segments; 126 /* we only consider stem segments there! */ 876 /* now slightly increase the height of segments when this makes */ 879 AF_Segment segments = axis->segments; local 880 AF_Segment segments_end = segments + axis->num_segments; 883 for ( segment = segments; segment < segments_end; segment++ ) 923 /* place all segments with a negative direction to the start 927 AF_Segment segments = axis->segments local 968 AF_Segment segments = axis->segments; local 1072 AF_Segment segments = axis->segments; local [all...] |
/external/icu4c/i18n/ |
rbt_rule.h | 43 * <p>A rule may contain segments in its input string and segment 99 * segments. If there are no segments this is null. N.B. This is 106 UnicodeFunctor** segments; member in class:TransliterationRule 109 * The number of elements in segments[] or zero if segments is NULL. 142 * lookup services for matchers and segments. 170 * segments, or null if there are none. The array itself is adopted,
|
/external/robolectric/src/main/java/android/net/ |
Uri__FromAndroid.java | 297 * Gets the decoded path segments. 299 * @return decoded path segments, each without a leading or trailing '/' 920 final String[] segments; field in class:Uri__FromAndroid.PathSegments 923 PathSegments(String[] segments, int size) { 924 this.segments = segments; 933 return segments[index]; 946 String[] segments; field in class:Uri__FromAndroid.PathSegmentsBuilder 950 if (segments == null) { 951 segments = new String[4] 984 List<String> segments = getPathSegments(); local [all...] |
/frameworks/base/core/java/android/net/ |
Uri.java | 306 * Gets the decoded path segments. 308 * @return decoded path segments, each without a leading or trailing '/' 971 final String[] segments; field in class:Uri.PathSegments 974 PathSegments(String[] segments, int size) { 975 this.segments = segments; 984 return segments[index]; 997 String[] segments; field in class:Uri.PathSegmentsBuilder 1001 if (segments == null) { 1002 segments = new String[4] 1035 List<String> segments = getPathSegments(); local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
MapMakerInternalMapTest.java | 96 assertEquals(4, map.segments.length); 98 assertEquals(16 / map.segments.length, map.segments[0].table.length()); 160 assertEquals(segmentCount, map.segments.length); 201 for (int i = 0; i < map.segments.length; i++) { 202 assertEquals(segmentSize, map.segments[i].table.length()); 237 for (int i = 0; i < map.segments.length; i++) { 238 totalCapacity += map.segments[i].maxSegmentSize; 383 Segment<Object, Object> segment = map.segments[0]; 519 Segment<Object, Object> segment = map.segments[0] [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
CollisionSystem.java | 26 * world. This version is based on a collision world of line segments, organized into an array of 30 * This class also provides a system for runtime-generated collision segments. These temporary 31 * segments are cleared each frame, and consequently must be constantly re-submitted if they are 32 * intended to persist. Temporary segments are useful for dynamic solid objects, such as moving 37 * implementations to executeRay. Provided is TileTestVisitor, a visitor that compares the segments 100 * @param movementDirection If set, only segments with normals that oppose this direction will 101 * be counted as valid intersections. If null, all intersecting segments will be 206 boolean hit = testBoxAgainstList(mCollisionTiles[tileIndex].segments, 220 // temporary segments 258 // frame execution order. So each frame we queue up inserted segments and then swap the 842 public FixedSizeArray<LineSegment> segments; field in class:CollisionSystem.CollisionTile [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
Utils.java | 950 LinkedList<DNASegment> segments = new LinkedList<DNASegment>(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
Region.cpp | 249 // Check if both spans have an equal number of segments. 257 // Since the segments are equal the second segment can just be ignored. 296 // Check if this span has any segments. 308 // Check if this span has any segments. 438 Vector<int, 32> segments; 440 // Now iterate over the segments in each span and construct a new vector of segments. 457 segments.append(x); 462 // Add any remaining segments. 464 segments.appendRange(s1, segments1End) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/ |
rdftest1.asm | 5 ;; [2] relocation to different segments in same module
|