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

1 2

  /frameworks/native/include/ui/
ANativeObjectBase.h 57 template <typename NATIVE_TYPE, typename TYPE, typename REF>
58 class ANativeObjectBase : public NATIVE_TYPE, public REF
61 // Disambiguate between the incStrong in REF and NATIVE_TYPE
63 REF::incStrong(id);
66 REF::decStrong(id);
70 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF> BASE;
71 ANativeObjectBase() : NATIVE_TYPE(), REF() {
  /external/valgrind/main/auxprogs/
gsl16test 98 rm -f out-REF
99 (cd gsl-1.6-patched && for f in $ALL_TESTS ; do ./$f ; done) &> out-REF
107 echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)
108 echo -n " Native passes: " && (grep PASS: out-REF | wc -l)
112 (echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)) >> summary.txt
113 (echo -n " Native passes: " && (grep PASS: out-REF | wc -l)) >> summary.txt
gsl19test 101 rm -f out-REF
103 do GSL_TEST_VERBOSE=1 ./$f ; done) &> out-REF
112 echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)
113 echo -n " Native passes: " && (grep PASS: out-REF | wc -l)
117 (echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)) >> summary.txt
118 (echo -n " Native passes: " && (grep PASS: out-REF | wc -l)) >> summary.txt
  /prebuilts/misc/common/swig/include/2.0.11/php/
phppointers.i 2 %typemap(in) TYPE *REF ($*1_ltype tmp),
3 TYPE &REF ($*1_ltype tmp)
16 %typemap(argout) TYPE *REF,
17 TYPE &REF
  /libcore/luni/src/main/java/java/sql/
Types.java 146 * The type code that identifies the SQL type {@code REF}.
148 public static final int REF = 2006;
  /external/chromium_org/third_party/skia/src/gpu/
GrStencil.h 20 * modify these bits. GrDrawTarget will ignore ref, mask, and writemask bits
39 * Stencil test passes if (ref & mask) FUNC (stencil & mask) is true
64 kNonZeroIfInClip_StencilFunc, // this one forces the ref to be 0
123 2*sizeof(uint16_t) + // ref values
193 void setFuncRef(Face f, unsigned short ref) { fFuncRefs[f] = ref; }
369 PASS_OP, FAIL_OP, FUNC, MASK, REF, WRITE_MASK) \
371 (FAIL_OP),(FAIL_OP), (FUNC), (FUNC), (MASK), (MASK), (REF), (REF), \
390 PASS_OP, FAIL_OP, FUNC, MASK, REF, WRITE_MASK)
    [all...]
  /external/skia/src/gpu/
GrStencil.h 20 * modify these bits. GrDrawTarget will ignore ref, mask, and writemask bits
39 * Stencil test passes if (ref & mask) FUNC (stencil & mask) is true
64 kNonZeroIfInClip_StencilFunc, // this one forces the ref to be 0
123 2*sizeof(uint16_t) + // ref values
193 void setFuncRef(Face f, unsigned short ref) { fFuncRefs[f] = ref; }
369 PASS_OP, FAIL_OP, FUNC, MASK, REF, WRITE_MASK) \
371 (FAIL_OP),(FAIL_OP), (FUNC), (FUNC), (MASK), (MASK), (REF), (REF), \
390 PASS_OP, FAIL_OP, FUNC, MASK, REF, WRITE_MASK)
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 55 assertEquals(REF, 2006);
  /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>'
  /external/lzma/C/
