Home
last modified time | relevance | path

Searched refs:ei (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
DBitmapRegionTileSource.java169 ExifInterface ei = new ExifInterface(); in loadInBackground() local
170 if (readExif(ei)) { in loadInBackground()
171 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION); in loadInBackground()
219 public abstract boolean readExif(ExifInterface ei); in readExif() argument
244 public boolean readExif(ExifInterface ei) { in readExif() argument
246 ei.readExif(mPath); in readExif()
301 public boolean readExif(ExifInterface ei) { in readExif() argument
305 ei.readExif(is); in readExif()
353 public boolean readExif(ExifInterface ei) { in readExif() argument
356 ei.readExif(is); in readExif()
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java565 final EditorInfo ei = getCurrentInputEditorInfo();
567 if (ei != null && ic != null) {
568 if (ei.actionId != 0) {
569 ic.performEditorAction(ei.actionId);
570 } else if ((ei.imeOptions & EditorInfo.IME_MASK_ACTION) != EditorInfo.IME_ACTION_NONE) {
571 ic.performEditorAction(ei.imeOptions & EditorInfo.IME_MASK_ACTION);
2901 EditorInfo ei = getCurrentInputEditorInfo(); in sendDefaultEditorAction() local
2902 if (ei != null && in sendDefaultEditorAction()
2903 (!fromEnterKey || (ei.imeOptions & in sendDefaultEditorAction()
2905 (ei.imeOptions & EditorInfo.IME_MASK_ACTION) != in sendDefaultEditorAction()
[all …]
/frameworks/base/tools/aapt/
DResourceTable.cpp2240 int32_t ei = c->getEntryIndex(); in getResId() local
2241 if (ei < 0) return 0; in getResId()
2244 getResId(p, t, ei)); in getResId()
2387 int32_t ei = c->getEntryIndex(); in getCustomResource() local
2388 if (ei < 0) return 0; in getCustomResource()
2389 return getResId(p, t, ei); in getCustomResource()
2615 for (size_t ei=0; ei<N; ei++) { in assignResourceIds() local
2616 sp<Entry> e = c->getEntries().valueAt(ei); in assignResourceIds()
2663 for (size_t ei=0; ei<N; ei++) { in assignResourceIds() local
2664 sp<ConfigList> c = t->getOrderedConfigs().itemAt(ei); in assignResourceIds()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DREADME.txt33 …com.android.internal.telephony.dataconnection.action_fail_bringup --ei counter 2 --ei fail_cause -3
/frameworks/native/opengl/tools/glgen2/registry/
Dreg.py798 ei = FeatureInfo(feature)
799 self.addElementInfo(feature, ei, 'extension', self.extdict)
1035 ei = self.extdict[key]
1036 extName = ei.name
1043 pat = '^(' + ei.elem.get('supported') + ')$'
1070 ei.emit = True
1071 features.append(ei)
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
DWallpaperCropActivity.java279 ExifInterface ei = new ExifInterface(); in getRotationFromExifHelper() local
284 ei.readExif(path); in getRotationFromExifHelper()
288 ei.readExif(bis); in getRotationFromExifHelper()
292 ei.readExif(bis); in getRotationFromExifHelper()
294 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION); in getRotationFromExifHelper()
/frameworks/native/services/inputflinger/reader/include/
DEventHub.h394 size_t ei = endIndex % WIDTH; // End index in end element in any() local
397 size_t nBits = se == ee ? ei - si : WIDTH - si; in any()
411 if (ei > 0 && se <= ee) { in any()
413 Element mask = (1 << ei) - 1; in any()
/frameworks/base/libs/androidfw/include/androidfw/
DLoadedArsc.h142 iterator(const LoadedPackage* lp, size_t ti, size_t ei);
/frameworks/base/libs/androidfw/
DResourceTypes.cpp5126 const base::expected<size_t, NullOrIOError> ei = in findEntry() local
5128 if (!ei.has_value()) { in findEntry()
5143 if (dtohl(entry->key.index) == (size_t) *ei) { in findEntry()
7208 for (auto ei = ti->second.cbegin(); ei != ti->second.cend(); ++ei) { in IdmapMatchingResources() local
7209 assert(lastSeen == 0xffffffff || lastSeen < ei->first); in IdmapMatchingResources()
7210 mEntryPadding[ei->first] = (lastSeen == 0xffffffff) ? 0 : ei->first - lastSeen - 1; in IdmapMatchingResources()
7211 lastSeen = ei->first; in IdmapMatchingResources()
7212 totalEntries += 1 + mEntryPadding[ei->first]; in IdmapMatchingResources()
7366 auto ei = ti->second.cbegin(); in createIdmap() local
7367 *typeData++ = htods(Res_GETTYPE(ei->first) + 1); // write: target type id in createIdmap()
[all …]
DLoadedArsc.cpp198 LoadedPackage::iterator::iterator(const LoadedPackage* lp, size_t ti, size_t ei) in iterator() argument
201 entryIndex_(ei), in iterator()