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

123456789

/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/core/css/
H A DCSSFontValue.h46 RefPtr<CSSPrimitiveValue> weight; member in class:WebCore::CSSFontValue
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechGrammar.cpp39 PassRefPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, double weight) argument
41 return adoptRef(new SpeechGrammar(src, weight));
56 SpeechGrammar::SpeechGrammar(const KURL& src, double weight) argument
58 , m_weight(weight)
H A DSpeechGrammar.h41 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; } argument
52 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/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DTrack.java47 * @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); argument
H A DBoneTrack.java185 * @param weight the weight of the animation
190 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
246 if (weight != 1f) {
247 target.blendAnimTransforms(tempV, tempQ, scales != null ? tempS : null, weight);
331 public void setTime(float time, float weight, AnimControl control, AnimChannel channel) { argument
H A DPoseTrack.java103 private void applyFrame(Mesh target, int frameIndex, float weight){ argument
108 float poseWeight = frame.weights[i] * weight;
117 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
124 applyFrame(target, 0, weight);
126 applyFrame(target, times.length - 1, weight);
137 applyFrame(target, startFrame, blend * weight);
138 applyFrame(target, endFrame, (1f - blend) * weight);
H A DSpatialTrack.java68 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
/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/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.h35 uptr weight; member in struct:__sanitizer::Suppression
/external/marisa-trie/lib/marisa/
H A Dkey.h14 void set_weight(double weight) { argument
15 weight_ = weight;
27 double weight() const { function in class:marisa::Key
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
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/
H A Dkey.h16 void set_weight(double weight) { argument
17 weight_ = weight;
29 double weight() const { function in class:marisa_alpha::Key
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
58 weight_ = weight;
73 double weight() const { function in class:marisa_alpha::WRange
83 return lhs.weight() > rhs.weight();
/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.cc143 const double weight = static_cast<double>(count) / local
146 graph->AddEdge(camera1, camera2, weight);
/external/chromium_org/cc/trees/
H A Dlayer_sorter_unittest.cc26 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/third_party/skia/include/core/
H A DSkGeometry.h289 const SkPoint* computeQuads(const SkPoint pts[3], SkScalar weight, argument
292 conic.set(pts, weight);
/external/llvm/include/llvm/Analysis/
H A DProfileDataLoader.h85 /// addEdgeWeight - Add 'weight' to the already stored execution count for
87 void addEdgeWeight(Edge e, unsigned weight) { argument
88 EdgeInformation[getFunction(e)][e] += weight;
115 /// A special value used to represent the weight of an edge which has not
/external/llvm/lib/Analysis/
H A DProfileDataLoaderPass.cpp1 //===- ProfileDataLoaderPass.cpp - Set branch weight metadata from prof ---===//
10 // This pass loads profiling data from a dump file and sets branch weight
45 /// This pass loads profiling data from a dump file and sets branch weight
98 unsigned weight = Counters[ReadCount]; local
99 assert(weight != ProfileDataLoader::Uncounted);
100 PB.addEdgeWeight(e, weight);
154 DEBUG(dbgs() << "---- Edge '" << edge << "' has weight "
158 // Set branch weight metadata. This will set branch probabilities of
161 // (it gives the unexectuted branch a weight of 1 for the purposes of
/external/skia/include/core/
H A DSkGeometry.h289 const SkPoint* computeQuads(const SkPoint pts[3], SkScalar weight, argument
292 conic.set(pts, weight);

Completed in 636 milliseconds

123456789