HomeSort by relevance Sort by last modified time
    Searched refs:ref (Results 826 - 850 of 3742) sorted by null

<<31323334353637383940>>

  /bionic/libc/kernel/uapi/linux/
tipc.h 25 __u32 ref; member in struct:tipc_portid
  /external/Microsoft-GSL/tests/
utils_tests.cpp 63 auto _ = finally(std::bind(&f, std::ref(i)));
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
CoroutineManager.java 21 package org.apache.xml.dtm.ref;
  /external/clang/test/Analysis/
temporaries.cpp 60 const TrivialSubclass &ref = getTrivialSub(); local
61 clang_analyzer_eval(ref.value == 42); // expected-warning{{TRUE}}
420 static const Trivial &ref = getTrivial(); local
421 clang_analyzer_eval(ref.value == 42); // expected-warning{{TRUE}}
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-tuple.cpp 47 template<typename T> reference_wrapper<T> ref(T& t) { function
134 template<typename T> const T *addr(const T& ref) { return &ref; }
139 const tuple<int, float&, const double&> *t3p = addr(make_tuple(i, ref(f), cref(d)));
  /external/dtc/
dtc.h 84 char *ref; member in struct:marker
123 struct data data_add_marker(struct data d, enum markertype type, char *ref);
201 void add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
223 struct node *get_node_by_ref(struct node *tree, const char *ref);
  /external/guava/guava-tests/test/com/google/common/collect/
InternersTest.java 25 import java.lang.ref.WeakReference;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringPrep.java 15 import java.lang.ref.WeakReference;
305 WeakReference<StringPrep> ref = CACHE[profile]; local
306 if (ref != null) {
307 instance = ref.get();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringPrep.java 14 import java.lang.ref.WeakReference;
322 WeakReference<StringPrep> ref = CACHE[profile]; local
323 if (ref != null) {
324 instance = ref.get();
  /external/iproute2/include/linux/
tipc.h 48 __u32 ref; member in struct:tipc_portid
  /external/libchrome/crypto/
apple_keychain.h 99 // Calls CFRelease on the given ref, after checking that |ref| is non-NULL.
100 virtual void Free(CFTypeRef ref) const;
  /external/libdrm/tegra/
tegra.c 122 atomic_set(&bo->ref, 1);
158 atomic_set(&bo->ref, 1);
227 atomic_inc(&bo->ref);
234 if (bo && atomic_dec_and_test(&bo->ref))
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c 368 const int ref = is_inter_block(mi); local
370 td->rd_counts.coef_counts[tx_size][type][ref];
372 cpi->common.fc->coef_probs[tx_size][type][ref];
374 td->counts->eob_branch[tx_size][type][ref];
  /external/libxml2/include/libxml/
schemasInternals.h 230 * this is set when the "type" and "ref" references
253 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaAttribute
366 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaAttributeGroup
607 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaType
697 * this is set when "type", "ref", "substitutionGroup"
770 const xmlChar *ref; /* Deprecated; not used */ member in struct:_xmlSchemaElement
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 254 compare_vec_with_eps(struct lp_type type, const void *res, const void *ref, double eps)
260 double ref_elem = read_elem(type, ref, i);
276 compare_vec(struct lp_type type, const void *res, const void *ref)
279 return compare_vec_with_eps(type, res, ref, eps);
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
TypeCachingBytecodeGenerator.java 10 import java.lang.ref.ReferenceQueue;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ByteBufferWriter.java 39 import java.lang.ref.SoftReference;
  /external/skia/src/core/
SkYUVPlanesCache.cpp 61 tmpData->ref();
  /external/skia/src/gpu/vk/
GrVkResource.h 25 objects. When an existing owner wants to share a reference, it calls ref().
39 // Simple refCount tracing, to ensure that everything ref'ed is unref'ed.
106 void ref() const { function in class:GrVkResource
119 // A release here acts in place of all releases we "should" have been doing in ref().
130 // A release here acts in place of all releases we "should" have been doing in ref().
162 * Called when the ref count goes to 0. Will free Vk resources.
198 // When recycle is called and there is only one ref left on the resource, we will signal that
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h 114 Int refSampDir; /* VOL resol. of ref. VOL */
115 Int horSamp_n; /* VOL hor. resampling of ref. VOL given by */
117 Int verSamp_n; /* VOL ver. resampling of ref. VOL given by */
237 // Int (*SAD_MB_HalfPel)(UChar *ref,UChar *blk,Int dmin_lx,Int xh,Int yh,void *extra_info);
239 Int(*SAD_Blk_HalfPel)(UChar *ref, UChar *blk, Int dmin, Int lx, Int rx, Int xh, Int yh, void *extra_info);
240 Int(*SAD_Macroblock)(UChar *ref, UChar *blk, Int dmin_lx, void *extra_info);
241 Int(*SAD_Block)(UChar *ref, UChar *blk, Int dmin, Int lx, void *extra_info);
242 Int(*SAD_MB_PADDING)(UChar *ref, UChar *blk, Int dmin, Int lx, void *extra_info); /*, 4/21/01 */
  /frameworks/base/core/java/android/text/style/
DynamicDrawableSpan.java 24 import java.lang.ref.WeakReference;
  /frameworks/base/core/java/android/view/
InputEventSender.java 25 import java.lang.ref.WeakReference;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
TrackedCollections.java 22 import java.lang.ref.WeakReference;
  /frameworks/base/tools/aapt2/flatten/
XmlFlattener.cpp 69 StringPool::Ref ref; member in struct:aapt::__anon39098::XmlFlattenerVisitor::StringFlattenDest
172 void AddString(const StringPool::Ref& ref, android::ResStringPool_ref* dest) {
173 string_refs.push_back(StringFlattenDest{ref, dest});
250 StringPool::Ref name_ref =
315 ref_entry.dest->index = util::HostToDevice32(ref_entry.ref.index());
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DelegateManager.java 26 import java.lang.ref.WeakReference;
155 System.out.println("Removing main Java ref on " + mClass.getSimpleName() +

Completed in 3140 milliseconds

<<31323334353637383940>>