Searched defs:Text (Results 1 - 25 of 100) sorted by last modified time

1234

/external/tinyxml/
H A Dtinyxml.h144 Text (leaf)
444 Text: the text string
465 Text: the text string
958 returs the character string of the Text node, else null is returned.
982 similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are
1498 TiXmlText* Text() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); } function in class:TiXmlHandle
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h186 Text (leaf)
482 Text: the text string
505 Text: the text string
1094 returns the character string of the Text node, else null is returned.
1118 similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are
1707 TiXmlText* Text() const { return ToText(); } function in class:TiXmlHandle
/external/regex-re2/re2/
H A Dregexp.cc484 string RegexpStatus::Text() const { function in class:re2::RegexpStatus
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_doc.h1080 Text, enumerator in enum:CPDF_FormField::Type
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmserr.c496 static void DefaultLogErrorHandlerFunction(cmsContext ContextID, cmsUInt32Number ErrorCode, const char *Text);
521 void DefaultLogErrorHandlerFunction(cmsContext ContextID, cmsUInt32Number ErrorCode, const char *Text) argument
523 // fprintf(stderr, "[lcms]: %s\n", Text);
528 cmsUNUSED_PARAMETER(Text);
H A Dcmstypes.c696 char* Text = NULL; local
708 Text = (char*) _cmsMalloc(self ->ContextID, SizeOfTag + 1);
709 if (Text == NULL) goto Error;
711 if (io -> Read(io, Text, sizeof(char), SizeOfTag) != SizeOfTag) goto Error;
714 Text[SizeOfTag] = 0;
718 if (!cmsMLUsetASCII(mlu, cmsNoLanguage, cmsNoCountry, Text)) goto Error;
720 _cmsFree(self ->ContextID, Text);
726 if (Text != NULL)
727 _cmsFree(self ->ContextID, Text);
739 char* Text; local
868 char* Text = NULL; local
952 char *Text = NULL; local
3291 SaveDescription(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* Text) argument
3535 char* Text; local
3611 char* Text; local
3641 char* Text; local
[all...]
/external/pdfium/core/src/reflow/
H A Dreflowedpage.h298 typedef enum {Unknow, Text, Image, Path, Line, paragraph} RF_DataType; enumerator in enum:CRF_Data::__anon27934
331 m_Type = Text;
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocketFrame.java235 if (getOpCode() == OpCode.Text) {
314 if (getOpCode() == OpCode.Text) {
334 Continuation(0), Text(1), Binary(2), Close(8), Ping(9), Pong(10); enum constant in enum:WebSocketFrame.OpCode
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp407 bool Text; local
408 if (error(Section.isText(Text)))
410 if (!Text)
607 bool Text, Data, BSS;
608 if (error(Section.isText(Text)))
614 std::string Type = (std::string(Text ? "TEXT " : "") +
/external/llvm/unittests/Support/
H A DSourceMgrTest.cpp25 void setMainBuffer(StringRef Text, StringRef BufferName) { argument
26 MemoryBuffer *MainBuffer = MemoryBuffer::getMemBuffer(Text, BufferName);
/external/lzma/C/
H A DPpmd7.h51 Byte *Base, *LoUnit, *HiUnit, *Text, *UnitsStart; member in struct:__anon25884
/external/llvm/include/llvm/LineEditor/
H A DLineEditor.h50 /// Insert Text at the cursor position.
59 std::string Text; member in struct:llvm::LineEditor::CompletionAction
/external/llvm/include/llvm/MC/
H A DSectionKind.h33 /// Text - Text section, used for functions and other executable code.
34 Text, enumerator in enum:llvm::SectionKind::Kind
138 bool isText() const { return K == Text; }
208 static SectionKind getText() { return get(Text); }
/external/llvm/include/llvm/Support/
H A DSourceMgr.h197 std::string Text; member in class:llvm::SMFixIt
202 : Range(Loc, Loc), Text(Insertion.str()) {
208 : Range(R), Text(Replacement.str()) {
212 StringRef getText() const { return Text; }
220 return Text < Other.Text;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp192 SectionEntry *Text = &Sections[SectionInfo.TextSID]; local
198 intptr_t DeltaForText = computeDelta(Text, EHFrame);
/external/llvm/lib/IR/
H A DCore.cpp753 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) { argument
754 return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Text)));
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectDisassembler.cpp120 MCTextAtom *Text = nullptr; local
129 if (!Text) {
130 Text = Module->createTextAtom(CurAddr, CurAddr);
131 Text->setName(SecName);
133 Text->addInst(Inst, InstSize);
138 Text = nullptr;
/external/llvm/lib/Support/
H A DLocale.cpp8 int columnWidth(StringRef Text) { argument
10 return Text.size();
12 return llvm::sys::unicode::columnWidthUTF8(Text);
H A DUnicode.cpp343 int columnWidthUTF8(StringRef Text) { argument
346 for (size_t i = 0, e = Text.size(); i < e; i += Length) {
347 Length = getNumBytesForUTF8(Text[i]);
348 if (Length <= 0 || i + Length > Text.size())
351 const UTF8 *Start = reinterpret_cast<const UTF8 *>(Text.data() + i);
/external/lldb/include/lldb/Expression/
H A DClangFunction.h544 Text () function in class:lldb_private::ClangFunction
551 /// expression. Text() should contain the definition of this
H A DClangUserExpression.h211 Text () function in class:lldb_private::ClangUserExpression
227 /// expression. Text() should contain the definition of this

Completed in 487 milliseconds

1234