HomeSort by relevance Sort by last modified time
    Searched refs:REFERENCE (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /prebuilts/misc/common/swig/include/2.0.11/perl5/
reference.i 2 * reference.i
14 int *REFERENCE
15 short *REFERENCE
16 long *REFERENCE
17 unsigned int *REFERENCE
18 unsigned short *REFERENCE
19 unsigned long *REFERENCE
20 unsigned char *REFERENCE
21 float *REFERENCE
22 double *REFERENCE
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
StreamShape.java 30 * (e.g., {@code REFERENCE} corresponds to {@code Stream}, {@code INT_VALUE}
55 REFERENCE,
TerminalOp.java 49 * @implSpec The default returns {@code StreamShape.REFERENCE}.
53 default StreamShape inputShape() { return StreamShape.REFERENCE; }
ReferencePipeline.java 102 return StreamShape.REFERENCE;
152 return new StatelessOp<P_OUT, P_OUT>(this, StreamShape.REFERENCE, StreamOpFlag.NOT_ORDERED) {
163 return new StatelessOp<P_OUT, P_OUT>(this, StreamShape.REFERENCE,
187 return new StatelessOp<P_OUT, R>(this, StreamShape.REFERENCE,
204 return new IntPipeline.StatelessOp<P_OUT>(this, StreamShape.REFERENCE,
221 return new LongPipeline.StatelessOp<P_OUT>(this, StreamShape.REFERENCE,
238 return new DoublePipeline.StatelessOp<P_OUT>(this, StreamShape.REFERENCE,
256 return new StatelessOp<P_OUT, R>(this, StreamShape.REFERENCE,
283 return new IntPipeline.StatelessOp<P_OUT>(this, StreamShape.REFERENCE,
311 return new DoublePipeline.StatelessOp<P_OUT>(this, StreamShape.REFERENCE,
    [all...]
DistinctOps.java 51 * @param upstream a reference stream with element type T
55 return new ReferencePipeline.StatefulOp<T, T>(upstream, StreamShape.REFERENCE,
ReduceOps.java 57 * reference values.
88 return new ReduceOp<T, U, ReducingSink>(StreamShape.REFERENCE) {
98 * reference values producing an optional reference result.
138 return new ReduceOp<T, Optional<T>, ReducingSink>(StreamShape.REFERENCE) {
148 * reference values.
177 return new ReduceOp<T, I, ReducingSink>(StreamShape.REFERENCE) {
194 * reference values.
228 return new ReduceOp<T, R, ReducingSink>(StreamShape.REFERENCE) {
  /external/clang/include/clang/AST/
StmtIterator.h 76 template <typename DERIVED, typename REFERENCE>
79 REFERENCE, ptrdiff_t,
80 REFERENCE, REFERENCE> {
114 REFERENCE operator*() const {
118 REFERENCE operator->() const { return operator*(); }
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
StatelessTestOp.java 35 case REFERENCE:
65 default StreamShape inputShape() { return StreamShape.REFERENCE; }
67 default StreamShape outputShape() { return StreamShape.REFERENCE; }
FlagDeclaringOp.java 34 this(flags, StreamShape.REFERENCE);
CollectorOps.java 35 return new StatefulCollector<>(0, StreamShape.REFERENCE);
78 this(StreamShape.REFERENCE);
StatefulTestOp.java 37 case REFERENCE:
121 default StreamShape inputShape() { return StreamShape.REFERENCE; }
123 default StreamShape outputShape() { return StreamShape.REFERENCE; }
TestFlagExpectedOp.java 33 StreamShape shape = StreamShape.REFERENCE;
77 this(flags, known, preserve, notKnown, StreamShape.REFERENCE);
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
StatelessTestOp.java 43 case REFERENCE:
75 default StreamShape inputShape() { return StreamShape.REFERENCE; }
77 default StreamShape outputShape() { return StreamShape.REFERENCE; }
FlagDeclaringOp.java 37 this(flags, StreamShape.REFERENCE);
CollectorOps.java 36 return new StatefulCollector<>(0, StreamShape.REFERENCE);
79 this(StreamShape.REFERENCE);
StatefulTestOp.java 38 case REFERENCE:
122 default StreamShape inputShape() { return StreamShape.REFERENCE; }
124 default StreamShape outputShape() { return StreamShape.REFERENCE; }
TestFlagExpectedOp.java 34 StreamShape shape = StreamShape.REFERENCE;
78 this(flags, known, preserve, notKnown, StreamShape.REFERENCE);
  /prebuilts/misc/common/swig/include/2.0.11/php/
typemaps.i 15 * TYPE *REFERENCE. Argument is passed in as native variable with value
18 * int foo(int *REFERENCE);
43 %typemap(in) TYPE *REFERENCE (TYPE lvalue), TYPE &REFERENCE (TYPE lvalue)
49 %typemap(argout) TYPE *REFERENCE, TYPE &REFERENCE
72 %typemap(in) TYPE *REFERENCE (TYPE dvalue), TYPE &REFERENCE (TYPE dvalue)
78 %typemap(argout) TYPE *REFERENCE, TYPE &REFERENCE
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
RegisterType.java 47 assert ((category == REFERENCE || category == UNINIT_REF || category == UNINIT_THIS) && type != null) ||
48 ((category != REFERENCE && category != UNINIT_REF && category != UNINIT_THIS) && type == null);
80 // These require strict reference equality. Every instance represents a unique
81 // reference that can't be merged with a different one, even if they have the same type.
119 public static final byte REFERENCE = 18;
121 // example if the register's type is an Integer on one incoming code path, but is a Reference type on another
122 // incomming code path. There is no register type that can hold either an Integer or a Reference.
144 "Reference",
153 /* UNKNOWN UNINIT NULL ONE, BOOLEAN BYTE POS_BYTE SHORT POS_SHORT CHAR INTEGER, FLOAT, LONG_LO LONG_HI DOUBLE_LO DOUBLE_HI UNINIT_REF UNINIT_THIS REFERENCE CONFLICTED*/
154 /*UNKNOWN*/ {UNKNOWN, UNINIT, NULL, ONE, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, LONG_LO, LONG_HI, DOUBLE_LO, DOUBLE_HI, UNINIT_REF, UNINIT_THIS,REFERENCE, CONFLICTED}
    [all...]
ClassProto.java 46 import org.jf.dexlib2.iface.reference.FieldReference;
47 import org.jf.dexlib2.iface.reference.MethodReference;
63 private static final byte REFERENCE = 0;
75 throw new ExceptionWithContext("Cannot construct ClassProto for non reference type: %s", type);
392 //the "type" for each field in fields. 0=reference,1=wide,2=other
398 //The first operation is to move all of the reference fields to the front. To do this, find the first
399 //non-reference field, then find the last reference field, swap them and repeat
403 if (fieldTypes[front] != REFERENCE) {
405 if (fieldTypes[back] == REFERENCE) {
    [all...]
  /external/markdown/markdown/extensions/
abbr.py 11 ... Some text with an ABBR and a REF. Ignore REFERENCE and ref.
14 ... *[REF]: Abbreviation Reference
17 u'<p>Some text with an <abbr title="Abbreviation">ABBR</abbr> and a <abbr title="Abbreviation Reference">REF</abbr>. Ignore REFERENCE and ref.</p>'
37 md.preprocessors.add('abbr', AbbrPreprocessor(md), '<reference')
46 Each reference is set as a new AbbrPattern in the markdown instance.
  /external/valgrind/VEX/switchback/
binary_switchback.pl 45 print " test_ref = reference output from test_xxx\n";
214 # Calls test script to compare current output lines with a reference.
264 # Read in reference lines
265 open(REFERENCE, "$ref_output") || die "Error: Couldn't open $ref_output\n";
266 my @ref_lines = <REFERENCE>;
267 close(REFERENCE);
269 # Compare reference lines with current:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleter.java 31 import static com.android.ide.common.api.IAttributeInfo.Format.REFERENCE;
77 && (formats.size() > 1 && formats.contains(REFERENCE) ||
110 if (formats.contains(REFERENCE) || contents.startsWith(PREFIX_RESOURCE_REF)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 197 Format.REFERENCE));
205 Format.REFERENCE));
213 Format.REFERENCE));
370 !info.getFormats().contains(Format.REFERENCE)) {
376 + " was passed a reference (" + value + ") in file " + file);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleterTest.java 60 EnumSet.of(Format.REFERENCE), null,

Completed in 1051 milliseconds

1 2 3 4