HomeSort by relevance Sort by last modified time
    Searched refs:weight (Results 1 - 25 of 536) 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/webkit/Source/WebCore/css/
themeChromiumSkia.css 34 * font weight should always be normal, to distinguish from optgroup labels. */
36 font-weight: normal !important;
FontValue.cpp 31 // font variant weight size / line-height family
42 if (weight) {
45 result += weight->cssText();
  /external/marisa-trie/lib/marisa/
range.h 43 WRange(const Range &range, double weight)
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight)
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) {
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/
range.h 43 WRange(const Range &range, double weight)
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight)
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) {
58 weight_ = weight;
73 double weight() const { function in class:marisa_alpha::WRange
83 return lhs.weight() > rhs.weight();
  /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...]
  /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/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...]
  /external/openfst/src/include/fst/script/
weight-class.h 17 // Represents a generic weight in an FST -- that is, represents a specific
18 // type of weight underneath while hiding that type from a client.
44 W weight; member in struct:fst::script::WeightClassImpl
46 explicit WeightClassImpl(const W& weight) : weight(weight) { }
49 return new WeightClassImpl<W>(weight);
55 *o << weight; local
60 WeightToStr(weight, &str);
71 return typed_other->weight == weight
    [all...]
text-io.h 22 // and potentials (state-weight pairs).
36 #include <fst/script/weight-class.h>
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arc.h 22 #include "fst/lib/float-weight.h"
23 #include "fst/lib/product-weight.h"
24 #include "fst/lib/string-weight.h"
32 typedef TropicalWeight Weight;
35 StdArc(Label i, Label o, Weight w, StateId s)
36 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
47 Weight weight; // Transition weight member in struct:fst::StdArc
56 typedef LogWeight Weight;
71 Weight weight; \/\/ Transition weight member in struct:fst::LogArc
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...]
reweight.h 30 // vector in the direction defined by TYPE. Weight needs to be left
34 // An arc of weight w, with an origin state of potential p and
39 void Reweight(MutableFst<Arc> *fst, vector<typename Arc::Weight> potential,
41 typedef typename Arc::Weight Weight;
46 potential.push_back(Weight::Zero());
48 if (type == REWEIGHT_TO_FINAL && !(Weight::Properties() & kRightSemiring))
50 << "Weight to be right distributive: "
51 << Weight::Type();
53 if (type == REWEIGHT_TO_INITIAL && !(Weight::Properties() & kLeftSemiring)
    [all...]
  /external/icu4c/i18n/
ucol_wgt.cpp 34 /* collation element weight allocation -------------------------------------- */
39 lengthOfWeight(uint32_t weight) {
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) {
53 return (uint32_t)(weight>>(8*(4-length)))&0xff;
57 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) {
59 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length));
63 getWeightByte(uint32_t weight, int32_t idx)
160 uint32_t weight, trail; local
502 uint32_t weight, maxByte; local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 35 font-weight: normal;
43 font-weight: bold;
66 font-weight: normal;
75 font-weight: normal;
  /external/clang/docs/tools/
manpage.css 14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
49 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
53 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Track.java 47 * @param weight The weight from 0 to 1 on how much to apply the track
51 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars);
  /frameworks/base/core/java/android/gesture/
InstanceLearner.java 60 double weight; local
62 weight = Double.MAX_VALUE;
64 weight = 1 / distance;
67 if (score == null || weight > score) {
68 label2score.put(sample.label, weight);
  /external/stressapptest/src/
pattern.cc 48 {1, 1, 2, 1} // Weight for choosing 32/64/128/256 bit wide of this pattern
288 int weight) {
294 weight_ = weight;
346 weightcount += pattern_array[i].weight[0];
348 pattern_array[i].weight[0]);
349 weightcount += pattern_array[i].weight[1];
351 pattern_array[i].weight[1]);
352 weightcount += pattern_array[i].weight[2];
354 pattern_array[i].weight[2]);
355 weightcount += pattern_array[i].weight[3]
    [all...]
  /external/bzip2/
huffman.c 37 while (weight[tmp] < weight[heap[zz >> 1]]) { \
52 weight[heap[yy+1]] < weight[heap[yy]]) \
54 if (weight[tmp] < weight[heap[yy]]) break; \
76 Int32 weight [ BZ_MAX_ALPHA_SIZE * 2 ]; local
80 weight[i+1] = (freq[i] == 0 ? 1 : freq[i]) << 8;
88 weight[0] = 0;
105 weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2])
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontCacheMac.mm 109 // traits, weight, and size we want. One way this does better than the original
117 NSInteger weight;
126 weight = [fontManager weightOfFont:nsFont];
131 weight = toAppKitFontWeight(font.weight());
135 if (NSFont *bestVariation = [fontManager fontWithFamily:[substituteFont familyName] traits:traits weight:weight size:size])
144 !font.isPlatformFont() && isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(substituteFontWeight),
197 NSInteger weight = toAppKitFontWeight(fontDescription.weight());
    [all...]
  /external/speex/libspeex/
quant_lsp_bfin.h 108 spx_word16_t *weight,
131 " I1 = %3;\n\t" /* %3: &weight[0] */
155 : "a" (x), "a" (weight), "b" (cdbk), "a" (nbVec), "a" (nbDim)

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 91011>>