/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
stream.py | 15 # contributors may be used to endorse or promote products derived from 35 from mod_pywebsocket._stream_base import BadOperationException 36 from mod_pywebsocket._stream_base import ConnectionTerminatedException 37 from mod_pywebsocket._stream_base import InvalidFrameException 38 from mod_pywebsocket._stream_base import InvalidUTF8Exception 39 from mod_pywebsocket._stream_base import UnsupportedFrameException 40 from mod_pywebsocket._stream_hixie75 import StreamHixie75 41 from mod_pywebsocket._stream_hybi import Frame 42 from mod_pywebsocket._stream_hybi import Stream 43 from mod_pywebsocket._stream_hybi import StreamOption [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
stream.py | 15 # contributors may be used to endorse or promote products derived from 35 from mod_pywebsocket._stream_base import BadOperationException 36 from mod_pywebsocket._stream_base import ConnectionTerminatedException 37 from mod_pywebsocket._stream_base import InvalidFrameException 38 from mod_pywebsocket._stream_base import InvalidUTF8Exception 39 from mod_pywebsocket._stream_base import UnsupportedFrameException 40 from mod_pywebsocket._stream_hixie75 import StreamHixie75 41 from mod_pywebsocket._stream_hybi import Frame 42 from mod_pywebsocket._stream_hybi import Stream 43 from mod_pywebsocket._stream_hybi import StreamOption [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
eval.test | 28 INSERT INTO t1 SELECT x+2 FROM t1; 29 INSERT INTO t1 SELECT x+4 FROM t1; 30 INSERT INTO t1 SELECT x+8 FROM t1; 31 INSERT INTO t1 SELECT x+16 FROM t1; 32 INSERT INTO t1 SELECT x+32 FROM t1; 33 INSERT INTO t1 SELECT x+64 FROM t1; 34 INSERT INTO t1 SELECT x+128 FROM t1; 35 INSERT INTO t1 SELECT x+256 FROM t1; 36 SELECT count(*), max(x) FROM t1; 41 SELECT x, test_eval('SELECT max(x) FROM t1 WHERE x<' || x) FROM t1 LIMIT [all...] |
wherelimit.test | 43 catchsql {DELETE FROM t1 ORDER BY x} 46 catchsql {DELETE FROM t1 WHERE x=1 ORDER BY x} 54 catchsql {DELETE FROM t1 AS a WHERE x=1} 62 catchsql {DELETE FROM t1 WHERE x=1 OFFSET 2} 72 execsql {SELECT count(*) FROM t1} 75 execsql {DELETE FROM t1} 76 execsql {SELECT count(*) FROM t1} 80 execsql {DELETE FROM t1 LIMIT 5} 81 execsql {SELECT count(*) FROM t1} 85 execsql {DELETE FROM t1 ORDER BY x LIMIT 5 [all...] |
select1.test | 22 set v [catch {execsql {SELECT * FROM test1}} msg] 30 set v [catch {execsql {SELECT * FROM test1, test2}} msg] 34 set v [catch {execsql {SELECT * FROM test2, test1}} msg] 44 execsql {SELECT f1 FROM test1} 47 execsql {SELECT f2 FROM test1} 50 execsql {SELECT f2, f1 FROM test1} 53 execsql {SELECT f1, f2 FROM test1} 56 execsql {SELECT * FROM test1} 59 execsql {SELECT *, * FROM test1} 62 execsql {SELECT *, min(f1,f2), max(f1,f2) FROM test1 [all...] |
tkt3871.test | 23 SELECT count(*) FROM e; 28 execsql { SELECT * FROM e WHERE a = 1 OR a = 2 } 32 execsql { SELECT * FROM e WHERE a = 1 OR a = 2 } 35 xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 1 \ 36 xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 2 \ 40 execsql { SELECT * FROM e WHERE a = 1 OR a = 2 OR b = 9 } 44 execsql { SELECT * FROM e WHERE a = 1 OR a = 2 OR b = 9 } 47 xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 1 \ 48 xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 2 \ 49 xFilter {SELECT rowid, * FROM 't1' WHERE b = ?} [all...] |
like2.test | 151 SELECT count(*) FROM t1; 157 INSERT INTO t2 SELECT * FROM t1; 159 SELECT count(*) FROM t2; 165 INSERT INTO t3 SELECT x, 'abc' || y || 'xyz' FROM t1; 167 SELECT count(*) FROM t2; 171 db eval "SELECT x FROM t1 WHERE y LIKE ' %'" 174 db eval "SELECT x FROM t2 WHERE y LIKE ' %'" 177 db eval "SELECT x FROM t3 WHERE y LIKE 'abc %'" 180 db eval "SELECT x FROM t1 WHERE y LIKE '!%'" 183 db eval "SELECT x FROM t2 WHERE y LIKE '!%' [all...] |
pcache.test | 82 SELECT * FROM sqlite_master; 142 SELECT * FROM t1 ORDER BY a; SELECT * FROM t1; 143 SELECT * FROM t2 ORDER BY a; SELECT * FROM t2; 144 SELECT * FROM t3 ORDER BY a; SELECT * FROM t3; 145 SELECT * FROM t4 ORDER BY a; SELECT * FROM t4; 146 SELECT * FROM t5 ORDER BY a; SELECT * FROM t5 [all...] |
e_delete.test | 32 1 "DELETE FROM t1" {} 33 2 "DELETE FROM t1 INDEXED BY i1" {} 34 3 "DELETE FROM t1 NOT INDEXED" {} 35 4 "DELETE FROM main.t1" {} 36 5 "DELETE FROM main.t1 INDEXED BY i1" {} 37 6 "DELETE FROM main.t1 NOT INDEXED" {} 38 7 "DELETE FROM t1 WHERE a>2" {} 39 8 "DELETE FROM t1 INDEXED BY i1 WHERE a>2" {} 40 9 "DELETE FROM t1 NOT INDEXED WHERE a>2" {} 41 10 "DELETE FROM main.t1 WHERE a>2" { [all...] |
aggerror.test | 14 # from within an aggregate function implementation. 34 INSERT INTO t1 SELECT a+2 FROM t1; 35 INSERT INTO t1 SELECT a+4 FROM t1; 36 INSERT INTO t1 SELECT a+8 FROM t1; 37 INSERT INTO t1 SELECT a+16 FROM t1; 38 INSERT INTO t1 SELECT a+32 FROM t1 ORDER BY a LIMIT 7; 39 SELECT x_count(*) FROM t1; 45 SELECT x_count(*) FROM t1; 50 SELECT x_count(a) FROM t1; 59 SELECT x_count(a) FROM t1 [all...] |
tkt3935.test | 28 execsql { SELECT j1.b FROM ( SELECT * FROM t1 INNER JOIN t2 ON a=c ) AS j1 } 31 execsql { SELECT j1.b FROM (t1 INNER JOIN t2 ON a=c) AS j1 } 36 catchsql { SELECT a FROM (t1) AS t ON b USING(a) } 39 catchsql { SELECT a FROM (t1) AS t ON b } 42 catchsql { SELECT a FROM (SELECT * FROM t1) AS t ON b USING(a) } 45 catchsql { SELECT a FROM (SELECT * FROM t1) AS t ON b } 48 catchsql { SELECT a FROM t1 AS t ON b [all...] |
/external/chromium_org/tools/json_schema_compiler/ |
util.h | 19 // Creates a new item at |out| from |from|[|index|]. These are used by template 21 bool GetItemFromList(const base::ListValue& from, int index, int* out); 22 bool GetItemFromList(const base::ListValue& from, int index, bool* out); 23 bool GetItemFromList(const base::ListValue& from, int index, double* out); 24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out); 25 bool GetItemFromList(const base::ListValue& from, 28 bool GetItemFromList(const base::ListValue& from, 34 bool GetItemFromList(const base::ListValue& from, 38 if (!from.GetDictionary(index, &dict) [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/mockito/src/org/mockito/internal/util/reflection/ |
LenientCopyTool.java | 15 public <T> void copyToMock(T from, T mock) {
16 copy(from, mock, from.getClass(), mock.getClass().getSuperclass());
19 public <T> void copyToRealObject(T from, T to) {
20 copy(from, to, from.getClass(), to.getClass());
23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) {
25 copyValues(from, to, fromClazz);
30 private <T> void copyValues(T from, T mock, Class classFrom) {
42 fieldCopier.copyValue(from, mock, field); [all...] |
/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_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/ |
__init__.py | 14 # contributors may be used to endorse or promote products derived from 30 from webkitpy.tool.steps.addsvnmimetypeforpng import AddSvnMimetypeForPng 31 from webkitpy.tool.steps.checkstyle import CheckStyle 32 from webkitpy.tool.steps.cleanworkingdirectory import CleanWorkingDirectory 33 from webkitpy.tool.steps.commit import Commit 34 from webkitpy.tool.steps.confirmdiff import ConfirmDiff 35 from webkitpy.tool.steps.discardlocalchanges import DiscardLocalChanges 36 from webkitpy.tool.steps.ensurebugisopenandassigned import EnsureBugIsOpenAndAssigned 37 from webkitpy.tool.steps.ensurelocalcommitifneeded import EnsureLocalCommitIfNeeded 38 from webkitpy.tool.steps.haslanded import HasLande [all...] |
/external/valgrind/main/none/tests/ |
fdleak_ipv4.stderr.exp | 11 <inherited from parent> 14 <inherited from parent> 17 <inherited from parent> 26 <inherited from parent> 29 <inherited from parent> 32 <inherited from parent>
|
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/ |
SocketConnect.java | 13 private InputStream from; field in class:SocketConnect 16 public SocketConnect(Socket from, Socket to) throws IOException { 17 this.from = from.getInputStream(); 28 int r = from.read(buffer); 34 from.close();
|
/frameworks/support/v4/ |
build.gradle | 49 from sourceSets.eclair.output 50 from sourceSets.froyo.output 51 from sourceSets.gingerbread.output 52 from sourceSets.honeycomb.output 53 from sourceSets.honeycombmr2.output 54 from sourceSets.ics.output 55 from sourceSets.icsmr1.output 56 from sourceSets.jellybean.output 57 from sourceSets.jellybeanmr1.output 58 from sourceSets.jellybeanmr2.outpu [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_MOVE.S | 4 mov r1, rINST, lsr #12 @ r1<- B from 15:12 5 mov r0, rINST, lsr #8 @ r0<- A from 11:8 9 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
|
/dalvik/vm/mterp/armv6t2/ |
OP_MOVE.S | 4 mov r1, rINST, lsr #12 @ r1<- B from 15:12 5 ubfx r0, rINST, #8, #4 @ r0<- A from 11:8 8 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
|
/development/ndk/platforms/android-3/include/linux/netfilter/ |
xt_connbytes.h | 4 *** This header was automatically generated from a Linux kernel header 7 *** structures, and macros generated from the original header, and thus, 30 aligned_u64 from; member in struct:xt_connbytes_info::__anon1106
|
/development/ndk/sources/android/libportable/common/include/asm-generic/ |
signal_portable.h | 2 Derived from platforms/android-14/arch-arm/usr/include/asm-generic/signal.h 5 *** This header was automatically generated from a Linux kernel header 8 *** structures, and macros generated from the original header, and thus,
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
RawContentVerifier.java | 10 * Verify that the expected signature value was derived from the passed in digest. 12 * @param digest digest calculated from the content. 14 * @return true if the expected signature is derived from the digest, false otherwise.
|
/external/chromium_org/tools/gyp/test/rules/ |
gyptest-all.py | 25 Hello from program.c 26 Hello from function1.in 27 Hello from function2.in 37 Hello from program.c 38 Hello from function3.in 47 test.must_match('relocate/src/subdir2/file1.out', 'Hello from file1.in\n') 48 test.must_match('relocate/src/subdir2/file2.out', 'Hello from file2.in\n') 50 test.must_match('relocate/src/subdir2/file1.out2', 'Hello from file1.in\n') 51 test.must_match('relocate/src/subdir2/file2.out2', 'Hello from file2.in\n') 54 'Hello from file1.in\n' [all...] |