OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NATIVE
(Results
1 - 25
of
295
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/system/libvintf/include/vintf/
HalFormat.h
30
NATIVE
,
36
"
native
"
/external/oj-libjdwp/src/solaris/back/
linker_md.c
28
*
NATIVE
here, whether or not we're running solaris
native
threads.
32
#define
NATIVE
46
#ifndef
NATIVE
82
* create a string for the JNI
native
function name by adding the
116
#ifndef
NATIVE
124
#ifdef
NATIVE
149
#ifndef
NATIVE
153
#ifndef
NATIVE
161
#ifndef
NATIVE
[
all
...]
/toolchain/binutils/binutils-2.27/ld/emulparams/
elf64rdos.sh
21
NATIVE
=yes
elf64_s390.sh
18
# in the name as if it were
native
.
23
NATIVE
=yes
elf64_sparc.sh
26
# and "v7", "v8", "v9" in the name as if it were
native
.
31
NATIVE
=yes
elf_k1om.sh
28
NATIVE
=yes
elf_l1om.sh
28
NATIVE
=yes
elf32_x86_64.sh
28
NATIVE
=yes
elf32bmipn32-defs.sh
26
NATIVE
=yes
elf32ppccommon.sh
36
# in the name as if it were
native
.
40
NATIVE
=yes
elf_x86_64.sh
33
NATIVE
=yes
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
ModifierSet.java
53
public static final int
NATIVE
= Modifier.
NATIVE
;
88
return (modifiers &
NATIVE
) != 0;
/external/javassist/src/main/javassist/
Modifier.java
40
public static final int
NATIVE
= AccessFlag.
NATIVE
;
120
* Returns true if the modifiers include the <tt>
native
</tt>
124
return (mod &
NATIVE
) != 0;
/tools/loganalysis/src/com/android/loganalysis/item/
DumpsysProcessMeminfoItem.java
34
public static final String
NATIVE
= "
NATIVE
";
48
//
NATIVE
, DALVIK, TOTAL only
81
this.put(
NATIVE
, new HashMap<>());
/external/skia/tools/skqp/
make_universal_apk
11
APK with
native
libraries for all four architectures: arm, arm64, x86, and
79
arm)
NATIVE
=armeabi-v7a ;;
80
arm64)
NATIVE
=arm64-v8a ;;
81
x86)
NATIVE
=x86 ;;
82
x64)
NATIVE
=x86_64 ;;
85
DST=platform_tools/android/apps/$APP/src/main/libs/$
NATIVE
/external/skqp/tools/skqp/
make_universal_apk
11
APK with
native
libraries for all four architectures: arm, arm64, x86, and
69
arm)
NATIVE
=armeabi-v7a ;;
70
arm64)
NATIVE
=arm64-v8a ;;
71
x86)
NATIVE
=x86 ;;
72
x64)
NATIVE
=x86_64 ;;
75
DST=platform_tools/android/apps/$APP/src/main/libs/$
NATIVE
/cts/tools/dasm/src/dasm/
sym.java
39
static final int
NATIVE
= 42;
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
Modifier.java
39
NATIVE
,
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
Modifier.java
15
NATIVE
("
native
"),
/libcore/ojluni/src/main/java/java/lang/reflect/
Modifier.java
166
* {@code
native
} modifier, {@code false} otherwise.
170
* {@code
native
} modifier; {@code false} otherwise.
173
return (mod &
NATIVE
) != 0;
224
* volatile synchronized
native
strictfp
258
if ((mod &
NATIVE
) != 0) sb.append("
native
");
321
* The {@code int} value representing the {@code
native
}
324
public static final int
NATIVE
= 0x00000100;
426
Modifier.SYNCHRONIZED | Modifier.
NATIVE
| Modifier.STRICT;
/toolchain/binutils/binutils-2.27/ld/
genscripts.sh
107
# be set for any libpath-using emulation;
NATIVE
will be set for a
108
# libpath-using emulation where ${host} = ${target}.
NATIVE
115
NATIVE
=yes
123
# If the emulparams file sets
NATIVE
, make sure USE_LIBPATH is set also.
124
if test "x$
NATIVE
" = "xyes" ; then
192
# Always search $(tooldir)/lib, aka /usr/local/TARGET/lib when
native
197
if [ "x${
NATIVE
}" = "xyes" ] ; then
206
case "${
NATIVE
}:${LIBPATH_SUFFIX}:${TOOL_LIB}" in
217
if [ "x${
NATIVE
}" = "xyes" ] ; then
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/chunks/
ModifierValidator.java
26
private final Modifier[] interfaceWithNothingSpecial = new Modifier[]{PUBLIC, PROTECTED, ABSTRACT, FINAL, SYNCHRONIZED,
NATIVE
, STRICTFP};
27
private final Modifier[] interfaceWithStaticAndDefault = new Modifier[]{PUBLIC, PROTECTED, ABSTRACT, STATIC, FINAL, SYNCHRONIZED,
NATIVE
, STRICTFP, DEFAULT};
28
private final Modifier[] interfaceWithStaticAndDefaultAndPrivate = new Modifier[]{PUBLIC, PROTECTED, PRIVATE, ABSTRACT, STATIC, FINAL, SYNCHRONIZED,
NATIVE
, STRICTFP, DEFAULT};
107
for (Modifier m : asList(PRIVATE, STATIC, FINAL,
NATIVE
, STRICTFP, SYNCHRONIZED)) {
129
validateModifiers(n, reporter, PUBLIC, PROTECTED, PRIVATE, ABSTRACT, STATIC, FINAL, SYNCHRONIZED,
NATIVE
, STRICTFP);
168
validateAtMostOneOf(n, reporter,
NATIVE
, STRICTFP);