Ppmd7.c 20 #define REF(ptr) (ptr)
22 #define REF(ptr) ((UInt32)((Byte *)(ptr) - (p)->Base))
25 #define STATS_REF(ptr) ((CPpmd_State_Ref)REF(ptr))
27 #define CTX(ref) ((CPpmd7_Context *)Ppmd7_GetContext(p, ref))
121 p->FreeList[indx] = REF(node);
305 p->MinContext->Stats = REF(p->FoundState);
405 c1->Suffix = REF(c);
406 SetSuccessor(ps[--numPs], REF(c1));
465 SetSuccessor(p->FoundState, REF(p->MinContext));
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
cpp_type_generator.py 68 If REF types from different namespaces are referenced, will resolve
78 if type_.property_type == PropertyType.REF:
182 """Follows $ref link of types to resolve the concrete type a ref refers to.
184 If the property passed in is not of type PropertyType.REF, it will be
187 if type_.property_type != PropertyType.REF:
230 if type_.property_type == PropertyType.REF:
cpp_util.py 82 PropertyType.REF,
model_test.py 73 self.assertEquals(model.PropertyType.REF,
model.py 197 elif '$ref' in json:
198 self.property_type = PropertyType.REF
199 self.ref_type = json['$ref']
222 if '$ref' in type_json:
223 return type_json['$ref']
364 '$ref' not in json and
474 REF = _PropertyTypeInfo(False, "ref")
dart_generator.py 658 if type_.property_type is PropertyType.REF:
683 if type_.property_type is PropertyType.REF:
692 objects (PropertyType.REF types).
723 if prop_type is PropertyType.REF:
cc_generator.py 167 t.property_type == PropertyType.REF or
500 if type_.item_type.property_type == PropertyType.REF:
548 if type_.property_type == PropertyType.REF:
    [all...]
h_generator.py 61 # $ref types from other files to be used as required params. This requires
125 if (prop.type_ == PropertyType.REF and
  /external/eigen/unsupported/test/
openglsupport.cpp 20 #define VERIFY_MATRIX(CODE,REF) { \
25 if(!(REF).cast<float>().isApprox(m)) { \
26 std::cerr << "Expected:\n" << ((REF).cast<float>()) << "\n" << "got\n" << m << "\n\n"; \
28 VERIFY_IS_APPROX((REF).cast<float>(), m); \
  /external/chromium_org/chrome/common/extensions/docs/server2/
reference_resolver.py 36 def _MakeKey(namespace, ref):
37 key = '%s/%s' % (namespace, ref)
49 """Resolves references to $ref's by searching through the APIs to find the
50 correct node. See document_renderer.py for more information on $ref syntax.
56 def _GetRefLink(self, ref, api_list, namespace):
57 # Check nodes within each API the ref might refer to.
58 parts = ref.split('.')
71 # Check to see if this ref is a property. If it is, we want the ref to
74 # If the name of this property is in the ref text, replace th
    [all...]
  /external/lzma/CPP/
Build.mak 65 LFLAGS = $(LFLAGS) -nologo -OPT:REF -OPT:ICF
  /external/chromium_org/url/third_party/mozilla/
url_parse.h 94 REF,
116 // Note that this can get a little funny for the port, query, and ref
136 // *REF: 20 20
163 // ref delimiter (if any). Length will be -1 if unspecified. This includes
179 Component ref; member in struct:url::Parsed
  /external/clang/lib/Driver/
Multilib.cpp 254 REFilter REF(Regex);
255 filterInPlace(REF, Multilibs);
  /external/chromium_org/url/
url_parse_unittest.cc 62 const char* ref; member in struct:url::__anon930::URLParseCase
94 const char* ref; member in struct:url::__anon930::FileSystemURLParseCase
179 {"http://u:p@h:8/p?q#r", Parsed::REF, true, 18},
180 {"http://u:p@h:8/p?q#r", Parsed::REF, false, 19},
182 {"http://u:p@h:8/p?", Parsed::REF, true, 17},
183 {"http://u:p@h:8/p?q", Parsed::REF, true, 18},
197 {"", Parsed::REF, true, 0},
222 // Input Scheme Usrname Passwd Host Port Path Query Ref
296 // Use the first question mark for the query and the ref.
334 EXPECT_TRUE(ComponentMatches(url, cases[i].ref, parsed.ref))
    [all...]
  /external/chromium_org/components/search_engines/
template_url.cc 148 // query or ref.
499 // Parameter must be present either in the query or the ref.
502 url.query() : url.ref());
775 search_term_key_location_ = url::Parsed::REF;
782 std::string ref_key = FindSearchTermsKey(url.ref());
787 query_key.empty() ? url::Parsed::REF : url::Parsed::QUERY;
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc     [all...]

Completed in 1332 milliseconds

1 2