/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
MoreKeysDetector.java | 26 // Top slide allowance is slightly longer (sqrt(2) times) than other edges.
|
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRDetector.cpp | 259 int32_t allowance = (int32_t)(allowanceFactor * overallEstModuleSize);
260 int32_t alignmentAreaLeftX = std::max(0, estAlignmentX - allowance);
262 std::min(m_image->GetWidth() - 1, estAlignmentX + allowance);
267 int32_t alignmentAreaTopY = std::max(0, estAlignmentY - allowance);
269 std::min(m_image->GetHeight() - 1, estAlignmentY + allowance);
|
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
WorkerSpec.java | 28 * does not do it, it will not get its allowance this week.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/ |
e820.h | 16 * call to sanitize_e820_map() to remove duplicates. The allowance
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
e820.h | 16 * call to sanitize_e820_map() to remove duplicates. The allowance
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/ |
e820.h | 16 * call to sanitize_e820_map() to remove duplicates. The allowance
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/ |
e820.h | 16 * call to sanitize_e820_map() to remove duplicates. The allowance
|
/prebuilts/go/darwin-x86/src/strconv/ |
extfloat.go | 587 allowance := upper.mant - lower.mant 606 if currentDiff := uint64(integer)<<shift + fraction; currentDiff < allowance { 610 // Sometimes allowance is so large the last digit might need to be 612 return adjustLastDigit(d, currentDiff, targetDiff, allowance, pow<<shift, 2) 630 if fraction < allowance*multiplier { 631 // We are in the admissible range. Note that if allowance is about to 632 // overflow, that is, allowance > 2^64/10, the condition is automatically 635 fraction, targetDiff*multiplier, allowance*multiplier,
|
/prebuilts/go/linux-x86/src/strconv/ |
extfloat.go | 587 allowance := upper.mant - lower.mant 606 if currentDiff := uint64(integer)<<shift + fraction; currentDiff < allowance { 610 // Sometimes allowance is so large the last digit might need to be 612 return adjustLastDigit(d, currentDiff, targetDiff, allowance, pow<<shift, 2) 630 if fraction < allowance*multiplier { 631 // We are in the admissible range. Note that if allowance is about to 632 // overflow, that is, allowance > 2^64/10, the condition is automatically 635 fraction, targetDiff*multiplier, allowance*multiplier,
|
/cts/apps/CameraITS/tests/scene5/ |
test_lens_shading_and_color_uniformity.py | 44 THRES_LS_CT = 0.9 # len shading allowance for center 45 THRES_LS_CN = 0.6 # len shading allowance for corner 48 THRES_UFMT = 0.1 # uniformity allowance
|
/packages/inputmethods/LatinIME/java/res/values-land/ |
config.xml | 32 <!-- Amount of allowance for selecting keys in a mini popup keyboard by sliding finger. -->
|
/packages/inputmethods/LatinIME/java/res/values-sw600dp/ |
config.xml | 33 <!-- Amount of allowance for selecting keys in a mini popup keyboard by sliding finger. -->
|
/packages/inputmethods/LatinIME/java/res/values-sw768dp/ |
config.xml | 38 <!-- Amount of allowance for selecting keys in a mini popup keyboard by sliding finger. -->
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
MoreSuggestionsView.java | 82 // Set vertical correction to zero (Reset more keys keyboard sliding allowance
|
/external/v8/src/ |
runtime-profiler.cc | 184 int64_t allowance = local 187 if (shared_code->CodeSize() > allowance &&
|
/external/v8/src/snapshot/ |
snapshot-common.cc | 136 // allowance. This way we achieve a smaller startup memory footprint. 140 // Add a small allowance to the code space for small scripts.
|
/external/wpa_supplicant_8/src/ap/ |
wmm.c | 178 wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance: %u.%04u", 204 wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance not "
|