Searched defs:outCount (Results 1 - 9 of 9) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DBMPSet.java130 * @param outCount If not null: Receives the number of code points in the span.
138 OutputInt outCount) {
222 if (outCount != null) {
224 outCount.value = spanLength - numSupplementary; // number of code points
137 span(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) argument
H A DUnicodeSetStringSpan.java548 * @param outCount The count
552 OutputInt outCount) {
554 return spanNot(s, start, outCount);
559 return spanContainedAndCount(s, start, outCount);
582 outCount.value = count;
590 outCount.value = count;
594 private synchronized int spanContainedAndCount(CharSequence s, int start, OutputInt outCount) { argument
621 outCount.value = count;
625 int minOffset = offsets.popMinimum(outCount);
626 count = outCount
551 spanAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) argument
834 spanNot(CharSequence s, int start, OutputInt outCount) argument
1131 popMinimum(OutputInt outCount) argument
[all...]
/external/skia/tests/
H A DTextBlobTest.cpp164 const RunDef out[], unsigned outCount) {
180 for (unsigned i = 0; i < outCount; ++i) {
162 RunBuilderTest(skiatest::Reporter* reporter, SkTextBlobBuilder& builder, const RunDef in[], unsigned inCount, const RunDef out[], unsigned outCount) argument
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_graph.h127 inline int outgoingCount() const { return outCount; }
141 int16_t outCount; member in class:nv50_ir::Graph::Node
/external/mesa3d/src/glx/
H A Ddri2.c402 unsigned int *attachments, int count, int *outCount)
432 *outCount = rep.count;
461 unsigned int *attachments, int count, int *outCount)
491 *outCount = rep.count;
400 DRI2GetBuffers(Display * dpy, XID drawable, int *width, int *height, unsigned int *attachments, int count, int *outCount) argument
459 DRI2GetBuffersWithFormat(Display * dpy, XID drawable, int *width, int *height, unsigned int *attachments, int count, int *outCount) argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSet.java4024 * @param outCount An output-only object (must not be null) for returning the count.
4030 public int spanAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) { argument
4031 if (outCount == null) {
4032 throw new IllegalArgumentException("outCount must not be null");
4043 return stringSpan.spanAndCount(s, start, spanCondition, outCount);
4045 return bmpSet.span(s, start, spanCondition, outCount);
4051 return strSpan.spanAndCount(s, start, spanCondition, outCount);
4054 return spanCodePointsAndCount(s, start, spanCondition, outCount);
4058 SpanCondition spanCondition, OutputInt outCount) {
4074 if (outCount !
4057 spanCodePointsAndCount(CharSequence s, int start, SpanCondition spanCondition, OutputInt outCount) argument
[all...]
/external/sqlite/dist/orig/
H A Dshell.c531 int outCount; /* Revert to stdout when reaching zero */ member in struct:ShellState
3382 p->outCount = 2;
3384 p->outCount = 0;
4065 if( p->outCount ){
4066 p->outCount--;
4067 if( p->outCount==0 ) output_reset(p);
4237 if( p->outCount ){
4239 p->outCount = 0;
/external/sqlite/dist/
H A Dshell.c537 int outCount; /* Revert to stdout when reaching zero */ member in struct:ShellState
3404 p->outCount = 2;
3406 p->outCount = 0;
4087 if( p->outCount ){
4088 p->outCount--;
4089 if( p->outCount==0 ) output_reset(p);
4259 if( p->outCount ){
4261 p->outCount = 0;
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp4441 const int outCount = numOutputs<Out>(); local
4498 spec.outputs.resize(outCount);
4500 switch (outCount)
4566 switch (outCount)
4614 if (outCount > 0)
4622 if (outCount > 1)

Completed in 478 milliseconds