Searched refs:weight (Results 1 - 25 of 455) sorted by relevance

1234567891011>>

/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/basic/
H A DPartData.java26 private Weight weight; field in class:PartData
29 public PartData(String name, String color, Weight weight, String city) { argument
33 this.weight = weight;
49 return weight;
61 " weight=" + weight +
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/entity/
H A DPartData.java27 private Weight weight; field in class:PartData
30 public PartData(String name, String color, Weight weight, String city) { argument
34 this.weight = weight;
50 return weight;
62 " weight=" + weight +
H A DPart.java26 private Weight weight; field in class:Part
29 public Part(String number, String name, String color, Weight weight, argument
35 this.weight = weight;
56 return weight;
69 " weight=" + weight +
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/index/
H A DPartData.java26 private Weight weight; field in class:PartData
29 public PartData(String name, String color, Weight weight, String city) { argument
33 this.weight = weight;
49 return weight;
61 " weight=" + weight +
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/tuple/
H A DPartData.java27 private Weight weight; field in class:PartData
30 public PartData(String name, String color, Weight weight, String city) { argument
34 this.weight = weight;
50 return weight;
62 " weight=" + weight +
H A DPart.java26 private Weight weight; field in class:Part
29 public Part(String number, String name, String color, Weight weight, argument
35 this.weight = weight;
56 return weight;
69 " weight=" + weight +
/macosx-10.10/WebCore-7600.1.25/Modules/speech/
H A DSpeechGrammar.h42 static PassRefPtr<SpeechGrammar> create(const URL& src, double weight);
48 double weight() const { return m_weight; } function in class:WebCore::SpeechGrammar
49 void setWeight(double weight) { m_weight = weight; } argument
53 SpeechGrammar(const URL& src, double weight);
H A DSpeechGrammar.cpp41 PassRefPtr<SpeechGrammar> SpeechGrammar::create(const URL& src, double weight) argument
43 return adoptRef(new SpeechGrammar(src, weight));
57 SpeechGrammar::SpeechGrammar(const URL& src, double weight) argument
59 , m_weight(weight)
H A DSpeechGrammar.idl33 attribute unrestricted float weight;
H A DSpeechGrammarList.cpp49 void SpeechGrammarList::addFromUri(ScriptExecutionContext* scriptExecutionContext, const String& src, double weight) argument
52 m_grammars.append(SpeechGrammar::create(document->completeURL(src), weight));
55 void SpeechGrammarList::addFromString(const String& string, double weight) argument
58 m_grammars.append(SpeechGrammar::create(URL(URL(), urlString), weight));
H A DSpeechGrammarList.idl34 [CallWith=ScriptExecutionContext] void addFromUri(DOMString src, optional unrestricted float weight);
35 void addFromString(DOMString string, optional unrestricted float weight);
H A DSpeechGrammarList.h46 void addFromUri(ScriptExecutionContext*, const String& src, double weight = 1.0);
47 void addFromString(const String&, double weight = 1.0);
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/sentity/
H A DPart.java35 private Weight weight; field in class:Part
38 public Part(String number, String name, String color, Weight weight, argument
44 this.weight = weight;
74 return weight;
87 " weight=" + weight +
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLSwitchCase.h38 SwitchCase(LValue value, LBasicBlock target, Weight weight) argument
41 , m_weight(weight)
47 Weight weight() const { return m_weight; } function in class:JSC::FTL::SwitchCase
H A DFTLWeightedTarget.h43 WeightedTarget(LBasicBlock target, Weight weight) argument
45 , m_weight(weight)
49 WeightedTarget(LBasicBlock target, float weight) argument
51 , m_weight(weight)
56 Weight weight() const { return m_weight; } function in class:JSC::FTL::WeightedTarget
/macosx-10.10/ruby-106/ruby/lib/rdoc/markup/
H A Drule.rb2 # A horizontal rule with a weight
4 class RDoc::Markup::Rule < Struct.new :weight
15 q.pp weight
/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/in_1/
H A Dsrv_33.h32 isc_uint16_t weight; member in struct:dns_rdata_in_srv
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/factory/
H A DPart.java38 private Weight weight; field in class:Part
41 public Part(String number, String name, String color, Weight weight, argument
47 this.weight = weight;
68 return weight;
81 " weight=" + weight +
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/marshal/
H A DPart.java38 private Weight weight; field in class:Part
41 public Part(String number, String name, String color, Weight weight, argument
47 this.weight = weight;
77 return weight;
90 " weight=" + weight +
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationweights.h36 static inline int32_t lengthOfWeight(uint32_t weight) { argument
37 if((weight&0xffffff)==0) {
39 } else if((weight&0xffff)==0) {
41 } else if((weight&0xff)==0) {
57 * @param lowerLimit A collation element weight; the ranges will be filled to cover
59 * @param upperLimit A collation element weight; the ranges will be filled to cover
72 * @return The next weight in the ranges, or 0xffffffff if there is none left.
88 uint32_t incWeight(uint32_t weight, int32_t length) const;
89 uint32_t incWeightByOffset(uint32_t weight, int32_t length, int32_t offset) const;
H A Dcollationweights.cpp37 /* collation element weight allocation -------------------------------------- */
42 getWeightTrail(uint32_t weight, int32_t length) { argument
43 return (uint32_t)(weight>>(8*(4-length)))&0xff;
47 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) { argument
49 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length));
53 getWeightByte(uint32_t weight, int32_t idx) { argument
54 return getWeightTrail(weight, idx); /* same calculation */
58 setWeightByte(uint32_t weight, int32_t idx, uint32_t byte) { argument
78 return (uint32_t)((weight&mask)|(byte<<idx));
82 truncateWeight(uint32_t weight, int32_ argument
87 incWeightTrail(uint32_t weight, int32_t length) argument
92 decWeightTrail(uint32_t weight, int32_t length) argument
152 incWeight(uint32_t weight, int32_t length) const argument
167 incWeightByOffset(uint32_t weight, int32_t length, int32_t offset) const argument
261 uint32_t weight=lowerLimit; local
527 uint32_t weight = range.start; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dlabeledwidget.itk347 grid rowconfigure $parent 0 -weight 0 -minsize 0
348 grid rowconfigure $parent 1 -weight 0 -minsize \
351 grid rowconfigure $parent 2 -weight 1 -minsize 0
353 grid columnconfigure $parent 0 -weight 1 -minsize 0
354 grid columnconfigure $parent 1 -weight 0 -minsize 0
355 grid columnconfigure $parent 2 -weight 0 -minsize 0
366 grid rowconfigure $parent 0 -weight 1 -minsize 0
367 grid rowconfigure $parent 1 -weight 0 -minsize 0
368 grid rowconfigure $parent 2 -weight 0 -minsize 0
370 grid columnconfigure $parent 0 -weight
[all...]
H A Ddialogshell.itk160 grid rowconfigure $parent 0 -weight 0
161 grid rowconfigure $parent 1 -weight 0
162 grid rowconfigure $parent 2 -weight 1
163 grid columnconfigure $parent 0 -weight 1
164 grid columnconfigure $parent 1 -weight 0
165 grid columnconfigure $parent 2 -weight 0
174 grid rowconfigure $parent 0 -weight 1
175 grid rowconfigure $parent 1 -weight 0
176 grid rowconfigure $parent 2 -weight 0
177 grid columnconfigure $parent 0 -weight
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSFontValue.cpp31 // font variant weight size / line-height family
42 if (weight) {
45 result.append(weight->cssText());
71 && compareCSSValuePtr(weight, other.weight)
/macosx-10.10/dcerpc-61/www/content/css/blueprint/plugins/fancy-type/
H A Dscreen.css22 font-weight: normal;
65 font-weight:bold;

Completed in 225 milliseconds

1234567891011>>