/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
robotparser.py | 144 return entry.allowance(url) 147 return self.default_entry.allowance(url) 157 """A rule line is a single "Allow:" (allowance==True) or "Disallow:" 158 (allowance==False) followed by a path.""" 159 def __init__(self, path, allowance): 160 if path == '' and not allowance: 162 allowance = True 164 self.allowance = allowance 170 return (self.allowance and "Allow" or "Disallow") + ": " + self.pat 200 def allowance(self, filename): member in class:Entry [all...] |
pprint.py | 132 def _format(self, object, stream, indent, allowance, context, level): 142 sepLines = _len(rep) > (self._width - 1 - indent - allowance) 164 allowance + 1, context, level) 173 allowance + 1, context, level) 212 self._format(object[0], stream, indent, allowance + 1, 221 allowance + 1, context, level)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
robotparser.py | 144 return entry.allowance(url) 147 return self.default_entry.allowance(url) 157 """A rule line is a single "Allow:" (allowance==True) or "Disallow:" 158 (allowance==False) followed by a path.""" 159 def __init__(self, path, allowance): 160 if path == '' and not allowance: 162 allowance = True 164 self.allowance = allowance 170 return (self.allowance and "Allow" or "Disallow") + ": " + self.pat 200 def allowance(self, filename): member in class:Entry [all...] |
pprint.py | 132 def _format(self, object, stream, indent, allowance, context, level): 142 sepLines = _len(rep) > (self._width - 1 - indent - allowance) 164 allowance + 1, context, level) 173 allowance + 1, context, level) 212 self._format(object[0], stream, indent, allowance + 1, 221 allowance + 1, context, level)
|
/external/chromium_org/v8/src/ |
runtime-profiler.cc | 284 int allowance = kOSRCodeSizeAllowanceBase + local 286 if (shared_code->CodeSize() > allowance) {
|
/external/zxing/core/ |
core.jar | |