HomeSort by relevance Sort by last modified time
    Searched refs:weight (Results 1 - 25 of 1107) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smack/src/org/jivesoftware/smack/util/dns/
SRVRecord.java 26 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) {
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/
themeChromiumSkia.css 34 * font weight should always be normal, to distinguish from optgroup labels. */
36 font-weight: normal !important;
  /external/chromium_org/chrome/browser/resources/
about_nacl.css 6 font-weight: bold;
  /external/chromium_org/content/public/common/
speech_recognition_grammar.h 17 : 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/
SpeechGrammar.cpp 39 SpeechGrammar* SpeechGrammar::create(const KURL& src, double weight)
41 return new SpeechGrammar(src, weight);
55 SpeechGrammar::SpeechGrammar(const KURL& src, double weight)
57 , m_weight(weight)
SpeechGrammar.h 42 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; }
55 SpeechGrammar(const KURL& src, double weight);
SpeechGrammarList.idl 33 [CallWith=ExecutionContext] void addFromUri(DOMString src, optional float weight);
34 void addFromString(DOMString string, optional float weight);
SpeechGrammar.idl 32 attribute float weight;
SpeechGrammarList.h 45 void addFromUri(ExecutionContext*, const String& src, double weight = 1.0);
46 void addFromString(const String&, double weight = 1.0);
SpeechGrammarList.cpp 47 void SpeechGrammarList::addFromUri(ExecutionContext* executionContext, const String& src, double weight)
50 m_grammars.append(SpeechGrammar::create(document->completeURL(src), weight));
53 void SpeechGrammarList::addFromString(const String& string, double weight)
56 m_grammars.append(SpeechGrammar::create(KURL(KURL(), urlString), weight));
  /frameworks/minikin/include/minikin/
AnalyzeStyle.h 22 bool analyzeStyle(const uint8_t* os2_data, size_t os2_size, int* weight, bool* italic);
  /external/chromium_org/remoting/webapp/
open_sans.css 9 font-weight: 400;
  /external/clang/www/demo/
syntax.css 4 .llvm_keyword { font-weight: bold; color: blue }
  /external/smack/src/org/xbill/DNS/
SRVRecord.java 20 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 + " ")
    [all...]
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 111 * @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) {
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) {
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
155 * @param weight
156 * weight of the servic
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_ssim.h 21 double *weight);
  /external/libvpx/libvpx/vp9/encoder/
vp9_ssim.h 21 int lumamask, double *weight);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSpeechGrammar.cpp 61 float WebSpeechGrammar::weight() const function in class:blink::WebSpeechGrammar
64 return m_private->weight();
  /dalvik/docs/
prettify.css 18 .kwd { color: #006; font-weight: bold; }
20 .typ { color: #404; font-weight: bold; }
24 .tag { color: #006; font-weight: bold; }
  /external/icu/icu4c/source/i18n/
collationweights.h 36 static inline int32_t lengthOfWeight(uint32_t weight) {
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;
collationweights.cpp 37 /* collation element weight allocation -------------------------------------- */
42 getWeightTrail(uint32_t weight, int32_t length) {
43 return (uint32_t)(weight>>(8*(4-length)))&0xff;
47 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) {
49 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length));
53 getWeightByte(uint32_t weight, int32_t idx) {
54 return getWeightTrail(weight, idx); /* same calculation */
58 setWeightByte(uint32_t weight, int32_t idx, uint32_t byte) {
78 return (uint32_t)((weight&mask)|(byte<<idx));
82 truncateWeight(uint32_t weight, int32_t length)
261 uint32_t weight=lowerLimit; local
527 uint32_t weight = range.start; local
    [all...]
  /external/chromium_org/ppapi/proxy/
serialized_structs.cc 22 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/
fstlib.h 22 // 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.h
    [all...]
reweight.h 35 // vector in the direction defined by TYPE. Weight needs to be left
39 // An arc of weight w, with an origin state of potential p and
45 const vector<typename Arc::Weight> &potential,
47 typedef typename Arc::Weight Weight;
52 if (type == REWEIGHT_TO_FINAL && !(Weight::Properties() & kRightSemiring)) {
54 << "Weight to be right distributive: "
55 << Weight::Type();
60 if (type == REWEIGHT_TO_INITIAL && !(Weight::Properties() & kLeftSemiring)) {
62 << "Weight to be left distributive:
73 typename Arc::Weight weight = potential[state]; local
    [all...]
arc.h 28 #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>
46 typedef W Weight;
50 ArcTpl(Label i, Label o, const Weight& w, StateId 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 690 milliseconds

1 2 3 4 5 6 7 8 91011>>