HomeSort by relevance Sort by last modified time
    Searched refs:from (Results 51 - 75 of 10411) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
autotest.py 1 # This should be equivalent to running regrtest.py from the cmdline.
3 # from test import autotest.
5 from test import regrtest
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/parsers/
expat.py 4 from pyexpat import *
  /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_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
test_bytecode.py 0 from tests import TestCase, add
2 from yasm import Bytecode, Expression
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
__init__.py 5 from subcommands.buckets import BucketsCommand
6 from subcommands.cat import CatCommand
7 from subcommands.expand import ExpandCommand
8 from subcommands.map import MapCommand
9 from subcommands.policies import CSVCommand
10 from subcommands.policies import JSONCommand
11 from subcommands.policies import ListCommand
12 from subcommands.pprof import PProfCommand
13 from subcommands.stacktrace import StacktraceCommand
14 from subcommands.upload import UploadComman
    [all...]
  /art/runtime/
memory_region.cc 27 void MemoryRegion::CopyFrom(size_t offset, const MemoryRegion& from) const {
28 CHECK(from.pointer() != NULL);
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/chromium_org/third_party/tlslite/tlslite/
api.py 6 from tlslite.TLSConnection import TLSConnection
7 from tlslite.HandshakeSettings import HandshakeSettings
8 from tlslite.errors import *
14 from tlslite.api import *
20 from constants import AlertLevel, AlertDescription, Fault
21 from errors import *
22 from Checker import Checker
23 from HandshakeSettings import HandshakeSettings
24 from Session import Session
25 from SessionCache import SessionCach
    [all...]
  /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++;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
__init__.py 4 from .commitmessage import CommitMessage
5 from .detection import SCMDetector
6 from .git import Git, AmbiguousCommitError
7 from .scm import SCM, AuthenticationError, CheckoutNeedsUpdate
8 from .svn import SVN
  /external/smack/src/org/jivesoftware/smackx/
MessageEventNotificationListener.java 36 * @param from the user that sent the notification.
39 public void deliveredNotification(String from, String packetID);
44 * @param from the user that sent the notification.
47 public void displayedNotification(String from, String packetID);
53 * @param from the user that sent the notification.
56 public void composingNotification(String from, String packetID);
61 * @param from the user that sent the notification.
64 public void offlineNotification(String from, String packetID);
70 * @param from the user that sent the notification.
73 public void cancelledNotification(String from, String packetID)
    [all...]
  /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);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
__init__.py 14 # contributors may be used to endorse or promote products derived from
33 from base import Port # It's possible we don't need to export this virtual baseclass outside the module.
34 from driver import Driver, DriverInput, DriverOutput
35 from factory import platform_options, configuration_options
  /external/chromium_org/tools/python/google/
platform_utils.py 7 Any functions whose implementations or values differ from one platform to
19 from platform_utils_win import *
21 from platform_utils_mac import *
23 from platform_utils_linux import *
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre.py 9 from re import *
10 from re import __all__
13 from re import _compile
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre.py 9 from re import *
10 from re import __all__
13 from re import _compile
  /external/smack/src/org/jivesoftware/smack/filter/
FromContainsFilter.java 26 * Filters for packets where the "from" field contains a specified value.
32 private String from; field in class:FromContainsFilter
35 * Creates a "from" contains filter using the "from" field part.
37 * @param from the from field value the packet must contain.
39 public FromContainsFilter(String from) {
40 if (from == null) {
43 this.from = from.toLowerCase()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
__init__.py 3 from webkitpy.tool.commands.commitannouncer import CommitAnnouncerCommand
4 from webkitpy.tool.commands.download import *
5 from webkitpy.tool.commands.flakytests import FlakyTests
6 from webkitpy.tool.commands.gardenomatic import GardenOMatic
7 from webkitpy.tool.commands.prettydiff import PrettyDiff
8 from webkitpy.tool.commands.queries import *
9 from webkitpy.tool.commands.rebaseline import Rebaseline
10 from webkitpy.tool.commands.rebaselineserver import RebaselineServer
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
dump.py 24 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30 from parse import *
  /external/chromium_org/tools/perf/benchmarks/
image_decoding.py 4 from telemetry import test
6 from measurements import image_decoding
media.py 4 from measurements import media
5 from telemetry import test
  /external/harfbuzz_ng/test/shaping/
hb-diff-ngrams 3 from hb_test_tools import *
hb-diff-stat 3 from hb_test_tools import *

Completed in 769 milliseconds

1 23 4 5 6 7 8 91011>>