HomeSort by relevance Sort by last modified time
    Searched defs:part (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /external/oprofile/libop/
op_parse_event.c 51 fprintf(stderr, "Invalid event part %s\n", str);
66 char * part = next_part(&cp); local
75 if (!part) {
80 parsed_events[i].name = part;
82 part = next_part(&cp);
84 if (!part) {
89 parsed_events[i].count = parse_ulong(part);
90 free(part);
93 part = next_part(&cp);
95 if (part) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AVT.java 320 // part of the template stuff, just add it.
330 // part of the template stuff, just add it.
458 AVTPart part = (AVTPart) m_parts.elementAt(i); local
459 buf.append(part.getSimpleString());
498 AVTPart part = (AVTPart) m_parts.elementAt(i); local
499 part.evaluate(xctxt, buf, context, nsNode);
546 AVTPart part = (AVTPart) m_parts.elementAt(i); local
548 if (part.canTraverseOutsideSubtree())
574 AVTPart part = (AVTPart) m_parts.elementAt(i); local
576 part.fixupVariables(vars, globalsSize)
592 AVTPart part = (AVTPart) m_parts.elementAt(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
EclipseUiHelper.java 54 IViewPart part = page.showView(viewId, local
  /external/icu4c/i18n/
selfmt.cpp 135 const MessagePattern::Part& part=pattern.getPart(partIndex++); local
136 const UMessagePatternPartType type=part.getType();
140 // part is an ARG_SELECTOR followed by a message
141 if(pattern.partSubstringMatches(part, keyword)) {
144 } else if(msgStart==0 && pattern.partSubstringMatches(part, other)) {
plurfmt.cpp 259 const MessagePattern::Part& part = msgPattern.getPart(++partIndex); local
260 const UMessagePatternPartType type = part.getType();
261 int32_t index = part.getIndex();
270 prevIndex = part.getLimit();
379 const MessagePattern::Part* part=&pattern.getPart(partIndex); local
380 if (MessagePattern::Part::hasNumericValue(part->getType())) {
381 offset=pattern.getNumericValue(*part);
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 22 int part[3]; local
25 part[0] = part[1] = part[2] = 0;
34 if (part[i] > INT_MAX/10) return TRY_OTHER;/* number too big */
35 part[i] = part[i]*10+*text++-'0';
45 part[i++] = ATM_ITF_ANY; /* all *_ANY have the same value */
50 part[i++] = ATM_VPI_UNSPEC; /* all *_UNSPEC have the same
58 part[2] = part[1]
    [all...]
  /frameworks/base/core/java/com/google/android/util/
SmileyParser.java 62 // should have only one part since we parse smiley only
63 Part part = getPart(0); local
64 ArrayList<Token> tokens = part.getTokens();
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 88 IWorkbenchPart part = page.findView(PropertyView.ID); local
89 if (part != null) {
112 IWorkbenchPart part = page.findView(PixelPerfectTreeView.ID); local
113 if (part != null) {
  /bootable/recovery/
bootloader.cpp 75 const MtdPartition *part = mtd_find_partition_by_name(v->blk_device); local
76 if (part == NULL || mtd_partition_info(part, NULL, NULL, &write_size)) {
81 MtdReadContext *read = mtd_read_partition(part);
101 const MtdPartition *part = mtd_find_partition_by_name(v->blk_device); local
102 if (part == NULL || mtd_partition_info(part, NULL, NULL, &write_size)) {
107 MtdReadContext *read = mtd_read_partition(part);
122 MtdWriteContext *write = mtd_write_partition(part);
  /cts/tools/dasm/src/java_cup/
lalr_item.java 177 production_part part; local
191 part = the_production().rhs(pos);
193 /* consider what kind of production part it is -- skip actions */
194 if (!part.is_action())
196 sym = ((symbol_part)part).the_symbol();
233 production_part part; local
243 part = the_production().rhs(pos);
246 if (!part.is_action())
248 sym = ((symbol_part)part).the_symbol();
lr_item_core.java 36 production_part part; local
56 part = _the_production.rhs(_dot_pos);
57 if (!part.is_action())
58 _symbol_after_dot = ((symbol_part)part).the_symbol();
84 /** The position of the "dot" -- this indicates the part of the production
90 /** The position of the "dot" -- this indicates the part of the production
209 production_part part; local
226 /* print the name of the part */
233 part = _the_production.rhs(i);
234 if (part == null
    [all...]
  /external/e2fsprogs/lib/blkid/
getsize.c 88 int part = -1; local
146 part = st.st_rdev & 7;
147 if (part >= 0 && (ioctl(fd, DIOCGDINFO, (char *)&lab) >= 0)) {
148 pp = &lab.d_partitions[part];
  /external/skia/legacy/src/animator/
SkDrawMatrix.cpp 60 for (SkMatrixPart** part = fParts.begin(); part < fParts.end(); part++)
61 delete *part;
66 SkMatrixPart* part = (SkMatrixPart*) child; local
67 *fParts.append() = part;
68 if (part->add())
136 for (SkMatrixPart** part = fParts.begin(); part < fParts.end(); part++)
    [all...]
SkDrawPaint.cpp 95 SkPaintPart* part = (SkPaintPart*) child; local
96 if (part->add() && maker)
SkDrawPath.cpp 44 for (SkPathPart** part = fParts.begin(); part < fParts.end(); part++)
45 delete *part;
50 SkPathPart* part = (SkPathPart*) child; local
51 *fParts.append() = part;
52 if (part->add())
86 for(SkPathPart** part = fParts.begin(); part < fParts.end(); part++)
    [all...]
  /external/skia/src/animator/
SkDrawMatrix.cpp 60 for (SkMatrixPart** part = fParts.begin(); part < fParts.end(); part++)
61 delete *part;
66 SkMatrixPart* part = (SkMatrixPart*) child; local
67 *fParts.append() = part;
68 if (part->add())
136 for (SkMatrixPart** part = fParts.begin(); part < fParts.end(); part++)
    [all...]
SkDrawPaint.cpp 95 SkPaintPart* part = (SkPaintPart*) child; local
96 if (part->add() && maker)
SkDrawPath.cpp 44 for (SkPathPart** part = fParts.begin(); part < fParts.end(); part++)
45 delete *part;
50 SkPathPart* part = (SkPathPart*) child; local
51 *fParts.append() = part;
52 if (part->add())
86 for(SkPathPart** part = fParts.begin(); part < fParts.end(); part++)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderMediaControls.cpp 47 #define wkHitTestMediaUIPart(part, themeStyle, bounds, point) WKHitTestMediaUIPart(part, themeStyle, bounds, point)
48 #define wkMeasureMediaUIPart(part, themeStyle, bounds, naturalSize) WKMeasureMediaUIPart(part, themeStyle, bounds, naturalSize)
49 #define wkDrawMediaUIPart(part, themeStyle, context, rect, state) WKDrawMediaUIPart(part, themeStyle, context, rect, state)
73 // Utility to scale when the UI part are not scaled by wkDrawMediaUIPart
93 ControlPart part = o->style()->appearance(); local
95 if (part != MediaSliderThumbPart && part != MediaVolumeSliderThumbPart
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
MediaModelFactory.java 46 PduPart part = findPart(pb, src); local
50 context, tag, src, (SMILRegionMediaElement) sme, layouts, part);
53 context, tag, src, sme, part, null);
58 PduPart part = null; local
63 part = pb.getPartByContentId("<" + src.substring("cid:".length()) + ">");
65 part = pb.getPartByName(src);
66 if (part == null) {
67 part = pb.getPartByFileName(src);
68 if (part == null) {
69 part = pb.getPartByContentLocation(src)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dosio.c 89 static void lba2chs(unsigned long lba_addr, CHS *chs, PARTITION *part)
94 abss = (lba_addr >> 9) + part->start;
95 chs->cyl = abss / (part->sects * part->heads);
96 chs->head = (abss / part->sects) % part->heads;
97 chs->sector = (abss % part->sects) + 1;
148 static io_channel alloc_io_channel(PARTITION *part)
158 ioch->name = (char *)malloc(strlen(part->dev)+1);
163 strcpy(ioch->name, part->dev)
182 PARTITION *part; local
374 PARTITION *part; local
411 PARTITION *part; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 202 // create and fill the first message part
203 MimeBodyPart part = new MimeBodyPart(); local
204 part.setText(
211 mp.addBodyPart(part);
213 //for each attachment create new message part
  /external/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enum in class:money_base
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enum in class:money_base
  /packages/apps/Email/src/org/apache/commons/io/output/
ByteArrayOutputStream.java 155 int part = Math.min(remaining, currentBuffer.length - inBufferPos); local
156 System.arraycopy(b, off + len - remaining, currentBuffer, inBufferPos, part);
157 remaining -= part;

Completed in 1987 milliseconds

1 2 3 4 5 6 7 8