/gdk/samples/hello-llvm/jni/ |
hello_llvm.c | 4 jstring getStr(JNIEnv*); 10 return getStr(env);
|
/dalvik/tests/043-privates/src/ |
Main.java | 12 System.out.println("PrivatePackage --> " + inst1.getStr()); 13 System.out.println("PrivatePackage --> " + inst2.getStr()); 14 System.out.println("PrivatePackage --> " + inst3.getStr()); 22 public String getStr() { 32 System.out.println("PrivatePackage --> " + inst.getStr());
|
/dalvik/tests/068-classloader/src/ |
Base.java | 14 return dt.getStr();
|
DoubledExtend.java | 17 public String getStr() {
|
BaseOkay.java | 28 return dt.getStr();
|
DoubledExtendOkay.java | 33 public String getStr() {
|
Main.java | 269 String str = de.getStr();
|
/dalvik/tests/068-classloader/src-ex/ |
DoubledExtend.java | 17 public String getStr() {
|
DoubledExtendOkay.java | 33 public String getStr() {
|
/system/core/toolbox/grep/ |
grep.c | 160 fprintf(stderr, getstr(4), __progname); 161 fprintf(stderr, "%s", getstr(5)); 162 fprintf(stderr, "%s", getstr(5)); 163 fprintf(stderr, "%s", getstr(6)); 164 fprintf(stderr, "%s", getstr(7)); 452 errx(2, getstr(3), "--devices"); 463 errx(2, getstr(3), "--directories"); 554 printf(getstr(9), __progname, VERSION); 580 errx(2, getstr(3), "--binary-files"); 600 errx(2, getstr(3), "--color") [all...] |
grep.h | 48 #define getstr(n) errstr[n] macro 53 #define getstr(n) catgets(catalog, 1, n, errstr[n]) macro
|
util.c | 199 fn = label != NULL ? label : getstr(1); 269 printf(getstr(8), fn);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesw.h | 185 #ifdef getstr 186 inline int UNDEF(getstr)(char *_str) { return getstr(_str); } function 187 #undef getstr macro 188 #define getstr UNDEF(getstr) macro 878 int getstr(char* str, int n=-1) { function in class:NCursesWindow 884 int getstr(int y, int x, char* str, int n=-1) { function in class:NCursesWindow 886 // Move the cursor to the requested position and then perform the getstr() [all...] |
curses.h | 570 extern NCURSES_EXPORT(int) getstr (char *); /* generated */ 1029 #define getstr macro [all...] |
ncurses.h | 570 extern NCURSES_EXPORT(int) getstr (char *); /* generated */ 1029 #define getstr macro [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesw.h | 185 #ifdef getstr 186 inline int UNDEF(getstr)(char *_str) { return getstr(_str); } function 187 #undef getstr macro 188 #define getstr UNDEF(getstr) macro 878 int getstr(char* str, int n=-1) { function in class:NCursesWindow 884 int getstr(int y, int x, char* str, int n=-1) { function in class:NCursesWindow 886 // Move the cursor to the requested position and then perform the getstr() [all...] |
curses.h | 570 extern NCURSES_EXPORT(int) getstr (char *); /* generated */ 1029 #define getstr macro [all...] |
ncurses.h | 570 extern NCURSES_EXPORT(int) getstr (char *); /* generated */ 1029 #define getstr macro [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesw.h | 185 #ifdef getstr 186 inline int UNDEF(getstr)(char *_str) { return getstr(_str); } function 187 #undef getstr macro 188 #define getstr UNDEF(getstr) macro 878 int getstr(char* str, int n=-1) { function in class:NCursesWindow 884 int getstr(int y, int x, char* str, int n=-1) { function in class:NCursesWindow 886 // Move the cursor to the requested position and then perform the getstr() [all...] |
curses.h | 570 extern NCURSES_EXPORT(int) getstr (char *); /* generated */ 1029 #define getstr macro [all...] |
ncurses.h | 570 extern NCURSES_EXPORT(int) getstr (char *); /* generated */ 1029 #define getstr macro [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
WireFormatTest.java | 370 assertEquals("foo", message2.getStr()); 415 TestMessageSetExtension2.messageSetExtension).getStr());
|
TextFormatTest.java | 357 TestMessageSetExtension2.messageSetExtension).getStr());
|
/external/tinyxml2/ |
tinyxml2.h | 131 const char* GetStr();
467 const char* Value() const { return value.GetStr(); }
773 const char* Name() const { return name.GetStr(); } ///< The name of the attribute.
774 const char* Value() const { return value.GetStr(); } ///< The value of the attribute.
[all...] |
tinyxml2.cpp | 160 const char* StrPair::GetStr()
789 if ( !XMLUtil::StringEqual( endTag.GetStr(), node->Value() )) {
[all...] |