Searched refs:from (Results 426 - 450 of 3600) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/resources/options/
H A Dimport_data_overlay.css9 #import-from-div {
/external/chromium_org/content/renderer/
H A Dshared_memory_seqlock_reader.cc28 content::OneWriterSeqLock* seqlock, void* final, void* temp, void* from,
40 memcpy(temp, from, size);
27 FetchFromBuffer( content::OneWriterSeqLock* seqlock, void* final, void* temp, void* from, size_t size) argument
/external/chromium_org/jingle/notifier/listener/
H A Dpush_notifications_subscribe_task_unittest.cc39 subscription.from = "from.test.com";
42 subscription.from = "from.test2.com";
52 "<item channel=\"test_channel1\" from=\"from.test.com\"/>"
53 "<item channel=\"test_channel2\" from=\"from.test2.com\"/>"
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMicrotask.cpp15 * may be used to endorse or promote products derived from this
45 V8PerIsolateData* isolateData = V8PerIsolateData::from(isolate);
60 return V8PerIsolateData::from(isolate)->performingMicrotaskCheckpoint();
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGBoolean.cpp15 * contributors may be used to endorse or promote products derived from
63 void SVGBoolean::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
66 bool fromBoolean = animationElement->animationMode() == ToAnimation ? m_value : toSVGBoolean(from)->value();
/external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
H A DCredentialManagerClient.h29 static CredentialManagerClient* from(Page*);
30 static CredentialManagerClient* from(ExecutionContext*);
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DMediaKeysController.h23 static MediaKeysController* from(Page* page) { return static_cast<MediaKeysController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
H A DPushController.h25 static PushController* from(Page* page) { return static_cast<PushController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseClient.cpp15 * contributors may be used to endorse or promote products derived from
46 DatabaseClient* DatabaseClient::from(ExecutionContext* context) function in class:blink::DatabaseClient
48 return static_cast<DatabaseClient*>(WillBeHeapSupplement<Page>::from(toDocument(context)->page(), supplementName()));
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIController.h15 * contributors may be used to endorse or promote products derived from
52 static MIDIController* from(LocalFrame* frame) { return static_cast<MIDIController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName())); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFontImpl.h15 * contributors may be used to endorse or promote products derived from
54 const WebRect& clip, bool canvasIsOpaque, int from = 0, int to = -1) const OVERRIDE;
58 int height, int from = 0, int to = -1) const OVERRIDE;
H A DWorkerPermissionClient.cpp15 * contributors may be used to endorse or promote products derived from
70 WorkerPermissionClient* WorkerPermissionClient::from(ExecutionContext& context) function in class:blink::WorkerPermissionClient
74 return static_cast<WorkerPermissionClient*>(WillBeHeapSupplement<WorkerClients>::from(*clients, supplementName()));
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFont.h15 * contributors may be used to endorse or promote products derived from
69 // |from| and |to| allow the caller to specify a subrange of the given text
73 int from = 0, int to = -1) const = 0;
79 // position as measured from from the left of the run.
83 // |from| -> |to| of the given text run. You can use -1 for |to| to specify
91 // offsetForPosition()), pass in a |leftBaseline| = (0, 0), |from| = 0, and
95 int height, int from = 0, int to = -1) const = 0;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A DSConscript6 from sys import executable as python_cmd
/external/chromium_org/tools/chrome_proxy/
H A Drun_tests17 from telemetry.unittest import gtest_progress_reporter
18 from telemetry.unittest import run_tests
/external/chromium_org/ui/base/models/
H A Dlist_selection_model.cc115 void ListSelectionModel::Move(int from, int to) { argument
116 DCHECK_NE(to, from);
117 bool was_anchor = from == anchor_;
118 bool was_active = from == active_;
119 bool was_selected = IsSelected(from);
120 if (to < from) {
122 DecrementFrom(from + 1);
124 DecrementFrom(from);
/external/clang/test/CodeGen/
H A Dmangle.c71 int foo10(volatile int* add, int from, int to) { argument
73 return llvm_cas(add, from, to);
/external/clang/test/SemaTemplate/
H A Dcopy-ctor-assign.cpp50 void test_X2(X3 &to, X3 from) { argument
51 to = from;
/external/e2fsprogs/util/
H A Dgcc-wall-cleanup16 /In file included from/d
21 /^[ ]*from/d
/external/mesa3d/src/gallium/state_trackers/vega/
H A DSConscript6 from sys import executable as python_cmd
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DQuicktimeTextTrackImpl.java68 long silentTime = sub.from - lastEnd;
97 long silentTime = sub.from - lastEnd;
103 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
131 long from; field in class:QuicktimeTextTrackImpl.Line
136 public Line(long from, long to, String text) { argument
137 this.from = from;
143 return from;
H A DTextTrackImpl.java71 long silentTime = sub.from - lastEnd;
100 long silentTime = sub.from - lastEnd;
106 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
134 long from; field in class:TextTrackImpl.Line
139 public Line(long from, long to, String text) { argument
140 this.from = from;
146 return from;
/external/qemu/android/
H A Dhw-kmsg.c31 kernel_log_read( void* opaque, const uint8_t* from, int len ) argument
36 printf( "%.*s", len, (const char*)from );
/external/qemu/slirp/
H A Dsbuf.c128 * Copy the data from m into sb
164 * Copy data from sbuf to a normal, straight buffer
171 char *from; local
173 from = sb->sb_rptr + off;
174 if (from >= sb->sb_data + sb->sb_datalen)
175 from -= sb->sb_datalen;
177 if (from < sb->sb_wptr) {
179 memcpy(to,from,len);
182 off = (sb->sb_data + sb->sb_datalen) - from;
184 memcpy(to,from,of
[all...]
/external/qemu/slirp-android/
H A Dsbuf.c128 * Copy the data from m into sb
164 * Copy data from sbuf to a normal, straight buffer
171 char *from; local
173 from = sb->sb_rptr + off;
174 if (from >= sb->sb_data + sb->sb_datalen)
175 from -= sb->sb_datalen;
177 if (from < sb->sb_wptr) {
179 memcpy(to,from,len);
182 off = (sb->sb_data + sb->sb_datalen) - from;
184 memcpy(to,from,of
[all...]

Completed in 575 milliseconds

<<11121314151617181920>>