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

12 3

  /external/grub/netboot/
pci.c 89 unsigned short segment; member in struct:__anon3783
95 unsigned short segment; member in struct:__anon3784
  /external/kernel-headers/original/linux/
kexec.h 73 struct kexec_segment segment[KEXEC_SEGMENT_MAX]; member in struct:kimage
  /external/sonivox/jet_tools/JetCreator/
JetDialogs.py 299 self.segment = None
359 InfoMsg("Start/End", "The segment starting and ending times are illogical.")
363 InfoMsg("Segment Name", "The segment must have a name.")
367 InfoMsg("MIDI File", "The segment must have a midi file selected.")
383 """ Builds the segment info for graphing """
386 segment = JetSegment(self.GetValue(JetDefs.F_SEGNAME),
401 segment = JetSegment(self.GetValue(JetDefs.F_SEGNAME),
414 return segment
423 """ Play the segment button pressed """
1017 segment = JetSegment("Test Segment Name", 'C:\/_Data\/JetCreator\/JetDemo1\/jenn_Burning Line.mid', variable
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 77 LPTTPOLYCURVE segment = reinterpret_cast<LPTTPOLYCURVE>(reinterpret_cast<UInt8*>(subpath) + subpathOffset); local
78 switch (segment->wType) {
80 for (unsigned i = 0; i < segment->cpfx; i++)
81 CGPathAddLineToPoint(path, 0, toCGFloat(segment->apfx[i].x), toCGFloat(segment->apfx[i].y));
85 for (unsigned i = 0; i < segment->cpfx; i++) {
86 CGFloat x = toCGFloat(segment->apfx[i].x);
87 CGFloat y = toCGFloat(segment->apfx[i].y);
91 if (i == segment->cpfx - 2) {
92 cpx = toCGFloat(segment->apfx[i + 1].x)
    [all...]
  /external/webkit/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 116 const char* segment; local
117 while (unsigned segmentLength = data.getSomeData(segment, m_readOffset)) {
120 png_process_data(m_png, m_info, reinterpret_cast<png_bytep>(const_cast<char*>(segment)), segmentLength);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 225 LookupKeySegment segment = list.get(i); local
226 assertEquals(accountHashCodes[i], segment.accountHashCode);
227 assertEquals(types[i], segment.lookupType);
228 assertEquals(keys[i], segment.key);
  /external/bluetooth/glib/glib/
gstring.c 467 gchar *segment; local
474 segment = NULL;
477 segment = string->str;
481 return segment;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 408 String segment = uri.getPathSegments().get(1); local
409 rowId = Long.parseLong(segment);
449 String segment = uri.getPathSegments().get(1); local
450 long rowId = Long.parseLong(segment);
  /external/chromium/third_party/icu/source/common/
ustring.c 1362 const char *segment = src; local
    [all...]
  /external/elfutils/src/
ld.c 1379 struct output_segment *segment = ld_state.output_segments->next; local
    [all...]
ldgeneric.c 2759 struct output_segment *segment = ld_state.output_segments->next; local
5558 struct output_segment *segment; local
    [all...]
  /external/freetype/src/autofit/
afhints.c 30 AF_Segment segment = NULL; local
37 FT_Int big_max = (FT_Int)( FT_INT_MAX / sizeof ( *segment ) );
56 segment = axis->segments + axis->num_segments++;
59 *asegment = segment;
399 * note that we don't need to free the segment and edge
1002 /* PASS 1: Move segment points to edge positions */
aflatin.c 275 /* segment; we first need to find in which contour the extremum */
314 /* now, set the `round' flag depending on the segment's kind */
665 AF_Segment segment = NULL; local
713 FT_Pos min_pos = 32000; /* minimum segment pos != min_coord */
714 FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */
758 /* we are just leaving an edge; record a new segment! */
759 segment->last = point;
760 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 );
762 /* a segment is round if either its first or last point */
764 if ( ( segment->first->flags | point->flags )
    [all...]
aflatin2.c 280 /* segment; we first need to find in which contour the extremum */
319 /* now, set the `round' flag depending on the segment's kind */
667 AF_Segment segment = NULL; local
728 else /* otherwise, find first segment start, if any */
746 /* we're at the start of a new segment */
773 /* record new segment */
774 error = af_axis_hints_new_segment( axis, memory, &segment );
778 segment[0] = seg0;
779 segment->dir = first->out_dir;
780 segment->first = first
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 285 GX_AVarSegment segment; local
312 segment = &blend->avar_segment[0];
313 for ( i = 0; i < axisCount; ++i, ++segment )
315 segment->pairCount = FT_GET_USHORT();
316 if ( FT_NEW_ARRAY( segment->correspondence, segment->pairCount ) )
329 for ( j = 0; j < segment->pairCount; ++j )
331 segment->correspondence[j].fromCoord =
333 segment->correspondence[j].toCoord =
    [all...]
  /external/grub/stage2/
asm.S 303 /* copy the original int13 handler segment:offset */
342 .word 0 /* segment */
641 /* compute the segment */
740 * chain_stage1(segment, offset, part_table_addr)
742 * This starts another stage1 loader, at segment:offset.
755 /* store new segment */
757 movw %ax, segment
776 * chain_stage2(segment, offset, second_sector)
778 * This starts another stage2 loader, at segment:offset. It presumes
791 /* store new segment */
2309 segment: label
    [all...]
  /external/icu4c/common/
ustring.c 1362 const char *segment = src; local
    [all...]
  /external/libxml2/
uri.c 505 * @empty: allow an empty segment
507 * Parse a segment and fills in the appropriate fields
510 * segment = *pchar
511 * segment-nz = 1*pchar
512 * segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" )
513 * ; non-zero-length segment without any colon ":"
542 * path-abempty = *( "/" segment )
578 * path-absolute = "/" [ segment-nz *( "/" segment ) ]
620 * path-rootless = segment-nz *( "/" segment
1805 xmlChar *ret, *segment = NULL; local
    [all...]
  /frameworks/base/core/java/android/content/
ContentService.java 539 String segment = getUriSegment(uri, index); local
540 if (segment == null) {
546 if (node.mName.equals(segment)) {
553 ObserverNode node = new ObserverNode(segment);
609 String segment = null; local
615 segment = getUriSegment(uri, index);
623 if (segment == null || node.mName.equals(segment)) {
626 if (segment != null) {
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 219 * @param pdu The WAP-WDP PDU segment
225 int segment; local
239 segment = pdu[index++]; // >=0
241 // Only the first segment contains sourcePort and destination Port
242 if (segment == 0) {
243 //process WDP segment
258 + ", ID = " + referenceNumber + ", segment# = " + segment + "/" + totalSegments);
273 values.put("sequence", segment);
289 // Read the destination port from the first segment
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/
FolderConfiguration.java 383 String segment = qualifier.getFolderSegment(); local
384 if (segment != null && segment.length() > 0) {
386 result.append(segment);
  /external/webkit/WebCore/inspector/front-end/
ResourcesPanel.js 746 var segment = {start: -1, end: -1};
765 if (resource.startTime <= segment.end) {
766 segment.end = Math.max(segment.end, resource.endTime);
770 categoryValues[category] += segment.end - segment.start;
772 segment.start = resource.startTime;
773 segment.end = resource.endTime;
776 // Add the last segment
777 categoryValues[category] += segment.end - segment.start
    [all...]
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java 105 public JetGameEvent(JetPlayer player, short segment, byte track, byte channel,
108 this.segment = segment;
116 public short segment; field in class:JetBoyView.JetGameEvent
452 // JET info: in this example, the game uses segment 0 for the duration of the game play,
453 // JET info: and plays segment 1 several times as the "outro" music, so we're going to
458 // JET info: it is located at segment 0
733 processJetEvent(jetEvent.player, jetEvent.segment, jetEvent.track,
    [all...]
  /external/webkit/WebCore/editing/
TextIterator.cpp 2138 const TextSegment& segment = textSegments->at(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 833 String segment = LanguageQualifier.getFolderSegment(value); local
901 String segment = RegionQualifier.getFolderSegment(value); local
    [all...]

Completed in 3093 milliseconds

12 3