HomeSort by relevance Sort by last modified time
    Searched full:from (Results 351 - 375 of 145254) sorted by null

<<11121314151617181920>>

  /external/libunwind/src/coredump/
README 1 This code is based on "unwinding via ptrace" code from ptrace/
5 from their ptrace/_UPT_... progenitors.
8 from ptrace/, or unimplemented stubs.
  /external/valgrind/main/none/tests/
fdleak_creat.stderr.exp 8 <inherited from parent>
11 <inherited from parent>
14 <inherited from parent>
fdleak_open.stderr.exp 8 <inherited from parent>
11 <inherited from parent>
14 <inherited from parent>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
README.ctypes 1 Files in this directory from from Bob Ippolito's py2app.
6 This is version 1.0, SVN revision 789, from 2006/01/25.
  /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/darwin-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
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/ctypes/macholib/
README.ctypes 1 Files in this directory from from Bob Ippolito's py2app.
6 This is version 1.0, SVN revision 789, from 2006/01/25.
  /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
  /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
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
  /frameworks/base/docs/html/
_redirects.yaml 10 # pages. Add "pattern: True" to use python regex in to or from.
12 # WATCH OUT -- FROM LINE HAS TO START WITH A HYPHEN
15 - from: ^/sdk/android-(.*$)
19 - from: /about/versions/index.html
22 - from: /about/versions/api-levels.html
25 - from: /sdk/adding-components.html
28 - from: /sdk/compatibility-library.html
31 - from: /training/basics/fragments/support-lib.html
34 - from: /sdk/eclipse-adt.html
37 - from: /sdk/installing.htm
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
tkt3334.test 31 SELECT * FROM t1 ORDER BY b;
37 SELECT a FROM (SELECT a FROM t1 ORDER BY b LIMIT 2) WHERE a=1;
42 SELECT count(*) FROM (SELECT a FROM t1 ORDER BY b LIMIT 2) WHERE a=1;
47 SELECT a FROM (SELECT a FROM t1 ORDER BY b LIMIT 3) WHERE a=1;
52 SELECT count(*) FROM (SELECT a FROM t1 ORDER BY b LIMIT 3) WHERE a=1;
57 SELECT a FROM (SELECT a FROM t1 ORDER BY b LIMIT 99) WHERE a=1
    [all...]
selectA.test 38 SELECT * FROM t1;
49 SELECT * FROM t2;
55 INSERT INTO t3 SELECT * FROM t1;
56 INSERT INTO t3 SELECT * FROM t2;
57 INSERT INTO t3 SELECT * FROM t1;
58 INSERT INTO t3 SELECT * FROM t2;
59 INSERT INTO t3 SELECT * FROM t1;
60 INSERT INTO t3 SELECT * FROM t2;
61 SELECT count(*) FROM t3;
67 SELECT a,b,c FROM t1 UNION ALL SELECT x,y,z FROM t
    [all...]
minmax2.test 49 SELECT DISTINCT y FROM t1 ORDER BY y;
55 execsql {SELECT min(x) FROM t1}
62 execsql {SELECT max(x) FROM t1}
70 execsql {SELECT min(x) FROM t1}
77 execsql {SELECT max(x) FROM t1}
84 execsql {SELECT max(y) FROM t1}
93 INSERT INTO t2 SELECT * FROM t1;
96 execsql {SELECT min(a) FROM t2}
103 execsql {SELECT max(a) FROM t2}
111 execsql {INSERT INTO t2 VALUES((SELECT max(a) FROM t2)+1,999)
    [all...]
minmax.test 46 SELECT DISTINCT y FROM t1 ORDER BY y;
52 execsql {SELECT min(x) FROM t1}
59 execsql {SELECT max(x) FROM t1}
67 execsql {SELECT min(x) FROM t1}
74 execsql {SELECT max(x) FROM t1}
81 execsql {SELECT max(y) FROM t1}
88 execsql {SELECT min(x) FROM t1 WHERE x=5}
91 execsql {SELECT min(x) FROM t1 WHERE x>=5}
94 execsql {SELECT min(x) FROM t1 WHERE x>=4.5}
97 execsql {SELECT min(x) FROM t1 WHERE x<4.5
    [all...]
insert2.test 13 # result from a SELECT.
28 execsql {SELECT * FROM d1 ORDER BY n}
31 # Insert into a new table from the old one.
40 EXPLAIN INSERT INTO t1 SELECT log, count(*) FROM d1 GROUP BY log;
44 INSERT INTO t1 SELECT log, count(*) FROM d1 GROUP BY log;
51 execsql {SELECT * FROM t1 ORDER BY log}
60 SELECT log, count(*) FROM d1 GROUP BY log
61 EXCEPT SELECT n-1,log FROM d1;
66 SELECT * FROM t1 ORDER BY log;
75 SELECT log, count(*) FROM d1 GROUP BY lo
    [all...]
tkt3346.test 26 SELECT *, ( SELECT y FROM (SELECT x.b='alice' AS y) )
27 FROM ( SELECT * FROM t1 ) AS x;
32 SELECT b FROM (SELECT * FROM t1) AS x
33 WHERE (SELECT y FROM (SELECT x.b='alice' AS y))=0
38 SELECT b FROM (SELECT * FROM t1 ORDER BY a) AS x
39 WHERE (SELECT y FROM (SELECT a||b y FROM t1 WHERE t1.b=x.b))=(x.a||x.b
    [all...]
select4.test 40 execsql {SELECT DISTINCT log FROM t1 ORDER BY log}
46 lsort [execsql {SELECT DISTINCT log FROM t1}]
49 lsort [execsql {SELECT n FROM t1 WHERE log=3}]
53 SELECT DISTINCT log FROM t1
55 SELECT n FROM t1 WHERE log=3
62 SELECT DISTINCT log FROM t1
64 SELECT n FROM t1 WHERE log=3
66 SELECT * FROM t2;
73 SELECT DISTINCT log FROM t1
75 SELECT n FROM t1 WHERE log=
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 105 public IApiDelta compare(IApi from, IApi to) {
106 assert from.getVisibility() == to.getVisibility();
108 Set<IPackage> fromPackages = from.getPackages();
113 public IPackageDelta createChangedDelta(IPackage from,
115 return comparePackage(from, to);
118 public IPackageDelta createAddRemoveDelta(IPackage from,
120 return new SigPackageDelta(from, to);
123 public boolean considerEqualElement(IPackage from,
125 return from.getName().equals(to.getName());
131 delta = new SigApiDelta(from, to)
    [all...]
  /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/tools/gyp/test/rules/
gyptest-default.py 22 Hello from program.c
23 Hello from function1.in
24 Hello from function2.in
34 Hello from program.c
35 Hello from function3.in
44 test.must_match('relocate/src/subdir2/file1.out', 'Hello from file1.in\n')
45 test.must_match('relocate/src/subdir2/file2.out', 'Hello from file2.in\n')
47 test.must_match('relocate/src/subdir2/file1.out2', 'Hello from file1.in\n')
48 test.must_match('relocate/src/subdir2/file2.out2', 'Hello from file2.in\n')
50 test.must_match('relocate/src/subdir2/file1.out4', 'Hello from file1.in\n'
    [all...]
  /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...]

Completed in 1345 milliseconds

<<11121314151617181920>>