/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/parsers/ |
expat.py | 4 from pyexpat import *
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
char16_t_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char from[] = "some text"; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 8) == 8); 29 assert(f.length(mbs, from, from+10, 9) == 9); 30 assert(f.length(mbs, from, from+10, 10) == 10) [all...] |
char32_t_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char from[] = "some text"; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 8) == 8); 29 assert(f.length(mbs, from, from+10, 9) == 9); 30 assert(f.length(mbs, from, from+10, 10) == 10) [all...] |
char_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char from[10]= {0}; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 9) == 9); 29 assert(f.length(mbs, from, from+10, 10) == 10); 30 assert(f.length(mbs, from, from+10, 11) == 10) [all...] |
wchar_t_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char* from = "123467890"; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 9) == 9); 29 assert(f.length(mbs, from, from+10, 10) == 10); 30 assert(f.length(mbs, from, from+10, 11) == 10) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
char16_t_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char from[] = "some text"; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 8) == 8); 29 assert(f.length(mbs, from, from+10, 9) == 9); 30 assert(f.length(mbs, from, from+10, 10) == 10) [all...] |
char32_t_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char from[] = "some text"; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 8) == 8); 29 assert(f.length(mbs, from, from+10, 9) == 9); 30 assert(f.length(mbs, from, from+10, 10) == 10) [all...] |
char_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char from[10]= {0}; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 9) == 9); 29 assert(f.length(mbs, from, from+10, 10) == 10); 30 assert(f.length(mbs, from, from+10, 11) == 10) [all...] |
wchar_t_length.pass.cpp | 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const; 26 const char* from = "123467890"; local 27 assert(f.length(mbs, from, from+10, 0) == 0); 28 assert(f.length(mbs, from, from+10, 9) == 9); 29 assert(f.length(mbs, from, from+10, 10) == 10); 30 assert(f.length(mbs, from, from+10, 11) == 10) [all...] |
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-compatmodule/pkg/ |
api.py | 6 from .api2 import * 9 from .api3 import *
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-import-from-init/pkg/subpkg/ |
__init__.py | 3 from compat import X, Y 5 from _collections import A, B
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-import-from-init/pkg2/subpkg/ |
__init__.py | 3 from .compat import X, Y 5 from ._collections import A, B
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr3/mypkg/distutils/ |
ccompiler.py | 0 from distutils.ccompiler import * 2 from distutils.sysconfig import customize_compiler
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport/pkg/subpkg/ |
relative2.py | 2 from __future__ import absolute_import 3 from ..relimport import __doc__ as doc
|
/external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/ |
__init__.py | 10 from py_vulcanize.generate import * # pylint: disable=wildcard-import 11 from py_vulcanize.project import Project
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/ |
script_from_import.py | 0 from pkg import toplevel_existing 2 from pkg import toplevel_nonexisting 5 from pkg import toplevel_class_existing 6 from pkg import toplevel_class_nonexisting 9 from pkg import toplevel_conditional_existing 10 from pkg import toplevel_conditional_nonexisting 13 from pkg import toplevel_conditional_import_existing, toplevel_conditional_import_nonexisting 15 from pkg import toplevel_conditional_import2_existing 16 from pkg import toplevel_conditional_import2_nonexisting 19 from pkg import toplevel_import_existing, toplevel_import_nonexistin [all...] |
/external/chromium-trace/catapult/third_party/webtest/webtest/ |
__init__.py | 9 from webtest.app import TestApp 10 from webtest.app import TestRequest 11 from webtest.app import TestResponse 12 from webtest.app import AppError 13 from webtest.forms import Form 14 from webtest.forms import Field 15 from webtest.forms import Select 16 from webtest.forms import Radio 17 from webtest.forms import Checkbox 18 from webtest.forms import Tex [all...] |
/art/runtime/ |
memory_region.cc | 27 void MemoryRegion::CopyFrom(size_t offset, const MemoryRegion& from) const { 28 CHECK(from.pointer() != nullptr); 29 CHECK_GT(from.size(), 0U); 30 CHECK_GE(this->size(), from.size()); 31 CHECK_LE(offset, this->size() - from.size()); 33 from.pointer(), from.size());
|
/external/clang/test/SemaCXX/ |
constexpr-duffs-device.cpp | 4 constexpr void copy(const char *from, unsigned long count, char *to) { 7 case 0: do { *to++ = *from++; 8 case 7: *to++ = *from++; 9 case 6: *to++ = *from++; 10 case 5: *to++ = *from++; 11 case 4: *to++ = *from++; 12 case 3: *to++ = *from++; 13 case 2: *to++ = *from++; 14 case 1: *to++ = *from++;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/ |
system.s | 15 .macro all_hints from=0, to=127 16 hint \from 17 .if \to-\from 18 all_hints "(\from+1)", \to 22 all_hints from=0, to=63 23 all_hints from=64, to=127 35 .macro all_barriers op, from=0, to=15 36 \op \from 37 .if \to-\from 38 all_barriers \op, "(\from+1)", \t [all...] |
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/ |
__init__.py | 14 from __future__ import absolute_import, division, unicode_literals 16 from .html5parser import HTMLParser, parse, parseFragment 17 from .treebuilders import getTreeBuilder 18 from .treewalkers import getTreeWalker 19 from .serializer import serialize
|
/ndk/tests/build/test-gnustl-chrono/jni/ |
hanoi.c | 3 void hanoi(int from, int to, int mid, int n, void (*callback)(int, int)) { 5 callback(from, to); 7 hanoi(from, mid, to, n - 1, callback); 8 callback(from, to); 9 hanoi(mid, to, from, n - 1, callback);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/ |
__init__.py | 19 from .bool import BooleansDifference 20 from .commons import CommonDifference 21 from .default import DefaultsDifference 22 from .fsuse import FSUsesDifference 23 from .genfscon import GenfsconsDifference 24 from .initsid import InitialSIDsDifference 25 from .mls import CategoriesDifference, LevelDeclsDifference, SensitivitiesDifference 26 from .mlsrules import MLSRulesDifference 27 from .netifcon import NetifconsDifference 28 from .nodecon import NodeconsDifferenc [all...] |
/bionic/libc/upstream-openbsd/lib/libc/string/ |
strcpy.c | 16 * may be used to endorse or promote products derived from this software 40 strcpy(char *to, const char *from) 44 for (; (*to = *from) != '\0'; ++from, ++to);
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
dispatcher.py | 9 from dashboard import add_point 10 from dashboard import add_point_queue 11 from dashboard import alerts 12 from dashboard import associate_alerts 13 from dashboard import auto_bisect 14 from dashboard import auto_triage 15 from dashboard import bad_bisect 16 from dashboard import bisect_stats 17 from dashboard import bisect_fyi 18 from dashboard import buildbucket_job_statu [all...] |