Searched defs:from (Results 101 - 125 of 873) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DRefCountedSupplement.h61 static ThisType* from(Supplementable<T>* host, const char* key) function in class:WebCore::RefCountedSupplement
H A DSupplementable.h43 // should only be accessed from within the thread that created them. The
44 // 2 classes are not designed for safe access from another thread. Violating
70 // MyClass* MyClass::from(MySupplementable* host)
72 // return reinterpret_cast<MyClass*>(Supplement<MySupplementable>::from(host, supplementName()));
78 // provideTo and from happen on the same thread. If you want to provide
106 static Supplement<T>* from(Supplementable<T>* host, const char* key) function in class:WebCore::Supplement
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DSegmentedFontData.h37 FontDataRange(UChar32 from, UChar32 to, PassRefPtr<SimpleFontData> fontData) argument
38 : m_from(from)
44 UChar32 from() const { return m_from; } function in struct:WebCore::FontDataRange
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
H A DCustomFilterArrayParameter.h51 virtual PassRefPtr<CustomFilterParameter> blend(const CustomFilterParameter* from, double progress) argument
53 if (!from || !isSameType(*from))
56 const CustomFilterArrayParameter* fromArray = static_cast<const CustomFilterArrayParameter*>(from);
H A DCustomFilterNumberParameter.h51 virtual PassRefPtr<CustomFilterParameter> blend(const CustomFilterParameter* from, double progress) argument
53 if (!from || !isSameType(*from))
55 const CustomFilterNumberParameter* fromNumber = static_cast<const CustomFilterNumberParameter*>(from);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DTransformOperations.cpp68 TransformOperations TransformOperations::blendByMatchingOperations(const TransformOperations& from, const double& progress) const argument
72 unsigned fromSize = from.operations().size();
76 RefPtr<TransformOperation> fromOperation = (i < fromSize) ? from.operations()[i].get() : 0;
93 TransformOperations TransformOperations::blendByUsingMatrixInterpolation(const TransformOperations& from, double progress) const argument
96 result.operations().append(InterpolatedTransformOperation::create(from, *this, progress));
100 TransformOperations TransformOperations::blend(const TransformOperations& from, double progress) const argument
102 if (from == *this)
105 if (from.size() && from.operationsMatch(*this))
106 return blendByMatchingOperations(from, progres
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DDocumentXPathEvaluator.cpp46 DocumentXPathEvaluator* DocumentXPathEvaluator::from(ScriptExecutionContext* context) function in class:WebCore::DocumentXPathEvaluator
48 DocumentXPathEvaluator* cache = static_cast<DocumentXPathEvaluator*>(Supplement<ScriptExecutionContext>::from(context, supplementName()));
59 DocumentXPathEvaluator* suplement = from(context);
67 DocumentXPathEvaluator* suplement = from(context);
77 DocumentXPathEvaluator* suplement = from(context);
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionController.cpp56 DeviceMotionController* DeviceMotionController::from(Document* document) function in class:WebCore::DeviceMotionController
58 DeviceMotionController* controller = static_cast<DeviceMotionController*>(Supplement<ScriptExecutionContext>::from(document, supplementName()));
H A DNewDeviceOrientationController.cpp56 NewDeviceOrientationController* NewDeviceOrientationController::from(Document* document) function in class:WebCore::NewDeviceOrientationController
58 NewDeviceOrientationController* controller = static_cast<NewDeviceOrientationController*>(Supplement<ScriptExecutionContext>::from(document, supplementName()));
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dsslfingerprint.h15 * derived from this software without specific prior written permission.
87 SSLFingerprint(const SSLFingerprint& from) argument
88 : algorithm(from.algorithm), digest(from.digest) {}
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.h16 // contributors may be used to endorse or promote products derived from
36 // from protocol-compiler-generated code, which may reside in other components.
370 // Fields inherited from superclasses *can* have non-constant offsets,
407 inline To dynamic_cast_if_available(From from) { argument
411 return dynamic_cast<To>(from);
/external/chromium_org/tools/perf_expectations/tests/
H A Dperf_expectations_unittest.py56 raise Exception, "Error trying to import simplejson from %s (%s)" % \
57 (load_path, msg) namespace
/external/chromium_org/ui/views/examples/
H A Ddouble_split_view_example.cc21 void SetColor(SkColor from, SkColor to);
23 // Overridden from View.
37 void SplittedView::SetColor(SkColor from, SkColor to) { argument
38 set_background(Background::CreateVerticalGradientBackground(from, to));
/external/chromium_org/v8/src/
H A Dregexp-stack.cc14 // from this software without specific prior written permission.
66 char* RegExpStack::RestoreStack(char* from) { argument
68 OS::MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
69 return from + size;
/external/chromium_org/v8/test/cctest/
H A Dtest-code-stubs.cc14 // from this software without specific prior written permission.
75 double from,
78 int result = (*func)(from);
74 RunOneTruncationTestWithTest(ConvertDToIFunc func, double from, double raw) argument
/external/clang/test/CodeGenCXX/
H A Dmangle-local-class-names.cpp16 SSSS( const float& from): bv(from) { } argument
27 SSSS( const float& from) {} argument
40 SSSS( const float& from): bv(from) { } argument
51 SSSS( const float& from) {} argument
63 SSSS(const float& from): bv(from) { } argument
71 SSSS(const float& from): bv(from) { } argument
[all...]
/external/clang/test/SemaTemplate/
H A Dcopy-ctor-assign.cpp50 void test_X2(X3 &to, X3 from) { argument
51 to = from;
/external/guava/guava/src/com/google/common/io/
H A DResources.java49 * read from the given URL.
51 * @param url the URL to read from
69 * @param url the URL to read from
79 * Reads all bytes from a URL into a byte array.
81 * @param url the URL to read from
82 * @return a byte array containing all the bytes from the URL
90 * Reads all characters from a URL into a {@link String}, using the given
93 * @param url the URL to read from
95 * @return a string containing all the characters from the URL
103 * Streams lines from
139 copy(URL from, OutputStream to) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheLoader.java59 * but only the entries for {@code keys} will be returned from {@code getAll}.
66 * @return a map from each key in {@code keys} to the value associated with that key;
78 public static <K, V> CacheLoader<K, V> from(Function<K, V> function) { method in class:CacheLoader
99 * Returns a {@code CacheLoader} which obtains values from a {@code Supplier} (independent of the
102 public static <V> CacheLoader<Object, V> from(Supplier<V> supplier) { method in class:CacheLoader
125 * Thrown to indicate that an invalid response was returned from a call to {@link CacheLoader}.
/external/harfbuzz/src/
H A Dharfbuzz-thai.c105 void HB_ThaiAttributes(HB_Script script, const HB_UChar16 *text, hb_uint32 from, hb_uint32 len, HB_CharAttributes *attributes) argument
108 attributes += from;
109 thaiWordBreaks(text + from, len, attributes);
/external/mockito/src/org/mockito/internal/util/reflection/
H A DLenientCopyTool.java15 public <T> void copyToMock(T from, T mock) { argument
16 copy(from, mock, from.getClass(), mock.getClass().getSuperclass());
19 public <T> void copyToRealObject(T from, T to) { argument
20 copy(from, to, from.getClass(), to.getClass());
23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) { argument
25 copyValues(from, to, fromClazz);
30 private <T> void copyValues(T from, T mock, Class classFrom) { argument
42 fieldCopier.copyValue(from, moc
[all...]
/external/nist-sip/java/gov/nist/core/
H A DServerLogger.java34 void logMessage(SIPMessage message, String from, String to, boolean sender, long time); argument
36 void logMessage(SIPMessage message, String from, String to, String status, argument
39 void logMessage(SIPMessage message, String from, String to, String status, argument
/external/openssh/
H A Ddispatch.c68 dispatch_range(u_int from, u_int to, dispatch_fn *fn) argument
72 for (i = from; i <= to; i++) {
/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 526 milliseconds

1234567891011>>