Searched refs:weight (Results 1 - 25 of 757) 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;
H A DCSSFontValue.cpp31 // font variant weight size / line-height family
42 if (weight) {
45 result.append(weight->cssText());
76 && compareCSSValuePtr(weight, other.weight)
87 visitor->trace(weight);
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-row.js7 weight: DEFAULT_KEY_WEIGHT,
/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.cpp39 SpeechGrammar* SpeechGrammar::create(const KURL& src, double weight) argument
41 return new SpeechGrammar(src, weight);
55 SpeechGrammar::SpeechGrammar(const KURL& src, double weight) argument
57 , m_weight(weight)
H A DSpeechGrammar.h42 static SpeechGrammar* create(const KURL& src, double weight);
48 double weight() const { return m_weight; } function in class:blink::FINAL
49 void setWeight(double weight) { m_weight = weight; } argument
55 SpeechGrammar(const KURL& src, double weight);
H A DSpeechGrammarList.idl33 [CallWith=ExecutionContext] void addFromUri(DOMString src, optional float weight);
34 void addFromString(DOMString string, optional float weight);
H A DSpeechGrammar.idl32 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/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/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/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_ssim.h21 double *weight);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ssim.h21 int lumamask, double *weight);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSpeechGrammar.cpp61 float WebSpeechGrammar::weight() const function in class:blink::WebSpeechGrammar
64 return m_private->weight();
/external/icu/icu4c/source/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...]
/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...]

Completed in 600 milliseconds

1234567891011>>