HomeSort by relevance Sort by last modified time
    Searched refs:segments (Results 101 - 125 of 243) sorted by null

1 2 3 45 6 7 8 910

  /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/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine.cc 123 const std::vector<SegmentInfo>& segments,
142 for (std::vector<SegmentInfo>::const_iterator segment = segments.begin();
143 segment != segments.end(); ++segment) {
input_method_engine_interface.h 176 const std::vector<SegmentInfo>& segments,
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
cmap_table.h 375 SegmentList* segments();
376 void set_segments(SegmentList* segments);
383 Builder(SegmentList* segments, IntegerList* glyph_id_array,
424 // segments to use.
434 // Get the count of the number of segments in this cmap.
435 // @return the number of segments
cmap_table.cc 958 CMapTable::CMapFormat4::Builder::Builder(SegmentList* segments,
963 segments_(segments->begin(), segments->end()),
979 // build segments
1006 SegmentList* CMapTable::CMapFormat4::Builder::segments() { function in class:sfntly::CMapTable::CMapFormat4::Builder
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ComputingConcurrentHashMapTest.java 114 Segment<Object, Object> segment = map.segments[0];
171 Segment<Object, Object> segment = map.segments[0];
200 Segment<Object, Object> segment = map.segments[0];
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.h 375 SegmentList* segments();
376 void set_segments(SegmentList* segments);
383 Builder(SegmentList* segments, IntegerList* glyph_id_array,
424 // segments to use.
434 // Get the count of the number of segments in this cmap.
435 // @return the number of segments
cmap_table.cc 958 CMapTable::CMapFormat4::Builder::Builder(SegmentList* segments,
963 segments_(segments->begin(), segments->end()),
979 // build segments
1006 SegmentList* CMapTable::CMapFormat4::Builder::segments() { function in class:sfntly::CMapTable::CMapFormat4::Builder
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiDevice.java 458 * @param segments is Point array containing at least one Point object
463 public boolean swipe(Point[] segments, int segmentSteps) {
464 Tracer.trace(segments, segmentSteps);
465 return getAutomatorBridge().getInteractionController().swipe(segments, segmentSteps);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
EmlAttachmentProvider.java 402 final List<String> segments = uri.getPathSegments(); local
404 .appendPath(segments.get(0)).appendPath(segments.get(1)).build();
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 95 * The basic strategy is to subdivide the table among Segments, each of which itself is a
97 * across different segments.
129 /** The maximum number of segments to allow; used to bound constructor arguments. */
158 * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
164 * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
169 /** The segments, each of which is a specialized hash table. */
170 final Segment<K, V>[] segments; field in class:LocalCache
219 * Accumulates global cache statistics. Note that there are also per-segments stats counters
276 this.segments = newSegmentArray(segmentCount);
292 for (int i = 0; i < this.segments.length; ++i)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 76 * The basic strategy is to subdivide the table among Segments, each of which itself is a
78 * across different segments.
110 /** The maximum number of segments to allow; used to bound constructor arguments. */
139 * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
145 * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
150 /** The segments, each of which is a specialized hash table. */
151 final transient Segment<K, V>[] segments; field in class:MapMakerInternalMap
235 this.segments = newSegmentArray(segmentCount);
251 for (int i = 0; i < this.segments.length; ++i) {
255 this.segments[i]
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.cpp 38 if (fCurrentContour && !fCurrentContour->segments().count()) {
  /external/icu4c/layout/
ContextualGlyphSubstProc2.cpp 93 const LookupSegment *segment = lookupTable2->lookupSegment(lookupTable2->segments, gid);
StateTableProcessor2.cpp 98 const LookupSegment *segment = lookupTable2->lookupSegment(lookupTable2->segments, gid);
  /external/skia/src/pathops/
SkOpEdgeBuilder.cpp 38 if (fCurrentContour && !fCurrentContour->segments().count()) {
  /frameworks/av/include/media/
ToneGenerator.h 208 static const unsigned int TONEGEN_MAX_SEGMENTS = 12; // Maximun number of segments in a tone descriptor
218 // - The array segments[] is used to generate the tone pulses. A segment is a period of time
219 // during which the tone is ON or OFF. Segments with even index (starting from 0)
220 // correspond to tone ON state and segments with odd index to OFF state.
221 // The data stored in segments[] is the duration of the corresponding period in ms.
225 // - repeatCnt indicates the number of times the sequence described by segments[] array must be repeated.
241 ToneSegment segments[TONEGEN_MAX_SEGMENTS+1]; member in class:android::ToneGenerator::ToneDescriptor
257 unsigned short mCurSegment; // Current segment index in ToneDescriptor segments[]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentProvider.java 219 List<String> segments = uri.getPathSegments(); local
227 return new UriData(uri, uriType, segments.get(1), sourcePackage);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
background.js 38 const segments = 16;
39 var segArc = Math.TAU / segments;
40 for (var seg = 0; seg < segments; ++seg) {
  /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...]
  /external/chromium_org/ui/gfx/
render_text_win.cc 228 // For segments in the same run, checks the continuity and order of |x_range|
236 for (size_t j = 0; j < lines[i].segments.size(); ++j) {
237 const internal::LineSegment* segment = &lines[i].segments[j];
372 return &lines_[handle.first].segments[handle.second];
375 // Breaks a run into segments that fit in the last line in |lines_| and adds
397 // |x_range| of RTL segments, segment widths are applied in reverse order.
456 line->segments.push_back(segment);
460 line->segments.size() - 1));
462 // ranges of all segments from the run.
492 // The current RTL run segments, to be applied by |UpdateRTLSegmentRanges()|
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 404 String[] segments = className.split(AdtConstants.RE_DOT);
405 if (segments.length == 1) {
510 // look for how many segments we have left.
560 // its a match. get the number of segments
561 String[] segments = fragment.getElementName().split("\\."); //$NON-NLS-1$
562 if (segments.length > packageMatchCount) {
563 packageMatchCount = segments.length;
599 // create the rest of the segments, except for the last one as indexOf will
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 381 List<String> segments = uri.getPathSegments(); local
383 segments.get(1),
384 segments.get(2),
  /frameworks/support/tests/java/android/support/v4/content/
FileProviderTest.java 340 private static File buildPath(File base, String... segments) {
342 for (String segment : segments) {
  /frameworks/support/v4/java/android/support/v4/content/
FileProvider.java     [all...]

Completed in 2225 milliseconds

1 2 3 45 6 7 8 910