OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:underscore
(Results
1 - 2
of
2
) sorted by null
/system/media/wilhelm/src/
trace.c
68
const char *
underscore
= function;
local
69
while (*
underscore
!= '\0') {
70
if (*
underscore
== '_') {
75
SL_LOGD("Entering %.*s::%s", (int) (
underscore
- function), function,
76
&
underscore
[1]);
80
++
underscore
;
94
const char *
underscore
= function;
local
95
while (*
underscore
!= '\0') {
96
if (*
underscore
== '_') {
99
++
underscore
;
[
all
...]
/frameworks/base/opengl/tools/glgen/src/
JniCodeEmitter.java
355
int
underscore
= checks[index].indexOf('_');
local
356
if (
underscore
>= 0) {
357
String abbr = checks[index].substring(
underscore
+ 1);
[
all
...]
Completed in 50 milliseconds