Searched defs:weight (Results 1 - 25 of 274) sorted by relevance

1234567891011

/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.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));
/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/chromium_org/media/cast/common/
H A Dclock_drift_smoother.cc44 const double weight = local
46 estimate_us_ = weight * measured_offset.InMicroseconds() +
47 (1.0 - weight) * estimate_us_;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontValue.h48 RefPtrWillBeMember<CSSPrimitiveValue> weight; member in class:blink::CSSFontValue
/external/chromium_org/third_party/skia/samplecode/
H A DSampleHairCurves.cpp88 SkScalar weight = randW.nextUScalar1() * 2.0f; local
93 weight);
/external/libnl/src/lib/
H A Dlink.c69 uint32_t weight = nl_cli_parse_u32(arg); local
70 rtnl_link_set_weight(link, weight);
/external/openfst/src/include/fst/
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...]
/external/skia/samplecode/
H A DSampleHairCurves.cpp88 SkScalar weight = randW.nextUScalar1() * 2.0f; local
93 weight);
/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/speex/libspeex/
H A Dquant_lsp_bfin.h108 spx_word16_t *weight,
131 " I1 = %3;\n\t" /* %3: &weight[0] */
155 : "a" (x), "a" (weight), "b" (cdbk), "a" (nbVec), "a" (nbDim)
106 lsp_weight_quant( spx_word16_t *x, spx_word16_t *weight, const signed char *cdbk, int nbVec, int nbDim ) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.h37 uptr weight; member in struct:__sanitizer::Suppression
/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;
/external/ceres-solver/internal/ceres/
H A Dgraph.h54 // its weight is set to the new weight.
55 void AddVertex(const Vertex& vertex, double weight) { argument
60 vertex_weights_[vertex] = weight;
63 // Uses weight = 1.0. If vertex already exists, its weight is set to
97 void AddEdge(const Vertex& vertex1, const Vertex& vertex2, double weight) { argument
106 edge_weights_[make_pair(vertex1, vertex2)] = weight;
108 edge_weights_[make_pair(vertex2, vertex1)] = weight;
112 // Uses weight
[all...]
H A Dvisibility.cc146 const double weight = static_cast<double>(count) / local
149 graph->AddEdge(camera1, camera2, weight);
/external/chromium_org/cc/trees/
H A Dlayer_sorter_unittest.cc27 float weight = 0.f; local
39 LayerSorter::CheckOverlap(&front, &back, z_threshold, &weight);
41 EXPECT_EQ(1.f, weight);
44 LayerSorter::CheckOverlap(&back, &front, z_threshold, &weight);
46 EXPECT_EQ(1.f, weight);
53 LayerSorter::CheckOverlap(&front, &back_right, z_threshold, &weight);
58 LayerSorter::CheckOverlap(&front, &front, z_threshold, &weight);
59 EXPECT_EQ(0.f, weight);
65 float weight = 0.f; local
82 LayerSorter::CheckOverlap(&front_face, &left_face, z_threshold, &weight);
89 float weight = 0.f; local
117 float weight = 0.f; local
160 float weight = 0.f; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkGeometry.h298 const SkPoint* computeQuads(const SkPoint pts[3], SkScalar weight, argument
301 conic.set(pts, weight);
/external/chromium_org/third_party/skia/src/ports/
H A DSkTypeface_win_dw.h29 DWRITE_FONT_WEIGHT weight = font->GetWeight(); local
30 if (DWRITE_FONT_WEIGHT_DEMI_BOLD <= weight) {
/external/pdfium/core/src/fxge/android/
H A Dfx_android_font.cpp26 void* CFX_AndroidFontInfo::MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR face, FX_BOOL& bExact) argument
32 if (weight >= 700) {
/external/pdfium/core/src/fxge/apple/
H A Dfx_mac_imp.cpp32 virtual void* MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR family, FX_BOOL& bExact);
36 static void GetJapanesePreference(CFX_ByteString& face, int weight, int picth_family) argument
42 if (!(picth_family & FXFONT_FF_ROMAN) && weight > 400) {
48 void* CFX_MacFontInfo::MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR cstr_face, FX_BOOL& bExact) argument
73 GetJapanesePreference(face, weight, pitch_family);
/external/skia/src/core/
H A DSkGeometry.h298 const SkPoint* computeQuads(const SkPoint pts[3], SkScalar weight, argument
301 conic.set(pts, weight);
/external/skia/src/ports/
H A DSkTypeface_win_dw.h27 DWRITE_FONT_WEIGHT weight = font->GetWeight(); local
28 if (DWRITE_FONT_WEIGHT_DEMI_BOLD <= 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...]

Completed in 4171 milliseconds

1234567891011