Searched defs:string (Results 226 - 250 of 798) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/core/
H A DStackLogger.java88 * @param string
90 public void logWarning(String string); argument
94 * @param string
96 public void logInfo(String string); argument
/external/openfst/src/include/fst/
H A Dcompat.h29 #include <string>
51 using std::string;
99 void Update(string const &data) {
104 string Digest() {
111 string check_sum_;
116 // Define the UTF8 string conversion function to throw an error
121 bool UTF8StringToLabels(const string&, std::vector<Label>*) { argument
127 bool LabelsToUTF8String(const std::vector<Label>&, string*) {
/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',
155 if item.type in [ 'string', 'boolean', 'diskSize' ]:
/external/skia/src/animator/
H A DSkScriptRuntime.cpp18 // turn text into token string
27 // replace script string with script tokens preceeded by special value
42 // parse string literal, continue
336 void SkScriptRuntime::track(SkString* string) { argument
337 SkASSERT(fTrackString.find(string) < 0);
338 *fTrackString.append() = string;
347 void SkScriptRuntime::untrack(SkString* string) { argument
348 int index = fTrackString.find(string);
/external/tinyalsa/
H A Dtinymix.c104 const char *string; local
109 string = mixer_ctl_get_enum_string(ctl, i);
112 string);
114 printf(" %-s", string);
172 char *string)
183 if (isdigit(string[0])) {
184 int value = atoi(string);
194 if (mixer_ctl_set_enum_by_string(ctl, string))
171 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/test/cctest/
H A Dtest-hashing.cc52 void generate(MacroAssembler* masm, i::Vector<const char> string) { argument
54 // handle the zero length string.
55 ASSERT(string.length() > 0);
60 __ mov(ebx, Immediate(string.at(0)));
62 for (int i = 1; i < string.length(); i++) {
63 __ mov(ebx, Immediate(string.at(i)));
76 __ movq(rbx, Immediate(string.at(0)));
78 for (int i = 1; i < string.length(); i++) {
79 __ movq(rbx, Immediate(string.at(i)));
92 __ mov(ip, Operand(string
155 check(i::Vector<const char> string) argument
[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;
/external/webkit/Source/WebCore/storage/
H A DIDBKey.h54 static PassRefPtr<IDBKey> createString(const String& string) argument
58 idbKey->m_string = string;
82 const String& string() const function in class:WebCore::IDBKey
/external/webkit/Source/WebCore/svg/
H A DSVGGlyphMap.h48 void add(const String& string, const SVGGlyphIdentifier& glyph) argument
50 size_t len = string.length();
55 UChar curChar = string[i];
77 void get(const String& string, Vector<SVGGlyphIdentifier>& glyphs) argument
81 for (size_t i = 0; i < string.length(); ++i) {
82 UChar curChar = string[i];
/external/webkit/Source/WebCore/xml/
H A DXPathValue.h43 static PassRefPtr<ValueData> create(const String& string) { return adoptRef(new ValueData(string)); } argument
51 ValueData(const String& string) : m_string(string) { } argument

Completed in 3986 milliseconds

1234567891011>>