/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
OriginAccessEntry.cpp | 41 : m_protocol(protocol.lower()) 42 , m_host(host.lower()) 62 ASSERT(origin.host() == origin.host().lower()); 63 ASSERT(origin.protocol() == origin.protocol().lower());
|
/external/llvm/lib/Target/R600/ |
AMDGPUMCInstLower.h | 41 /// \brief Lower a MachineInstr to an MCInst 42 void lower(const MachineInstr *MI, MCInst &OutMI) const;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/ |
ctype_base.h | 51 static const mask lower = 1 << 1; member in struct:ctype_base
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/ |
ctype_base.h | 51 static const mask lower = 1 << 1; member in struct:ctype_base
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
MIMETypeRegistry.cpp | 72 return blink::Platform::current()->mimeRegistry()->supportsImageMIMEType(mimeType.lower()) 92 return blink::Platform::current()->mimeRegistry()->supportsJavaScriptMIMEType(mimeType.lower()) 98 return blink::Platform::current()->mimeRegistry()->supportsNonImageMIMEType(mimeType.lower()) 105 && blink::Platform::current()->mimeRegistry()->supportsMediaSourceMIMEType(mimeType.lower(), codecs); 111 return blink::Platform::current()->mimeRegistry()->supportsEncryptedMediaMIMEType(keySystem, mimeType.lower(), codecs);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
delay_manager_unittest.cc | 140 int lower, higher; local 141 dm_->BufferLimits(&lower, &higher); 142 // Expect |lower| to be 75% of target level, and |higher| to be target level, 143 // but also at least 20 ms higher than |lower|, which is the limiting case 145 EXPECT_EQ((1 << 8) * 3 / 4, lower); 146 EXPECT_EQ(lower + (20 << 8) / kFrameSizeMs, higher); 164 int lower, higher; local 165 dm_->BufferLimits(&lower, &higher); 166 // Expect |lower| to be 75% of target level, and |higher| to be target level, 167 // but also at least 20 ms higher than |lower|, which is the limiting cas 190 int lower, higher; local 213 int lower, higher; local [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBKeyRange.cpp | 54 IDBKeyRange::IDBKeyRange(IDBKey* lower, IDBKey* upper, LowerBoundType lowerType, UpperBoundType upperType) 55 : m_lower(lower) 124 IDBKey* lower = scriptValueToIDBKey(toIsolate(context), lowerValue); local 127 if (!lower || !lower->isValid() || !upper || !upper->isValid()) { 131 if (upper->isLessThan(lower)) { 132 exceptionState.throwDOMException(DataError, "The lower key is greater than the upper key."); 135 if (upper->isEqual(lower) && (lowerOpen || upperOpen)) { 136 exceptionState.throwDOMException(DataError, "The lower key and upper key are equal and one of the bounds is open."); 140 return IDBKeyRange::create(lower, upper, lowerOpen ? LowerBoundOpen : LowerBoundClosed, upperOpen ? UpperBoundOpen : UpperBoundClos (…) [all...] |
IDBKeyRange.idl | 29 [ImplementedAs=lowerValue, CallWith=ScriptState] readonly attribute any lower; 37 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, [Default=Undefined] optional boolean lowerOpen, [Default=Undefined] optional boolean upperOpen);
|
/external/chromium_org/ui/aura/test/ |
test_windows.h | 35 // Returns true if |upper| is above |lower| in the window stacking order. 36 bool WindowIsAbove(Window* upper, Window* lower); 38 // Returns true if |upper|'s layer is above |lower|'s layer in the layer 40 bool LayerIsAbove(Window* upper, Window* lower);
|
/external/llvm/lib/Target/SystemZ/ |
SystemZMCInstLower.h | 1 //===-- SystemZMCInstLower.h - Lower MachineInstr to MCInst ----*- C++ -*--===// 32 // Lower MachineInstr MI to MCInst OutMI. 33 void lower(const MachineInstr *MI, MCInst &OutMI) const;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
AMDGPUMCInstLower.cpp | 1 //===- AMDGPUMCInstLower.cpp - Lower AMDGPU MachineInstr to an MCInst -----===// 10 // This file contains code to lower AMDGPU MachineInstrs to their corresponding 30 void AMDGPUMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:AMDGPUMCInstLower 73 MCInstLowering.lower(BundledInst, MCBundleInst); 79 MCInstLowering.lower(MI, TmpInst);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
AMDGPUMCInstLower.cpp | 1 //===- AMDGPUMCInstLower.cpp - Lower AMDGPU MachineInstr to an MCInst -----===// 10 // This file contains code to lower AMDGPU MachineInstrs to their corresponding 30 void AMDGPUMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:AMDGPUMCInstLower 73 MCInstLowering.lower(BundledInst, MCBundleInst); 79 MCInstLowering.lower(MI, TmpInst);
|
/ndk/sources/android/support/src/musl-ctype/ |
towctrans.c | 10 signed char lower; member in struct:__anon42814 225 static wchar_t __towcase(wchar_t wc, int lower) 228 int lmul = 2*lower-1; 229 int lmask = lower-1; 236 /* special case because the diff between upper/lower is too big */ 237 if (lower && (unsigned)wc - 0x10a0 < 0x2e) 240 if (!lower && (unsigned)wc - 0x2d00 < 0x26) 244 int base = casemaps[i].upper + (lmask & casemaps[i].lower); 246 if (casemaps[i].lower == 1) 247 return wc + lower - ((wc-casemaps[i].upper)&1) [all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
StringCaseMappingBenchmark.java | 30 LOWER2(lower(2)), enum constant in enum:StringCaseMappingBenchmark.Inputs 34 LOWER8(lower(8)), enum constant in enum:StringCaseMappingBenchmark.Inputs 38 LOWER32(lower(32)), enum constant in enum:StringCaseMappingBenchmark.Inputs 42 LOWER512(lower(512)), enum constant in enum:StringCaseMappingBenchmark.Inputs 46 LOWER2048(lower(2048)), enum constant in enum:StringCaseMappingBenchmark.Inputs 50 LOWER_1M(lower(1024*1024)), enum constant in enum:StringCaseMappingBenchmark.Inputs 56 private static String lower(int length) { method in class:StringCaseMappingBenchmark.Inputs 126 // slow path: s contains lower case chars
|
/external/icu/icu4c/source/i18n/ |
collationweights.cpp | 123 // We use only the lower 16 bits for secondary weights. 137 // We use only the lower 16 bits for tertiary weights. 218 printf("length of lower limit 0x%08lx is %ld\n", lowerLimit, lowerLength); 226 printf("error: no space between lower & upper limits\n"); 235 printf("error: lower limit 0x%08lx is a prefix of upper limit 0x%08lx\n", lowerLimit, upperLimit); 240 /* if the upper limit is a prefix of the lower limit then the earlier test lowerLimit>=upperLimit has caught it */ 242 WeightRange lower[5], middle, upper[5]; /* [0] and [1] are not used - this simplifies indexing */ local 243 uprv_memset(lower, 0, sizeof(lower)); 250 * lower[4] [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
lower_jumps.cpp | 72 * lower strength. Accordingly, strength is used as a heuristic to 264 * Note that visiting a jump does not lower it. That is the 308 * Insert the instructions necessary to lower a return statement, 329 * If the given instruction is a return, lower it to instructions 357 * If the given instruction is a break, lower it to an instruction 372 * If the block ends in a conditional or unconditional break, lower 462 bool lower; local 466 lower = false; /* don't change this, code relies on it */ 469 lower = lower_continue; 473 /* never lower "canonical break" * 608 int lower; local [all...] |
/external/chromium_org/tools/metrics/histograms/ |
pretty_print.py | 36 'histograms': ('histogram', lambda n: n.attributes['name'].value.lower()), 37 'enums': ('enum', lambda n: n.attributes['name'].value.lower()), 40 'histogram_suffixes', lambda n: n.attributes['name'].value.lower()), 42 lambda n: n.attributes['name'].value.lower()), 44 'fieldtrials': ('fieldtrial', lambda n: n.attributes['name'].value.lower()), 46 lambda n: n.attributes['name'].value.lower()),
|
/external/elfutils/0.153/libdw/ |
dwarf_aggregate_size.c | 99 Dwarf_Sword lower; local 109 if (INTUSE(dwarf_formsdata) (attr_mem, &lower) != 0) 114 /* Determine default lower bound from language, 128 lower = 0; 141 lower = 1; 148 if (unlikely (lower > upper)) 150 count = upper - lower + 1;
|
/external/mesa3d/src/glsl/ |
lower_jumps.cpp | 72 * lower strength. Accordingly, strength is used as a heuristic to 264 * Note that visiting a jump does not lower it. That is the 308 * Insert the instructions necessary to lower a return statement, 329 * If the given instruction is a return, lower it to instructions 357 * If the given instruction is a break, lower it to an instruction 372 * If the block ends in a conditional or unconditional break, lower 462 bool lower; local 466 lower = false; /* don't change this, code relies on it */ 469 lower = lower_continue; 473 /* never lower "canonical break" * 608 int lower; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
message.py | 75 f = f[:i].strip().lower() + '=' + f[i+1:].strip() 199 cte = self.get('content-transfer-encoding', '').lower() 311 name = name.lower() 314 if k.lower() != name: 319 return name.lower() in [k.lower() for k, v in self._headers] 362 name = name.lower() 364 if k.lower() == name: 382 name = name.lower() 384 if k.lower() == name [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 53 name = name.lower() 54 self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name] 82 name = name.lower() 83 return [kv[1] for kv in self._headers if kv[0].lower()==name] 88 name = name.lower() 90 if k.lower()==name:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
message.py | 75 f = f[:i].strip().lower() + '=' + f[i+1:].strip() 199 cte = self.get('content-transfer-encoding', '').lower() 311 name = name.lower() 314 if k.lower() != name: 319 return name.lower() in [k.lower() for k, v in self._headers] 362 name = name.lower() 364 if k.lower() == name: 382 name = name.lower() 384 if k.lower() == name [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 53 name = name.lower() 54 self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name] 82 name = name.lower() 83 return [kv[1] for kv in self._headers if kv[0].lower()==name] 88 name = name.lower() 90 if k.lower()==name:
|
/external/chromium_org/net/spdy/ |
spdy_frame_builder.h | 104 uint32 lower = htonl(value); local 106 WriteBytes(&lower, sizeof(lower)));
|
/external/libcxx/test/localization/locale.categories/category.ctype/ |
ctype_base.pass.cpp | 27 // static const mask lower = 1 << 4; 48 assert(std::ctype_base::lower); 58 & std::ctype_base::lower 70 test(std::ctype_base::lower);
|