HomeSort by relevance Sort by last modified time
    Searched defs:weak (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elftypesize.asm 0 weak weaksym
5 weak weaksym2 label
1 weak weaksym label
  /art/runtime/jdwp/
object_registry.cc 181 jobject weak = entry.jni_reference; local
184 env->DeleteWeakGlobalRef(weak);
214 // a weak ref and the GC has cleared it.
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo.h 46 GLuint weak:1; member in struct:_mesa_prim
vbo_save_api.c 447 GLboolean weak; local
457 weak = save->prim[i].weak;
467 save->prim[0].weak = weak;
908 save->prim[i].weak = (mode & VBO_SAVE_PRIM_WEAK) ? 1 : 0;
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo.h 46 GLuint weak:1; member in struct:_mesa_prim
vbo_save_api.c 447 GLboolean weak; local
457 weak = save->prim[i].weak;
467 save->prim[0].weak = weak;
908 save->prim[i].weak = (mode & VBO_SAVE_PRIM_WEAK) ? 1 : 0;
    [all...]
  /art/runtime/
intern_table.cc 53 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n";
236 // There is no match in the strong table, check the weak table.
237 mirror::String* weak = LookupWeak(s); local
238 if (weak != nullptr) {
240 // A match was found in the weak table. Promote to the strong table.
241 RemoveWeak(weak);
242 return InsertStrong(weak);
244 return weak;
246 // No match in the strong table or the weak table. Insert into the strong / weak table
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontMgr_fontconfig.cpp 144 * However, there is no such call and as of Fc 2.11.0 even FcPatternEquals ignores the weak bit.
145 * Currently, the only reliable way of finding the weak bit is by its effect on matching.
146 * The weak bit only affects the matching of FC_FAMILY and FC_POSTSCRIPT_NAME object values.
147 * A element with the weak bit is scored after FC_LANG, without the weak bit is scored before.
148 * Note that the weak bit is stored on the element, not on the value it holds.
187 SkAutoFcPattern weak; local
188 FcPatternAddString(weak, object, (const FcChar8*)"nomatchstring");
189 FcPatternAddLangSet(weak, FC_LANG, weakLangSet);
192 FcFontSetAdd(fontSet, weak.detach())
    [all...]
  /external/oprofile/libutil++/
op_bfd.h 60 bool weak() const { return symb_weak; } function in class:op_bfd_symbol
  /art/test/074-gc-thrash/src/
Main.java 198 private static WeakReference weak[] = new WeakReference[MAX_DEPTH]; field in class:Deep
219 * "weak" should be matched in "strong", and the two should be
223 if (strong[i] != weak[i].get()) {
225 ", weak=" + weak[i].get());
230 * Wipe "strong", do a GC, see if "weak" got collected.
238 if (weak[i].get() != null) {
239 System.err.println("Deep: weak still has " + i);
294 weak[depth] = new WeakReference(funStr);
  /external/chromium_org/third_party/skia/third_party/lua/src/
lgc.c 115 ** tells whether a key or value can be cleared from a weak
116 ** table. Non-collectable objects are never removed from weak
124 markobject(g, rawtsvalue(o)); /* strings are `values', so are never weak */
339 g->weak = g->allweak = g->ephemeron = NULL;
372 linktable(h, &g->weak); /* has to be cleared later */
438 if (mode && ttisstring(mode) && /* is there a weak mode? */
441 (weakkey || weakvalue))) { /* is really weak? */
447 else /* all weak */
450 else /* not weak */
576 GCObject *weak = g->weak; /* save original lists * local
    [all...]
lstate.h 133 GCObject *weak; /* list of tables with weak values */ member in struct:global_State
134 GCObject *ephemeron; /* list of ephemeron tables (weak keys) */
135 GCObject *allweak; /* list of all-weak tables */
  /external/opencv/ml/include/
ml.h 1129 CvSeq* weak; member in class:CvBoost
    [all...]
  /external/elfutils/0.153/src/
ld.h 46 defaultextract, /* Weak references don't cause archive member to
48 weakextract, /* Weak references cause archive member to be
332 /* Determine whether we have any non-weak unresolved references left. */
455 unsigned int weak:1; member in struct:symbol
876 /* Number of truely unresolved, non-weak entries in the list. */
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.pb.h 5196 inline bool FieldOptions::weak() const { function in class:google::protobuf::FieldOptions
    [all...]

Completed in 314 milliseconds