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

1 2 3 4 5 6 7 891011>>

  /external/valgrind/main/drd/tests/
annotate_order_3.stderr.exp 6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
annotate_spinlock.stderr.exp 6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
rwlock_test.stderr.exp 6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc17_sembar.stderr.exp 5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/helgrind/tests/
rwlock_test.stderr.exp 6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc17_sembar.stderr.exp 5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_mem_funcs.h 19 Portions of this file are derived from the following 3GPP standard:
23 Available from http://www.3gpp.org
27 terms listed above has been obtained from the copyright holder.
61 #define pv_memcpy(to, from, n) memcpy(to, from, n)
62 #define pv_memmove(to, from, n) memmove(to, from, n)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
mp3_mem_funcs.h 67 #define pv_memcpy(to, from, n) memcpy(to, from, n)
68 #define pv_memmove(to, from, n) memmove(to, from, n)
  /ndk/tests/build/test-gnustl-chrono/jni/
hanoi.h 8 extern void hanoi(int from, int to, int mid, int n,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/
bad_order.py 0 from lib2to3.fixer_base import BaseFix
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
Qt.py 0 from _Qt import *
  /prebuilts/python/darwin-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
  /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
  /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);
  /external/chromium_org/printing/
page_range.h 18 // Print range is inclusive. To select one page, set from == to.
20 int from; member in struct:printing::PageRange
24 return from == rhs.from && to == rhs.to;
  /external/chromium_org/tools/perf/benchmarks/
blink_perf.py 7 from telemetry import test
8 from telemetry.core import util
10 from measurements import blink_perf
  /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/python/darwin-x86/2.7.5/lib/python2.7/compiler/
__init__.py 4 from modules contained in the package.
29 from compiler.transformer import parse, parseFile
30 from compiler.visitor import walk
31 from compiler.pycodegen import compile, compileFile
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
__init__.py 4 from modules contained in the package.
29 from compiler.transformer import parse, parseFile
30 from compiler.visitor import walk
31 from compiler.pycodegen import compile, compileFile
  /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...]

Completed in 336 milliseconds

1 2 3 4 5 6 7 891011>>