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

1 2 3 4 5 6 7 8 91011>>

  /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/web/
WebSpeechGrammar.cpp 61 float WebSpeechGrammar::weight() const function in class:blink::WebSpeechGrammar
64 return m_private->weight();
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontValue.h 46 RefPtr<CSSPrimitiveValue> weight; member in class:WebCore::CSSFontValue
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammar.h 41 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; }
52 SpeechGrammar(const KURL& src, double weight);
  /packages/inputmethods/LatinIME/native/jni/src/utils/
autocorrection_threshold_utils.cpp 91 // add a weight based on edit distance.
92 const float weight = 1.0f - static_cast<float>(distance) / static_cast<float>(afterLength); local
96 return (static_cast<float>(score) / SUGGEST_INTERFACE_OUTPUT_SCALE) * weight;
105 return (static_cast<float>(score) / maxScore) * weight;
  /external/openfst/src/include/fst/
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...]
  /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...]
DNSJavaResolver.java 57 int weight = srvRecord.getWeight(); local
61 r = new SRVRecord(host, port, priority, weight);
  /external/ceres-solver/internal/ceres/
visibility.cc 143 const double weight = static_cast<double>(count) / local
146 graph->AddEdge(camera1, camera2, weight);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.h 35 uptr weight; member in struct:__sanitizer::Suppression
  /external/marisa-trie/lib/marisa/
key.h 14 void set_weight(double weight) {
15 weight_ = weight;
27 double weight() const { function in class:marisa::Key
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/
key.h 16 void set_weight(double weight) {
17 weight_ = weight;
29 double weight() const { function in class:marisa_alpha::Key
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/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...]
prune.h 31 typedef typename A::Weight Weight;
34 Weight threshold;
39 vector<Weight> *idistance;
42 vector<Weight> *fdistance;
44 PruneOptions(const Weight& t, ArcFilter f, vector<Weight> *id = 0,
45 vector<Weight> *fd = 0)
52 // do not belong to a successful path whose weight is no more than
53 // 'opts.threshold' Times() the weight of the shortest path. Weight
102 Weight weight = Times(Times((*idistance)[state], arc.weight), local
210 Weight weight = Times(Times((*idistance)[state], arc.weight), local
    [all...]
  /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);
  /system/core/include/cutils/
bitops.h 81 int weight = 0; local
84 weight += __builtin_popcount(bitmask[i]);
85 return weight;
  /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/chromium_org/cc/trees/
layer_sorter_unittest.cc 26 float weight = 0.f; local
38 LayerSorter::CheckOverlap(&front, &back, z_threshold, &weight);
40 EXPECT_EQ(1.f, weight);
43 LayerSorter::CheckOverlap(&back, &front, z_threshold, &weight);
45 EXPECT_EQ(1.f, weight);
52 LayerSorter::CheckOverlap(&front, &back_right, z_threshold, &weight);
57 LayerSorter::CheckOverlap(&front, &front, z_threshold, &weight);
58 EXPECT_EQ(0.f, weight);
64 float weight = 0.f; local
81 LayerSorter::CheckOverlap(&front_face, &left_face, z_threshold, &weight);
88 float weight = 0.f; local
116 float weight = 0.f; local
159 float weight = 0.f; local
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
font_dev.h 49 PP_FontWeight_Dev weight() const { return pp_font_description_.weight; } function in class:pp::FontDescription_Dev
50 void set_weight(PP_FontWeight_Dev w) { pp_font_description_.weight = w; }
  /external/chromium_org/ppapi/cpp/trusted/
browser_font_trusted.h 51 PP_BrowserFont_Trusted_Weight weight() const { function in class:pp::BrowserFontDescription
52 return pp_font_description_.weight;
55 pp_font_description_.weight = w;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/linux/
WebFontInfo.cpp 108 int weight; local
109 if (FcPatternGetInteger(current, FC_WEIGHT, 0, &weight) == FcResultMatch)
110 family->isBold = weight >= FC_WEIGHT_BOLD;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_ext_pixelformat.c 269 int weight; member in struct:attrib_match_info
366 scores[index].points -= (actual_value - expected_value) * ami->weight;
  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.cpp 39 SkScalar weight = 0; local
60 weight += combined_weight;
64 fr = SkScalarDiv(fr, weight);
65 fg = SkScalarDiv(fg, weight);
66 fb = SkScalarDiv(fb, weight);
67 fa = SkScalarDiv(fa, weight);

Completed in 1066 milliseconds

1 2 3 4 5 6 7 8 91011>>