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

1 2 3

  /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...]
  /ndk/build/tools/
package-release.sh 337 # first create the reference ndk directory from the git reference
338 echo "Creating reference from source files"
339 REFERENCE=$TMPDIR/reference && rm -rf $REFERENCE/* &&
340 copy_file_list "$NDK_ROOT_DIR" "$REFERENCE" $GIT_FILES &&
341 rm -f $REFERENCE/Android.mk
342 fail_panic "Could not create reference. Aborting."
347 unpack_archive "$PREBUILT_DIR/platforms.tar.bz2" "$REFERENCE" &
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 45 REFERENCE,
83 : ClipPathOperation(REFERENCE)
93 DEFINE_TYPE_CASTS(ReferenceClipPathOperation, ClipPathOperation, op, op->type() == ClipPathOperation::REFERENCE, op.type() == ClipPathOperation::REFERENCE);
RenderLayerFilterInfo.cpp 120 if (filterOperation->type() != FilterOperation::REFERENCE)
127 // Reference is external; wait for notifyFinished().
131 // Reference is internal; add layer as a client so we can trigger
FilterEffectRenderer.cpp 90 // Inverse zoom the pre-zoomed CSS shorthand filters, so that they are in the same zoom as the unzoomed reference filters.
99 case FilterOperation::REFERENCE: {
233 if (filterOperation->type() != FilterOperation::REFERENCE) {
243 // We need to keep the old effects alive until this point, so that SVG reference filters
  /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/chromium_org/cc/output/
filter_operation.h 42 REFERENCE,
56 DCHECK_NE(type_, REFERENCE);
76 DCHECK_EQ(type_, REFERENCE);
147 return FilterOperation(REFERENCE, image_filter);
176 DCHECK_NE(type_, REFERENCE);
196 DCHECK_EQ(type_, REFERENCE);
filter_operation.cc 25 if (type_ == REFERENCE)
44 DCHECK_NE(type_, REFERENCE);
94 DCHECK_EQ(type_, REFERENCE);
161 case FilterOperation::REFERENCE:
192 case FilterOperation::REFERENCE:
218 if (to_op.type() == FilterOperation::REFERENCE) {
291 case FilterOperation::REFERENCE: {
filter_operations.cc 64 // TODO(ajuma): Add support for reference filters once SkImageFilter
66 DCHECK(op.type() != FilterOperation::REFERENCE);
89 // determine whether a reference filter really moves pixels.
94 case FilterOperation::REFERENCE:
116 // TODO(ajuma): Make this smarter for reference filters. Once SkImageFilter
123 case FilterOperation::REFERENCE:
152 if (operations_[i].type() == FilterOperation::REFERENCE)
render_surface_filters.cc 238 case FilterOperation::REFERENCE: {
  /external/clang/include/clang/AST/
StmtIterator.h 74 template <typename DERIVED, typename REFERENCE>
77 REFERENCE, ptrdiff_t,
78 REFERENCE, REFERENCE> {
112 REFERENCE operator*() const {
116 REFERENCE operator->() const { return operator*(); }
  /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 45 import org.jf.dexlib2.iface.reference.FieldReference;
46 import org.jf.dexlib2.iface.reference.MethodReference;
71 throw new ExceptionWithContext("Cannot construct ClassProto for non reference type: %s", type);
368 final byte REFERENCE = 0;
374 //the "type" for each field in fields. 0=reference,1=wide,2=other
380 //The first operation is to move all of the reference fields to the front. To do this, find the first
381 //non-reference field, then find the last reference field, swap them and repeat
385 if (fieldTypes[front] != REFERENCE) {
387 if (fieldTypes[back] == REFERENCE) {
    [all...]
MethodAnalyzer.java 42 import org.jf.dexlib2.iface.reference.FieldReference;
43 import org.jf.dexlib2.iface.reference.MethodReference;
44 import org.jf.dexlib2.iface.reference.Reference;
45 import org.jf.dexlib2.iface.reference.TypeReference;
47 import org.jf.dexlib2.immutable.reference.ImmutableFieldReference;
48 import org.jf.dexlib2.immutable.reference.ImmutableMethodReference;
154 //if this is a constructor, then set the "this" register to an uninitialized reference of the current class
161 RegisterType.getRegisterType(RegisterType.REFERENCE,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperations.cpp 94 if (m_operations.at(i)->type() == FilterOperation::REFERENCE)
104 if (operationType == FilterOperation::BLUR || operationType == FilterOperation::DROP_SHADOW || operationType == FilterOperation::REFERENCE)
136 case FilterOperation::REFERENCE: {
FilterOperation.h 46 REFERENCE, // url(#somefilter)
74 case REFERENCE:
144 : FilterOperation(REFERENCE)
155 DEFINE_FILTER_OPERATION_TYPE_CASTS(ReferenceFilterOperation, REFERENCE);
SkiaImageFilterBuilder.cpp 97 case FilterOperation::REFERENCE: {
  /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/main/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)
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FilterOperationResolver.cpp 45 return FilterOperation::REFERENCE;
99 if (operationType == FilterOperation::REFERENCE) {
StyleResourceLoader.cpp 56 if (filterOperation->type() == FilterOperation::REFERENCE) {
66 // Stash the DocumentResource on the reference filter.
  /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,
  /external/chromium_org/content/common/
cc_messages.cc 46 case cc::FilterOperation::REFERENCE:
117 case cc::FilterOperation::REFERENCE: {
171 case cc::FilterOperation::REFERENCE:

Completed in 1156 milliseconds

1 2 3