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

<<11121314151617181920>>

  /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
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
__init__.py 20 from .api_utils import RetryParams
21 from .api_utils import set_default_retry_params
22 from cloudstorage_api import *
23 from .common import CSFileStat
24 from .common import GCSFileStat
25 from .common import validate_bucket_name
26 from .common import validate_bucket_path
27 from .common import validate_file_path
28 from errors import *
29 from storage_api import
    [all...]
  /external/clang/test/SemaCXX/
warn-literal-conversion.cpp 8 int y0 = 1.2222F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
9 int y1 = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
11 int y3 = 12E-1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2 to 1}}
12 int y4 = 1.23E1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 12.3 to 12}
    [all...]
  /external/sonivox/arm-hybrid-22k/host_src/
eas_debugmsgs.h 1 /* Auto-generated from source file: eas_chorusdata.c */
2 /* Auto-generated from source file: eas_imelodydata.c */
3 /* Auto-generated from source file: eas_mididata.c */
4 /* Auto-generated from source file: eas_pan.c */
5 /* Auto-generated from source file: eas_wavefiledata.c */
6 /* Auto-generated from source file: eas_voicemgt.c */
7 /* Auto-generated from source file: eas_ota.c */
8 /* Auto-generated from source file: eas_mixbuf.c */
9 /* Auto-generated from source file: eas_rtttl.c */
10 /* Auto-generated from source file: eas_reverb.c *
    [all...]
  /external/sonivox/arm-fm-22k/host_src/
eas_debugmsgs.h 1 /* Auto-generated from source file: eas_chorusdata.c */
2 /* Auto-generated from source file: eas_imelodydata.c */
3 /* Auto-generated from source file: eas_mididata.c */
4 /* Auto-generated from source file: eas_pan.c */
5 /* Auto-generated from source file: eas_wavefiledata.c */
6 /* Auto-generated from source file: eas_voicemgt.c */
7 /* Auto-generated from source file: eas_ota.c */
8 /* Auto-generated from source file: eas_mixbuf.c */
9 /* Auto-generated from source file: eas_fmsndlib.c */
10 /* Auto-generated from source file: eas_rtttl.c *
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
AnimationUtilities.h 38 inline int blend(int from, int to, double progress)
40 return lround(from + (to - from) * progress);
45 inline T blend(T from, T to, double progress)
48 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress));
51 inline double blend(double from, double to, double progress
    [all...]
  /external/chromium_org/tools/gyp/test/include_dirs/src/
includes.c 10 printf("Hello from includes.c\n");
11 printf("Hello from %s\n", INC_STRING);
12 printf("Hello from %s\n", INCLUDE1_STRING);
13 printf("Hello from %s\n", INCLUDE2_STRING);
16 the shadow.h from the include_dir. */
17 printf("Hello from %s\n", SHADOW_STRING);
  /external/chromium_org/tools/json_schema_compiler/
