HomeSort by relevance Sort by last modified time
    Searched full:weakref (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/clang/test/SemaCXX/
attr-weakref.cpp 3 // GCC will accept anything as the argument of weakref. Should we
5 static int a1() __attribute__((weakref ("foo")));
6 static int a2() __attribute__((weakref, alias ("foo")));
8 static int a3 __attribute__((weakref ("foo")));
9 static int a4 __attribute__((weakref, alias ("foo")));
12 static int a5 __attribute__((alias ("foo"), weakref));
15 static int a6 __attribute__((weakref)); //expected-error {{weakref declaration of 'a6' must also have an alias attribute}}
19 static int a __attribute__((weakref ("v2"))); // expected-error {{declaration of 'a' must be in a global context}}
24 static int a __attribute__((weakref ("v2"))); // expected-error {{declaration of 'a' must be in a global context}
    [all...]
  /external/clang/test/CodeGen/
attr-weakref.c 6 static void test1_g(void) __attribute__((weakref("test1_f")));
13 static void test2_g(void) __attribute__((weakref("test2_f")));
20 static void test3_g(void) __attribute__((weakref("test3_f")));
30 static void test4_g(void) __attribute__((weakref("test4_f")));
38 static void test5_g(void) __attribute__((weakref("test5_f")));
48 static void test6_g(void) __attribute__((weakref("test6_f")));
58 static void test7_g(void) __attribute__((weakref("test7_f")));
attr-weakref2.c 6 static int test1_g __attribute__((weakref("test1_f")));
13 static int test2_g __attribute__((weakref("test2_f")));
20 static int test3_g __attribute__((weakref("test3_f")));
30 static int test4_g __attribute__((weakref("test4_f")));
38 static int test5_g __attribute__((weakref("test5_f")));
48 static int test6_g __attribute__((weakref("test6_f")));
  /external/llvm/test/MC/ELF/
weakref-plt.s 3 .weakref bar,foo
weakref.s 3 // This is a long test that checks that the aliases created by weakref are
8 .weakref foo1, bar1
10 .weakref foo2, bar2
13 .weakref foo3, bar3
16 .weakref foo4, bar4
20 .weakref foo5, bar5
25 .weakref foo6, bar6
28 .weakref foo7, bar7
32 .weakref foo8, bar8
36 .weakref foo9, bar
    [all...]
weakref-reloc.s 6 .weakref bar,foo
  /frameworks/base/media/jni/soundpool/
android_media_SoundPool.cpp 179 android_media_SoundPool_native_setup(JNIEnv *env, jobject thiz, jobject weakRef, jint maxChannels, jint streamType, jint srcQuality)
191 jobject globalWeakRef = env->NewGlobalRef(weakRef);
204 jobject weakRef = (jobject) ap->getUserData();
205 if (weakRef != NULL) {
206 env->DeleteGlobalRef(weakRef);
  /external/clang/test/Parser/
cxx11-stmt-attributes.cpp 53 [[weakref]] return; // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
  /external/clang/include/clang/Basic/
Attr.td 588 def WeakRef : InheritableAttr {
589 let Spellings = ["weakref"];
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 67 AddDirectiveHandler<&ELFAsmParser::ParseDirectiveWeakref>(".weakref");
552 /// ::= .weakref foo, bar
  /external/webkit/Source/WebCore/bindings/v8/
V8NPObject.cpp 402 v8::Persistent<v8::Object> weakRef = v8::Persistent<v8::Object>::New(value);
403 staticNPObjectMap.set(object, weakRef);
  /external/libvpx/examples/includes/geshi/geshi/
python.php 130 'wave', 'weakref', 'webbrowser', 'whichdb', 'whrandom', 'winsound', 'xdrlib', 'xml',
  /frameworks/base/media/java/android/media/
SoundPool.java 462 private static void postEventFromNative(Object weakRef, int msg, int arg1, int arg2, Object obj)
464 SoundPool soundPool = (SoundPool)((WeakReference)weakRef).get();
483 private native final int native_setup(Object weakRef, int maxStreams, int streamType, int srcQuality);
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
  /external/protobuf/python/google/protobuf/
reflection.py 58 import weakref namespace
319 message: Message instance containing this field, or a weakref proxy
    [all...]
  /external/llvm/lib/Target/PTX/
PTXMCAsmStreamer.cpp 261 OS << ".weakref " << *Alias << ", " << *Symbol;
  /external/llvm/include/llvm/MC/
MCStreamer.h 305 /// .weakref alias, symbol
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
defaults.h 196 fprintf ((FILE), "\t.weakref\t"); \
auto-host.h 928 /* Define if your assembler supports .weakref. */
    [all...]
  /external/bluetooth/glib/docs/reference/gobject/
tut_gobject.xml 413 <sect2 id="gobject-memory-weakref">
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.h 241 // a weakref so far. This is used to remove the weak of the reference if we ever
    [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 374 OS << ".weakref " << *Alias << ", " << *Symbol;
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
defaults.h 200 fprintf ((FILE), "\t.weakref\t"); \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
defaults.h 200 fprintf ((FILE), "\t.weakref\t"); \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
defaults.h 200 fprintf ((FILE), "\t.weakref\t"); \
    [all...]

Completed in 1335 milliseconds

1 2 3