Searched refs:text (Results 226 - 250 of 3881) sorted by relevance

1234567891011>>

/external/llvm/test/MC/MachO/
H A Ddarwin-x86_64-nobase-relocs.s8 .text
/external/nist-sip/java/javax/sip/header/
H A DAllowEventsHeader.java3 import java.text.ParseException;
H A DAllowHeader.java3 import java.text.ParseException;
H A DCallIdHeader.java3 import java.text.ParseException;
H A DContentTypeHeader.java3 import java.text.ParseException;
H A DMediaType.java3 import java.text.ParseException;
H A DOrganizationHeader.java3 import java.text.ParseException;
H A DSIPETagHeader.java3 import java.text.ParseException;
H A DSubjectHeader.java3 import java.text.ParseException;
/external/protobuf/src/google/protobuf/io/
H A Dprinter.h35 // Utility class for writing text to a ZeroCopyOutputStream.
52 // text with variable substitutions. Example usage:
66 // Create a printer that writes text to the given output stream. Use the
71 // Print some text after applying variable substitutions. If a particular
72 // variable in the text is not defined, this will crash. Variables to be
76 void Print(const map<string, string>& variables, const char* text);
79 void Print(const char* text);
81 void Print(const char* text, const char* variable, const string& value);
83 void Print(const char* text, const char* variable1, const string& value1,
88 // Indent text b
[all...]
/external/qemu/
H A Dqemu-options.h34 #define DEFHEADING(text)
/external/skia/legacy/src/animator/
H A DSkDrawText.cpp23 SK_MEMBER(text, String),
40 maker.fCanvas->drawText(text.c_str(), text.size(), x, y, *maker.fPaint);
53 value->fOperand.fS32 = (int32_t) text.size();
/external/skia/src/animator/
H A DSkDrawText.cpp23 SK_MEMBER(text, String),
40 maker.fCanvas->drawText(text.c_str(), text.size(), x, y, *maker.fPaint);
53 value->fOperand.fS32 = (int32_t) text.size();
/external/srec/portable/src/
H A DpLastError.c23 void printGetLastErrorInternal(const LCHAR* text, char* file, int line) argument
46 PLogError(L("%s: %s"), text, msg);
48 pfprintf(PSTDERR, L("[%s:%d] %s: %s\n"), file, line, text, msg);
58 pfprintf(PSTDERR, "[%s:%d] %s, errno = %x\n", file, line, text, err);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Expressions/
H A Dshell.js104 function doubleQuote(text)
106 return CHAR_QT_DBL + text + CHAR_QT_DBL;
110 function singleQuote(text)
112 return CHAR_QT + text + CHAR_QT;
/external/webkit/Source/WebCore/html/
H A DTextInputType.cpp45 return InputTypeNames::text();
/external/webkit/Source/WebCore/inspector/front-end/
H A DScriptFormatter.js77 formatContent: function(text, scripts, callback)
79 var scriptRanges = WebInspector.ScriptFormatter.findScriptRanges(text.lineEndings(), scripts);
80 var chunks = this._splitContentIntoChunks(text, scriptRanges);
85 callback(result.text, result.mapping);
90 _splitContentIntoChunks: function(text, scriptRanges)
99 chunk.text = text.substring(start, end);
111 if (currentPosition < text.length)
112 addChunk(currentPosition, text.length, false);
130 chunk.text
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DPlatformString.h28 #include <wtf/text/WTFString.h>
/external/webkit/Source/WebCore/platform/text/chromium/
H A DTextBreakIteratorInternalICUChromium.cpp28 #include <wtf/text/CString.h>
/external/webkit/Source/WebKit/win/
H A DWebKitGraphics.h53 LPCTSTR text; member in struct:WebTextRenderInfo
67 float TextFloatWidth(LPCTSTR text, int length, const WebFontDescription&);
70 // buffer must be large enough to hold all of "text", including its null terminator. Returns the number of characters put in buffer (excluding the null terminator).
71 unsigned CenterTruncateStringToWidth(LPCTSTR text, int length, const WebFontDescription&, float width, WCHAR* buffer);
72 unsigned RightTruncateStringToWidth(LPCTSTR text, int length, const WebFontDescription&, float width, WCHAR* buffer);
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
H A DWebInspectorGtk.cpp33 #include <wtf/text/WTFString.h>
/external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
H A DWebInspectorQt.cpp32 #include <wtf/text/WTFString.h>
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowToast.java22 private String text; field in class:ShadowToast
35 public static Toast makeText(Context context, CharSequence text, int duration) { argument
38 shadowOf(toast).text = text.toString();
105 String text = ((TextView) toast.getView().findViewById(layoutResourceIdToCheckForMessage)).getText().toString();
106 if (text.equals(message.toString())) {
121 String text = shadowOf(toast).text;
122 if (text != null && text
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt004lexer.py31 assert token.text == 'f', token.text
37 assert token.text == 'fo', token.text
43 assert token.text == 'foo', token.text
49 assert token.text == 'fooo', token.text
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dproperties.rb24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop]
35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ]
36 text.should == 'foobar'
45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ]
46 text.should == '_ab98'
56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ]
57 text.should == 'A12sdf'
81 @token_text = $WS.text

Completed in 702 milliseconds

1234567891011>>