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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
pr19719d.c 2 fun (void) function
pr19719b.c 1 extern int __attribute__ ((weak)) fun (void);
5 if (&fun != 0)
6 return fun ();
pr19719c.c 1 extern int __attribute__ ((weak)) fun (void);
5 if (&fun != 0)
6 return fun ();
symbolic-func.s 2 .global fun
3 .type fun, %function
4 fun: label
6 .size fun, .-fun
12 .dc.a fun
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
pr19704a.c 3 extern int __attribute__ ((weak)) fun (void);
8 if (&fun != 0)
9 fun ();
pr19704b.c 4 fun (void) function
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
pr19704a.c 3 extern int __attribute__ ((weak)) fun (void);
8 if (&fun != 0)
9 fun ();
pr19704b.c 4 fun (void) function
  /tools/metalava/src/main/java/com/android/tools/metalava/model/
MutableModifierList.kt 20 fun setPublic(public: Boolean)
21 fun setProtected(protected: Boolean)
22 fun setPrivate(private: Boolean)
23 fun setStatic(static: Boolean)
24 fun setAbstract(abstract: Boolean)
25 fun setFinal(final: Boolean)
26 fun setNative(native: Boolean)
27 fun setSynchronized(synchronized: Boolean)
28 fun setStrictFp(strictfp: Boolean)
29 fun setTransient(transient: Boolean
    [all...]
TypeParameterList.kt 31 override fun toString(): String
34 fun typeParameterNames(): List<String>
37 fun typeParameters(): List<TypeParameterItem>
40 fun typeParameterCount() = typeParameterNames().size
45 override fun toString(): String = ""
46 override fun typeParameterNames(): List<String> = emptyList()
47 override fun typeParameters(): List<TypeParameterItem> = emptyList()
48 override fun typeParameterCount(): Int = 0
MemberItem.kt 21 fun name(): String
24 fun internalName(): String = name()
27 fun containingClass(): ClassItem
29 override fun parent(): ClassItem? = containingClass()
35 fun isEffectivelyFinal(): Boolean {
ParameterItem.kt 24 fun name(): String
27 fun type(): TypeItem
30 fun containingMethod(): MethodItem
41 fun publicName(): String?
48 fun hasDefaultValue(): Boolean
61 fun defaultValue(): String?
66 fun isVarArgs(): Boolean
68 override fun parent(): MethodItem? = containingMethod()
70 override fun accept(visitor: ItemVisitor) {
82 override fun acceptTypes(visitor: TypeVisitor)
    [all...]
  /external/clang/test/CodeGenCXX/
2003-12-08-ArrayOfPtrToMemberFunc.cpp 4 void fun ();
8 static memfunptr jumpTable[] = { &Evil::fun };
10 void Evil::fun() { function in class:Evil
PR19955.cpp 5 extern void __declspec(dllimport) fun();
13 void (*funp)() = &fun;
24 // CHECK-DAG: store void ()* @"\01?fun@@YAXXZ", void ()** @"\01?funp@@3P6AXXZA"
27 // X64-DAG: store void ()* @"\01?fun@@YAXXZ", void ()** @"\01?funp@@3P6AXXZEA"
  /external/clang/test/SemaCXX/
PR19955.cpp 7 extern __attribute__((dllimport)) void fun();
8 constexpr void (*funp)(void) = &fun; // expected-error {{must be initialized by a constant expression}}
12 S<&fun> x;
  /frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/utils/
LogConsumer.kt 24 fun error(message: String)
26 fun warning(message: String)
28 fun info(message: String)
30 fun verbose(message: String)
StdOutLogConsumer.kt 24 override fun error(message: String) {
28 override fun warning(message: String) {
32 override fun info(message: String) {
36 override fun verbose(message: String) {
  /frameworks/support/navigation/safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/
NavParserErrors.kt 23 fun invalidDefaultValueReference(value: String) = "Failed to parse defaultValue " +
26 fun invalidDefaultValue(value: String, type: NavType) = "Failed to parse defaultValue " +
29 fun invalidId(value: String) = "Failed to parse $value as id. 'id' must be in the format:" +
32 fun unknownType(type: String?) = "Unknown type '$type'"
Types.kt 29 override fun typeName(): TypeName = TypeName.INT
30 override fun bundlePutMethod() = "putInt"
31 override fun bundleGetMethod() = "getInt"
32 override fun toString() = "integer"
36 override fun typeName(): TypeName = TypeName.FLOAT
37 override fun bundlePutMethod() = "putFloat"
38 override fun bundleGetMethod() = "getFloat"
39 override fun toString() = "float"
43 override fun typeName(): TypeName = ClassName.get(String::class.java)
44 override fun bundlePutMethod() = "putString
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/query/result/
TransactionWrapper.kt 28 fun beginTransactionWithControlFlow()
29 fun commitTransaction()
30 fun endTransactionWithControlFlow()
33 fun MethodSpec.Builder.transactionWrapper(dbField: FieldSpec) = object : TransactionWrapper {
34 override fun beginTransactionWithControlFlow() {
39 override fun commitTransaction() {
43 override fun endTransactionWithControlFlow() {
50 fun CodeBlock.Builder.transactionWrapper(dbField: FieldSpec) = object : TransactionWrapper {
51 override fun beginTransactionWithControlFlow() {
56 override fun commitTransaction()
    [all...]
  /external/valgrind/
glibc-2.X-drd.supp 30 fun:write
35 fun:random_r
36 fun:random
52 # fun:_ZNSsC1ERKSs
58 fun:pthread_cond_broadcast@*
59 fun:__cxa_guard_release
71 fun:pthread_create*
76 fun:pthread_join
77 fun:pthread_join
83 fun:__deallocate_stac
    [all...]
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/archive/
ArchiveItemVisitor.kt 24 fun visit(archive: Archive)
26 fun visit(archiveFile: ArchiveFile)
  /tools/metalava/src/main/java/com/android/tools/metalava/model/visitors/
ItemVisitor.kt 47 open fun skip(item: Item): Boolean = false
50 open fun visitItem(item: Item) {}
52 open fun visitCompilationUnit(unit: CompilationUnit) {}
53 open fun visitPackage(pkg: PackageItem) {}
54 open fun visitClass(cls: ClassItem) {}
55 open fun visitConstructor(constructor: ConstructorItem) {
61 open fun visitField(field: FieldItem) {}
62 open fun visitMethod(method: MethodItem) {}
63 open fun visitParameter(parameter: ParameterItem) {}
65 open fun afterVisitItem(item: Item) {
    [all...]
  /external/python/cpython3/Misc/
valgrind-python.supp 22 fun:Py_ADDRESS_IN_RANGE
28 fun:Py_ADDRESS_IN_RANGE
34 fun:Py_ADDRESS_IN_RANGE
40 fun:Py_ADDRESS_IN_RANGE
52 fun:malloc
53 fun:PyThread_allocate_lock
54 fun:PyEval_InitThreads
60 fun:malloc
61 fun:PyThread_allocate_lock
62 fun:PyEval_ReInitThread
    [all...]
  /external/python/cpython2/Misc/
valgrind-python.supp 22 fun:Py_ADDRESS_IN_RANGE
28 fun:Py_ADDRESS_IN_RANGE
34 fun:Py_ADDRESS_IN_RANGE
40 fun:Py_ADDRESS_IN_RANGE
52 fun:malloc
53 fun:PyThread_allocate_lock
54 fun:PyEval_InitThreads
60 fun:malloc
61 fun:PyThread_allocate_lock
62 fun:PyEval_ReInitThread
    [all...]

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>