/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_numliterals.py | 25 elif val.startswith(u'0') and val.isdigit() and len(set(val)) > 1:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/ |
ascii.py | 1 """Constants and membership tests for ASCII characters""" 59 def isdigit(c): return _ctoi(c) >= 48 and _ctoi(c) <= 57 60 def isgraph(c): return _ctoi(c) >= 33 and _ctoi(c) <= 126 61 def islower(c): return _ctoi(c) >= 97 and _ctoi(c) <= 122 62 def isprint(c): return _ctoi(c) >= 32 and _ctoi(c) <= 126 63 def ispunct(c): return _ctoi(c) != 32 and not isalnum(c) 65 def isupper(c): return _ctoi(c) >= 65 and _ctoi(c) <= 90 67 (_ctoi(c) >= 65 and _ctoi(c) <= 70) or (_ctoi(c) >= 97 and _ctoi(c) <= 102)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_numliterals.py | 25 elif val.startswith(u'0') and val.isdigit() and len(set(val)) > 1:
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-crbug-173907.js | 2 // Redistribution and use in source and binary forms, with or without 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 10 // disclaimer in the documentation and/or other materials provided 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 45 spill(); // At this point initial values for phi1 and phi2 are spilled [all...] |
regress-crbug-173907b.js | 2 // Redistribution and use in source and binary forms, with or without 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 10 // disclaimer in the documentation and/or other materials provided 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 45 spill(); // At this point initial values for phi1 and phi2 are spilled [all...] |
regress-386.js | 2 // Redistribution and use in source and binary forms, with or without 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 10 // disclaimer in the documentation and/or other materials provided 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 32 // the object's map in the fast case and adds a constant function ma [all...] |
regress-convert-enum.js | 2 // Redistribution and use in source and binary forms, with or without 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 10 // disclaimer in the documentation and/or other materials provided 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 31 // (descriptor for a and c), that all share the descriptor array [a,c]. C is th [all...] |
/bionic/libdl/ |
libdl.c | 13 * See the License for the specific language governing permissions and 19 * in the dynamic linker (dlfcn.c), and hijacked at runtime. 40 #error Unsupported architecture. Only mips, arm and x86 are supported.
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_CMPL_FLOAT.S | 41 bhi .L${opcode}_gt_or_nan @ C set and Z clear, disambiguate 46 @ patterns, and we can't represent 0x7fc00000 in immediate form, so
|
/development/scripts/ |
add-accounts | 14 # See the License for the specific language governing permissions and 71 while argv and "@" in argv[-1]: 100 if dasher and hosted_account: 107 if gmail and google_account: 114 if not gmail and not dasher: break
|
add-accounts-sdk | 14 # See the License for the specific language governing permissions and 68 while argv and "@" in argv[-1]: 97 if hosted and hosted_account: 104 if gmail and google_account: 111 if not gmail and not hosted: break
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
javascripttokens.py | 14 # See the License for the specific language governing permissions and 25 """Enumeration of JavaScript token types, and useful sets of token types.""" 108 return self.type == JavaScriptTokenType.KEYWORD and self.string == keyword 119 return self.type == JavaScriptTokenType.OPERATOR and self.string == operator 127 return (self.type == JavaScriptTokenType.OPERATOR and 128 self.string.endswith('=') and
|
/external/chromium_org/testing/ |
test_env.py | 22 sandbox and should enable it. This should return True iff the slave is a 23 Linux host with the sandbox file present and configured correctly.""" 24 if not (sys.platform.startswith('linux') and 28 if ((sandbox_stat.st_mode & stat.S_ISUID) and 29 (sandbox_stat.st_mode & stat.S_IRUSR) and 30 (sandbox_stat.st_mode & stat.S_IXUSR) and
|
/external/chromium_org/third_party/JSON/JSON-2.59/ |
Makefile.PL | 16 print "And see to ExtUtils::MM_Unix.\n"; 33 * This is 'JSON version 2' and there are many differences * 36 * See to 'INCOMPATIBLE CHANGES TO OLD VERSION' and 'TIPS' *
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
combine-javascript-resources.pl | 5 # Redistribution and use in source and binary forms, with or without 9 # notice, this list of conditions and the following disclaimer. 11 # notice, this list of conditions and the following disclaimer in the 12 # documentation and/or other materials provided with the distribution. 14 # THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY 16 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 44 unless (defined $htmlFile and defined $scriptName and defined $outputDirectory) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
crashlogs.py | 3 # Redistribution and use in source and binary forms, with or without 8 # notice, this list of conditions and the following disclaimer. 10 # copyright notice, this list of conditions and the following disclaimer 11 # in the documentation and/or other materials provided with the 17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 52 return basename.startswith(process_name + "_") and basename.endswith(".crash" [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
phystokens.py | 21 if last_line and last_line[-2:] == "\\\n": 22 # We are at the beginning of a new line, and the last line 43 if "\n" in ttext and ttext.split('\n', 1)[0][-1] == '\\': 44 # It's a multiline string and the first line ends with 69 Each pair has a token class, and the token text. 71 If you concatenate all the token texts, and then join them with newlines, 73 trailing whitespace is not preserved, and a final line with no newline 95 if mark_start and scol > col: 99 if ttype == token.NAME and keyword.iskeyword(ttext):
|
/external/chromium_org/third_party/closure_linter/closure_linter/ |
javascripttokens.py | 14 # See the License for the specific language governing permissions and 25 """Enumeration of JavaScript token types, and useful sets of token types.""" 108 return self.type == JavaScriptTokenType.KEYWORD and self.string == keyword 119 return self.type == JavaScriptTokenType.OPERATOR and self.string == operator 127 return (self.type == JavaScriptTokenType.OPERATOR and 128 self.string.endswith('=') and
|
/external/chromium_org/third_party/mesa/src/src/glsl/tests/ |
sexps.py | 6 # copy of this software and associated documentation files (the "Software"), 9 # and/or sell copies of the Software, and to permit persons to whom the 12 # The above copyright notice and this permission notice (including the next 18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 81 elif '\n' not in result and '\n' not in sub_result and \ 98 if isinstance(s, list) and len(s) >= 4 and s[0] == 'declare':
|
/external/chromium_org/tools/grit/grit/node/ |
empty.py | 20 <messages> and <identifiers>).'''
|
/external/chromium_org/tools/traceline/traceline/scripts/ |
alloc.py | 14 if e['eventtype'] == 'EVENT_TYPE_SYSCALL' and e['syscall'] == 17:
|
/external/chromium_org/ui/base/ |
view_prop.h | 14 #error view_prop.h is only for windows and aura builds.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
dead-string-add-warm.js | 2 // Redistribution and use in source and binary forms, with or without 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 10 // disclaimer in the documentation and/or other materials provided 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 32 return a; // x, "a", and "b" are dead cod [all...] |
dead-string-add.js | 2 // Redistribution and use in source and binary forms, with or without 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 10 // disclaimer in the documentation and/or other materials provided 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 30 return a; // x, "a", and "b" are dead cod [all...] |
/external/chromium_org/v8/test/mjsunit/ |
global-deleted-property-ic.js | 2 // Redistribution and use in source and binary forms, with or without 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 10 // disclaimer in the documentation and/or other materials provided 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 34 // Introduce a global variable and make sure we load that from LoadX [all...] |