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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMHTMLOptionsCollectionCustom.cpp 26 unsigned WebDOMHTMLOptionsCollection::length() const function in class:WebDOMHTMLOptionsCollection
31 return impl()->length();
34 void WebDOMHTMLOptionsCollection::setLength(unsigned length)
40 impl()->setLength(length, ec);
  /external/webkit/Source/WebCore/storage/
SQLResultSetRowList.cpp 36 unsigned SQLResultSetRowList::length() const function in class:WebCore::SQLResultSetRowList
  /frameworks/compile/libbcc/lib/Renderscript/runtime/arch/
dot_length.c 35 extern float __attribute__((overloadable)) length(float v) { function
38 extern float __attribute__((overloadable)) length(float2 v) { function
41 extern float __attribute__((overloadable)) length(float3 v) { function
44 extern float __attribute__((overloadable)) length(float4 v) { function
  /dalvik/vm/mterp/c/
OP_NEW_ARRAY.cpp 5 s4 length; local
10 vsrc1 = INST_B(inst); /* length reg */
14 length = (s4) GET_REGISTER(vsrc1);
15 if (length < 0) {
16 dvmThrowNegativeArraySizeException(length);
29 newArray = dvmAllocArrayByClass(arrayClass, length, ALLOC_DONT_TRACK);
  /external/bison/lib/
basename.c 31 size_t length; local
39 length = base_len (base);
40 if (ISSLASH (base[length]))
41 length++;
48 char *p = xmalloc (length + 3);
51 memcpy (p + 2, base, length);
52 p[length + 2] = '\0';
57 return xstrndup (base, length);
  /external/qemu/android/utils/
setenv.c 10 size_t length = strlen(name) + strlen(value) + 2; local
11 char *string = malloc(length);
12 snprintf(string, length, "%s=%s", name, value);
  /external/v8/test/mjsunit/regress/
regress-515.js 32 var length = 2048; variable
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.cpp 42 int URLSegments::length() const function in class:WTF::URLSegments
  /external/webkit/Source/WebCore/platform/text/
ParserUtilities.h 29 inline bool skipString(const UChar*& ptr, const UChar* end, const UChar* name, int length)
31 if (end - ptr < length)
33 if (memcmp(name, ptr, sizeof(UChar) * length))
35 ptr += length;
41 int length = strlen(str); local
42 if (end - ptr < length)
44 for (int i = 0; i < length; ++i) {
48 ptr += length;
  /external/webkit/Source/WebCore/platform/win/
LocalizedStringsWin.cpp 52 DWORD length = ::GetModuleFileNameW(instanceHandle(), dllPathBuffer, WTF_ARRAY_LENGTH(dllPathBuffer)); local
53 ASSERT(length);
54 ASSERT(length < WTF_ARRAY_LENGTH(dllPathBuffer));
56 RetainPtr<CFStringRef> dllPath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<const UniChar*>(dllPathBuffer), length, kCFAllocatorNull));
  /external/webkit/Source/WebKit2/Shared/win/
WebKitBundle.cpp 45 DWORD length = ::GetModuleFileNameW(gInstance, dllPathBuffer, WTF_ARRAY_LENGTH(dllPathBuffer)); local
46 ASSERT(length && length < WTF_ARRAY_LENGTH(dllPathBuffer));
48 RetainPtr<CFStringRef> dllPath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<const UniChar*>(dllPathBuffer), length, kCFAllocatorNull));
  /external/icu4c/common/
ucasemap_titlecase_brkiter.cpp 59 int32_t length=ucasemap_mapUTF8(csm, local
64 return length;
ucnvdisp.c 40 int32_t length; local
60 name=ures_getStringByKey(rb, cnv->sharedData->staticData->name, &length, &localStatus);
68 u_memcpy(displayName, name, uprv_min(length, displayNameCapacity)*U_SIZEOF_UCHAR);
71 length=(int32_t)uprv_strlen(cnv->sharedData->staticData->name);
72 u_charsToUChars(cnv->sharedData->staticData->name, displayName, uprv_min(length, displayNameCapacity));
74 return u_terminateUChars(displayName, displayNameCapacity, length, pErrorCode);
ures_cnv.c 33 int32_t length; local
43 length=u_strlen(myPath);
44 if(length>=sizeof(pathBuffer)) {
47 } else if(uprv_isInvariantUString(myPath, length)) {
52 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */
57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
62 if(length>=sizeof(pathBuffer)) {
ustr_titlecase_brkiter.cpp 63 int32_t length=ustrcase_map( local
71 return length;
ustrfmt.c 24 * @return the length of the result, not including any terminating
31 int32_t length = 0; local
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
40 } while(i && length<capacity);
42 while (length < minwidth){
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
46 if(length<capacity){
47 buffer[length] = (UChar) 0x0000;
51 for (j = 0; j < (length / 2); j++){
52 temp = buffer[(length-1) - j]
    [all...]
  /external/icu4c/common/unicode/
rep.h 49 * in the string: <code>length()</code>, <code>charAt()</code>,
85 inline int32_t length() const;
89 * @param offset an integer between 0 and <code>length()</code>-1
103 * @param offset an integer between 0 and <code>length()</code>-1
139 * <= length()</code>.
152 // convention; API taking start/length are named <operation>, and
165 * length()</code>.
222 * Virtual version of length().
241 Replaceable::length() const { function in class:Replaceable
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_HullCollisionShape.cpp 53 //TODO: capacity will not always be length!
54 int length = env->GetDirectBufferCapacity(array)/4; local
56 for (int i = 0; i < length; i+=3) {
  /external/v8/test/mjsunit/
array-pop.js 35 assertEquals(6, a.length, "length 1st pop");
38 assertEquals(5, a.length, "length 2nd pop");
41 assertEquals(4, a.length, "length 3rd pop");
44 assertEquals(3, a.length, "length 4th pop");
47 assertEquals(2, a.length, "length 5th pop")
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSStringRefCF.cpp 43 size_t length = CFStringGetLength(string); local
44 if (length) {
45 OwnArrayPtr<UniChar> buffer = adoptArrayPtr(new UniChar[length]);
46 CFStringGetCharacters(string, CFRangeMake(0, length), buffer.get());
48 return OpaqueJSString::create(reinterpret_cast<UChar*>(buffer.get()), length).leakRef();
56 return CFStringCreateWithCharacters(alloc, reinterpret_cast<const UniChar*>(string->characters()), string->length());
  /external/webkit/Source/WebCore/bindings/js/
JSArrayBufferCustom.cpp 41 int length = 0; local
43 length = exec->argument(0).toInt32(exec); // NaN/+inf/-inf returns 0, this is intended by WebIDL
45 if (length >= 0)
46 buffer = ArrayBuffer::create(static_cast<unsigned>(length), 1);
JSCSSRuleListCustom.cpp 42 unsigned length = list->length(); local
43 for (unsigned i = 0; i < length; ++i)
JSWebKitAnimationListCustom.cpp 42 unsigned length = list->length(); local
43 for (unsigned i = 0; i < length; ++i)
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ArrayBufferCustom.cpp 50 // with a zero-length argument list. The V8DOMWrapper will then
55 // we always create at least a zero-length ArrayBuffer, even
62 int argLength = args.Length();
63 int length = 0; local
65 length = toInt32(args[0]); // NaN/+inf/-inf returns 0, this is intended by WebIDL
67 if (length >= 0)
68 buffer = ArrayBuffer::create(static_cast<unsigned>(length), 1);
  /external/webkit/Source/WebCore/dom/
StaticNodeList.cpp 36 unsigned StaticNodeList::length() const function in class:WebCore::StaticNodeList
50 size_t length = m_nodes.size(); local
51 for (size_t i = 0; i < length; ++i) {

Completed in 1262 milliseconds

1 2 3 4 5 6 7 8 91011>>