HomeSort by relevance Sort by last modified time
    Searched refs:from (Results 301 - 325 of 17172) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
new.py 6 from warnings import warnpy3k
11 from types import ClassType as classobj
12 from types import FunctionType as function
13 from types import InstanceType as instance
14 from types import MethodType as instancemethod
15 from types import ModuleType as module
17 from types import CodeType as code
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
__init__.py 25 Further information is available in the bundled documentation, and from
58 from .result import TestResult
59 from .case import (TestCase, FunctionTestCase, SkipTest, skip, skipIf,
61 from .suite import BaseTestSuite, TestSuite
62 from .loader import (TestLoader, defaultTestLoader, makeSuite, getTestCaseNames,
64 from .main import TestProgram, main
65 from .runner import TextTestRunner, TextTestResult
66 from .signals import installHandler, registerResult, removeResult, removeHandler
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
new.py 6 from warnings import warnpy3k
11 from types import ClassType as classobj
12 from types import FunctionType as function
13 from types import InstanceType as instance
14 from types import MethodType as instancemethod
15 from types import ModuleType as module
17 from types import CodeType as code
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
__init__.py 25 Further information is available in the bundled documentation, and from
58 from .result import TestResult
59 from .case import (TestCase, FunctionTestCase, SkipTest, skip, skipIf,
61 from .suite import BaseTestSuite, TestSuite
62 from .loader import (TestLoader, defaultTestLoader, makeSuite, getTestCaseNames,
64 from .main import TestProgram, main
65 from .runner import TextTestRunner, TextTestResult
66 from .signals import installHandler, registerResult, removeResult, removeHandler
  /toolchain/binutils/binutils-2.25/bfd/
elf-linux-psinfo.h 52 /* Helper macro to swap (properly handling endianess) things from the
56 Note that FROM should be a pointer, and TO should be the explicit
59 #define LINUX_PRPSINFO32_SWAP_FIELDS(abfd, from, to) \
62 H_PUT_8 (abfd, from->pr_state, &to.pr_state); \
63 H_PUT_8 (abfd, from->pr_sname, &to.pr_sname); \
64 H_PUT_8 (abfd, from->pr_zomb, &to.pr_zomb); \
65 H_PUT_8 (abfd, from->pr_nice, &to.pr_nice); \
66 H_PUT_32 (abfd, from->pr_flag, to.pr_flag); \
67 H_PUT_16 (abfd, from->pr_uid, to.pr_uid); \
68 H_PUT_16 (abfd, from->pr_gid, to.pr_gid);
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-local-class-names.cpp 16 SSSS( const float& from): bv(from) { }
27 SSSS( const float& from) {}
40 SSSS( const float& from): bv(from) { }
51 SSSS( const float& from) {}
63 SSSS(const float& from): bv(from) { }
71 SSSS(const float& from): bv(from) { }
    [all...]
  /external/compiler-rt/test/asan/TestCases/
strcat_strict.c 14 void test1(char *to, int to_size, char *from) {
16 char* r = strcat(to + to_size, from);
19 void test2(char *to, int to_size, char *from) {
22 char* r = strcat(to, from);
29 char *from = (char*)malloc(from_size); local
30 memset(from, 'z', from_size);
31 from[from_size - 1] = '\0';
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
42 free(from);
    [all...]
strncat_strict.c 14 void test1(char *to, int to_size, char *from) {
16 char* r = strncat(to + to_size, from, 2);
19 void test2(char *to, int to_size, char *from) {
22 char* r = strncat(to, from, 1);
29 char *from = (char*)malloc(from_size); local
30 memset(from, 'z', from_size);
31 from[from_size - 1] = '\0';
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
42 free(from);
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/story/
__init__.py 5 from catapult_base import cloud_storage # pylint: disable=import-error
7 from telemetry.story.shared_state import SharedState
8 from telemetry.story.story import Story
9 from telemetry.story.story_filter import StoryFilter
10 from telemetry.story.story_set import StorySet
  /external/tpm2/
Unique.c 1 // This file was extracted from the TCG Published
31 const char *from = notReallyUnique; local
36 *from != 0 && retVal < bSize;
39 *b++ = *from++;
47 *from != 0 && retVal < bSize;
50 *b-- = *from++;
  /external/chromium-trace/catapult/third_party/apiclient/apiclient/
__init__.py 3 from six import iteritems
18 from googleapiclient import channel
19 from googleapiclient import discovery
20 from googleapiclient import errors
21 from googleapiclient import http
22 from googleapiclient import mimeparse
23 from googleapiclient import model
24 from googleapiclient import sample_tools
25 from googleapiclient import schema
  /external/libgsm/src/
debug.c 21 void gsm_debug_words P4( (name, from, to, ptr),
23 int from,
29 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
30 while (from <= to) {
31 fprintf(stderr, "%d ", ptr[ from ] );
32 from++;
35 if (from < to) putc('\n', stderr);
41 void gsm_debug_longwords P4( (name, from, to, ptr),
43 int from,
49 fprintf( stderr, "%s [%d .. %d]: ", name, from, to )
    [all...]
  /build/kati/testcase/
curdir.mk 4 echo linking $@ from $<
7 echo compiling $@ from $<
9 echo compiling $@ from $<
  /external/autotest/client/common_lib/
utils.py 4 NOTE: this is a mixin library that pulls in functions from several places
11 from autotest_lib.client.common_lib.base_utils import *
12 from autotest_lib.client.common_lib.lsbrelease_utils import *
14 from autotest_lib.client.common_lib.site_utils import *
  /external/autotest/server/
utils.py 4 NOTE: this is a mixin library that pulls in functions from several places
11 from autotest_lib.client.common_lib.utils import *
12 from autotest_lib.server.base_utils import *
14 from autotest_lib.server.site_utils import *
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
cli.py 13 from apitools.base.py.app2 import *
14 from apitools.base.py.base_cli import *
18 from apitools.base.py.internal.cli import *
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
all_tests.py 4 from glob import glob
6 from create_hit_test import *
7 from create_hit_with_qualifications import *
8 from create_hit_external import *
9 from create_hit_with_qualifications import *
10 from hit_persistence import *
  /external/icu/android_icu4j/src/main/java/android/icu/util/
TimeZoneTransition.java 17 private final TimeZoneRule from; field in class:TimeZoneTransition
26 * @param from The time zone rule used before the transition.
29 public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to) {
31 this.from = from;
59 return from;
70 buf.append(", from={" + from + "}");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
TimeZoneTransition.java 16 private final TimeZoneRule from; field in class:TimeZoneTransition
25 * @param from The time zone rule used before the transition.
30 public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to) {
32 this.from = from;
66 return from;
79 buf.append(", from={" + from + "}");
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
wchar_t_out.pass.cpp 15 // const internT* from, const internT* from_end, const internT*& from_next,
30 const std::basic_string<F::intern_type> from(L"some text");
31 std::vector<char> to(from.size()+1);
35 F::result r = f.out(mbs, from.data(), from.data() + from.size(), from_next,
38 assert(from_next - from.data() == from.size());
39 assert(to_next - to.data() == from.size());
43 std::basic_string<F::intern_type> from(L"some text")
    [all...]
  /external/valgrind/none/tests/
fdleak_creat.stderr.exp 8 <inherited from parent>
11 <inherited from parent>
14 <inherited from parent>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
wchar_t_out.pass.cpp 15 // const internT* from, const internT* from_end, const internT*& from_next,
30 const std::basic_string<F::intern_type> from(L"some text");
31 std::vector<char> to(from.size()+1);
35 F::result r = f.out(mbs, from.data(), from.data() + from.size(), from_next,
38 assert(from_next - from.data() == from.size());
39 assert(to_next - to.data() == from.size());
43 std::basic_string<F::intern_type> from(L"some text")
    [all...]
  /external/chromium-trace/catapult/third_party/webtest/webtest/
compat.py 4 from six import PY3
5 from six import text_type
6 from six.moves import http_cookies
19 from html.entities import name2codepoint
20 from urllib.parse import urlencode
21 from urllib.parse import splittype
22 from urllib.parse import splithost
25 from htmlentitydefs import name2codepoint # noqa
26 from urllib import splittype # noqa
27 from urllib import splithost # noq
    [all...]
  /external/deqp/scripts/opengl/
gen_all.py 23 from src_util import getGLRegistry, getHybridInterface
24 from gen_call_log_wrapper import genCallLogWrapper
25 from gen_enums import genEnums
26 from gen_es31_wrapper import genES31WrapperFuncs
27 from gen_es_direct_init import genESDirectInit
28 from gen_es_static_library import genESStaticLibrary
29 from gen_ext_init import genExtInit
30 from gen_func_init import genFuncInit
31 from gen_func_ptrs import genFunctionPointers
32 from gen_null_render_context import genNullRenderContex
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
extras.py 23 # derived from this software without specific prior written permission.
41 from treewizard import TreeWizard
44 from antlr3.dottreegen import toDOT

Completed in 1156 milliseconds

<<11121314151617181920>>