/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
TextImpl.java | 145 * Tries to remove this node using itself and the previous node as context. 147 * If the previous node exists and is a text node, this node's text will be 162 Node previous = getPreviousSibling(); local 163 if (previous == null || previous.getNodeType() != Node.TEXT_NODE) { 167 TextImpl previousText = (TextImpl) previous;
|
/packages/apps/Calendar/src/com/android/calendar/ |
DayOfMonthCursor.java | 98 * Move up one box, potentially flipping to the previous month. 99 * @return Whether the month was flipped to the previous month 108 // flip back to previous month, same column, first position within month 138 * Move left one box, potentially flipping to the previous month. 139 * @return Whether the month was flipped to the previous month 154 // need to flip to last day of previous month
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
uaccess_32.h | 64 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
uaccess_32.h | 64 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
uaccess_32.h | 64 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
uaccess_32.h | 64 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
uaccess_32.h | 64 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 71 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 77 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/ |
error_fixer.py | 124 iterator = iterator.previous 161 tokenutil.InsertSpaceTokenAfter(token.previous) 179 tokenutil.InsertBlankLineAfter(token.previous) 189 if not token.previous: 203 tokenutil.DeleteToken(token.previous) 205 tokenutil.InsertBlankLineAfter(token.previous) 233 if token.attached_object.type_end_token == start_token.previous: 238 tokenutil.InsertTokenAfter(new_token, start_token.previous) 249 last_type = end_token.previous 252 last_type = last_type.previous [all...] |
/external/icu/icu4c/source/i18n/ |
uitercollationiterator.cpp | 54 if(!U16_IS_TRAIL(trail) && trail >= 0) { iter.previous(&iter); } 117 iter.previous(&iter); 148 iter.previous(&iter); 171 iter.previous(&iter); 183 iter.previous(&iter); 207 c = iter.previous(&iter); 216 CollationFCD::hasTccc(prev = iter.previous(&iter))) { 229 prev = iter.previous(&iter); 393 // Fetch the previous character and its fcd16 value. 406 // Fails FCD check. Find the previous FCD boundary and normalize [all...] |
/external/v8/src/ |
hydrogen-escape-analysis.cc | 63 HCapturedObject* HEscapeAnalysisPhase::NewState(HInstruction* previous) { 67 state->InsertAfter(previous); 74 HInstruction* previous) { 76 HCapturedObject* state = NewState(previous); 86 HInstruction* previous, 88 HBasicBlock* block = previous->block(); 89 HCapturedObject* state = NewState(previous); 101 HInstruction* previous, 103 HCapturedObject* state = NewState(previous); 207 state = NewStateCopy(store->previous(), state) [all...] |
/frameworks/av/services/audioflinger/ |
FastThread.cpp | 108 //ALOG_ASSERT(mCurrent == &sInitial && previous == &sInitial); 120 // We want to always have a valid reference to the previous (non-idle) state. 121 // However, the state queue only guarantees access to current and previous states. 125 // non-idle -> non-idle update previous from current in-place 126 // non-idle -> idle update previous from copy of current 127 // idle -> idle don't update previous 128 // idle -> non-idle don't update previous 149 // << current, previous, command, dumpState >> 158 // FIXME consider checking previous state and only perform if previous != COLD_IDL [all...] |
/frameworks/base/libs/hwui/renderthread/ |
RenderThread.cpp | 74 RenderTask* previous = nullptr; local 77 previous = next; 80 if (!previous) { 84 previous->mNext = task; 117 RenderTask* previous = mHead; local 118 while (previous->mNext != task) { 119 previous = previous->mNext; 121 previous->mNext = task->mNext; 123 mTail = previous; [all...] |
/external/guava/guava/src/com/google/common/collect/ |
DiscreteDomain.java | 29 * operations: {@link #next}, {@link #previous} and {@link #distance}, according 66 @Override public Integer previous(Integer value) { method in class:DiscreteDomain.IntegerDomain 113 @Override public Long previous(Long value) { method in class:DiscreteDomain.LongDomain 171 @Override public BigInteger previous(BigInteger value) { method in class:DiscreteDomain.BigIntegerDomain 197 * #previous}. 214 public abstract C previous(C value); method in class:DiscreteDomain 218 * #next} (if positive) or {@link #previous} (if negative) are needed to reach
|
Cut.java | 257 @Nullable C previous = domain.previous(endpoint); local 258 return (previous == null) ? Cut.<C>belowAll() : new AboveValue<C>(previous); 266 @Nullable C previous = domain.previous(endpoint); local 267 return (previous == null) ? Cut.<C>aboveAll() : new AboveValue<C>(previous); 284 return domain.previous(endpoint);
|
/external/jetty/src/java/org/eclipse/jetty/security/ |
IdentityService.java | 44 * @return an object representing the previous associated state 51 * and restore previous identity. 52 * @param previous The opaque object returned from a call to {@link IdentityService#associate(UserIdentity)} 54 void disassociate(Object previous); 61 * @return The previous runAsToken or null. 68 * and reassociate the previous token. 69 * @param token RUNAS returned from previous associateRunAs call
|
/frameworks/base/libs/hwui/ |
Snapshot.cpp | 32 , previous(nullptr) 47 * the previous snapshot. 51 , previous(s) 124 // we may have to modify the previous snapshot's clip rect and clip 125 // region if the previous restore() call did not restore the clip 153 current = current->previous.get(); 246 this, flags, previous.get(), getViewportHeight(), isIgnored(), !mClipArea->isSimple());
|
/libcore/luni/src/main/java/java/text/ |
CollationElementIterator.java | 47 * <p>Note that calls to {@code next} and {@code previous} can not be mixed. 56 * {@code next()} and {@code previous()} when the end or the 75 * call to either the {@link #next()} or {@link #previous()} 114 * Returns the previous collation element in the source string or {@code NULLORDER} if 117 public int previous() { method in class:CollationElementIterator 118 return this.icuIterator.previous(); 134 * string. The next call to {@link #next()} or {@link #previous()} will
|
/external/clang/test/SemaCXX/ |
dllexport.cpp | 55 extern int GlobalRedecl3; // expected-note{{previous declaration is here}} 59 extern int GlobalRedecl4; // expected-note{{previous declaration is here}} 111 template<typename T> extern int VarTmplRedecl3; // expected-note{{previous declaration is here}} 196 void redecl3(); // expected-note{{previous declaration is here}} 200 void redecl4(); // expected-note{{previous declaration is here}} 204 void redecl5(); // expected-note{{previous declaration is here}} 211 friend void friend3(); // expected-note{{previous declaration is here}} 212 friend void friend4(); // expected-note{{previous declaration is here}} 262 template<typename T> void funcTmplRedecl3(); // expected-note{{previous declaration is here}} 265 template<typename T> void funcTmplRedecl4(); // expected-note{{previous declaration is here} [all...] |
/external/clang/lib/Format/ |
UnwrappedLineFormatter.cpp | 448 // Remove trailing whitespace of the previous line. 543 assert(!B.First->Previous); 547 B.First->Previous = A.Last; 631 while (Current->Previous) { 633 Current = Current->Previous; 642 printLineState((*I)->Previous->State); 645 << (*I)->Previous->State.NextToken->Tok.getName() << ": " 675 FormatToken &Previous = *State.NextToken->Previous; 677 Previous.Children.size() == 0 [all...] |
FormatToken.cpp | 62 if (State.NextToken == nullptr || !State.NextToken->Previous || 63 !State.NextToken->Previous->Previous) 67 const FormatToken *LBrace = State.NextToken->Previous->Previous; 76 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth; 94 // If the previous token was one of our commas, we are now on the next item. 95 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) { 176 ItemEnd = Token->MatchingParen->Previous;
|
TokenAnnotator.h | 49 // Calculate Next and Previous for all tokens. Note that we must overwrite 50 // Next and Previous for every token, as previous formatting runs might have 52 First->Previous = nullptr; 59 I->Tok->Previous = Current;
|
/external/clang/lib/Frontend/ |
FrontendAction.cpp | 40 ASTDeserializationListener *Previous; 45 ASTDeserializationListener *Previous, bool DeletePrevious) 46 : Previous(Previous), DeletePrevious(DeletePrevious) {} 49 delete Previous; 53 if (Previous) 54 Previous->ReaderInitialized(Reader); 58 if (Previous) 59 Previous->IdentifierRead(ID, II); 62 if (Previous) [all...] |
/external/svox/pico/lib/ |
picokdt.h | 188 tree outputs (not mapped with output map table) of previous 235 tree input vector: 0-2 POS or POSgroup for each of the three previous words 239 pre3 - pre1: POSgroup or POS for the previous three words 280 tree input vector: 0-8 the 4 previous, current, and 4 following graphemes 329 tree input vector: 0-1 POS for each of the two previous words 335 pre2 - pre1: POS for the previous two words 338 nrwordspre: number of words left (previous) of current word 376 tree input vector: 0-1 POS for each of the two previous words 380 7 nr words left (previous) to any bound 386 pre2 - pre1: POS for the previous two word [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
FCDIterCollationIterator.java | 61 iter.previous(); 73 iter.previous(); 98 c = iter.previous(); 107 CollationFCD.hasTccc(prev = iter.previous())) { 120 prev = iter.previous(); 158 iter.previous(); 190 iter.previous(); 355 // Fetch the previous character and its fcd16 value. 368 // Fails FCD check. Find the previous FCD boundary and normalize.
|
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/common/ |
tokens.py | 42 previous: The token before this one. 70 self.previous = None 87 return not self.previous or self.previous.line_number != self.line_number 139 node = node.previous
|