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

1234567891011>>

/external/smack/src/org/jivesoftware/smack/util/dns/
H A DSRVRecord.java26 private int weight; field in class:SRVRecord
35 * @param weight Relative weight for records with same priority
38 public SRVRecord(String fqdn, int port, int priority, int weight) { argument
40 if (weight < 0 || weight > 65535)
42 "DNS SRV records weight must be a 16-bit unsiged integer (i.e. between 0-65535. Weight was: "
43 + weight);
51 this.weight = weight;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DthemeChromiumSkia.css34 * font weight should always be normal, to distinguish from optgroup labels. */
36 font-weight: normal !important;
/external/chromium_org/chrome/browser/resources/
H A Dabout_nacl.css6 font-weight: bold;
/external/chromium_org/content/public/common/
H A Dspeech_recognition_grammar.h17 : weight(0.0f) {
21 weight(0.0f) {
25 weight(weight_value) {
29 double weight; member in struct:content::SpeechRecognitionGrammar
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechGrammar.h41 static PassRefPtr<SpeechGrammar> create(const KURL& src, double weight);
47 double weight() const { return m_weight; } function in class:WebCore::SpeechGrammar
48 void setWeight(double weight) { m_weight = weight; } argument
52 SpeechGrammar(const KURL& src, double weight);
H A DSpeechGrammar.cpp39 PassRefPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, double weight) argument
41 return adoptRef(new SpeechGrammar(src, weight));
56 SpeechGrammar::SpeechGrammar(const KURL& src, double weight) argument
58 , m_weight(weight)
H A DSpeechGrammarList.idl32 [CallWith=ExecutionContext] void addFromUri(DOMString src, optional float weight);
33 void addFromString(DOMString string, optional float weight);
H A DSpeechGrammar.idl31 attribute float weight;
H A DSpeechGrammarList.cpp47 void SpeechGrammarList::addFromUri(ExecutionContext* executionContext, const String& src, double weight) argument
50 m_grammars.append(SpeechGrammar::create(document->completeURL(src), weight));
53 void SpeechGrammarList::addFromString(const String& string, double weight) argument
56 m_grammars.append(SpeechGrammar::create(KURL(KURL(), urlString), weight));
H A DSpeechGrammarList.h45 void addFromUri(ExecutionContext*, const String& src, double weight = 1.0);
46 void addFromString(const String&, double weight = 1.0);
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_message_box.css13 font-weight: bold;
/external/chromium_org/remoting/webapp/
H A Dopen_sans.css9 font-weight: 400;
/external/clang/www/demo/
H A Dsyntax.css4 .llvm_keyword { font-weight: bold; color: blue }
/external/marisa-trie/lib/marisa/
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
58 weight_ = weight;
73 double weight() const { function in class:marisa::WRange
83 return lhs.weight() > rhs.weight();
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
58 weight_ = weight;
73 double weight() const { function in class:marisa_alpha::WRange
83 return lhs.weight() > rhs.weight();
/external/smack/src/org/xbill/DNS/
H A DSRVRecord.java20 private int priority, weight, port; field in class:SRVRecord
34 * @param weight The weight, used to select between records at the same
41 int weight, int port, Name target)
45 this.weight = checkU16("weight", weight);
53 weight = in.readU16();
61 weight = st.getUInt16();
71 sb.append(weight
40 SRVRecord(Name name, int dclass, long ttl, int priority, int weight, int port, Name target) argument
[all...]
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java111 * @param weight
112 * weight of the service
119 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final String text) { argument
120 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text);
134 * @param weight
135 * weight of the service
142 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final String text) { argument
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
155 * @param weight
156 * weight o
163 create(final String type, final String name, final int port, final int weight, final int priority, final Map<String, ?> props) argument
186 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final Map<String, ?> props) argument
207 create(final String type, final String name, final int port, final int weight, final int priority, final byte[] text) argument
230 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final byte[] text) argument
253 create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final String text) argument
278 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final String text) argument
301 create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
326 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
349 create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) argument
374 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) argument
395 create(final Map<Fields, String> qualifiedNameMap, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dserialized_structs.cc22 weight(0),
38 weight = desc.weight;
52 weight = desc.weight;
64 desc->weight = static_cast<PP_FontWeight_Dev>(weight);
76 desc->weight = static_cast<PP_BrowserFont_Trusted_Weight>(weight);
95 weight(),
[all...]
/external/openfst/src/include/fst/
H A Dfstlib.h22 // input label, an output label, and a weight. The more familiar
32 // (transition) definition, which allows changing the label, weight,
34 // integral types but the weight can be an arbitrary type whose
72 #include <fst/factor-weight.h>
101 #include <fst/weight.h>
102 #include <fst/expectation-weight.h>
103 #include <fst/float-weight.h>
104 #include <fst/lexicographic-weight.h>
105 #include <fst/pair-weight.h>
106 #include <fst/power-weight
[all...]
H A Dreweight.h39 // An arc of weight w, with an origin state of potential p and
73 typename Arc::Weight weight = potential[state]; local
74 if (weight != Weight::Zero()) {
85 arc.weight = Divide(Times(arc.weight, nextweight), weight,
88 arc.weight = Divide(Times(weight, arc.weight), nextweight,
93 fst->SetFinal(state, Divide(fst->Final(state), weight, DIVIDE_LEF
[all...]
H A Darc.h28 #include <fst/expectation-weight.h>
29 #include <fst/float-weight.h>
30 #include <fst/lexicographic-weight.h>
31 #include <fst/power-weight.h>
32 #include <fst/product-weight.h>
33 #include <fst/signed-log-weight.h>
34 #include <fst/sparse-power-weight.h>
38 #include <fst/string-weight.h>
51 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
63 Weight weight; member in class:fst::ArcTpl
99 Weight weight; // Transition weight member in class:fst::StringArc
133 Weight weight; // Transition weight member in struct:fst::GallicArc
158 Weight weight; // Transition weight member in struct:fst::ReverseArc
182 Weight weight; // Transition weight member in struct:fst::LexicographicArc
206 Weight weight; // Transition weight member in struct:fst::ProductArc
238 Weight weight; // Transition weight member in struct:fst::PowerArc
270 Weight weight; // Transition weight member in struct:fst::SparsePowerArc
301 Weight weight; // Transition weight member in struct:fst::ExpectationArc
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFontDescription.cpp48 weight = static_cast<Weight>(desc.weight());
66 desc.setWeight(static_cast<FontWeight>(weight));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darc.h22 #include "fst/lib/float-weight.h"
23 #include "fst/lib/product-weight.h"
24 #include "fst/lib/string-weight.h"
36 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
47 Weight weight; // Transition weight member in struct:fst::StdArc
60 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
71 Weight weight; // Transition weight member in struct:fst::LogArc
85 : ilabel(i), olabel(o), weight(
100 Weight weight; // Transition weight member in class:fst::StringArc
134 Weight weight; // Transition weight member in struct:fst::GallicArc
159 Weight weight; // Transition weight member in struct:fst::ReverseArc
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_wgt.cpp34 /* collation element weight allocation -------------------------------------- */
39 lengthOfWeight(uint32_t weight) { argument
40 if((weight&0xffffff)==0) {
42 } else if((weight&0xffff)==0) {
44 } else if((weight&0xff)==0) {
52 getWeightTrail(uint32_t weight, int32_t length) { argument
53 return (uint32_t)(weight>>(8*(4-length)))&0xff;
57 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) { argument
59 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length));
63 getWeightByte(uint32_t weight, int32_ argument
68 setWeightByte(uint32_t weight, int32_t idx, uint32_t byte) argument
79 truncateWeight(uint32_t weight, int32_t length) argument
84 incWeightTrail(uint32_t weight, int32_t length) argument
89 decWeightTrail(uint32_t weight, int32_t length) argument
94 incWeight(uint32_t weight, int32_t length, uint32_t maxByte) argument
147 uint32_t weight, trail; local
489 uint32_t weight, maxByte; local
[all...]
/external/icu4c/i18n/
H A Ducol_wgt.cpp34 /* collation element weight allocation -------------------------------------- */
39 lengthOfWeight(uint32_t weight) { argument
40 if((weight&0xffffff)==0) {
42 } else if((weight&0xffff)==0) {
44 } else if((weight&0xff)==0) {
52 getWeightTrail(uint32_t weight, int32_t length) { argument
53 return (uint32_t)(weight>>(8*(4-length)))&0xff;
57 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) { argument
59 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length));
63 getWeightByte(uint32_t weight, int32_ argument
68 setWeightByte(uint32_t weight, int32_t idx, uint32_t byte) argument
92 truncateWeight(uint32_t weight, int32_t length) argument
97 incWeightTrail(uint32_t weight, int32_t length) argument
102 decWeightTrail(uint32_t weight, int32_t length) argument
107 incWeight(uint32_t weight, int32_t length, uint32_t maxByte) argument
160 uint32_t weight, trail; local
502 uint32_t weight, maxByte; local
[all...]

Completed in 745 milliseconds

1234567891011>>