HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 226 - 250 of 856) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 31 struct string { struct in namespace:test3
36 string s;
37 string::iterator i = s.foo(); // expected-error {{no member named 'foo'}}
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMultimapTest.java 39 ImmutableMultimap<String, Integer> multimap = new Builder<String, Integer>()
46 Builder<String, Integer> builder = new Builder<String, Integer>();
53 builder.put(Maps.immutableEntry((String) null, 1));
60 String string; field in class:ImmutableMultimapTest.StringHolder
64 ImmutableMultimap.Builder<String, Integer> builder =
65 new Builder<String, Integer>();
67 holder.string = "one"
    [all...]
  /external/icu4c/i18n/
coleitr.cpp 72 * Get the ordering priority of the next character in the string.
74 * occured or if the end of string has been reached
101 // and we only compare the string not the contents of the normalization
103 int thislength = (int)(m_data_->iteratordata_.endp - m_data_->iteratordata_.string);
104 int thatlength = (int)(that.m_data_->iteratordata_.endp - that.m_data_->iteratordata_.string);
110 if (uprv_memcmp(m_data_->iteratordata_.string,
111 that.m_data_->iteratordata_.string,
143 * Get the ordering priority of the previous collation element in the string.
146 * occured or if the start of string has been reached.
154 * Resets the cursor to the beginning of the string
178 UChar *string = NULL; local
239 UnicodeString string; local
286 UChar *string = NULL; local
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglTimer.java 123 * <code>toString</code> returns the string representation of this timer
130 * @return the string representation of this object.
133 public String toString() {
134 String string = super.toString(); local
135 string += "\nTime: " + oldTime;
136 string += "\nFPS: " + getFrameRate();
137 return string;
  /external/open-vcdiff/src/
encodetable.h 22 #include <string>
108 // string. The output string is not null-terminated and may contain embedded
118 typedef std::string string; typedef in class:open_vcdiff::VCDiffCodeTableWriter
136 // instructions_and_sizes_ string.
150 // Appends the size value to the string as a variable-length integer.
151 static void AppendSizeToString(size_t size, string* out);
153 // Appends the size value to the output string as a variable-length integer.
161 // None of the following 'string' objects are null-terminated
    [all...]
encodetable_test.cc 20 #include <string.h> // strlen
22 #include <string>
35 typedef std::string string; typedef in class:open_vcdiff::__anon12339::CodeTableWriterTest
109 EXPECT_EQ(s, string(out.data() + out_index, size));
142 string out;
143 OutputString<string> output_string;
headerparser_test.cc 19 #include <string>
31 typedef std::string string; typedef in class:open_vcdiff::__anon12340::VCDiffHeaderParserTest
92 string encoded_buffer_;
  /external/qemu/android/tools/
gen-hw-config.py 16 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/quake/quake/src/QW/client/
net_chan.c 144 static char string[8192]; // ??? why static? local
147 vsprintf (string, format,argptr);
151 Netchan_OutOfBand (adr, strlen(string), (byte *)string);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
PluralResourceLoader.java 16 Map<String, PluralRules> plurals = new HashMap<String, PluralRules>();
24 public String getValue(int resourceId, int quantity) {
25 String name = resourceExtractor.getResourceName(resourceId);
30 return p.string;
36 @Override protected void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException {
42 String value = childNode.getTextContent();
43 String quantity = childNode.getAttributes().getNamedItem("quantity").getTextContent();
54 @Override public Object convertRawValue(String rawValue) {
77 final String quantity, string field in class:PluralResourceLoader.Plural
    [all...]
  /external/smack/src/org/xbill/DNS/
NXTRecord.java 72 /** Converts rdata to a String */
73 String
81 sb.append(Type.string(i));
Section.java 37 private static String [] longSections = new String[4];
38 private static String [] updateSections = new String[4];
63 /** Converts a numeric Section into an abbreviation String */
64 public static String
65 string(int i) { method in class:Section
69 /** Converts a numeric Section into a full description String */
70 public static String
77 * Converts a numeric Section into a full description String for an updat
    [all...]
  /external/v8/src/extensions/
externalize-string-extension.cc 28 #include "externalize-string-extension.h"
53 typedef SimpleStringResource<char, v8::String::ExternalAsciiStringResource>
55 typedef SimpleStringResource<uc16, v8::String::ExternalStringResource>
65 v8::Handle<v8::String> str) {
66 if (strcmp(*v8::String::AsciiValue(str), "externalizeString") == 0) {
69 ASSERT(strcmp(*v8::String::AsciiValue(str), "isAsciiString") == 0);
78 return v8::ThrowException(v8::String::New(
79 "First parameter to externalizeString() must be a string."));
86 return v8::ThrowException(v8::String::New(
91 Handle<String> string = Utils::OpenHandle(*args[0].As<v8::String>()) local
    [all...]
  /external/webkit/Source/JavaScriptCore/API/tests/
minidom.c 88 JSStringRef string = JSValueToStringCopy(context, arguments[0], exception); local
89 size_t numChars = JSStringGetMaximumUTF8CStringSize(string);
91 JSStringGetUTF8CString(string, stringUTF8, numChars);
  /external/webkit/Source/WebCore/bridge/
testqtbindings.cpp 37 #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/platform/haiku/
PasteboardHaiku.cpp 41 #include <String.h>
97 BString string(frame->selectedText());
101 string.ReplaceAll(utf8BlankLine, "\n");
103 data->AddData("text/plain", B_MIME_TYPE, string.String(), string.Length());
106 data->AddData("text/html", B_MIME_TYPE, markupString.String(), markupString.Length());
111 void Pasteboard::writePlainText(const String& text)
122 BString string(text);
123 data->AddData("text/plain", B_MIME_TYPE, string.String(), string.Length())
145 BString string; local
    [all...]
  /external/webkit/Source/WebCore/platform/text/
TextCodecLatin1.cpp 119 String TextCodecLatin1::decode(const char* bytes, size_t length, bool, bool, bool&)
122 String result = String::createUninitialized(length, characters);
196 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;
  /external/webkit/Source/WebCore/platform/wx/wxcode/win/
non-kerned-drawing.cpp 124 wxString string = wxString((wxChar*)(&glyphs[from]), numGlyphs); local
  /external/webkit/Source/WebKit/chromium/src/
WebIDBKey.cpp 51 WebIDBKey WebIDBKey::createString(const WebString& string)
54 key.assignString(string);
101 void WebIDBKey::assignString(const WebString& string)
103 m_private = IDBKey::createString(string);
133 WebString WebIDBKey::string() const function in class:WebKit::WebIDBKey
135 return m_private->string();
  /external/webkit/Source/WebKit/chromium/tests/
PODIntervalTreeTest.cpp 47 static String string(const float& value) { return String::number(value); } function in struct:WebCore::ValueToString
52 static String string(void* const& value) function in struct:WebCore::ValueToString
54 return String::format("0x%p", value);
93 static String string(int* const& value) function in struct:WebCore::ValueToString
95 return String::format("0x%p", value);
136 static String string(const UserData1& value function in struct:WebCore::ValueToString
193 static String string(const EndpointType1& value) function in struct:WebCore::ValueToString
214 static String string(const int& value) { return String::number(value); } function in struct:WebCore::ValueToString
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebString.h 37 // WebString - A string type suitable for vending to an API.
43 static PassRefPtr<WebString> create(const String& string)
45 return adoptRef(new WebString(string));
50 return adoptRef(new WebString(String(JSStringGetCharactersPtr(jsStringRef), JSStringGetLength(jsStringRef))));
53 static PassRefPtr<WebString> createFromUTF8String(const char* string)
55 return adoptRef(new WebString(String::fromUTF8(string)));
86 bool equalToUTF8String(const char* other) { return m_string == String::fromUTF8(other); }
89 const String& string() const { return m_string; function in class:WebKit::WebString
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp 57 String text = m_popupClient->itemText(i);
115 String itemText = m_popupClient->itemText(index);
118 const UChar* string = itemText.characters(); local
119 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, itemText.defaultWritingDirection() == WTF::Unicode::RightToLeft);
  /external/webkit/Tools/MiniBrowser/win/
BrowserView.cpp 141 CFStringRef string = CFStringCreateWithCharacters(0, (const UniChar*)urlString.data(), urlString.size()); local
142 CFURLRef cfURL = CFURLCreateWithString(0, string, 0);
143 CFRelease(string);
  /external/webkit/Tools/QtTestBrowser/
mainwindow.cpp 186 QString string = urlEdit->text(); local
189 if (mainFrameURL.isValid() && string == mainFrameURL.toString()) {
194 load(string);
  /external/webkit/Tools/android/flex-2.5.4a/
parse.y 661 | '"' string '"'
761 string : string CHAR label
857 /* format_pinpoint_message - write out a message formatted with one string,

Completed in 1800 milliseconds

1 2 3 4 5 6 7 8 91011>>