/external/chromium-trace/catapult/third_party/WebOb/webob/ |
D | descriptors.py | 43 def fset(req, val): function 49 def fset(req, val): function 57 return property(fget, fset, fdel, doc=doc) 69 def fset(req, val): function 75 def fset(req, val): function 83 return property(fget, fset, fdel, doc=doc) 90 def fset(req, val): function 97 def fset(req, val): function 102 return property(fget, fset, doc='upath_property(%r)' % key) 118 def fset(self, val): function [all …]
|
D | etag.py | 29 def fset(req, val): function 36 return property(fget, fset, fdel, doc=doc)
|
D | acceptparse.py | 335 def fset(req, val): function 343 return property(fget, fset, fdel, doc)
|
D | cookies.py | 213 def fset(self, v): function 215 return property(lambda self: self[key], fset)
|
/external/skia/gm/ |
D | fontmgr.cpp | 147 SkFontStyleSet* fset) { in iterateFamily() argument 151 for (int j = 0; j < fset->count(); ++j) { in iterateFamily() 154 fset->getStyle(j, &fs, &sname); in iterateFamily() 158 SkSafeUnref(p.setTypeface(fset->createTypeface(j))); in iterateFamily() 165 SkFontStyleSet* fset) { in exploreFamily() argument 172 SkTypeface* face = fset->matchStyle(fs); in exploreFamily() 195 SkAutoTUnref<SkFontStyleSet> fset; in onDraw() local 197 fset.reset(fFM->matchFamily(gNames[i])); in onDraw() 198 if (fset->count() > 0) { in onDraw() 202 if (nullptr == fset.get()) { in onDraw() [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
D | LL1Analyzer.java | 263 LookaheadSet fset = _FIRST(following, chaseFollowTransitions); in _FIRST() local 264 fset.orInPlace(tset); // tset cached; or into new set in _FIRST() 265 fset.remove(Label.EOR_TOKEN_TYPE); in _FIRST() 266 tset = fset; in _FIRST()
|
/external/mksh/src/ |
D | funcs.c | 673 uint32_t fset = 0, fclr = 0, flag; in c_typeset() local 685 fset |= EXPORT; in c_typeset() 691 fset |= RDONLY; in c_typeset() 788 fset &= ~flag; in c_typeset() 791 fset |= flag; in c_typeset() 816 if (func && (((fset|fclr) & ~(TRACE|UCASEV_AL|EXPORT)) || in c_typeset() 827 if (fset & LCASEV) in c_typeset() 829 fset &= ~UCASEV_AL; in c_typeset() 830 if (fset & LJUST) in c_typeset() 832 fset &= ~RJUST; in c_typeset() [all …]
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
D | p11.cpp | 41 float &f(char const* name, Get fget, Set fset, char const* docstr = 0);
|
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
D | classinit.py | 33 'fset': old_prop.fset,
|
/external/clang/utils/ |
D | clang-completion-mode.el | 217 (fset 'clang-completion-mode-map
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
D | BaseRecognizer.js | 762 pushFollow: function(fset) { argument 772 this.state.following[this.state._fsp] = fset;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | BaseRecognizer.java | 696 protected void pushFollow(BitSet fset) { in pushFollow() argument 702 state.following[++state._fsp] = fset; in pushFollow()
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
D | BaseRecognizer.pm | 443 my ($self, $fset) = @_; 445 push @{$self->state->following}, $fset;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRBaseRecognizer.h | 155 - (void) pushFollow:(ANTLRBitSet *)fset;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRBaseRecognizer.h | 147 - (void) pushFollow:(ANTLRBitSet *)fset;
|
D | ANTLRBaseRecognizer.m | 843 - (void)pushFollow:(ANTLRBitSet *)fset 849 [state.following addObject:fset]; 850 [fset retain]; 854 [state.following replaceObjectAtIndex:++state._fsp withObject:fset]; 860 ANTLRBitSet *fset; 863 fset = [state.following objectAtIndex:state._fsp--]; 865 return fset;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRBaseRecognizer.h | 155 - (void) pushFollow:(ANTLRBitSet *)fset;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRBaseRecognizer.h | 155 - (void) pushFollow:(ANTLRBitSet *)fset;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | BaseRecognizer.cs | 815 protected void PushFollow( BitSet fset ) in PushFollow() argument 821 state.following[++state._fsp] = fset; in PushFollow()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | BaseRecognizer.cs | 725 protected void PushFollow(BitSet fset) { in PushFollow() argument 729 state.following[++state._fsp] = fset; in PushFollow()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | BaseRecognizer.as | 663 protected function pushFollow(fset:BitSet):void { 664 state.following[++state._fsp] = fset;
|
/external/guice/extensions/persist/lib/ |
D | antlr-2.7.5h3.jar | META-INF/
META-INF/MANIFEST.MF
antlr/
antlr/ActionElement.class
ActionElement ... |
/external/antlr/antlr-3.4/lib/ |
D | antlr-3.4-complete.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/antlr/
org/ ... |