Home
last modified time | relevance | path

Searched refs:safe (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/external/chromium/third_party/libjingle/source/talk/xmllite/
Dxmlprinter.cc152 size_t safe = 0; in PrintQuotedValue() local
154 size_t unsafe = text.find_first_of("<>&\"", safe); in PrintQuotedValue()
157 *pout_ << text.substr(safe, unsafe - safe); in PrintQuotedValue()
166 safe = unsafe + 1; in PrintQuotedValue()
167 if (safe == text.length()) in PrintQuotedValue()
174 size_t safe = 0; in PrintBodyText() local
176 size_t unsafe = text.find_first_of("<>&", safe); in PrintBodyText()
179 *pout_ << text.substr(safe, unsafe - safe); in PrintBodyText()
187 safe = unsafe + 1; in PrintBodyText()
188 if (safe == text.length()) in PrintBodyText()
/external/clang/test/ARCMT/
Dcheck-api.m23 …[invok getReturnValue:&strong_id]; // expected-error {{NSInvocation's getReturnValue is not safe t…
24 …[invok getReturnValue:&weak_id]; // expected-error {{NSInvocation's getReturnValue is not safe to …
28 …[invok setReturnValue:&strong_id]; // expected-error {{NSInvocation's setReturnValue is not safe t…
29 …[invok setReturnValue:&weak_id]; // expected-error {{NSInvocation's setReturnValue is not safe to …
33 …rong_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe to be used with an …
34 …weak_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe to be used with an …
38 …rong_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not safe to be used with an …
39 …weak_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not safe to be used with an …
/external/openfst/src/include/fst/
Dmatcher.h102 virtual MatcherBase<A> *Copy(bool safe = false) const = 0;
162 SortedMatcher(const SortedMatcher<F> &matcher, bool safe = false)
163 : fst_(matcher.fst_->Copy(safe)),
179 virtual SortedMatcher<F> *Copy(bool safe = false) const {
180 return new SortedMatcher<F>(*this, safe);
388 RhoMatcher(const RhoMatcher<M> &matcher, bool safe = false)
389 : matcher_(new M(*matcher.matcher_, safe)),
399 virtual RhoMatcher<M> *Copy(bool safe = false) const {
400 return new RhoMatcher<M>(*this, safe);
556 SigmaMatcher(const SigmaMatcher<M> &matcher, bool safe = false)
[all …]
Dinvert.h90 InvertFst(const InvertFst<A> &fst, bool safe = false)
91 : ArcMapFst<A, A, C>(fst, safe) {}
94 virtual InvertFst<A> *Copy(bool safe = false) const {
95 return new InvertFst(*this, safe);
Dlookahead-matcher.h197 bool safe = false)
198 : matcher_(lmatcher.matcher_, safe) {}
201 TrivialLookAheadMatcher<M> *Copy(bool safe = false) const {
202 return new TrivialLookAheadMatcher<M>(*this, safe);
273 bool safe = false)
274 : matcher_(lmatcher.matcher_, safe),
280 ArcLookAheadMatcher<M, F> *Copy(bool safe = false) const {
281 return new ArcLookAheadMatcher<M, F>(*this, safe);
461 bool safe = false)
462 : matcher_(lmatcher.matcher_, safe),
[all …]
Dproject.h113 ProjectFst(const ProjectFst<A> &fst, bool safe = false)
114 : ArcMapFst<A, A, C>(fst, safe) {}
117 virtual ProjectFst<A> *Copy(bool safe = false) const {
118 return new ProjectFst(*this, safe);
Dcompose-filter.h230 bool safe = false)
231 : matcher1_(filter.matcher1_->Copy(safe)),
232 matcher2_(filter.matcher2_->Copy(safe)),
315 bool safe = false)
316 : matcher1_(filter.matcher1_->Copy(safe)),
317 matcher2_(filter.matcher2_->Copy(safe)),
402 bool safe = false)
403 : matcher1_(filter.matcher1_->Copy(safe)),
404 matcher2_(filter.matcher2_->Copy(safe)),
500 MultiEpsFilter(const Filter &filter, bool safe = false)
[all …]
Dclosure.h120 ClosureFst(const ClosureFst<A> &fst, bool safe = false)
121 : RationalFst<A>(fst, safe) {}
124 virtual ClosureFst<A> *Copy(bool safe = false) const {
125 return new ClosureFst<A>(*this, safe);
Dmatcher-fst.h103 MatcherFst(const MatcherFst<F, M, N, I> &fst, bool safe = false)
104 : ImplToExpandedFst<Impl>(fst, safe) {}
107 virtual MatcherFst<F, M, N, I> *Copy(bool safe = false) const {
108 return new MatcherFst<F, M, N, I>(*this, safe);
256 LookAheadMatcher(const LookAheadMatcher<FST> &matcher, bool safe = false) {
257 matcher_ = matcher.matcher_->Copy(safe);
263 LookAheadMatcher<FST> *Copy(bool safe = false) const {
264 return new LookAheadMatcher<FST>(*this, safe);
Dmap.h73 MapFst(const ArcMapFst<A, B, C> &fst, bool safe = false)
74 : ArcMapFst<A, B, C>(fst, safe) {}
77 virtual MapFst<A, B, C> *Copy(bool safe = false) const {
78 return new MapFst(*this, safe);
Dunion.h150 UnionFst(const UnionFst<A> &fst, bool safe = false)
151 : RationalFst<A>(fst, safe) {}
154 virtual UnionFst<A> *Copy(bool safe = false) const {
155 return new UnionFst<A>(*this, safe);
Dintersect.h94 IntersectFst(const IntersectFst<A> &fst, bool safe = false) :
95 ComposeFst<A>(fst, safe) {}
98 virtual IntersectFst<A> *Copy(bool safe = false) const {
99 return new IntersectFst<A>(*this, safe);
Darcsort.h132 ArcSortFst(const ArcSortFst<A, C> &fst, bool safe = false)
133 : StateMapFst<A, A, M>(fst, safe) {}
136 virtual ArcSortFst<A, C> *Copy(bool safe = false) const {
137 return new ArcSortFst(*this, safe);
Ddifference.h110 DifferenceFst(const DifferenceFst<A> &fst, bool safe = false)
111 : ComposeFst<A>(fst, safe) {}
114 virtual DifferenceFst<A> *Copy(bool safe = false) const {
115 return new DifferenceFst<A>(*this, safe);
Dconcat.h211 ConcatFst(const ConcatFst<A> &fst, bool safe = false)
212 : RationalFst<A>(fst, safe) {}
215 virtual ConcatFst<A> *Copy(bool safe = false) const {
216 return new ConcatFst<A>(*this, safe);
Dexpanded-fst.h43 virtual ExpandedFst<A> *Copy(bool safe = false) const = 0;
143 ImplToExpandedFst(const ImplToExpandedFst<I, F> &fst, bool safe) in ImplToExpandedFst() argument
144 : ImplToFst<I, F>(fst, safe) {} in ImplToExpandedFst()
/external/openssl/crypto/asn1/
Dasn_pack.c89 unsigned char *safe, *p; in ASN1_seq_pack() local
95 if (!(safe = OPENSSL_malloc (safelen))) { in ASN1_seq_pack()
99 p = safe; in ASN1_seq_pack()
103 if (buf) *buf = safe; in ASN1_seq_pack()
104 return safe; in ASN1_seq_pack()
/external/markdown/markdown/
Dpostprocessors.py46 html, safe = self.markdown.htmlStash.rawHtmlBlocks[i]
47 if self.markdown.safeMode and not safe:
54 if safe or not self.markdown.safeMode:
/external/llvm/docs/CommandGuide/
Dbugpoint.rst81 **--safe-tool-args** *tool args*
83 Pass all arguments specified after **--safe-tool-args** to the "safe" execution
165 by compiling the program with the "safe" backend and running it.
184 **--safe-{llc,custom}**
187 generator as the "safe" code generator. This is a known-good code generator
193 be used as the "safe" backends.
200 **--safe-custom** options to execute the bitcode testcase. This can
226 **--safe-path** *path*
229 **--safe-{int,jit,llc,custom}**
/external/openssl/apps/
Dprime.c67 int safe=0; in MAIN() local
91 safe=1; in MAIN()
133 BN_generate_prime_ex(bn,bits,safe,NULL,NULL,NULL); in MAIN()
/external/quake/quake/src/WinQuake/
Dwq.bat3 if x%1==xsafe goto safe
15 echo wq safe: very likely to run, but may be slower
36 :safe label
/external/qemu/distrib/sdl-1.2.15/src/events/
DSDL_events.c55 int safe; member
67 while ( ! SDL_EventLock.safe ) { in SDL_Lock_EventThread()
121 SDL_EventLock.safe = 1; in SDL_GobbleEvents()
136 SDL_EventLock.safe = 0; in SDL_GobbleEvents()
168 SDL_EventLock.safe = 0; in SDL_StartEventThread()
/external/openssl/crypto/bn/
Dbn_depr.c68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, in BN_generate_prime() argument
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb)) in BN_generate_prime()
/external/llvm/test/CodeGen/X86/
D2009-08-23-SubRegReuseUndo.ll18 %4 = tail call i32 @safe(i32 1) nounwind ; <i32> [#uses=0]
38 %14 = tail call i32 @safe(i32 -2) nounwind ; <i32> [#uses=0]
65 declare i32 @safe(i32)
/external/llvm/docs/
DLexicon.rst37 correct/safe).
54 any `safe point`_. This term is used in opposition to `object pointer`_.
173 calculated only at designated safe points. With a copying collector,
174 `derived pointers`_ must not be retained across safe points and `object

12345678910>>...16