Searched defs:text (Results 51 - 75 of 1804) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/services/public/cpp/input_events/lib/
H A Dmojo_extended_key_event_data.cc10 uint16_t text,
13 text_(text),
9 MojoExtendedKeyEventData(int32_t windows_key_code, uint16_t text, uint16_t unmodified_text) argument
/external/chromium_org/net/android/java/src/org/chromium/net/
H A DNetStringUtil.java14 import java.text.Normalizer;
23 * Attempts to convert text in a given character set to a Unicode string.
25 * @param text ByteBuffer containing the character array to convert.
31 ByteBuffer text,
37 return decoder.decode(text).toString();
44 * Attempts to convert text in a given character set to a Unicode string,
46 * @param text ByteBuffer containing the character array to convert.
52 ByteBuffer text,
54 String unicodeString = convertToUnicode(text, charsetName);
60 * Convert text i
30 convertToUnicode( ByteBuffer text, String charsetName) argument
51 convertToUnicodeAndNormalize( ByteBuffer text, String charsetName) argument
68 convertToUnicodeWithSubstitutions( ByteBuffer text, String charsetName) argument
[all...]
/external/chromium_org/net/ftp/
H A Dftp_directory_listing_parser_netware.cc18 bool LooksLikeNetwarePermissionsListing(const base::string16& text) { argument
19 if (text.length() != 10)
22 if (text[0] != '[' || text[9] != ']')
24 return (text[1] == 'R' || text[1] == '-') &&
25 (text[2] == 'W' || text[2] == '-') &&
26 (text[3] == 'C' || text[
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBorderImageSliceValue.cpp29 #include "wtf/text/WTFString.h"
43 String text = m_slices->cssText(); local
47 return text + " fill";
48 return text;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DComment.cpp29 inline Comment::Comment(Document& document, const String& text) argument
30 : CharacterData(document, text, CreateOther)
34 PassRefPtrWillBeRawPtr<Comment> Comment::create(Document& document, const String& text) argument
36 return adoptRefWillBeNoop(new Comment(document, text));
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSplitTextNodeContainingElementCommand.cpp36 SplitTextNodeContainingElementCommand::SplitTextNodeContainingElementCommand(PassRefPtrWillBeRawPtr<Text> text, int offset) argument
37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset)
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DBeforeTextInsertedEvent.cpp31 BeforeTextInsertedEvent::BeforeTextInsertedEvent(const String& text) argument
32 : Event(EventTypeNames::webkitBeforeTextInserted, false, true), m_text(text)
H A DBeforeTextInsertedEvent.h37 static PassRefPtrWillBeRawPtr<BeforeTextInsertedEvent> create(const String& text) argument
39 return adoptRefWillBeNoop(new BeforeTextInsertedEvent(text));
45 const String& text() const { return m_text; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLScriptElement.h39 String text() { return textFromChildren(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternalProfilers.cpp35 #include "wtf/text/CString.h"
36 #include "wtf/text/WTFString.h"
62 String text = blink::Platform::current()->getHeapProfile(); local
65 return text.substring(0, text.find('\n'));
/external/chromium_org/third_party/WebKit/public/web/
H A DWebTextRun.h42 : text(t)
53 WebString text; member in struct:blink::WebTextRun
58 // The resulting blink::TextRun will refer to the text in this
59 // struct, so "this" must outlive the WebCore text run.
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DDiagnosticsBase.cpp20 const std::string &text)
23 print(id, loc, text);
18 report(ID id, const SourceLocation &loc, const std::string &text) argument
/external/chromium_org/third_party/cython/src/Cython/Tempita/
H A Dcompat3.py16 text = str variable
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
H A DBrailleTranslator.java20 * Translates from text to braille and the other way according to a
28 byte[] translate(String text); argument
31 * Translates the braille {@code cells} into the corresponding text, which
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dtrie_unittest.cc17 std::vector<uint8_t> ToByteArray(const std::string& text) { argument
18 std::vector<uint8_t> result(text.length() + 1, 0);
19 result.assign(text.begin(), text.end());
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawText.h25 const char* getText() { return text.c_str(); }
26 size_t getSize() { return text.size(); }
28 SkString text; member in class:SkText
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dtoken.h7 Str text; member in struct:Token
17 Str_copy(&r->text, &t);
25 Str_init(&r->text, &t);
/external/chromium_org/ui/base/ime/
H A Dcomposition_text.h15 // A struct represents the status of an ongoing composition text.
21 if ((this->text != rhs.text) ||
38 // Content of the composition text.
39 base::string16 text; member in struct:ui::CompositionText
41 // Underline information of the composition text.
46 // Selection range in the composition text. It represents the caret position
/external/chromium_org/ui/base/win/
H A Dmessage_box_win.cc17 const base::string16& text,
27 base::string16 localized_text = text;
16 MessageBox(HWND hwnd, const base::string16& text, const base::string16& caption, UINT flags) argument
/external/chromium_org/ui/views/widget/
H A Dtooltip_manager.cc30 void TooltipManager::TrimTooltipText(base::string16* text) { argument
33 *text = gfx::TruncateString(*text, kMaxTooltipLength, gfx::WORD_BREAK);
/external/clang/test/SemaCXX/
H A Dgoto2.cpp5 int subfun(const char *text) { argument
6 const char *tmp = text;
10 void fun(const char* text) { argument
16 const char *end = text;
40 const char *text = "some text"; variable
43 const char *ptr = text;
/external/doclava/src/com/google/doclava/
H A DCodeTagInfo.java27 public CodeTagInfo(String text, SourcePositionInfo sp) { argument
28 // TODO: the correct behavior is to escape the text,
30 //super("@code", "@code", encode(text), sp);
31 super("@code", "@code", text, sp);
H A DLiteralTagInfo.java27 public LiteralTagInfo(String text, SourcePositionInfo sp) { argument
28 super("Text", "Text", encode(text), sp);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHyperRef.java19 public HyperRef (final String href, final String text, final boolean nbsp) argument
26 if ((text == null) || (text.length () == 0))
27 throw new IllegalArgumentException ("null or empty input: text");
32 setText (text, nbsp);
/external/fio/
H A Dghelpers.h17 char **text; member in struct:multitext_widget
22 void multitext_add_entry(struct multitext_widget *mt, const char *text);
25 const char *text);

Completed in 498 milliseconds

1234567891011>>