Searched refs:text (Results 1 - 25 of 4981) sorted by relevance

1234567891011>>

/external/chromium_org/ui/keyboard/resources/webui/
H A Dapi_adapter.js5 function insertText(text) {
6 chrome.send('insertText', [ text ]);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-246.js30 assertTrue(/(?:text)/.test("text"));
31 assertEquals(["text"], /(?:text)/.exec("text"))
/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/v8/test/mjsunit/regress/
H A Dregress-246.js30 assertTrue(/(?:text)/.test("text"));
31 assertEquals(["text"], /(?:text)/.exec("text"))
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas32/
H A Dgas-movsd.asm1 .text
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delf-overdef.asm1 section .text align=64
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
H A Dwin32-overdef.asm1 section .text align=64
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdf-overdef.asm1 section .text align=64
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
H A Dgas-segprefix.asm1 .text
/external/llvm/test/MC/ELF/
H A Dalign-text.s3 // Test that the .text directive doesn't cause alignment.
6 .text
10 // CHECK: Name: .text
/external/llvm/test/MC/MachO/
H A Dprevious.s3 .text
H A Dsection-flags.s10 .text
/external/chromium_org/chrome/common/extensions/docs/examples/api/omnibox/simple-example/
H A Dbackground.js5 // This event is fired each time the user updates the text in the omnibox,
8 function(text, suggest) {
9 console.log('inputChanged: ' + text);
11 {content: text + " one", description: "the first one"},
12 {content: text + " number two", description: "the second entry"}
18 function(text) {
19 console.log('inputEntered: ' + text);
20 alert('You just typed "' + text + '"');
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dtokenized_string_char_iterator_unittest.cc22 // the current char in terms of the original text of the TokenizedString. The
40 void TestEveryChar(const std::string& text, const std::string& expects) { argument
41 TokenizedString tokens(UTF8ToUTF16(text));
54 void TestNextToken(const std::string& text, const std::string& expects) { argument
55 TokenizedString tokens(UTF8ToUTF16(text));
68 void TestFirstTwoCharInEveryToken(const std::string& text, argument
70 TokenizedString tokens(UTF8ToUTF16(text));
89 const char* text; local
91 text = "";
92 TestEveryChar(text, "");
103 const char* text; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSLineBoxContainValue.cpp29 #include "wtf/text/StringBuilder.h"
30 #include "wtf/text/WTFString.h"
42 StringBuilder text; local
45 text.appendLiteral("block");
47 if (!text.isEmpty())
48 text.append(' ');
49 text.appendLiteral("inline");
52 if (!text.isEmpty())
53 text.append(' ');
54 text
[all...]
/external/srec/portable/include/
H A DpLastError.h26 #define printGetLastError(text) \
27 printGetLastErrorInternal(text, __FILE__, __LINE__)
35 PORTABLE_API void printGetLastErrorInternal(const LCHAR* text, char* file, int line);
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
H A DStandardBean.java29 private String text = "none"; field in class:StandardBean
36 public StandardBean(String text) { argument
37 this.text = text;
41 return text;
44 public void setText(String text) { argument
45 this.text = text;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowClipboardManager.java3 import android.text.ClipboardManager;
9 private CharSequence text; field in class:ShadowClipboardManager
12 public void setText(CharSequence text) { argument
13 this.text = text;
18 return text;
23 return text != null && text.length() > 0;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A Dxxd.pl38 $text = <$input>;
41 $text = join(', ', map('0x' . unpack("H*", $_), split(undef, $text)));
44 print $output "const unsigned char $varname\[\] = {\n$text\n};\n";
/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;
H A Doverloaded-name.cpp22 const char* text(void);
24 f(text());
25 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
26 f(text());
27 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
H A DTextInputCallbackTest.java34 TextInputCallback text; field in class:TextInputCallbackTest
40 text = new TextInputCallback("prompt");
41 assertEquals("prompt", text.getPrompt());
42 text = new TextInputCallback("prompt", "defaultText");
43 assertEquals("prompt", text.getPrompt());
44 assertEquals("defaultText", text.getDefaultText());
45 text.setText("Text");
46 assertEquals("Text", text.getText());
56 text = new TextInputCallback("", "defaultText");
61 text
[all...]
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser_netware.cc18 bool LooksLikeNetwarePermissionsListing(const 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/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/devtools/front_end/
H A DEmptyView.js35 WebInspector.EmptyView = function(text)
38 this._text = text;
48 set text(text)
50 this._text = text;

Completed in 645 milliseconds

1234567891011>>