Searched refs:Part (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/collections/ship/entity/
H A DPart.java6 * $Id: Part.java,v 12.7 2008/01/08 20:58:29 bostic Exp $
12 * A Part represents the combined key/data pair for a part entity.
14 * <p>In this sample, Part is created from the stored key/data entry using a
21 public class Part { class
29 public Part(String number, String name, String color, Weight weight, method in class:Part
66 return "[Part: number=" + number +
H A DSample.java152 printValues("Shipments for Part P1",
170 parts.add(new Part("P1", "Nut", "Red",
172 parts.add(new Part("P2", "Bolt", "Green",
174 parts.add(new Part("P3", "Screw", "Blue",
176 parts.add(new Part("P4", "Screw", "Red",
178 parts.add(new Part("P5", "Cam", "Blue",
180 parts.add(new Part("P6", "Cog", "Red",
H A DSampleViews.java189 return new Part(key.getNumber(), data.getName(), data.getColor(),
198 Part part = (Part) object;
207 Part part = (Part) object;
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/collections/ship/sentity/
H A DPart.java6 * $Id: Part.java,v 12.7 2008/01/08 20:58:31 bostic Exp $
14 * A Part represents the combined key/data pair for a part entity.
16 * <p> In this sample, Part is created from the stored key/data entry using a
30 public class Part implements Serializable { class in inherits:Serializable
38 public Part(String number, String name, String color, Weight weight, method in class:Part
84 return "[Part: number=" + number +
H A DSample.java154 printValues("Shipments for Part P1",
172 parts.add(new Part("P1", "Nut", "Red",
174 parts.add(new Part("P2", "Bolt", "Green",
176 parts.add(new Part("P3", "Screw", "Blue",
178 parts.add(new Part("P4", "Screw", "Red",
180 parts.add(new Part("P5", "Cam", "Blue",
182 parts.add(new Part("P6", "Cog", "Red",
H A DSampleViews.java52 new PartBinding(catalog, Part.class);
202 * <p> The binding is "tricky" in that it uses the Part class for both the
203 * stored data entry and the combined entity object. To do this, Part's
226 Part part = (Part) dataInput;
236 Part part = (Part) object;
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/collections/ship/tuple/
H A DPart.java6 * $Id: Part.java,v 12.7 2008/01/08 20:58:31 bostic Exp $
12 * A Part represents the combined key/data pair for a part entity.
14 * <p> In this sample, Part is created from the stored key/data entry using a
21 public class Part { class
29 public Part(String number, String name, String color, Weight weight, method in class:Part
66 return "[Part: number=" + number +
H A DSample.java151 printValues("Shipments for Part P1",
169 parts.add(new Part("P1", "Nut", "Red",
171 parts.add(new Part("P2", "Bolt", "Green",
173 parts.add(new Part("P3", "Screw", "Blue",
175 parts.add(new Part("P4", "Screw", "Red",
177 parts.add(new Part("P5", "Cam", "Blue",
179 parts.add(new Part("P6", "Cog", "Red",
H A DSampleViews.java218 return new Part(number, data.getName(), data.getColor(),
227 Part part = (Part) object;
236 Part part = (Part) object;
/macosx-10.9.5/CrackLib-37765/cracklib27/
H A DMakefile36 -rm -f all installed Part* *.BAK *.bak *~
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/collections/ship/marshal/
H A DPart.java6 * $Id: Part.java,v 12.7 2008/01/08 20:58:30 bostic Exp $
17 * A Part represents the combined key/data pair for a part entity.
19 * <p> In this sample, Part is bound to the stored key/data entry by
33 public class Part implements Serializable, MarshalledEnt { class in inherits:Serializable,MarshalledEnt
41 public Part(String number, String name, String color, Weight weight, method in class:Part
87 return "[Part: number=" + number +
96 Part() { method in class:Part
H A DSample.java152 printValues("Shipments for Part P1",
170 parts.add(new Part("P1", "Nut", "Red",
172 parts.add(new Part("P2", "Bolt", "Green",
174 parts.add(new Part("P3", "Screw", "Blue",
176 parts.add(new Part("P4", "Screw", "Red",
178 parts.add(new Part("P5", "Cam", "Blue",
180 parts.add(new Part("P6", "Cog", "Red",
H A DSampleViews.java53 new MarshalledEntityBinding(catalog, Part.class);
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dmessagepattern.h95 * MessagePattern::Part type constants.
211 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts.
293 * Special value that is returned by getNumericValue(Part) when no
347 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE.
350 * <li>In the pluralStyle, the first, optional numeric Part has the "offset:" value.
351 * The optional numeric Part between each (ARG_SELECTOR, message) pair
354 * <li>The REPLACE_NUMBER Part can occur only in an immediate sub-message of the pluralStyle.
607 class Part;
621 * @param i The index of the Part data. (0..countParts()-1)
625 const Part
712 class Part : public UMemory { class in class:MessagePattern
718 Part() {} function in class:MessagePattern::Part
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/collections/ship/factory/
H A DSample.java150 printValues("Shipments for Part P1",
168 parts.add(new Part("P1", "Nut", "Red",
170 parts.add(new Part("P2", "Bolt", "Green",
172 parts.add(new Part("P3", "Screw", "Blue",
174 parts.add(new Part("P4", "Screw", "Red",
176 parts.add(new Part("P5", "Cam", "Blue",
178 parts.add(new Part("P6", "Cog", "Red",
H A DPart.java6 * $Id: Part.java,v 12.7 2008/01/08 20:58:29 bostic Exp $
18 * A Part represents the combined key/data pair for a part entity.
20 * <p> In this sample, Part is bound to the stored key/data entry by
33 public class Part implements Serializable, MarshalledTupleKeyEntity { class in inherits:Serializable,MarshalledTupleKeyEntity
41 public Part(String number, String name, String color, Weight weight, method in class:Part
78 return "[Part: number=" + number +
H A DSampleViews.java46 PartKey.class, Part.class, true);
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/CDBICompat/
H A DNoObjectIndex.pm13 Part of CDBICompat
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dmessagepattern.cpp139 class MessagePatternPartsList : public MessagePatternList<MessagePattern::Part, 32> {
350 const Part &part=getPart(--i);
359 MessagePattern::getNumericValue(const Part &part) const {
378 const Part &part=getPart(pluralStart);
379 if(Part::hasNumericValue(part.type)) {
386 // MessagePattern::Part ---------------------------------------------------- ***
389 MessagePattern::Part::operator==(const Part &other) const {
438 if(nestingLevel>Part::MAX_VALUE) {
456 // Add a Part fo
[all...]
/macosx-10.9.5/apache-786.1/httpd/build/aix/
H A Dmkinstallp.ksh129 ROOT Part: Y
140 ROOT Part: N
177 ROOT Part: N
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dplurfmt.cpp259 const MessagePattern::Part& part = msgPattern.getPart(++partIndex);
379 const MessagePattern::Part* part=&pattern.getPart(partIndex);
380 if (MessagePattern::Part::hasNumericValue(part->getType())) {
417 if(MessagePattern::Part::hasNumericValue(pattern.getPartType(partIndex))) {
H A Dchoicfmt.cpp439 const MessagePattern::Part &part = pattern.getPart(partIndex++);
447 U_ASSERT(MessagePattern::Part::hasNumericValue(type));
558 const MessagePattern::Part &part = pattern.getPart(++partIndex);
H A Dselfmt.cpp135 const MessagePattern::Part& part=pattern.getPart(partIndex++);
H A Dmsgfmt.cpp558 const MessagePattern::Part& part = msgPattern.getPart(partIndex);
832 const MessagePattern::Part& part = msgPattern.getPart(partIndex);
967 const MessagePattern::Part* part = &msgPattern.getPart(i);
1120 const MessagePattern::Part& part = msgPattern.getPart(++i);
1158 const MessagePattern::Part& part = msgPattern.getPart(i);
1165 // Unexpected Part "part" in parsed message.
1268 const MessagePattern::Part* part=&msgPattern.getPart(i);
1290 // Unexpected Part "part" in parsed message.
1479 const MessagePattern::Part& part = msgPattern.getPart(i);
1501 const MessagePattern::Part* par
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Ddylan.vim10 " Part 1: Syntax definition

Completed in 252 milliseconds

12