HomeSort by relevance Sort by last modified time
    Searched refs:contexts (Results 76 - 100 of 254) sorted by null

1 2 34 5 6 7 8 91011

  /external/webkit/Source/WebCore/platform/text/
BidiContext.cpp 75 // DOM modification/editing -- so we copy all the non-unicode contexts, and
79 Vector<BidiContext*, 64> contexts; local
82 contexts.append(iter);
84 ASSERT(contexts.size());
86 RefPtr<BidiContext> topContext = copyContextAndRebaselineLevel(contexts.last(), 0);
87 for (int i = contexts.size() - 1; i > 0; --i)
88 topContext = copyContextAndRebaselineLevel(contexts[i - 1], topContext.get());
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 155 contexts = new Context[32];
158 contexts[contextPos] = currentContext = new Context();
201 int max = contexts.length;
203 contexts [contextPos].declsOK = false;
209 System.arraycopy(contexts, 0, newContexts, 0, max);
211 contexts = newContexts;
215 currentContext = contexts[contextPos];
217 contexts[contextPos] = currentContext = new Context();
222 currentContext.setParent(contexts[contextPos - 1]);
242 contexts[contextPos].clear()
520 private Context contexts[]; field in class:NamespaceSupport
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
build.properties 22 contexts.xml,\
  /external/valgrind/main/drd/tests/
annotate_hb_race.stderr.exp 8 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
annotate_ignore_rw.stderr.exp 9 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
annotate_publish_hg.stderr.exp 7 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
pth_uninitialized_cond.stderr.exp 10 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
atomic_var.stderr.exp 12 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
custom_alloc_fiw.stderr.exp 12 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
pth_barrier_reinit.stderr.exp 10 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
pth_cancel_locked.stderr.exp 11 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
pth_mutex_reinit.stderr.exp 11 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
read_and_free_race.stderr.exp 14 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
sem_as_mutex3.stderr.exp 12 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
sem_open3.stderr.exp 12 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
sem_open_traced.stderr.exp 9 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc01_simple_race.stderr.exp 13 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
tc12_rwl_trivial.stderr.exp 10 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
tc15_laog_lockdel.stderr.exp 8 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/helgrind/tests/
cond_timedwait_invalid.stderr.exp 15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.cpp 51 DEFINE_STATIC_LOCAL(Vector<GraphicsContext3D*>, contexts, ());
52 return contexts;
70 Vector<GraphicsContext3D*>& contexts = activeGraphicsContexts();
71 size_t location = contexts.find(context);
73 contexts.remove(location);
80 Vector<GraphicsContext3D*>& contexts = activeGraphicsContexts(); local
81 for (size_t i = 0; i < contexts.size(); i++)
82 contexts[i]->~GraphicsContext3D();
  /external/libselinux/src/
label.c 46 struct selabel_lookup_rec *contexts)
50 if (!rec->validating || contexts->validated)
53 rc = selinux_validate(&contexts->ctx_raw);
57 contexts->validated = 1;
  /external/llvm/tools/llvm-diff/
DiffConsumer.cpp 73 unsigned N = contexts.size();
76 DiffContext &ctxt = contexts[N];
95 if (contexts.empty()) return;
97 I = contexts.begin(), E = contexts.end(); I != E; ++I) {
144 contexts.push_back(DiffContext(L, R));
149 Differences |= contexts.back().Differences;
150 contexts.pop_back();
  /external/valgrind/main/gdbserver_tests/
mcclean_after_fork.stderr.exp 15 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
mcmain_pic.stderr.exp 13 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)

Completed in 760 milliseconds

1 2 34 5 6 7 8 91011