Searched defs:string (Results 201 - 225 of 687) sorted by relevance

1234567891011>>

/external/icu4c/tools/ctestfw/
H A Ddbgutil.cpp18 #include <string.h>
57 //fprintf(stderr,"Initializing string cache..\n");
67 newStrs[UDBG_ENUM_COUNT] = new UnicodeString[1]; // empty string
80 // use UDBG_ENUM_COUNT,0 to mean an empty string
94 T_CTEST_API int32_t T_CTEST_EXPORT2 udbg_enumByString(UDebugEnumType type, const UnicodeString& string) { argument
104 if(string == (strs[type][i])) {
/external/icu4c/tools/toolutil/
H A Ddbgutil.cpp18 #include <string.h>
59 //fprintf(stderr,"Initializing string cache..\n");
69 newStrs[UDBG_ENUM_COUNT] = new UnicodeString[1]; // empty string
82 // use UDBG_ENUM_COUNT,0 to mean an empty string
96 U_CAPI int32_t U_EXPORT2 udbg_enumByString(UDebugEnumType type, const UnicodeString& string) { argument
106 if(string == (strs[type][i])) {
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
52 #include <string>
57 // String - a UTF-8 string class.
59 // For historic reasons, we don't use std::string.
61 // TODO(wan@google.com): replace this class with std::string or
64 // Note that String can represent both NULL and the empty string,
65 // while std::string cannot represent NULL.
67 // NULL and the empty string are considered different. NULL is less
68 // than anything (including the empty string) excep
230 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
[all...]
/external/nist-sip/java/gov/nist/core/
H A DLogWriter.java76 public void logWarning(String string) { argument
77 //Log.w(TAG, string);
79 public void logInfo(String string) { argument
80 //Log.i(TAG, string);
517 // * @param string
519 // public void logWarning(String string) {
520 // getLogger().warn(string);
527 // * @param string
529 // public void logInfo(String string) {
530 // getLogger().info(string);
[all...]
H A DStackLogger.java88 * @param string
90 public void logWarning(String string); argument
94 * @param string
96 public void logInfo(String string); argument
/external/proguard/src/proguard/
H A DClassSpecificationVisitorFactory.java493 private static boolean containsWildCards(String string) argument
495 return string != null &&
496 (string.indexOf('*') >= 0 ||
497 string.indexOf('?') >= 0 ||
498 string.indexOf('%') >= 0 ||
499 string.indexOf(',') >= 0 ||
500 string.indexOf("///") >= 0);
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h44 #include <string.h>
48 #include <string>
54 // String - a UTF-8 string class.
56 // We cannot use std::string as Microsoft's STL implementation in
61 // Also, String is different from std::string in that it can represent
62 // both NULL and the empty string, while std::string cannot represent
65 // NULL and the empty string are considered different. NULL is less
66 // than anything (including the empty string) except itself.
70 // string clas
229 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
[all...]
/external/qemu/android/tools/
H A Dgen-hw-config.py16 import sys, os, string, re namespace
25 """quote a string so it can be used in C"""
33 'string': 'HWCFG_STRING',
140 if item.type in [ 'string', 'boolean', 'diskSize' ]:
/external/skia/src/animator/
H A DSkScriptRuntime.cpp10 // turn text into token string
19 // replace script string with script tokens preceeded by special value
34 // parse string literal, continue
328 void SkScriptRuntime::track(SkString* string) { argument
329 SkASSERT(fTrackString.find(string) < 0);
330 *fTrackString.append() = string;
339 void SkScriptRuntime::untrack(SkString* string) { argument
340 int index = fTrackString.find(string);
/external/tinyalsa/
H A Dtinymix.c163 char *string)
174 if (isdigit(string[0])) {
175 int value = atoi(string);
185 if (mixer_ctl_set_enum_by_string(ctl, string))
162 tinymix_set_value(struct mixer *mixer, unsigned int id, char *string) argument
/external/v8/src/extensions/
H A Dexternalize-string-extension.cc28 #include "externalize-string-extension.h"
79 "First parameter to externalizeString() must be a string."));
91 Handle<String> string = Utils::OpenHandle(*args[0].As<v8::String>()); local
92 if (string->IsExternalString()) {
96 if (string->IsAsciiRepresentation() && !force_two_byte) {
97 char* data = new char[string->length()];
98 String::WriteToFlat(*string, data, 0, string->length());
100 data, string->length());
101 result = string
[all...]
/external/v8/tools/
H A Djs2c.py34 import os, re, sys, string namespace
82 def ParseValue(string):
83 string = string.strip()
84 if string.startswith('[') and string.endswith(']'):
85 return string.lstrip('[').rstrip(']').split()
87 return string
190 args = map(string.strip, macro_match.group(2).split(','))
197 args = map(string
[all...]
/external/webkit/Source/JavaScriptCore/API/
H A DJSStringRef.cpp42 JSStringRef JSStringCreateWithUTF8CString(const char* string) argument
45 if (string) {
46 size_t length = strlen(string);
49 if (conversionOK == convertUTF8ToUTF16(&string, string + length, &p, p + length))
53 // Null string.
57 JSStringRef JSStringRetain(JSStringRef string) argument
59 string->ref();
60 return string;
63 void JSStringRelease(JSStringRef string) argument
68 JSStringGetLength(JSStringRef string) argument
73 JSStringGetCharactersPtr(JSStringRef string) argument
78 JSStringGetMaximumUTF8CStringSize(JSStringRef string) argument
84 JSStringGetUTF8CString(JSStringRef string, char* buffer, size_t bufferSize) argument
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DSmallStrings.cpp36 static inline bool isMarked(JSCell* string) argument
38 return string && Heap::isMarked(string);
85 To test our hypothesis, we check if any small string has been marked. If
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DCommon.h12 #include <string>
17 // We need two pieces of information to report errors/warnings - string and
20 // line number while the rest store the string number. Since the shaders are
27 inline TSourceLoc EncodeSourceLoc(int string, int line) { argument
28 return (string << SOURCE_LOC_LINE_SIZE) | (line & SOURCE_LOC_LINE_MASK);
31 inline void DecodeSourceLoc(TSourceLoc loc, int* string, int* line) { argument
32 if (string) *string = loc >> SOURCE_LOC_LINE_SIZE;
50 // Pool version of string.
62 // Persistent string memor
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLCollectionCustom.cpp72 UString string = exec->argument(0).toString(exec); local
73 unsigned index = Identifier::toUInt32(string, ok);
78 return JSValue::encode(getNamedItems(exec, jsCollection, Identifier(exec, string)));
83 UString string = exec->argument(0).toString(exec); local
86 String pstr = ustringToString(string);
/external/webkit/Source/WebCore/bridge/c/
H A Dc_utility.cpp58 // If we got back a null string indicating an unsuccessful conversion, fall back to latin 1.
78 NPString string = { (const NPUTF8*)cstring.data(), static_cast<uint32_t>(cstring.length()) }; local
79 NPN_InitializeVariantWithStringCopy(result, &string);
146 String convertNPStringToUTF16(const NPString* string) argument
148 return String::fromUTF8WithLatin1Fallback(string->UTF8Characters, string->UTF8Length);
/external/webkit/Source/WebCore/bridge/
H A Dnpruntime.cpp72 const char* string = static_cast<IdentifierRep*>(identifier)->string(); local
73 if (!string)
76 return strdup(string);
H A Dtestqtbindings.cpp37 #include <string.h>
51 string = str;
58 qDebug() << "called testString" << string;
59 return string;
65 QString string; member in class:MyObject
/external/webkit/Source/WebCore/html/parser/
H A DHTMLInputStream.h39 // The current segmented string is stored in InputStream. Each of the
43 // We remove characters from the "current" string in the InputStream.
45 // which appends them to the "current" string.
49 // them to the "last" string.
58 void appendToEnd(const SegmentedString& string) argument
60 m_last->append(string);
63 void insertAtCurrentInsertionPoint(const SegmentedString& string) argument
65 m_first.append(string);
97 // the m_last string, |next| is now the last one.
106 // The string |nex
[all...]
/external/webkit/Source/WebCore/platform/
H A DLength.cpp87 PassOwnArrayPtr<Length> newCoordsArray(const String& string, int& len) argument
89 unsigned length = string.length();
90 const UChar* data = string.characters();
121 PassOwnArrayPtr<Length> newLengthArray(const String& string, int& len) argument
123 RefPtr<StringImpl> str = string.impl()->simplifyWhiteSpace();
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DPODIntervalTree.h199 String localMaxValueString = ValueToString<T>::string(localMaxValue);
215 static String string(const PODInterval<T, UserData>& interval) function in struct:WebCore::ValueToString
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecLatin1.cpp196 CString string = CString::newUninitialized(length, bytes); local
198 // Convert the string a fast way and simultaneously do an efficient check to see if it's all ASCII.
207 return string;
H A DTextCodecUserDefined.cpp94 CString string = CString::newUninitialized(length, bytes); local
96 // Convert the string a fast way and simultaneously do an efficient check to see if it's all ASCII.
105 return string;
/external/webkit/Source/WebCore/platform/text/cf/
H A DStringImplCF.cpp110 // make a new string using the old string's allocator, such as some of the call
144 CFStringRef string = CFStringCreateWithCharactersNoCopy(allocator, reinterpret_cast<const UniChar*>(m_data), m_length, kCFAllocatorNull); local
150 return string;

Completed in 2533 milliseconds

1234567891011>>