/external/clang/test/ARCMT/ |
D | check-api.m | 23 …[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/ |
D | matcher.h | 113 virtual MatcherBase<A> *Copy(bool safe = false) const = 0; 173 SortedMatcher(const SortedMatcher<F> &matcher, bool safe = false) 174 : fst_(matcher.fst_->Copy(safe)), 190 virtual SortedMatcher<F> *Copy(bool safe = false) const { 191 return new SortedMatcher<F>(*this, safe); 431 RhoMatcher(const RhoMatcher<M> &matcher, bool safe = false) 432 : matcher_(new M(*matcher.matcher_, safe)), 442 virtual RhoMatcher<M> *Copy(bool safe = false) const { 443 return new RhoMatcher<M>(*this, safe); 605 SigmaMatcher(const SigmaMatcher<M> &matcher, bool safe = false) [all …]
|
D | lookahead-matcher.h | 197 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 …]
|
D | invert.h | 90 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);
|
D | compose-filter.h | 230 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 …]
|
D | project.h | 113 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);
|
D | closure.h | 120 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);
|
D | matcher-fst.h | 103 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);
|
D | map.h | 73 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);
|
D | intersect.h | 94 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);
|
D | union.h | 150 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);
|
D | difference.h | 110 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);
|
D | arcsort.h | 134 ArcSortFst(const ArcSortFst<A, C> &fst, bool safe = false) 135 : StateMapFst<A, A, M>(fst, safe) {} 138 virtual ArcSortFst<A, C> *Copy(bool safe = false) const { 139 return new ArcSortFst(*this, safe);
|
D | concat.h | 211 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);
|
D | expanded-fst.h | 43 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/llvm/test/CodeGen/X86/GC/ |
D | erlang-gc.ll | 10 ; CHECK64-NEXT: .short 1 # safe point count 11 ; CHECK64-NEXT: .long .Ltmp0 # safe point address 18 ; CHECK32-NEXT: .short 1 # safe point count 19 ; CHECK32-NEXT: .long .Ltmp0 # safe point address
|
/external/markdown/markdown/ |
D | postprocessors.py | 46 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/ |
D | bugpoint.rst | 62 **--safe-tool-args** *tool args* 64 Pass all arguments specified after **--safe-tool-args** to the "safe" execution 125 by compiling the program with the "safe" backend and running it. 134 **--safe-{llc,custom}** 137 generator as the "safe" code generator. This is a known-good code generator 143 be used as the "safe" backends. 148 **--safe-custom** options to execute the bitcode testcase. This can 168 **--safe-path** *path* 171 **--safe-{int,jit,llc,custom}**
|
/external/valgrind/auxprogs/ |
D | update-demangler | 53 cp ../gcc-$old_gcc_revision/include/safe-ctype.h . 58 cp ../gcc-$old_gcc_revision/libiberty/safe-ctype.c . 79 cp ../gcc-$new_gcc_revision/include/safe-ctype.h . 84 cp ../gcc-$new_gcc_revision/libiberty/safe-ctype.c .
|
/external/llvm/test/CodeGen/Mips/ |
D | micromips-delay-slot-jr.ll | 39 …%safe = getelementptr inbounds [4 x %struct.barstruct], [4 x %struct.barstruct]* @bar_ary, i32 0, … 40 store float 1.420000e+02, float* %safe, align 4, !tbaa !1 41 ret float* %safe
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
D | GlideUrl.java | 59 String safe = Uri.encode(unsafe, ALLOWED_URI_CHARS); in getSafeUrl() local 61 safeUrl = new URL(safe); in getSafeUrl()
|
/external/llvm/test/Transforms/IRCE/ |
D | bug-mismatched-types.ll | 8 ; In this test case, the safe range for the only range check in the 36 ; safe range of type [i32, i32) and one with a safe range of type
|
/external/libunwind/doc/ |
D | unw_getcontext.tex | 34 reverse is \emph{not} true and it is \emph{not} safe to use structures 47 \Func{unw\_getcontext}() is thread-safe as well as safe to use
|
D | unw_strerror.tex | 30 \Func{unw\_strerror}() is thread-safe as well as safe to use
|
/external/llvm/docs/ |
D | HowToSubmitABug.rst | 201 with two bitcode files: a *safe* file which can be compiled with the C 208 #. Regenerate the shared object from the safe bitcode file: 212 llc -march=c safe.bc -o safe.c 213 gcc -shared safe.c -o safe.so 221 gcc test.s safe.so -o test.llc 229 lli -load=safe.so test.bc [program options]
|