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

<<21222324252627282930>>

  /external/openssh/
clientloop.c 84 #include <string.h>
970 char string[1024]; local
1006 snprintf(string, sizeof string, "%c.\r\n",
1008 buffer_append(berr, string, strlen(string));
1022 snprintf(string, sizeof string,
1026 buffer_append(berr, string,
1027 strlen(string));
    [all...]
sftp-server.c 39 #include <string.h>
447 char *string; local
450 handle_to_string(handle, &string, &hlen);
452 send_data_or_handle(SSH2_FXP_HANDLE, id, string, hlen);
453 xfree(string);
    [all...]
  /external/openssl/crypto/err/
err.h 316 const char *string; member in struct:ERR_string_data_st
  /external/openssl/include/openssl/
err.h 316 const char *string; member in struct:ERR_string_data_st
  /external/qemu/
sockets.c 23 #include <string.h>
113 const char* string; member in struct:__anon13875
135 for ( ; werr->string != NULL; werr++ ) {
153 /* this function returns a string describing the latest Winsock error */
160 for ( ; werr->string; werr++ ) {
162 result = werr->string;
    [all...]
  /external/quake/quake/src/QW/client/
cl_main.c 315 if (!rcon_password.string)
330 strcat (message, rcon_password.string);
343 if (!strlen(rcon_address.string))
351 NET_StringToAdr (rcon_address.string, &to);
566 Con_Printf ("usage: fullserverinfo <complete info string>\n");
599 Con_Printf ("fullinfo <complete info string>\n");
857 if (!allowremotecmd && (!*localid.string || strcmp(localid.string, s))) {
858 if (!*localid.string) {
870 s, localid.string);
1191 char string[1024]; local
1215 char string[1024]; local
    [all...]
  /external/quake/quake/src/QW/server/
sv_main.c 124 static char string[1024]; local
128 Sys_Error ("SV_Error: recursively entered (%s)", string);
133 vsprintf (string,error,argptr);
136 Con_Printf ("SV_Error: %s\n",string);
138 SV_FinalMessage (va("server crashed: %s\n", string));
142 Sys_Error ("SV_Error: %s\n",string);
338 This message can be up to around 5k with worst case string lengths.
556 if (spectator_password.string[0] &&
557 stricmp(spectator_password.string, "none") &&
558 strcmp(spectator_password.string, s)
1397 char string[2048]; local
1425 NET_SendPacket (strlen(string), string, master_adr[i]); local
1438 char string[2048]; local
1448 NET_SendPacket (strlen(string), string, master_adr[i]); local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
R.java 59 public static final class string { class in class:R
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ActivityTest.java 327 int id1 = R.string.hello;
328 String string = activity.getString(id1); local
329 assertEquals("Hello", string);
331 int id = activity.getResources().getIdentifier("hello", "string", "com.xtremelabs.robolectric");
334 String hello = activity.getResources().getString(id);
363 int id = activity.getResources().getIdentifier("just_alot_of_crap", "string", "com.xtremelabs.robolectric");
  /external/skia/legacy/src/animator/
SkScriptTokenizer.cpp 172 void SkScriptEngine2::addTokenString(const SkString& string) {
173 int size = string.size();
175 fActiveStream->write(string.c_str(), size);
423 SkString* string = (*array)[index].fString; local
424 int found = fTrackString.find(string);
580 do { // measure string
589 do { // copy string
732 topType == SkOperand2::kString && fReturnType != SkOperand2::kNoType) { // if result is a string, give handle property a chance to convert it to the property value
733 SkString* string = fValueStack.top().fOperand.fString; local
734 fToken = string->c_str()
    [all...]
  /external/skia/src/animator/
SkScriptTokenizer.cpp 172 void SkScriptEngine2::addTokenString(const SkString& string) {
173 int size = string.size();
175 fActiveStream->write(string.c_str(), size);
423 SkString* string = (*array)[index].fString; local
424 int found = fTrackString.find(string);
580 do { // measure string
589 do { // copy string
732 topType == SkOperand2::kString && fReturnType != SkOperand2::kNoType) { // if result is a string, give handle property a chance to convert it to the property value
733 SkString* string = fValueStack.top().fOperand.fString; local
734 fToken = string->c_str()
    [all...]
  /external/smack/src/org/xbill/DNS/
DNSSEC.java 92 public static String
93 string(int alg) { method in class:DNSSEC.Algorithm
104 value(String s) {
197 DNSSECException(String s) {
231 DNSSEC.Algorithm.string(key.getAlgorithm()) + "/" +
235 DNSSEC.Algorithm.string(sig.getAlgorithm()) + "/" +
381 ECKeyInfo(int length, String p_str, String a_str, String b_str,
382 String gx_str, String gy_str, String n_str
    [all...]
  /external/v8/src/
ic.cc 219 map->RemoveFromCodeCache(String::cast(name), target, index);
291 Failure* IC::ReferenceError(const char* type, Handle<String> name) {
419 Handle<String> name,
487 // And only wrap string, number or boolean.
502 Handle<String> name) {
604 String* string = String::cast(*object); local
605 // Check there's the right string value or wrapper in the receiver slot.
606 ASSERT(string == args[0] || string == JSValue::cast(args[0])->value())
837 Handle<Object> string = object->IsJSValue() local
1084 Handle<String> string = Handle<String>::cast(object); local
    [all...]
preparser.cc 111 case i::Token::STRING:
122 const char* name = i::Token::String(token);
1687 const char* string; local
    [all...]
serialize.cc 1587 ExternalAsciiString* string = ExternalAsciiString::cast(source); local
    [all...]
  /external/v8/test/cctest/
test-heap.cc 44 static void CheckOddball(Object* obj, const char* string) {
48 CHECK(String::cast(print_string)->IsEqualTo(CStrVector(string)));
52 static void CheckSmi(int value, const char* string) {
56 CHECK(String::cast(print_string)->IsEqualTo(CStrVector(string)));
60 static void CheckNumber(double value, const char* string) {
65 CHECK(String::cast(print_string)->IsEqualTo(CStrVector(string)));
154 Handle<String> s = FACTORY->NewStringFromAscii(CStrVector("fisk hest "))
288 Handle<String> string = FACTORY->NewStringFromAscii(CStrVector(name)); local
    [all...]
  /external/valgrind/main/coregrind/
m_errormgr.c 142 Char* string; // Used frequently member in struct:_Error
164 return err->string;
214 Bool name_is_simple_str; /* True if name is a string without
237 Char* string; // String -- use is optional. NULL by default. member in struct:_Supp
248 return su->string;
262 void VG_(set_supp_string) ( Supp* su, Char* string )
264 su->string = string;
643 err->string = s
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
glslang_tab.h 238 TString *string; member in union:YYSTYPE::__anon17640::__anon17641
  /external/webkit/Source/WebCore/dom/
xml_expat_tokenizer.cpp 361 static inline void splitTriplet(const XML_Char *name, String &uri, String &localname, String &prefix)
363 String string[3]; local
370 string[found++] = toQString(start, (next-start));
373 string[found++] = toQString(start);
380 localname = string[0];
383 uri = string[0];
384 localname = string[1]
    [all...]
  /external/webkit/Source/WebCore/editing/
CompositeEditCommand.cpp 300 void CompositeEditCommand::inputText(const String& text, bool selectInsertedText)
327 void CompositeEditCommand::insertTextIntoNode(PassRefPtr<Text> node, unsigned offset, const String& text)
337 void CompositeEditCommand::replaceTextInNode(PassRefPtr<Text> node, unsigned offset, unsigned count, const String& replacementText)
398 static inline bool containsOnlyWhitespace(const String& text)
408 bool CompositeEditCommand::shouldRebalanceLeadingWhitespaceFor(const String& text) const
439 String text = static_cast<Text*>(node)->data();
451 String text = textNode->data();
470 String string = text.substring(upstream, length); local
471 String rebalancedString = stringWithRebalancedWhitespace(string
    [all...]
visible_units.cpp 65 Vector<UChar, 1024> string; local
78 string.append(characters, i);
100 string.prepend(it.characters(), it.length());
103 String iteratorString(it.characters(), it.length());
105 string.prepend(iteratorString.characters(), iteratorString.length());
107 next = searchFunction(string.data(), string.size(), string.size() - suffixLength, MayHaveMoreContext, needMoreContext);
115 next = searchFunction(string.data(), string.size(), string.size() - suffixLength, DontHaveMoreContext, needMoreContext)
145 Vector<UChar, 1024> string; local
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 360 state().m_unparsedStrokeColor = String();
389 state().m_unparsedFillColor = String();
408 String CanvasRenderingContext2D::lineCap() const
413 void CanvasRenderingContext2D::setLineCap(const String& s)
425 String CanvasRenderingContext2D::lineJoin() const
430 void CanvasRenderingContext2D::setLineJoin(const String& s)
497 String CanvasRenderingContext2D::shadowColor() const
502 void CanvasRenderingContext2D::setShadowColor(const String& color)
526 String CanvasRenderingContext2D::globalCompositeOperation() const
531 void CanvasRenderingContext2D::setGlobalCompositeOperation(const String& operation
1855 const UChar* string = text.characters(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 69 String valueToString(const FloatRect& arg)
73 builder.append(String::number(arg.x()));
75 builder.append(String::number(arg.y()));
77 builder.append(String::number(arg.maxX()));
79 builder.append(String::number(arg.maxY()));
98 static String string(const float& value) function in struct:WebCore::ValueToString
100 return String::number(value);
106 static String string(SweepData* const& value function in struct:WebCore::ValueToString
114 static String string(LoopBlinnPathProcessorImplementation::Segment* const& value) function in struct:WebCore::ValueToString
    [all...]
  /external/webkit/Source/WebKit/android/content/
address_detector.cpp 144 std::string AddressDetector::GetContentText(const WebKit::WebRange& range) {
152 GURL AddressDetector::GetIntentURL(const std::string& content_text) {
170 // Keep going through the input string until a potential house number is
527 const char* string; member in struct:StateNameInfo
620 words->at(state_word).end, &state_names[state].string[pos]))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 46 import string namespace
79 'stdiostream.h', 'streambuf.h', 'stream.h', 'strfile.h', 'string',
138 """Matches the string with the pattern, caching the compiled regexp."""
145 """Searches the string for the pattern, caching the compiled regexp."""
166 """Returns the string with replacement done.
182 s: The string on which to do the replacements.
251 """Splits a string into two parts up to first unmatched ')'.
254 s: a string which is a substring of line after '('
326 The empty string if the header is in the right order, or an
719 """Does line terminate so, that the next symbol is in string constant
    [all...]

Completed in 2289 milliseconds

<<21222324252627282930>>