HomeSort by relevance Sort by last modified time
    Searched refs:segments (Results 26 - 50 of 71) sorted by null

12 3

  /external/chromium/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 570 // The pattern is broken up into segments. Each time a subformat
571 // is encountered, 4 segments are recorded. For example, consider
574 // The first set of segments is:
575 // segments[0] = "There "
576 // segments[1] = "0"
577 // segments[2] = "choice"
578 // segments[3] = "0.0#are no files|1.0#is one file|1.0<are {0, number} files"
580 // During parsing, the plain text is accumulated into segments[0].
581 // Segments 1..3 are used to parse each subpattern. Each time a
585 // segments[0]
593 UnicodeString segments[4]; 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,
msgfmt.cpp 579 // The pattern is broken up into segments. Each time a subformat
580 // is encountered, 4 segments are recorded. For example, consider
583 // The first set of segments is:
584 // segments[0] = "There "
585 // segments[1] = "0"
586 // segments[2] = "choice"
587 // segments[3] = "0.0#are no files|1.0#is one file|1.0<are {0, number} files"
589 // During parsing, the plain text is accumulated into segments[0].
590 // Segments 1..3 are used to parse each subpattern. Each time a
594 // segments[0]
602 UnicodeString segments[4]; local
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 301 * Gets the decoded path segments.
303 * @return decoded path segments, each without a leading or trailing '/'
924 final String[] segments; field in class:Uri.PathSegments
927 PathSegments(String[] segments, int size) {
928 this.segments = segments;
937 return segments[index];
950 String[] segments; field in class:Uri.PathSegmentsBuilder
954 if (segments == null) {
955 segments = new String[4]
988 List<String> segments = getPathSegments(); local
    [all...]
  /external/freetype/src/autofit/
afhints.c 50 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) )
56 segment = axis->segments + axis->num_segments++;
225 /* A function to dump the array of linked segments. */
235 AF_Segment segments = axis->segments; local
236 AF_Segment limit = segments + axis->num_segments;
240 printf ( "Table of %s segments:\n",
245 for ( seg = segments; seg < limit; seg++ )
248 seg - segments,
252 AF_INDEX_NUM( seg->link, segments ),
679 AF_Segment segments = axis->segments; local
    [all...]
aflatin2.c 51 /* scan the array of segments in each direction */
107 seg = axhints->segments;
114 /* we only consider stem segments there! */
832 /* now slightly increase the height of segments when this makes */
835 AF_Segment segments = axis->segments; local
836 AF_Segment segments_end = segments + axis->num_segments;
839 for ( segment = segments; segment < segments_end; segment++ )
879 /* place all segments with a negative direction to the start
883 AF_Segment segments = axis->segments local
923 AF_Segment segments = axis->segments; local
1027 AF_Segment segments = axis->segments; local
    [all...]
aflatin.c 44 /* scan the array of segments in each direction */
100 seg = axhints->segments;
107 /* we only consider stem segments there! */
821 /* now slightly increase the height of segments when this makes */
824 AF_Segment segments = axis->segments; local
825 AF_Segment segments_end = segments + axis->num_segments;
828 for ( segment = segments; segment < segments_end; segment++ )
882 AF_Segment segments = axis->segments; local
972 AF_Segment segments = axis->segments; local
    [all...]
afhints.h 36 /* i.e., vertical segments & edges */
38 /* i.e., horizontal segments & edges */
136 FT_Pos num_linked; /* number of linked segments */
174 AF_Segment segments; member in struct:AF_AxisHintsRec_
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
ApkBuilder.java 91 // split the path into segments.
92 String[] segments = archivePath.split("/"); local
95 if (segments.length == 0) {
103 for (int i = 0 ; i < segments.length - 1; i++) {
104 if (checkFolderForPackaging(segments[i]) == false) {
110 String fileName = segments[segments.length-1];
  /external/webkit/WebCore/platform/
SharedBuffer.cpp 129 // No need to use segments for small resource data
232 unsigned segments = m_segments.size(); local
234 ASSERT(segment < segments);
238 return segment == segments - 1 ? segmentedSize - position : segmentSize - positionInSegment;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
WidgetClassLoader.java 126 String[] segments = fqcn.split("\\."); local
127 return segments[segments.length-1];
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeContext.java 505 String[] segments = reference.split("\\/"); local
510 if (segments.length == 2) {
513 if (BridgeConstants.RES_ATTR.equals(segments[0])) {
514 referenceName = segments[1];
521 referenceName = segments[0];
556 String[] segments = reference.split("\\/"); local
560 if (segments[1].startsWith(BridgeConstants.PREFIX_ANDROID)) {
562 segments[1] = segments[1].substring(BridgeConstants.PREFIX_ANDROID.length());
565 return findResValue(segments[0], segments[1]
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.cpp 39 static void quadCurve(int segments, Vector<PathPoint>& pts, const PathPoint* control)
41 const float step = 1.0 / segments;
53 pts.resize(offset + segments);
58 for (int i = 1; i < segments; ++i) {
74 pts[offset + segments - 1] = pp;
77 static inline void bezier(int segments, Vector<PathPoint>& pts, const PathPoint* control)
79 const float step = 1.0 / segments;
93 pts.resize(offset + segments);
98 for (int i = 1; i < segments; ++i) {
117 pts[offset + segments - 1] = pp
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 397 String[] segments = className.split(AndroidConstants.RE_DOT);
398 if (segments.length == 1) {
503 // look for how many segments we have left.
553 // its a match. get the number of segments
554 String[] segments = fragment.getElementName().split("\\."); //$NON-NLS-1$
555 if (segments.length > packageMatchCount) {
556 packageMatchCount = segments.length;
592 // create the rest of the segments, except for the last one as indexOf will
  /external/sonivox/jet_tools/JetCreator/
JetCreator.py 267 """ Loads up the list of segments """
269 segments = self.jet_file.GetSegments()
271 self.SegSort(segments, "segname")
273 self.SegSort(segments, "filename")
275 self.SegSort(segments, "dlsfile")
277 self.SegSort(segments, "start")
279 self.SegSort(segments, "end")
281 self.SegSort(segments, "quantize")
283 self.SegSort(segments, "transpose")
285 self.SegSort(segments, "repeat")
    [all...]
  /external/quake/quake/src/WinQuake/
dos_v2.cpp 20 #include <sys/segments.h>
  /frameworks/base/include/media/
ToneGenerator.h 205 static const unsigned int TONEGEN_MAX_SEGMENTS = 12; // Maximun number of segments in a tone descriptor
215 // - The array segments[] is used to generate the tone pulses. A segment is a period of time
216 // during which the tone is ON or OFF. Segments with even index (starting from 0)
217 // correspond to tone ON state and segments with odd index to OFF state.
218 // The data stored in segments[] is the duration of the corresponding period in ms.
222 // - repeatCnt indicates the number of times the sequence described by segments[] array must be repeated.
238 ToneSegment segments[TONEGEN_MAX_SEGMENTS+1]; member in class:android::ToneGenerator::ToneDescriptor
254 unsigned short mCurSegment; // Current segment index in ToneDescriptor segments[]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PostCompilerDeltaVisitor.java 150 String[] pathSegments = path.segments();
154 // segments.length = 1
  /external/e2fsprogs/intl/
loadmsgcat.c 1086 /* Get the values of the system dependent segments. */
1139 const struct segment_pair *p = sysdep_string->segments;
1142 for (p = sysdep_string->segments;; p++)
1218 sysdep_string->segments;
1222 for (p = sysdep_string->segments;; p++)
1259 sysdep_string->segments;
1261 /* Concatenate the segments, and fill
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogPanel.java 1479 String[] segments = text.split(" "); \/\/$NON-NLS-1\$ local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
UiContentOutlinePage.java 437 LinkedList<UiElementTreeEditPart> segments = new LinkedList<UiElementTreeEditPart>(); local
441 segments.add(0, part);
443 setSelection(new TreeSelection(new TreePath(segments.toArray())));
  /external/bluetooth/glib/glib/
gtestutils.c 924 gchar **segments; local
933 segments = g_strsplit (testpath, "/", -1);
934 for (ui = 0; segments[ui] != NULL; ui++)
936 const char *seg = segments[ui];
937 gboolean islast = segments[ui + 1] == NULL;
954 g_strfreev (segments);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]
  /external/chromium/third_party/icu/public/i18n/unicode/
msgfmt.h 219 * of single-quoted segments. Inside a
    [all...]

Completed in 1499 milliseconds

12 3