HomeSort by relevance Sort by last modified time
    Searched refs:previous (Results 101 - 125 of 929) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/valgrind/main/helgrind/tests/
tc01_simple_race.stderr.exp 20 This conflicts with a previous write of size 4 by thread #x
35 This conflicts with a previous write of size 4 by thread #x
tc05_simple_race.stderr.exp 20 This conflicts with a previous write of size 4 by thread #x
35 This conflicts with a previous write of size 4 by thread #x
tc16_byterace.stderr.exp 20 This conflicts with a previous write of size 1 by thread #x
35 This conflicts with a previous write of size 1 by thread #x
tc06_two_races.stderr.exp 20 This conflicts with a previous write of size 4 by thread #x
35 This conflicts with a previous write of size 4 by thread #x
50 This conflicts with a previous write of size 4 by thread #x
65 This conflicts with a previous write of size 4 by thread #x
  /libcore/luni/src/main/java/libcore/icu/
NativeCollation.java 39 public static native int previous(long address); method in class:NativeCollation
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 80 public Object previous() { method in class:OldListIteratorTest.Mock_ListIterator
138 l.previous();
148 assertTrue(objArray[i].equals(l.previous()));
152 l.previous();
  /packages/apps/Settings/src/com/android/settings/accessibility/
LocalePreference.java 73 // check previous entry:
77 final LocaleInfo previous = localeInfos[finalSize - 1]; local
78 if (previous.locale.getLanguage().equals(language)
79 && !previous.locale.getLanguage().equals("zz")) {
80 previous.label = getDisplayName(
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGText.cpp 130 static inline bool findPreviousAndNextAttributes(RenderObject* start, RenderSVGInlineText* locateElement, bool& stopAfterNext, SVGTextLayoutAttributes*& previous, SVGTextLayoutAttributes*& next)
144 previous = text->layoutAttributes();
155 if (findPreviousAndNextAttributes(child, locateElement, stopAfterNext, previous, next))
204 SVGTextLayoutAttributes* previous = 0; local
207 findPreviousAndNextAttributes(this, attributes->context(), stopAfterNext, previous, next);
209 if (previous)
210 m_layoutAttributesBuilder.buildLayoutAttributesForTextRenderer(previous->context());
264 SVGTextLayoutAttributes* previous = 0; local
267 findPreviousAndNextAttributes(this, text, stopAfterNext, previous, next);
269 if (previous)
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
jquery-history.js 42 var previous = $.history.getCurrent();
47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]);
  /external/chromium_org/chrome/browser/policy/
policy_service.cc 61 const PolicyMap& previous,
67 const Value* prev = previous.GetValue(it->first);
  /external/doclava/res/assets/templates/assets/
jquery-history.js 42 var previous = $.history.getCurrent();
47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]);
  /libcore/luni/src/main/java/java/text/
RuleBasedBreakIterator.java 74 @Override public int previous() { method in class:RuleBasedBreakIterator
75 return wrapped.previous();
  /libcore/luni/src/main/java/java/util/
AbstractList.java 122 public E previous() { method in class:AbstractList.FullListIterator
210 public E previous() { method in class:AbstractList.SubAbstractList.SubAbstractListIterator
212 return iterator.previous();
218 int previous = iterator.previousIndex(); local
219 if (previous >= start) {
220 return previous - start;
381 * The object is inserted before any previous element at the specified
585 if (object.equals(it.previous())) {
591 if (it.previous() == null) {
670 * @return the previous element at the index
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSortedMultiset.java 41 CumulativeCountEntry(E element, int count, @Nullable CumulativeCountEntry<E> previous) {
44 this.cumulativeCount = count + ((previous == null) ? 0 : previous.cumulativeCount);
61 CumulativeCountEntry<E> previous = null; local
64 previous = new CumulativeCountEntry<E>(entry.getElement(), entry.getCount(), previous));
  /external/chromium-trace/trace-viewer/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/chromium_org/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/srtp/crypto/cipher/
aes_cbc.c 140 /* set state and 'previous' block to iv */
142 c->previous.v8[i] = c->state.v8[i] = input[i];
204 v128_t state, previous; local
216 /* set 'previous' block to iv*/
218 previous.v8[i] = c->previous.v8[i];
222 v128_hex_string(&previous));
245 * exor previous ciphertext block out of plaintext, and write new
247 * to the 'previous' block
251 *output++ = state.v8[i] ^ previous.v8[i]
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ulist.c 18 UListNode *previous; member in struct:UListNode
63 newItem->previous = NULL;
88 newItem->previous = list->tail;
114 newItem->previous = NULL;
116 list->head->previous = newItem;
  /external/chromium_org/v8/src/
unicode-inl.h 111 unsigned Utf8::Encode(char* str, uchar c, int previous) {
122 Utf16::IsLeadSurrogate(previous)) {
125 Utf16::CombineSurrogatePair(previous, c),
153 unsigned Utf8::Length(uchar c, int previous) {
160 Utf16::IsLeadSurrogate(previous)) {
  /external/icu4c/common/
ulist.c 18 UListNode *previous; member in struct:UListNode
63 newItem->previous = NULL;
88 newItem->previous = list->tail;
114 newItem->previous = NULL;
116 list->head->previous = newItem;
  /external/v8/src/
unicode-inl.h 81 unsigned Utf8::Encode(char* str, uchar c, int previous) {
92 Utf16::IsLeadSurrogate(previous)) {
95 Utf16::CombineSurrogatePair(previous, c),
123 unsigned Utf8::Length(uchar c, int previous) {
130 Utf16::IsLeadSurrogate(previous)) {
  /frameworks/base/libs/hwui/
PatchCache.cpp 183 BufferBlock* previous = NULL; local
190 previous = block;
199 previous = NULL;
210 if (previous) {
211 previous->next = block->next;
  /libcore/dex/src/main/java/com/android/dex/
TableOfContents.java 117 Section previous = null; local
133 if (previous != null && previous.off > section.off) {
134 throw new DexException("Map is unsorted at " + previous + ", " + section);
137 previous = section;
  /external/chromium/net/base/
host_resolver_proc.cc 59 HostResolverProc::HostResolverProc(HostResolverProc* previous) {
60 SetPreviousProc(previous);
63 if (!previous)
  /external/chromium_org/net/dns/
host_resolver_proc.cc 61 HostResolverProc::HostResolverProc(HostResolverProc* previous) {
62 SetPreviousProc(previous);
65 if (!previous)

Completed in 1166 milliseconds

1 2 3 45 6 7 8 91011>>