Searched defs:Distance (Results 1 - 10 of 10) sorted by relevance

/external/llvm/utils/FileCheck/
H A DFileCheck.cpp414 unsigned Distance = ComputeMatchDistance(Buffer.substr(i), VariableTable); local
415 double Quality = Distance + (NumLinesForward / 100.);
/external/skia/include/core/
H A DSkPoint.h359 static SkScalar Distance(const SkPoint& a, const SkPoint& b) { function in struct:SkPoint
/external/clang/lib/Basic/
H A DDiagnosticIDs.cpp562 unsigned Distance = i->getName().edit_distance(Group, true, BestDistance); local
563 if (Distance == BestDistance) {
566 } else if (Distance < BestDistance) {
569 BestDistance = Distance;
/external/jhead/
H A Djhead.h93 float Distance; member in struct:__anon7125
/external/llvm/lib/Support/
H A DCommandLine.cpp217 unsigned Distance = StringRef(Name).edit_distance( local
219 if (!Best || Distance < BestDistance) {
221 BestDistance = Distance;
H A DYAMLParser.cpp380 /// @brief Skip \a Distance UTF-8 code units. Updates \a Cur and \a Column.
381 void skip(uint32_t Distance);
903 void Scanner::skip(uint32_t Distance) { argument
904 Current += Distance;
905 Column += Distance;
/external/openfst/src/include/fst/extensions/pdt/
H A Dexpand.h448 Weight Distance(StateId s) const;
471 vector<Weight> distance_; // Distance from initial state in efst_/ofst
472 vector<Weight> fdistance_; // Distance to final states in efst_/ofst
551 << reverse_shortest_path_->GetShortestPathData().Distance(s);
552 return reverse_shortest_path_->GetShortestPathData().Distance(s);
572 typename A::Weight PrunedExpand<A>::Distance(StateId s) const { function in class:fst::PrunedExpand
627 // updates 'Distance(arc.nextstate)' with new estimate;
632 Weight nd = Times(Distance(s), arc.weight);
633 if (less_(nd, Distance(arc.nextstate))) {
639 VLOG(2) << "Relax: " << s << ", d[s] = " << Distance(
[all...]
H A Dshortest-path.h51 // tree info 'Distance()', Parent(), and ArcParent() information keyed
57 // (b) the Distance() is from this 'start' state to the search state.
62 // (a) the Distance() is from the Parent() 'start' state to the
118 Weight distance; // Distance to this state from PDT 'start' state
148 Weight Distance(SearchState s) const { function in class:fst::PdtShortestPathData
153 Weight Distance(const ParenSpec &paren) const { function in class:fst::PdtShortestPathData
554 Weight w = Times(sp_data_.Distance(s),
574 Weight w = Times(sp_data_.Distance(s), arc.weight);
601 Weight pdist = sp_data_.Distance(paren);
605 Weight dist = sp_data_.Distance(
[all...]
/external/v8/src/
H A Dassembler.h83 enum Distance { enum in class:v8::internal::BASE_EMBEDDED
126 void link_to(int pos, Distance distance = kFar) {
/external/clang/lib/Sema/
H A DSemaLookup.cpp3168 void addName(StringRef Name, NamedDecl *ND, unsigned Distance,
3240 unsigned Distance,
3243 TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, Distance);
3238 addName(StringRef Name, NamedDecl *ND, unsigned Distance, NestedNameSpecifier *NNS, bool isKeyword) argument

Completed in 403 milliseconds