HomeSort by relevance Sort by last modified time
    Searched full:outstring (Results 1 - 25 of 31) sorted by null

1 2

  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlWireAdapter.java 109 String outString = mBuilder.getOuterXML(poloMessage, STATUS_OK);
114 outString = outString.replace("\n", "");
115 outString = outString.replace("><", ">\n<");
117 byte[] outBytes = outString.getBytes();
  /external/chromium_org/third_party/angle/src/libGLESv2/
BinaryStream.h 67 std::string outString;
68 readString(&outString);
69 return outString;
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 255 // returned indirectly in OutString which whos size is specified in the
262 uint64_t BytesSize, uint64_t PC, char *OutString,
300 std::memcpy(OutString, InsnStr.data(), OutputSize);
301 OutString[OutputSize] = '\0'; // Terminate string.
  /external/chromium_org/third_party/icu/source/common/
uinvchar.c 450 const char *outString, int32_t outLength,
456 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) {
461 outLength=(int32_t)uprv_strlen(outString);
470 c=(uint8_t)*outString++;
495 const char *outString, int32_t outLength,
501 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) {
506 outLength=(int32_t)uprv_strlen(outString);
515 c=(uint8_t)*outString++;
udataswp.h 132 const char *outString, int32_t outLength,
307 const char *outString, int32_t outLength,
316 const char *outString, int32_t outLength,
  /external/icu/icu4c/source/common/
uinvchar.c 450 const char *outString, int32_t outLength,
456 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) {
461 outLength=(int32_t)uprv_strlen(outString);
470 c=(uint8_t)*outString++;
495 const char *outString, int32_t outLength,
501 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) {
506 outLength=(int32_t)uprv_strlen(outString);
515 c=(uint8_t)*outString++;
udataswp.h 132 const char *outString, int32_t outLength,
309 const char *outString, int32_t outLength,
318 const char *outString, int32_t outLength,
  /external/tinyxml/
tinyxml.cpp 42 void TiXmlBase::PutString( const TIXML_STRING& str, TIXML_STRING* outString )
67 outString->append( str.c_str() + i, 1 );
75 outString->append( entity[0].str, entity[0].strLength );
80 outString->append( entity[1].str, entity[1].strLength );
85 outString->append( entity[2].str, entity[2].strLength );
90 outString->append( entity[3].str, entity[3].strLength );
95 outString->append( entity[4].str, entity[4].strLength );
112 outString->append( buf, (int)strlen( buf ) );
118 //outString->append( &realc, 1 );
119 *outString += (char) c; // somewhat more efficient function call
    [all...]
  /frameworks/base/tools/aapt/
XMLNode.cpp 187 String16* outString,
269 if (!ResTable::collectString(outString, curString.string(),
289 span.span.firstChar = span.span.lastChar = outString->size();
304 if (!ResTable::collectString(outString, curString.string(),
339 if (outString->size() > 0) {
340 span.span.lastChar = outString->size()-1;
356 String8(spanTag).string(), String8(*outString).string());
366 const char16_t* str = outString->string();
368 const char16_t* e = p + outString->size();
376 unsigned int length = words_cnt > 3 ? outString->size()
    [all...]
XMLNode.h 26 String16* outString,
  /external/chromium_org/third_party/angle/src/compiler/translator/
ShaderLang.cpp 254 void ShGetBuiltInResourcesString(const ShHandle handle, size_t outStringLen, char *outString)
256 if (!handle || !outString)
268 strncpy(outString, compiler->getBuiltInResourcesString().c_str(), outStringLen);
269 outString[outStringLen - 1] = '\0';
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonWireAdapter.java 118 String outString;
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 87 bool readFile(const char* name, String8& outString);
BootAnimation.cpp 432 bool BootAnimation::readFile(const char* name, String8& outString)
447 outString.setTo((char const*)entryMap->getDataPtr(), entryMap->getDataLength());
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 52 void TiXmlBase::EncodeString( const TIXML_STRING& str, TIXML_STRING* outString )
77 outString->append( str.c_str() + i, 1 );
85 outString->append( entity[0].str, entity[0].strLength );
90 outString->append( entity[1].str, entity[1].strLength );
95 outString->append( entity[2].str, entity[2].strLength );
100 outString->append( entity[3].str, entity[3].strLength );
105 outString->append( entity[4].str, entity[4].strLength );
122 outString->append( buf, (int)strlen( buf ) );
128 //outString->append( &realc, 1 );
129 *outString += (char) c; // somewhat more efficient function call
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 52 void TiXmlBase::EncodeString( const TIXML_STRING& str, TIXML_STRING* outString )
77 outString->append( str.c_str() + i, 1 );
85 outString->append( entity[0].str, entity[0].strLength );
90 outString->append( entity[1].str, entity[1].strLength );
95 outString->append( entity[2].str, entity[2].strLength );
100 outString->append( entity[3].str, entity[3].strLength );
105 outString->append( entity[4].str, entity[4].strLength );
122 outString->append( buf, (int)strlen( buf ) );
128 //outString->append( &realc, 1 );
129 *outString += (char) c; // somewhat more efficient function call
    [all...]
  /external/llvm/include/llvm-c/
Disassembler.h 224 * OutString whose size is specified in the parameter OutStringSize. This
230 char *OutString, size_t OutStringSize);
  /external/chromium_org/third_party/icu/source/tools/genrb/
wrtxml.cpp 55 static int32_t write_utf8_file(FileStream* fileStream, UnicodeString outString)
64 outString.getBuffer(),
65 outString.length(),
76 outString.getBuffer(),
77 outString.length(),
    [all...]
  /external/icu/icu4c/source/tools/genrb/
wrtxml.cpp 65 static int32_t write_utf8_file(FileStream* fileStream, UnicodeString outString)
74 outString.getBuffer(),
75 outString.length(),
86 outString.getBuffer(),
87 outString.length(),
    [all...]
  /external/llvm/include/llvm/Support/
OutputBuffer.h 110 void outstring(const std::string &S, unsigned Length) { function in class:llvm::OutputBuffer
  /external/doclava/src/com/google/doclava/
PageMetadata.java 322 StringBuilder outString = new StringBuilder();
334 outString.append(tagList.trim());
336 return outString.toString();
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 698 SmallString<128> OutString;
699 raw_svector_ostream OS(OutString);
723 O.indent(6) << "AsmString = \"" << OutString.str() << "\";\n";
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun_unittest.cc 1406 std::string outstring; local
    [all...]
  /frameworks/base/include/androidfw/
ResourceTypes.h     [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
numrgts.cpp     [all...]

Completed in 2224 milliseconds

1 2