/external/open-vcdiff/gflags/src/gflags/ |
gflags.h | 525 static union { void* align; char s[sizeof(std::string)]; } s_##name[2]; \ 526 const std::string* const FLAGS_no##name = new (s_##name[0].s) std::string(val); \ 529 s_##name[0].s, new (s_##name[1].s) std::string(*FLAGS_no##name)); \ 532 std::string& FLAGS_##name = *(reinterpret_cast<std::string*>(s_##name[0].s)); \
|
/external/openfst/src/include/fst/ |
state-reachable.h | 162 void SetState(StateId s) { s_ = s; } 175 return isets_[s_].Member(i); 188 StateId s_; // Current state member in class:fst::StateReachable
|
lookahead-matcher.h | 270 s_(kNoStateId) {} 277 s_(kNoStateId) {} 287 s_ = s; 309 // at (s_, s). 334 StateId s_; // Matcher state member in class:fst::ArcLookAheadMatcher 348 if (fst_.Final(s_) != Weight::Zero() && 355 Times(fst_.Final(s_), lfst_->Final(s)))); 443 s_(kNoStateId), 467 s_(kNoStateId), 482 if (s_ == s 575 StateId s_; \/\/ Matcher state member in class:fst::LabelLookAheadMatcher [all...] |
label-reachable.h | 155 s_(kNoStateId), 169 s_(kNoStateId), 180 s_(kNoStateId), 263 s_ = s; 276 return isets[s_].Member(label); 284 return isets[s_].Member(data_->FinalLabel()); 306 const vector<Interval> *intervals = isets[s_].Intervals(); 546 StateId s_; // Current state member in class:fst::LabelReachable
|
cache.h | 664 : fst_(fst), impl_(impl), s_(0) { 669 if (s_ < impl_->NumKnownStates()) 671 if (s_ < impl_->NumKnownStates()) 682 if (s_ < impl_->NumKnownStates()) 688 StateId Value() const { return s_; } 690 void Next() { ++s_; } 692 void Reset() { s_ = 0; } 705 StateId s_; member in class:fst::CacheStateIterator 766 CacheMutableArcIterator(Impl *impl, StateId s) : i_(0), s_(s), impl_(impl) { 767 state_ = impl_->ExtendState(s_); 852 StateId s_; member in class:fst::CacheMutableArcIterator [all...] |
const-fst.h | 436 : nstates_(fst.GetImpl()->NumStates()), s_(0) {} 438 bool Done() const { return s_ >= nstates_; } 440 StateId Value() const { return s_; } 442 void Next() { ++s_; } 444 void Reset() { s_ = 0; } 448 StateId s_; member in class:fst::StateIterator
|
relabel.h | 469 : impl_(fst.GetImpl()), siter_(*impl_->fst_), s_(0) {} 473 StateId Value() const { return s_; } 477 ++s_; 483 s_ = 0; 495 StateId s_; member in class:fst::StateIterator
|
fst.h | 347 explicit StateIterator(const F &fst) : s_(0) { 354 return data_.base ? data_.base->Done() : s_ >= data_.nstates; 357 StateId Value() const { return data_.base ? data_.base->Value() : s_; } 363 ++s_; 370 s_ = 0; 375 StateId s_; member in class:fst::StateIterator
|
vector-fst.h | 513 : nstates_(fst.GetImpl()->NumStates()), s_(0) {} 515 bool Done() const { return s_ >= nstates_; } 517 StateId Value() const { return s_; } 519 void Next() { ++s_; } 521 void Reset() { s_ = 0; } 525 StateId s_; member in class:fst::StateIterator
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
cache.h | 395 explicit CacheStateIterator(const F &fst) : fst_(fst), s_(0) {} 398 if (s_ < fst_.impl_->NumKnownStates()) 401 if (s_ < fst_.impl_->NumKnownStates()) 407 if (s_ < fst_.impl_->NumKnownStates()) 413 virtual StateId Value() const { return s_; } 415 virtual void Next() { ++s_; } 417 virtual void Reset() { s_ = 0; } 421 StateId s_; member in class:fst::CacheStateIterator
|
const-fst.h | 343 : nstates_(fst.impl_->NumStates()), s_(0) {} 345 bool Done() const { return s_ >= nstates_; } 347 StateId Value() const { return s_; } 349 void Next() { ++s_; } 351 void Reset() { s_ = 0; } 355 StateId s_; member in class:fst::StateIterator
|
fst.h | 253 explicit StateIterator(const F &fst) : s_(0) { 260 return data_.base ? data_.base->Done() : s_ >= data_.nstates; 263 StateId Value() const { return data_.base ? data_.base->Value() : s_; } 269 ++s_; 276 s_ = 0; 281 StateId s_; member in class:fst::StateIterator
|
relabel.h | 415 : impl_(fst.impl_), siter_(*impl_->fst_), s_(0) {} 419 StateId Value() const { return s_; } 423 ++s_; 429 s_ = 0; 436 StateId s_; member in class:fst::StateIterator
|
/external/chromium_org/third_party/libjingle/source/talk/examples/plus/ |
libjingleplus.cc | 127 SendPresenceW(static_cast<SendPresenceData*>(msg->pdata)->s_); 132 static_cast<SendDirectedPresenceData*>(msg->pdata)->s_); 137 static_cast<SendDirectedMUCPresenceData*>(msg->pdata)->s_, 160 OnStatusUpdateW(static_cast<SendPresenceData*>(msg->pdata)->s_); 168 OnStateChangeW(static_cast<StateChangeData*>(msg->pdata)->s_); 211 OnOutputDebugW(static_cast<StringData*>(msg->pdata)->s_); 215 OnInputDebugW(static_cast<StringData*>(msg->pdata)->s_); 321 StringData(std::string s) : s_(s) {} 322 std::string s_; member in struct:LibjinglePlusWorker::StringData 352 StateChangeData(buzz::XmppEngine::State state) : s_(state) { 353 buzz::XmppEngine::State s_; member in struct:LibjinglePlusWorker::StateChangeData 652 buzz::Status s_; member in struct:LibjinglePlusWorker::SendPresenceData 658 buzz::Status s_; member in struct:LibjinglePlusWorker::SendDirectedPresenceData 667 buzz::Status s_; member in struct:LibjinglePlusWorker::SendDirectedMUCPresenceData [all...] |
/external/open-vcdiff/gflags/src/windows/gflags/ |
gflags.h | 536 static union { void* align; char s[sizeof(std::string)]; } s_##name[2]; \ 537 const std::string* const FLAGS_no##name = new (s_##name[0].s) std::string(val); \ 540 s_##name[0].s, new (s_##name[1].s) std::string(*FLAGS_no##name)); \ 543 std::string& FLAGS_##name = *(reinterpret_cast<std::string*>(s_##name[0].s)); \
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
progs.pl | 34 if (($_ =~ /^s_/) || ($_ =~ /^ciphers$/))
|
/external/openssl/apps/ |
progs.pl | 34 if (($_ =~ /^s_/) || ($_ =~ /^ciphers$/))
|
/art/runtime/base/ |
logging.h | 290 s_ = os.str(); 294 return s_.c_str(); 298 return s_; 302 std::string s_; member in class:art::ToStr
|
/external/dropbear/libtommath/ |
dep.pl | 67 while ($line =~ m/(fast_)*(s_)*mp\_[a-z_0-9]*/) {
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
s_expression.h | 34 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_sync.h | 45 uptr *s_; member in class:__tsan::StackTrace
|
/external/mesa3d/src/glsl/ |
s_expression.h | 34 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
|
/external/clang/tools/scan-view/ |
Reporter.py | 52 <td class="form_value"><input type="text" name="%s_%s" value="%s"></td> 64 <td class="form_clabel">%s:</td><td class="form_value"><select name="%s_%s">
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
pyport.h | 312 const char *s_ = (void*) (source); \ 314 memcpy(t_, s_, n_); \ 317 t_[i_] = s_[i_]; \ [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
pyport.h | 312 const char *s_ = (void*) (source); \ 314 memcpy(t_, s_, n_); \ 317 t_[i_] = s_[i_]; \ [all...] |