Searched defs:text (Results 26 - 50 of 1804) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil_unittest.cc58 // Verify that the endptr is set correctly even if not all text was parsed.
59 const char* text = "1.5f"; local
61 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
62 EXPECT_EQ(3, endptr - text);
73 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
74 EXPECT_EQ(3, endptr - text);
/external/chromium_org/third_party/skia/src/animator/
H A DSkTextOnPath.h26 SkText* text; member in class:SkTextOnPath
/external/chromium_org/ui/app_list/search/
H A Dtokenized_string.cc16 TokenizedString::TokenizedString(const base::string16& text) argument
17 : text_(text) {
27 << ", text=\"" << text_ << "\"";
/external/icu/icu4c/source/i18n/
H A Dregextxt.h36 UText *text; member in struct:URegexUTextUnescapeCharContext
39 #define U_REGEX_UTEXT_UNESCAPE_CONTEXT(text) { (text), -1 }
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-utils.h71 static inline int has_text(const char *text) argument
73 if (!text)
76 while (*text) {
77 if (!isspace(*text))
79 text++;
/external/lldb/source/Expression/
H A DExpressionSourceCode.cpp45 bool ExpressionSourceCode::GetText (std::string &text, lldb::LanguageType wrapping_language, bool const_object, bool static_method) const argument
134 text = wrap_stream.GetString();
138 text.append(m_body);
/external/mockito/src/org/mockito/internal/util/
H A DRemoveFirstLine.java10 * @param text to have the first line removed
13 public String of(String text) { argument
14 return text.replaceFirst(".*?\n", "");
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil_unittest.cc58 // Verify that the endptr is set correctly even if not all text was parsed.
59 const char* text = "1.5f"; local
61 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
62 EXPECT_EQ(3, endptr - text);
73 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
74 EXPECT_EQ(3, endptr - text);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextPaint.java3 import android.text.TextPaint;
10 public float measureText(String text) { argument
11 return text.length();
/external/skia/src/animator/
H A DSkTextOnPath.h26 SkText* text; member in class:SkTextOnPath
/external/smali/smali/src/main/java/org/jf/smali/
H A DInvalidToken.java42 public InvalidToken(String message, String text) { argument
43 super(smaliParser.INVALID_TOKEN, text);
/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/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/text/
H A DTestClipboardManager.java1 package com.xtremelabs.robolectric.tester.android.text;
3 import android.text.ClipboardManager;
8 private CharSequence text; field in class:TestClipboardManager
10 public void setText(CharSequence text) { argument
11 this.text = text;
15 return text;
19 return text != null && text.length() > 0;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
H A Dutil.js59 function log(text, type)
65 typeNode.textContent = type.text;
70 node.appendChild(document.createTextNode(text + '\n'));
74 log.WARNING = {text: 'Warning: ', color: '#aa3'};
75 log.SUCCESS = {text: 'Success: ', color: 'green'};
76 log.ERROR = {text: 'Error: ', color: 'red'};
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestFastLexer.cs52 string text = builder.ToString();
55 IterateFast( text, iterations );
56 Iterate( text, iterations );
58 var time = Iterate( text, iterations );
59 var timeFast = IterateFast( text, iterations );
65 TimeSpan Iterate( string text, int count ) argument
71 SimpleExpressionLexer lexer = new SimpleExpressionLexer( new ANTLRStringStream( text ) );
79 TimeSpan IterateFast( string text, int count ) argument
85 FastSimpleExpressionLexer lexer = new FastSimpleExpressionLexer( new SlimStringStream( text ) );
/external/chromium_org/base/i18n/
H A Dbreak_iterator_unittest.cc324 string16 text; local
327 text.append(characters.back());
329 BreakIterator iter(text, BreakIterator::BREAK_CHARACTER);
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dscreen_capture_notification_ui_chromeos.cc13 const base::string16& text)
14 : text_(text) {
34 const base::string16& text) {
36 new chromeos::ScreenCaptureNotificationUIChromeOS(text));
12 ScreenCaptureNotificationUIChromeOS( const base::string16& text) argument
33 Create( const base::string16& text) argument
/external/chromium_org/chrome/browser/ui/find_bar/
H A Dfind_bar_state.h26 void set_last_prepopulate_text(const base::string16& text) { argument
27 last_prepopulate_text_ = text;
/external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/app/
H A Dmain.js16 function appendMessage(text) {
17 document.getElementById('response').innerHTML += "<p>" + text + "</p>";
23 document.getElementById('input-text').style.display = 'block';
27 document.getElementById('input-text').style.display = 'none';
33 message = {"text": document.getElementById('input-text').value};
/external/chromium_org/chrome/test/chromedriver/
H A Dkeycode_text_conversion_ozone.cc12 ui::KeyboardCode key_code, int modifiers, std::string* text,
14 *text = std::string();
11 ConvertKeyCodeToText( ui::KeyboardCode key_code, int modifiers, std::string* text, std::string* error_msg) argument
/external/chromium_org/chromeos/ime/
H A Dcomposition_text_unittest.cc25 CompositionText text; local
26 text.set_text(kSampleText);
28 text.mutable_underline_attributes();
32 text.set_selection_start(30);
33 text.set_selection_end(40);
36 text2.CopyFrom(text);
38 EXPECT_EQ(text.text(), text2.text());
39 EXPECT_EQ(text
[all...]
/external/chromium_org/components/query_parser/
H A Dsnippet.h24 // Parses an offsets string as returned from a sqlite full text index. An
25 // offsets string encodes information about why a row matched a text query.
57 const base::string16& text() const { return text_; } function in class:query_parser::Snippet
64 // The text of the snippet.
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_grammar_check.cc18 const blink::WebString& text,
21 base::string16 string_text = text;
27 // check all errors because the given text may consist of two or more
30 const char* text; member in struct:content::__anon7880
50 kGrammarErrors[i].text,
51 kGrammarErrors[i].text + strlen(kGrammarErrors[i].text));
17 CheckGrammarOfString( const blink::WebString& text, std::vector<blink::WebTextCheckingResult>* results) argument
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer_unittest.cc62 std::string text; local
65 text += static_cast<char>(rand() % 256);
67 std::string encoded = OAuthRequestSigner::Encode(text);
70 ASSERT_EQ(decoded, text);
/external/chromium_org/media/base/
H A Dtext_cue.cc13 const std::string& text)
18 text_(text) {
9 TextCue(const base::TimeDelta& timestamp, const base::TimeDelta& duration, const std::string& id, const std::string& settings, const std::string& text) argument

Completed in 853 milliseconds

1234567891011>>