HomeSort by relevance Sort by last modified time
    Searched defs:STR (Results 1 - 17 of 17) sorted by null

  /external/webkit/WebKit/android/wds/client/
main.cpp 41 #define STR(x) #x
42 #define XSTR(x) STR(x)
  /external/bluetooth/glib/tests/
markup-collect.c 33 #define STR G_MARKUP_COLLECT_STRING
57 else if (strcmp (element_name, "str") == 0)
62 result = collect (STR, "cm", &cm,
70 g_string_append_printf (string, "<str(%d) %s %s %s %s>",
107 { "<str cm='x' am='y'/>", "<str(1) x y (null) (null)>" },
109 { "<str am='x' co='y'/>", "<str(0) (null) (null) (null) (null)>",
112 { "<str am='x'/>", "<str(0) (null) (null) (null) (null)>"
    [all...]
  /external/skia/bench/
TextBench.cpp 101 #define STR "Hamburgefons"
105 static SkBenchmark* Fact0(void* p) { return new TextBench(p, STR, SMALL, false, false); }
106 static SkBenchmark* Fact1(void* p) { return new TextBench(p, STR, SMALL, false, true); }
107 static SkBenchmark* Fact2(void* p) { return new TextBench(p, STR, SMALL, true, false); }
108 static SkBenchmark* Fact3(void* p) { return new TextBench(p, STR, SMALL, true, true); }
109 static SkBenchmark* Fact4(void* p) { return new TextBench(p, STR, BIG, false, false); }
110 static SkBenchmark* Fact5(void* p) { return new TextBench(p, STR, BIG, false, true); }
111 static SkBenchmark* Fact6(void* p) { return new TextBench(p, STR, BIG, true, false); }
112 static SkBenchmark* Fact7(void* p) { return new TextBench(p, STR, BIG, true, true); }
  /system/core/toolbox/
iftop.c 52 #define STR(s) _STR(s)
143 ret = sscanf(p, "%" STR(IFNAMSIZ) "s", ifs->name);
  /external/wpa_supplicant/
config_file.c 576 #define STR(t) write_str(f, #t, ssid)
580 STR(ssid);
591 STR(identity);
592 STR(anonymous_identity);
593 STR(eappsk);
594 STR(nai);
595 STR(password);
596 STR(ca_cert);
597 STR(ca_path);
598 STR(client_cert)
    [all...]
config_winreg.c 726 #define STR(t) write_str(netw, #t, ssid)
730 STR(ssid);
741 STR(identity);
742 STR(anonymous_identity);
743 STR(eappsk);
744 STR(nai);
745 STR(password);
746 STR(ca_cert);
747 STR(ca_path);
748 STR(client_cert)
    [all...]
config.c 68 u8 *str; local
73 str = os_malloc(tlen + 1);
74 if (str == NULL)
76 if (hexstr2bin(value, str, tlen)) {
77 os_free(str);
80 str[tlen] = '\0';
82 return (char *) str;
1072 /* STR: Define a string variable for an ASCII string; f = field name */
1074 #define STR(f) _STR(f), NULL, NULL, NULL, 0
1078 * data length. Unlike STR(), this can be used to store arbitrary binary dat
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
config_winreg.c 172 char *str; local
175 str = wpa_config_read_reg_string(hk, TEXT("uuid"));
176 if (str == NULL)
179 if (uuid_str2bin(str, config->uuid))
182 os_free(str);
191 char *str; local
194 str = wpa_config_read_reg_string(hk, TEXT("os_version"));
195 if (str == NULL)
198 if (hexstr2bin(str, config->os_version, 4))
201 os_free(str);
    [all...]
config_file.c 428 #define STR(f) _STR(f), NULL, NULL
433 { STR(ctrl_interface) },
434 { STR(ctrl_interface_group) } /* deprecated */,
440 { STR(opensc_engine_path) },
441 { STR(pkcs11_engine_path) },
442 { STR(pkcs11_module_path) },
444 { STR(driver_param) },
459 { STR(device_type) },
471 #undef STR
743 #define STR(t) write_str(f, #t, ssid
    [all...]
config.c 64 char *str; local
70 str = os_malloc(*len + 1);
71 if (str == NULL)
73 os_memcpy(str, value, *len);
74 str[*len] = '\0';
75 return str;
77 u8 *str; local
82 str = os_malloc(tlen + 1);
83 if (str == NULL)
85 if (hexstr2bin(value, str, tlen))
    [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssembler.cpp 300 void ARMAssembler::STR(int cc, int Rd, int Rn, uint32_t offset) {
ARMAssemblerProxy.cpp 127 void ARMAssemblerProxy::STR(int cc, int Rd, int Rn, uint32_t offset) {
128 mTarget->STR(cc, Rd, Rn, offset);
  /external/v8/src/mips/
simulator-mips.cc 118 char* str = reinterpret_cast<char*>(instr->InstructionBits()); local
119 if (strlen(str) > 0) {
121 fprintf(coverage_log, "%s\n", str);
137 const char* str = reinterpret_cast<char*>(instr->InstructionBits()); local
138 PrintF("Simulator hit %s\n", str);
248 #define STR(a) #a
249 #define XSTR(a) STR(a)
467 #undef STR
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
numrgts.cpp 230 inline UnicodeString str(const char *input) function
432 UnicodeString str; local
725 * DecimalFormat.parse(String str, ParsePosition pp) loses precision
737 UnicodeString str("0.1234");
739 //Double d1 = new Double(str);
740 //Double d2 = (Double) df.parse(str, new ParsePosition(0));
743 df->parse(str, d2, pp);
767 /*UnicodeString str = Long.toString(Long.MIN_VALUE);
768 logln("Long.MIN_VALUE : " + df.parse(str, new ParsePosition(0)).toString());
770 Number num = df.parse(str, new ParsePosition(0))
859 UnicodeString str; local
2561 UnicodeString str; local
2566 logln(UnicodeString("Ok ") + NUM[i] + " x 0. = " + str); local
2589 UnicodeString str; local
    [all...]
  /external/icu4c/test/intltest/
numrgts.cpp 230 inline UnicodeString str(const char *input) function
432 UnicodeString str; local
725 * DecimalFormat.parse(String str, ParsePosition pp) loses precision
737 UnicodeString str("0.1234");
739 //Double d1 = new Double(str);
740 //Double d2 = (Double) df.parse(str, new ParsePosition(0));
743 df->parse(str, d2, pp);
767 /*UnicodeString str = Long.toString(Long.MIN_VALUE);
768 logln("Long.MIN_VALUE : " + df.parse(str, new ParsePosition(0)).toString());
770 Number num = df.parse(str, new ParsePosition(0))
859 UnicodeString str; local
2562 UnicodeString str; local
2567 logln(UnicodeString("Ok ") + NUM[i] + " x 0. = " + str); local
2590 UnicodeString str; local
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 110 char* str = reinterpret_cast<char*>(instr->InstructionBits() & 0x0fffffff); local
111 if (strlen(str) > 0) {
113 fprintf(coverage_log, "%s\n", str);
128 const char* str = (const char*)(instr->InstructionBits() & 0x0fffffff); local
129 PrintF("Simulator hit %s\n", str);
204 #define STR(a) #a
205 #define XSTR(a) STR(a)
402 #undef STR
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
assyntax.h 627 #define STR(a) CHOICE(str a, str a, str a)
    [all...]

Completed in 1917 milliseconds