OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sourcecomponent
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.cpp
184
unsigned char*
sourceComponent
= m_premultipliedImageResult->data();
186
unsigned char* end =
sourceComponent
+ (m_absolutePaintRect.width() * m_absolutePaintRect.height() * 4);
187
while (
sourceComponent
< end) {
188
int alpha =
sourceComponent
[3];
190
destinationComponent[0] = static_cast<int>(
sourceComponent
[0]) * 255 / alpha;
191
destinationComponent[1] = static_cast<int>(
sourceComponent
[1]) * 255 / alpha;
192
destinationComponent[2] = static_cast<int>(
sourceComponent
[2]) * 255 / alpha;
199
sourceComponent
+= 4;
218
unsigned char*
sourceComponent
= m_unmultipliedImageResult->data();
220
unsigned char* end =
sourceComponent
+ (m_absolutePaintRect.width() * m_absolutePaintRect.height() * 4)
[
all
...]
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/resources/
propertychanges.qml
20
sourceComponent
: webViewComponent
newwindows.qml
33
Loader {
sourceComponent
: webViewPage }
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutsProvider.java
116
final ComponentName
sourceComponent
= ComponentName.unflattenFromString(sourceName);
117
if (!checkCallingPackage(
sourceComponent
.getPackageName())) {
118
Log.w(TAG, "Got shortcut for " +
sourceComponent
+ " from a different process");
124
storeShortcut(
sourceComponent
, shortcut);
130
private void storeShortcut(ComponentName
sourceComponent
, ContentValues shortcut) {
133
Source source = getCorpora().getSource(
sourceComponent
.flattenToShortString());
135
Log.w(TAG, "Unknown shortcut source " +
sourceComponent
);
Completed in 401 milliseconds