Searched defs:first (Results 26 - 50 of 104) sorted by relevance

12345

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp76 iterator first = m_pSectionData->getFragmentList().begin(); local
78 assert(first != m_pSectionData->getFragmentList().end() &&
81 ARMPLT0* plt0 = &(llvm::cast<ARMPLT0>(*first));
H A DARMException.cpp236 // Move the first fragment (align fragment) and last fragment (null fragment)
240 SectionData::iterator first = sectData->begin(); local
244 assert(first->getKind() == Fragment::Alignment);
247 tmp.splice(tmp.end(), list, first);
305 // Add the first and the last fragment back.
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp92 // get first plt1 entry
122 iterator first = m_pSectionData->getFragmentList().begin(); local
124 assert(first != m_pSectionData->getFragmentList().end() &&
127 PLTEntryBase* plt0 = &(llvm::cast<PLTEntryBase>(*first));
/frameworks/rs/api/
H A DScanner.cpp153 size_t first = docStart + 3; local
154 size_t last = s->find('\"', first);
158 *documentation = s->substr(first, last - first);
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dc2_9pf.cpp200 i.e. first or second pair. Where each pair contains 2 tracks.
203 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
209 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
215 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
221 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
891 Word16 i, j, k, track, first, index, _sign[NB_PULSE], indx, rsign;
916 first = pt[track];
918 if (first == 0) {
1000 Word16 first; local
1032 first
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.cpp488 bool first = true; local
517 if (first || score > bestScore) {
522 first = false;
527 if (first) {
/frameworks/base/core/java/android/content/
H A DClipData.java636 * @param item The contents of the first item in the clip.
652 * @param item The contents of the first item in the clip.
877 boolean first;
879 first = !mClipDescription.toShortString(b);
881 first = true;
884 if (!first) {
887 first = false;
894 if (!first) {
897 first = false;
905 public void toShortStringShortItems(StringBuilder b, boolean first) { argument
[all...]
/frameworks/base/core/java/android/view/
H A DFocusFinder.java206 // (so the first plausible view will become the best choice)
281 // to be a better candidate, need to at least be a candidate in the first
391 * @param rect1 The first rectangle
623 public int compare(View first, View second) { argument
624 if (first == second) {
628 getRect(first, mFirstRect);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHotplugDetectionAction.java75 // The first check for all devices will be initiated 15 seconds later.
154 // At first, check removed devices.
209 private static BitSet complement(BitSet first, BitSet second) { argument
211 BitSet clone = (BitSet) first.clone();
/frameworks/base/tools/aapt/
H A DStringPool.cpp100 // Strings with styles go first, to reduce the size of the styles array.
195 const bool first = vidx < 0; local
198 if (first || styled || !mergeDuplicates) {
200 if (first) {
327 // This is the first time we have seen the entry, so add
/frameworks/base/tools/split-select/
H A DMain.cpp80 bool first = true; local
88 if (!first) {
91 first = false;
241 // Skip over the first argument.
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonPLT.cpp54 iterator first = m_pSectionData->getFragmentList().begin(); local
56 assert(first != m_pSectionData->getFragmentList().end() &&
59 PLTEntryBase* plt0 = &(llvm::cast<PLTEntryBase>(*first));
69 // get first plt1 entry
/frameworks/compile/slang/
H A Dslang_rs_export_foreach.cpp77 bool first = true; local
81 if (first)
82 first = false;
154 // first special parameter.
242 // first special.
293 // - Sets *IndexOfFirstSpecialParameter to the index of the first special parameter, or
419 // If this is the first time we find a special parameter, save it.
621 // Check if first parameter is a pointer (which is required for ForEach).
/frameworks/native/libs/binder/
H A DBufferedTextOutput.cpp171 const char* first = txt; local
177 // Special cases for first data on a line.
196 vec.iov_base = (void*)first;
197 vec.iov_len = lastLine-first;
206 err = b->append(first, txt-first);
/frameworks/rs/
H A DrsList.h30 List() : last(nullptr), first(&firstBuffer.data.typed),
31 beginIterator(this, &firstBuffer, const_cast<T*>(first)),
33 current = const_cast<T*>(first);
38 List(InputIterator first, InputIterator last) : List() { argument
39 for (InputIterator it = first; it != last; ++it) {
109 bool empty() const { return current == first; }
111 T& front() const { return *const_cast<T*>(first); }
122 const T* first; member in class:android::renderscript::List
H A DrsMap.h13 Pair(T1 f1, T2 f2) : first(f1), second(f2) {}
15 T1 first; member in class:android::renderscript::Pair
20 Pair<T1, T2> make_pair(T1 first, T2 second) { argument
21 return Pair<T1, T2>(first, second);
61 if (node->entry.first == key) {
69 node->entry.first = key;
148 if (node->entry.first == key) {
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
H A DSortedListTest.java339 // Add first 5 even numbers. Test adding to an empty list.
361 // Add first 10 odd numbers.
362 // Test the merge when the new items run out first.
371 // Test the merge when the old items run out first.
397 // Add first 5 even numbers.
550 // Add first 5 even numbers.
782 final int first, second; field in class:SortedListTest.Pair
784 public Pair(int first) { argument
785 this.first = first;
789 Pair(int first, int second) argument
[all...]
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DParameterManagerWrapper.cpp162 char *first = strtok(valueName, ":"); local
164 ALOG_ASSERT((first != NULL) && (strlen(first) != 0) &&
168 if (!convertTo<string, uint32_t>(first, index)) {
169 ALOGE("%s: Invalid index(%s) found", __FUNCTION__, first);
/frameworks/base/core/java/android/widget/
H A DAppSecurityPermissions.java144 boolean first, CharSequence newPermPrefix, String packageName,
156 if (first) {
497 MyPermissionInfo perm, boolean first, CharSequence newPermPrefix, boolean showRevokeUI) {
498 return getPermissionItemView(mContext, mInflater, grp, perm, first, newPermPrefix,
503 MyPermissionGroupInfo grp, MyPermissionInfo perm, boolean first,
509 permView.setPermission(grp, perm, first, newPermPrefix, packageName, showRevokeUI);
143 setPermission(MyPermissionGroupInfo grp, MyPermissionInfo perm, boolean first, CharSequence newPermPrefix, String packageName, boolean showRevokeUI) argument
496 getPermissionItemView(MyPermissionGroupInfo grp, MyPermissionInfo perm, boolean first, CharSequence newPermPrefix, boolean showRevokeUI) argument
502 getPermissionItemView(Context context, LayoutInflater inflater, MyPermissionGroupInfo grp, MyPermissionInfo perm, boolean first, CharSequence newPermPrefix, String packageName, boolean showRevokeUI) argument
H A DRelativeLayout.java1012 // Find the first non-GONE view up the chain
1143 public int compare(View first, View second) { argument
1145 int topDifference = first.getTop() - second.getTop();
1150 int leftDifference = first.getLeft() - second.getLeft();
1155 int heightDiference = first.getHeight() - second.getHeight();
1160 int widthDiference = first.getWidth() - second.getWidth();
1691 * between the view. For instance, if view C needs view A to be processed first
1692 * and view A needs view B to be processed first, the dependency graph
1804 * that needs this node to be processed first.
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java444 // The amount of time until PSS when a process first becomes top.
447 // The amount of time until PSS when a process first goes into the background.
450 // The amount of time until PSS when a process first becomes cached.
465 // The amount of time during testing until PSS when a process first becomes top.
468 // The amount of time during testing until PSS when a process first goes into the background.
591 public static long computeNextPssTime(int procState, boolean first, boolean test, argument
594 ? (first
597 : (first
/frameworks/av/media/libmedia/
H A DIOMX.cpp1089 bool first = true; local
1092 if (first) {
1095 first = false;
1105 if (!first) {
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp755 bool first = true; local
764 if (first) {
766 first = false;
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiRecordSources.java85 // The first byte is used for record source type.
291 // The first 6 bits for format, the 10 bits for major number.
742 private static int threeFieldsToSixBytes(int first, int second, int third, byte[] data, argument
744 shortToByteArray((short) first, data, index);
/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java192 // vsize capture when process first detected; can be used to
399 private int[] collectStats(String statsFile, int parentPid, boolean first, argument
543 if (!first && st.interesting) {

Completed in 1355 milliseconds

12345