util.cc 12 bool GetItemFromList(const base::ListValue& from, int index, int* out) {
13 return from.GetInteger(index, out);
16 bool GetItemFromList(const base::ListValue& from, int index, bool* out) {
17 return from.GetBoolean(index, out);
20 bool GetItemFromList(const base::ListValue& from, int index, double* out) {
21 return from.GetDouble(index, out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out) {
25 return from.GetString(index, out);
28 bool GetItemFromList(const base::ListValue& from,
32 if (!from.Get(index, &value)
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
subselect.test 35 execsql {SELECT * FROM t1 WHERE a = (SELECT count(*) FROM t1)}
41 set v [catch {execsql {SELECT * FROM t1 WHERE a = (SELECT * FROM t1)}} msg]
48 execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=2)}
51 execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=4)}
54 execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=6)
    [all...]
where5.test 30 INSERT INTO t2 SELECT * FROM t1;
31 INSERT INTO t3 SELECT * FROM t2;
34 SELECT * FROM t1 WHERE x<0
39 SELECT * FROM t1 WHERE x<=0
44 SELECT * FROM t1 WHERE x=0
49 SELECT * FROM t1 WHERE x>=0
54 SELECT * FROM t1 WHERE x>0
59 SELECT * FROM t1 WHERE x<>0
64 SELECT * FROM t1 WHERE x<NULL
69 SELECT * FROM t1 WHERE x<=NUL
    [all...]
limit.test 35 execsql {SELECT count(*) FROM t1}
38 execsql {SELECT count(*) FROM t1 LIMIT 5}
41 execsql {SELECT x FROM t1 ORDER BY x LIMIT 5}
44 execsql {SELECT x FROM t1 ORDER BY x LIMIT 5 OFFSET 2}
47 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT 5 OFFSET -2}
50 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT 2, -5}
53 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT -2, 5}
56 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT -2, -5}
59 execsql {SELECT x FROM t1 ORDER BY x LIMIT 2, 5}
62 execsql {SELECT x FROM t1 ORDER BY x LIMIT 5 OFFSET 5
    [all...]
notnull.test 34 SELECT * FROM t1;
39 DELETE FROM t1;
41 SELECT * FROM t1 order by a;
46 DELETE FROM t1;
48 SELECT * FROM t1 order by a;
53 DELETE FROM t1;
55 SELECT * FROM t1 order by a;
60 DELETE FROM t1;
62 SELECT * FROM t1 order by a;
67 DELETE FROM t1
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
all_page_actions.py 6 from telemetry.core import discover
7 from telemetry.core import util
8 from telemetry.page.actions import page_action
13 from telemetry.page.actions.loop import LoopAction
14 from telemetry.page.actions.media_action import MediaAction
15 from telemetry.page.actions.pinch import PinchAction
16 from telemetry.page.actions.play import PlayAction
17 from telemetry.page.actions.reload import ReloadAction
19 from telemetry.page.actions.repaint_continuously import (
21 from telemetry.page.actions.scroll import ScrollActio
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
credits.html 24 Talking Alarm Clock uses the following sound files from Freesound
29 <li>alarmclockbeeps from tedthetrumpet
30 <li>alarm_clock_ringing from joedeshon
31 <li>CuckooClock6DP from acclivity
32 <li>ClockStrikes12 from acclivity
33 <li>Maxines from TexasMusicForge
34 <li>fat_beat_1 from -zin-
35 <li>20070812.rooster from dobroide
  /external/chromium_org/content/test/data/dom_serializer/
note.xml 4 <from>&lt;Boss&gt;</from>
  /external/chromium_org/third_party/skia/tools/tests/jsondiff/output/old-vs-new/output-expected/
stdout 6 "missing-from-new.png": {
10 "missing-from-old.png": {
  /external/libcap-ng/
README 1 This is libcap-ng, downloaded from
5 source code is unmodified from upstream.
  /external/skia/tools/tests/jsondiff/output/old-vs-new/output-expected/
stdout 6 "missing-from-new.png": {
10 "missing-from-old.png": {
  /external/srec/config/en.us/
adb_pull_system_usr_srec_liveaudio.sh 1 # Run this from Ubuntu to copy files from device
  /external/valgrind/main/gdbserver_tests/
mcmain_pic.stdout.exp 2 another func called msg called from gdb
4 another func called msg called from main
  /prebuilts/misc/common/ninepatch/
PREBUILT 1 The object in this prebuilt directory can be rebuilt from
4 From: http://android.git.kernel.org/?p=platform/sdk.git;a=commit;h=795a4ad26824b0e553ca49161a8b4999b8181f8d
  /prebuilts/misc/common/tools-common/
PREBUILT 1 tools-common-prebuilt.jar in this prebuilt directory was copied from
4 From version c1cc82fe500173f555fdc5fbd1e1aba940702e10 of the platform/prebuilts/devtools project.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
badsyntax_future3.py 2 from __future__ import nested_scopes
3 from __future__ import rested_snopes
badsyntax_future5.py 2 from __future__ import nested_scopes
4 from __future__ import nested_scopes
badsyntax_future7.py 3 from __future__ import nested_scopes; import string; from __future__ import \
4 nested_scopes namespace

Completed in 1098 milliseconds

<<11121314151617181920>>