HomeSort by relevance Sort by last modified time
    Searched refs:from (Results 401 - 425 of 20035) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/
bad_order.py 0 from lib2to3.fixer_base import BaseFix
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
outstanding_bugs.py 10 from test import test_support
test_email.py 5 from email.test.test_email import suite
6 from email.test.test_email_renamed import suite as suite2
7 from test import test_support
test_email_codecs.py 5 from email.test import test_email_codecs
6 from email.test import test_email_codecs_renamed
7 from test import test_support
  /tools/repohooks/rh/
__init__.py 18 from __future__ import print_function
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcpcpy.c 16 * may be used to endorse or promote products derived from this software
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from)
44 for (; (*to = *from); ++from, ++to);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_email_codecs.py 5 from email.test import test_email_codecs
6 from email.test import test_email_codecs_renamed
7 from test import test_support
  /external/autotest/server/site_tests/dummy_PassServer/
dummy_PassServer.py 5 from autotest_lib.client.common_lib import error
6 from autotest_lib.client.common_lib import utils
7 from autotest_lib.server import test
  /external/clang/test/OpenMP/
target_exit_data_device_messages.cpp 14 #pragma omp target exit data map(from: i) device // expected-error {{expected '(' after 'device'}}
15 #pragma omp target exit data map(from: i) device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
16 #pragma omp target exit data map(from: i) device () // expected-error {{expected expression}}
17 #pragma omp target exit data map(from: i) device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp target exit data map(from: i) device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}}
19 #pragma omp target exit data map(from: i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
20 #pragma omp target exit data map(from: i) device (argc + argc)
21 #pragma omp target exit data map(from: i) device (argc), device (argc+1) // expected-error {{directive '#pragma omp target exit data' cannot contain more than one 'device' clause}}
22 #pragma omp target exit data map(from: i) device (S1) // expected-error {{'S1' does not refer to a value}}
23 #pragma omp target exit data map(from: i) device (-2) // expected-error {{argument to 'device' clause must be a non-negative integer val (…)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
FloatAnimation.java 25 public FloatAnimation(float from, float to, int duration) {
26 mFrom = from;
28 mCurrent = from;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_email.py 5 from email.test.test_email import suite
6 from email.test.test_email_renamed import suite as suite2
7 from test import test_support
test_email_codecs.py 5 from email.test import test_email_codecs
6 from email.test import test_email_codecs_renamed
7 from test import test_support
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_email.py 5 from email.test.test_email import suite
6 from email.test.test_email_renamed import suite as suite2
7 from test import test_support
test_email_codecs.py 5 from email.test import test_email_codecs
6 from email.test import test_email_codecs_renamed
7 from test import test_support
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_email.py 5 from email.test.test_email import suite
6 from email.test.test_email_renamed import suite as suite2
7 from test import test_support
test_email_codecs.py 5 from email.test import test_email_codecs
6 from email.test import test_email_codecs_renamed
7 from test import test_support
  /external/jsilver/src/com/google/streamhtmlparser/impl/
ParserStateTable.java 26 * <p>The logic of what character causes what state transition is derived from
88 * in the {@code from} state.
97 * @param from the source state
101 InternalState getNextState(InternalState from, int currentChar) {
103 if (from == null || currentChar < 0)
106 int id = from.getId();
116 result = defaultStateTable[from.getId()];
121 void setExpression(String expr, InternalState from, InternalState to) {
122 if ((expr == null) || (from == null) || (to == null)) {
128 setDefaultDestination(from, to)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bvgraph.h 44 bool addEdge(uptr from, uptr to) {
45 check(from, to);
46 return v[from].setBit(to);
50 uptr addEdges(const BV &from, uptr to, uptr added_edges[],
53 t1.copyFrom(from);
64 // Returns true if an edge from=>to exist.
66 // and thus can be called from different threads w/o locking.
69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); }
71 // Returns true if the edge from=>to was removed
    [all...]
  /external/autotest/server/site_tests/bluetooth_RegressionServer/
bluetooth_RegressionServer.py 7 from autotest_lib.client.common_lib import error
8 from autotest_lib.server import autotest
9 from autotest_lib.server import hosts
10 from autotest_lib.server import test
33 logging.info('Starting reboot from Server')
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
websocket.py 4 from __future__ import absolute_import
9 from websocket import create_connection as _create_connection
10 from websocket import WebSocketConnectionClosedException
11 from websocket import WebSocketException
12 from websocket import WebSocketTimeoutException
  /external/nist-sip/java/gov/nist/javax/sip/parser/
FromParser.java 27 import gov.nist.javax.sip.header.From;
32 /** From header parser.
43 public FromParser(String from) {
44 super(from);
53 From from = new From(); local
55 this.lexer.match(TokenTypes.FROM);
59 super.parse(from);
61 return from;
    [all...]
  /external/vboot_reference/scripts/image_signing/
set_channel.sh 33 local from=$(grep '^CHROMEOS_RELEASE_TRACK=' "${lsb}" | cut -d '=' -f 2)
34 from=${from%"-channel"}
35 echo "Current channel is '${from}'. Changing to '${to}'."
41 ${sudo} sed -i "s/\b${from}\b/${to}/" "${lsb}" &&
  /external/webrtc/webrtc/p2p/base/
transportdescription.h 99 TransportDescription(const TransportDescription& from)
100 : transport_options(from.transport_options),
101 ice_ufrag(from.ice_ufrag),
102 ice_pwd(from.ice_pwd),
103 ice_mode(from.ice_mode),
104 connection_role(from.connection_role),
105 identity_fingerprint(CopyFingerprint(from.identity_fingerprint.get())),
106 candidates(from.candidates) {}
108 TransportDescription& operator=(const TransportDescription& from) {
110 if (this == &from)
    [all...]
  /test/vts/proto/
AndroidSystemControlMessage_pb2.py 4 from google.protobuf.internal import enum_type_wrapper
5 from google.protobuf import descriptor as _descriptor
6 from google.protobuf import message as _message
7 from google.protobuf import reflection as _reflection
8 from google.protobuf import descriptor_pb2
  /external/openssh/openbsd-compat/
bsd-statvfs.c 14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
37 copy_statfs_to_statvfs(struct statvfs *to, struct statfs *from)
39 to->f_bsize = from->f_bsize;
40 to->f_frsize = from->f_bsize; /* no exact equivalent */
41 to->f_blocks = from->f_blocks;
42 to->f_bfree = from->f_bfree;
43 to->f_bavail = from->f_bavail;
44 to->f_files = from->f_files;
45 to->f_ffree = from->f_ffree;
46 to->f_favail = from->f_ffree; /* no exact equivalent *
    [all...]

Completed in 704 milliseconds

<<11121314151617181920>>