HomeSort by relevance Sort by last modified time
    Searched defs:wide (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/test/PCH/
multiple_decls.h 3 struct wide { int value; }; struct
4 int wide(char);
  /external/skia/legacy/src/animator/
SkTime.cpp 71 UnsignedWide wide; local
74 ::Microseconds(&wide);
75 s.set(wide.hi, wide.lo);
  /external/skia/src/animator/
SkTime.cpp 71 UnsignedWide wide; local
74 ::Microseconds(&wide);
75 s.set(wide.hi, wide.lo);
  /external/chromium/base/
sys_string_conversions_unittest.cc 184 std::wstring wide = kConvertRoundtripCases[i]; local
185 std::wstring trip = base::SysNativeMBToWide(base::SysWideToNativeMB(wide));
186 EXPECT_EQ(wide.size(), trip.size());
187 EXPECT_EQ(wide, trip);
192 std::wstring wide = kConvertRoundtripCases[i]; local
193 std::wstring trip = base::SysNativeMBToWide(WideToUTF8(wide));
194 EXPECT_EQ(wide.size(), trip.size());
195 EXPECT_EQ(wide, trip);
199 std::wstring wide = kConvertRoundtripCases[i]; local
200 std::wstring trip = UTF8ToWide(base::SysWideToNativeMB(wide));
    [all...]
utf_string_conversions_unittest.cc 46 // we round-trip all the wide strings through UTF-8 to make sure everything
52 std::wostringstream wide; local
53 wide << UTF8ToWide(utf8.str());
55 EXPECT_EQ(kConvertRoundtripCases[i], wide.str());
71 const wchar_t* wide; member in struct:base::UTF8ToWideCase
103 std::wstring expected(convert_cases[i].wide);
utf_offset_string_conversions_unittest.cc 67 const wchar_t* wide; member in struct:base::UTF16ToWideCase
77 UTF16ToWideAndAdjustOffset(BuildString16(utf16_to_wide_cases[i].wide),
string_util_unittest.cc 418 std::wstring wide = ASCIIToWide(char_cases[i]); local
419 EXPECT_EQ(wchar_cases[i], wide);
    [all...]
  /dalvik/vm/compiler/codegen/arm/FP/
ThumbVFP.cpp 30 rlSrc = rlSrc.wide ? dvmCompilerUpdateLocWide(cUnit, rlSrc) :
33 if (rlSrc.wide) {
216 if (rlDest.wide) {
231 bool wide = true; local
236 wide = false;
240 wide = false;
  /dalvik/vm/compiler/codegen/mips/FP/
MipsFP.cpp 30 rlSrc = rlSrc.wide ? dvmCompilerUpdateLocWide(cUnit, rlSrc) :
33 if (rlSrc.wide) {
191 assert(rlSrc1.wide);
193 assert(rlSrc2.wide);
195 assert(rlDest.wide);
196 assert(rlResult.wide);
367 if (rlDest.wide) {
383 bool wide = true; local
388 wide = false;
392 wide = false
    [all...]
  /external/chromium/base/i18n/
icu_string_conversions_unittest.cc 96 // On Windows, the field is always identical to |wide|. On Mac and Linux,
98 // BMP (<= U+FFFF). When there is, it is different from |wide| and
99 // is not a real wide string (UTF-32 string) in that each wchar_t in
105 // if it's identical to |wide| on *all* platforms.
112 const wchar_t* wide; member in struct:base::__anon3621
250 std::wstring wide; local
254 &wide);
256 EXPECT_EQ(kConvertCodepageCases[i].wide, wide);
266 success = WideToCodepage(wide, kConvertCodepageCases[i].codepage_name
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
VariableInstruction.java 35 public boolean wide; field in class:VariableInstruction
46 public VariableInstruction(boolean wide)
48 this.wide = wide;
72 this.wide = requiredVariableIndexSize() > 1 ||
87 this.wide = variableInstruction.wide;
242 // Only make the instruction wide if necessary.
243 wide = requiredVariableIndexSize() > 1 ||
252 return wide;
    [all...]
  /dalvik/vm/analysis/
Liveness.cpp 369 /* action <- vA(wide) */
391 /* action <- vA(wide), vB */
409 /* action <- vA(wide), vB, vC */
472 /* vA(wide) <- value */
528 /* vA(wide) <- vB */
537 /* vA <- vB(wide) */
550 /* vA(wide) <- vB(wide) */
586 /* vA(wide) <- vB, vC */
595 /* vA <- vB(wide), vC(wide) *
748 bool wide = (descriptor[0] == 'D' || descriptor[0] == 'J'); local
    [all...]
  /external/chromium/net/base/
escape_unittest.cc 119 string16 wide; local
121 &wide));
122 EXPECT_EQ(wide, EscapeQueryParamValueUTF8(test_str, true));
124 &wide));
125 EXPECT_EQ(wide, EscapeQueryParamValueUTF8(test_str, false));
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 135 case WIDE:
136 return wide(iter, pos);
148 private static String wide(CodeIterator iter, int pos) { method in class:InstructionPrinter
166 throw new RuntimeException("Invalid WIDE operand");
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
FastTimes.c 146 UnsignedWide wide; local
152 wide = (gUpTime) ? (*gA2NS)((*gUpTime)()) :
154 usec1 = (gUseRTC) ? RTCToNano(wide) : WideTo64bit(wide);
160 wide = (gUpTime) ? (*gA2NS)((*gUpTime)()) :
162 usec2 = (gUseRTC) ? RTCToNano(wide) : WideTo64bit(wide);
181 UnsignedWide wide; local
190 wide = (*gA2NS)((*gUpTime)());
191 usec = (double) WideTo64bit(wide) * gScaleUSec + 0.5
223 UnsignedWide wide; local
    [all...]
  /external/skia/tests/
Sk64Test.cpp 156 Sk64 wide; local
161 wide.setMul(rand.nextS(), rand.nextS());
162 SkLONGLONG check = wide.getLongLong();
164 wide.div(denom, Sk64::kTrunc_DivOption);
166 SkLONGLONG w = wide.getLongLong();
170 wide.setMul(rand.nextS(), rand.nextS());
171 wide.abs();
172 denom = wide.getSqrt();
173 int32_t ck = (int32_t)sqrt((double)wide.getLongLong());
177 wide.setMul(rand.nextS(), rand.nextS())
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
printf.h 49 unsigned int wide:1; /* Nonzero for wide character streams. */ member in struct:printf_info
109 PA_WCHAR, /* wide char */
111 PA_WSTRING, /* const wchar_t *, wide character string */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 49 unsigned int wide:1; /* Nonzero for wide character streams. */ member in struct:printf_info
109 PA_WCHAR, /* wide char */
111 PA_WSTRING, /* const wchar_t *, wide character string */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 49 unsigned int wide:1; /* Nonzero for wide character streams. */ member in struct:printf_info
109 PA_WCHAR, /* wide char */
111 PA_WSTRING, /* const wchar_t *, wide character string */
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp 1334 android_native_rect_t wide = {20, 30, 259, 130}; local
    [all...]
  /dalvik/vm/compiler/
CompilerIR.h 40 unsigned wide:1; member in struct:RegLocation
43 u1 highReg:6; // 2nd physical register (if wide)
  /external/valgrind/main/VEX/priv/
guest_amd64_helpers.c 3217 HWord wide = (imm8 & 1); local
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 553 milliseconds

1 2