Searched defs:from (Results 151 - 175 of 925) sorted by relevance

1234567891011>>

/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...]
/external/smack/src/org/jivesoftware/smackx/
H A DPEPManager.java41 * to hook up custom logic when events are received from another XMPP client through PEPListeners.
84 * are received from remote XMPP clients.
97 * Removes a listener from PEP events.
125 private void firePEPListeners(String from, PEPEvent event) { argument
132 listeners[i].eventReceived(from, event);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDelayInfo.java63 public void setFrom(String from) argument
65 wrappedInfo.setFrom(from);
95 buf.append(" from=\"").append(getFrom()).append("\"");
H A DDelayInformation.java58 private String from; field in class:DelayInformation
78 return from;
85 * @param from the JID of the entity that originally sent the packet.
87 public void setFrom(String from) { argument
88 this.from = from;
138 if (from != null && from.length() > 0) {
139 buf.append(" from=\"").append(from)
[all...]
/external/stlport/src/
H A Dcodecvt.cpp31 const char* from,
34 { return (int)(min) ( __STATIC_CAST(size_t, (end - from)), mx); }
84 const intern_type* from,
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
91 copy(from, from + len, to);
92 from_next = from + len;
99 const extern_type* from,
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
106 copy(__REINTERPRET_CAST(const unsigned char*, from),
30 do_length(state_type&, const char* from, const char* end, size_t mx) const argument
83 do_out(state_type& , const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
98 do_in(state_type& , const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_limit, intern_type*& to_next) const argument
128 do_length(state_type&, const extern_type* from, const extern_type* end, size_t mx) const argument
[all...]
/external/chromium_org/cc/output/
H A Dfilter_operations_unittest.cc144 FilterOperation from = FilterOperation::CreateGrayscaleFilter(0.25f); local
147 FilterOperation blended = FilterOperation::Blend(&from, &to, -0.75);
151 blended = FilterOperation::Blend(&from, &to, 0.75);
155 blended = FilterOperation::Blend(&from, &to, 1.8);
173 FilterOperation from = FilterOperation::CreateSepiaFilter(0.25f); local
176 FilterOperation blended = FilterOperation::Blend(&from, &to, -0.75);
180 blended = FilterOperation::Blend(&from, &to, 0.75);
184 blended = FilterOperation::Blend(&from, &to, 1.8);
202 FilterOperation from = FilterOperation::CreateSaturateFilter(0.25f); local
205 FilterOperation blended = FilterOperation::Blend(&from,
231 FilterOperation from = FilterOperation::CreateHueRotateFilter(3.f); local
260 FilterOperation from = FilterOperation::CreateInvertFilter(0.25f); local
289 FilterOperation from = FilterOperation::CreateBrightnessFilter(3.f); local
318 FilterOperation from = FilterOperation::CreateContrastFilter(3.f); local
347 FilterOperation from = FilterOperation::CreateOpacityFilter(0.25f); local
376 FilterOperation from = FilterOperation::CreateBlurFilter(3.f); local
405 FilterOperation from = FilterOperation::CreateDropShadowFilter( local
447 FilterOperation from = FilterOperation::CreateZoomFilter(2.f, 3); local
476 FilterOperation from = FilterOperation::CreateSaturatingBrightnessFilter(3.f); local
512 FilterOperation from = FilterOperation::CreateReferenceFilter(from_filter); local
549 FilterOperations from; local
649 FilterOperations from; local
667 FilterOperations from; local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dblacklist_unittest.cc69 void Assign(T *to, const T& from) { argument
70 *to = from;
147 // safebrowsing. Blacklist no longer reads from prefs. This is purely a
163 // Test getting different blacklist states from Blacklist.
/external/chromium_org/components/gcm_driver/
H A Dgcm_activity.h52 std::string from; member in struct:gcm::ReceivingActivity
/external/chromium_org/net/tools/dump_cache/
H A Durl_to_filename_encoder.h10 // 3. Provide reverse-mapping from filenames back to URLs.
11 // 4. Be able to distinguish http://x from http://x/ from http://x/index.html.
32 // Sadeesh's slurped directory from Fall 09 and found the following occurances:
184 // Replace all instances of |from| within |str| as |to|.
185 static void ReplaceAll(std::string* str, const std::string& from, argument
188 while ((pos = str->find(from, pos)) != std::string::npos) {
189 str->replace(pos, from.size(), to);
190 pos += from.size();
/external/chromium_org/remoting/test/
H A Dfake_socket_factory.h72 virtual void ReceivePacket(const rtc::SocketAddress& from,
81 const rtc::SocketAddress& from,
87 rtc::SocketAddress from; member in struct:remoting::FakePacketSocketFactory::PendingPacket
93 typedef base::Callback<void(const rtc::SocketAddress& from,
/external/chromium_org/sandbox/win/src/sidestep/
H A Dpreamble_patcher_with_stub.cpp20 // We don't want to call the crt from this code.
22 const char* from = reinterpret_cast<const char*>(source); local
26 to[i] = from[i];
33 // We don't want to call the crt from this code.
109 // take from the preamble to have whole instructions that are 5 bytes or more
146 // Find offset from instruction after jmp, to the replacement function.
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontFace.h74 UnicodeRange(UChar32 from, UChar32 to) argument
75 : m_from(from)
80 UChar32 from() const { return m_from; } function in struct:blink::FINAL::UnicodeRange
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCSSSelectorWatch.cpp15 * contributors may be used to endorse or promote products derived from
55 CSSSelectorWatch& CSSSelectorWatch::from(Document& document) function in class:blink::CSSSelectorWatch
57 CSSSelectorWatch* watch = static_cast<CSSSelectorWatch*>(DocumentSupplement::from(document, kSupplementName));
H A DDocumentLifecycle.cpp15 * contributors may be used to endorse or promote products derived from
51 DocumentLifecycle::DeprecatedTransition::DeprecatedTransition(State from, State to) argument
53 , m_from(from)
159 if (s_deprecatedTransitionStack && m_state == s_deprecatedTransitionStack->from() && state == s_deprecatedTransitionStack->to())
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowList.cpp15 * contributors may be used to endorse or promote products derived from
75 PassRefPtr<ShadowList> ShadowList::blend(const ShadowList* from, const ShadowList* to, double progress) argument
77 size_t fromLength = from ? from->shadows().size() : 0;
89 const ShadowData* fromShadow = i < fromLength ? &from->shadows()[i] : 0;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGEnumeration.cpp15 * contributors may be used to endorse or promote products derived from
112 void SVGEnumerationBase::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*) argument
115 unsigned short fromEnumeration = animationElement->animationMode() == ToAnimation ? m_value : toSVGEnumerationBase(from)->value();
H A DSVGInteger.cpp15 * contributors may be used to endorse or promote products derived from
75 void SVGInteger::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
79 RefPtr<SVGInteger> fromInteger = toSVGInteger(from);
H A DSVGNumber.cpp15 * contributors may be used to endorse or promote products derived from
99 void SVGNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
103 RefPtr<SVGNumber> fromNumber = toSVGNumber(from);
H A DSVGNumberOptionalNumber.cpp15 * contributors may be used to endorse or promote products derived from
90 void SVGNumberOptionalNumber::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*) argument
94 RefPtr<SVGNumberOptionalNumber> fromNumber = toSVGNumberOptionalNumber(from);
/external/chromium_org/third_party/WebKit/Source/modules/beacon/
H A DNavigatorBeacon.cpp33 NavigatorBeacon& NavigatorBeacon::from(Navigator& navigator) function in class:blink::NavigatorBeacon
35 NavigatorBeacon* supplement = static_cast<NavigatorBeacon*>(WillBeHeapSupplement<Navigator>::from(navigator, supplementName()));
93 return NavigatorBeacon::from(navigator).sendBeacon(context, urlstring, data, exceptionState);
109 return NavigatorBeacon::from(navigator).sendBeacon(context, urlstring, data, exceptionState);
125 return NavigatorBeacon::from(navigator).sendBeacon(context, urlstring, data, exceptionState);
141 return NavigatorBeacon::from(navigator).sendBeacon(context, urlstring, data, exceptionState);
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationController.cpp38 DeviceOrientationController& DeviceOrientationController::from(Document& document) function in class:blink::DeviceOrientationController
40 DeviceOrientationController* controller = static_cast<DeviceOrientationController*>(DocumentSupplement::from(document, supplementName()));
/external/chromium_org/third_party/WebKit/Source/modules/vibration/
H A DNavigatorVibration.cpp158 return NavigatorVibration::from(*page).vibrate(pattern);
161 NavigatorVibration& NavigatorVibration::from(Page& page) function in class:blink::NavigatorVibration
163 NavigatorVibration* navigatorVibration = static_cast<NavigatorVibration*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFontImpl.cpp15 * contributors may be used to endorse or promote products derived from
90 int from, int to) const
96 runInfo.from = from;
121 WebFloatRect WebFontImpl::selectionRectForText(const WebTextRun& run, const WebFloatPoint& leftBaseline, int height, int from, int to) const argument
124 return m_font.selectionRectForText(run, leftBaseline, height, from, to);
88 drawText(WebCanvas* canvas, const WebTextRun& run, const WebFloatPoint& leftBaseline, WebColor color, const WebRect& clip, bool canvasIsOpaque, int from, int to) const argument
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDequeTest.cpp44 void checkNumberSequence(Deque<int>& deque, int from, int to, bool increment) argument
48 int step = from < to ? 1 : -1;
49 for (int i = from; i != to + step; i += step) {
67 void checkNumberSequenceReverse(Deque<int>& deque, int from, int to, bool increment)
71 int step = from < to ? 1 : -1;
72 for (int i = from; i != to + step; i += step) {
H A DStdLibExtras.h113 inline TO bitwise_cast(FROM from) argument
117 FROM from; member in union:WTF::__anon11439
120 u.from = from;

Completed in 725 milliseconds

1234567891011>>