OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:text
(Results
1 - 25
of
9561
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/development/samples/StackWidget/src/com/example/android/stackwidget/
WidgetItem.java
20
public String
text
;
field in class:WidgetItem
22
public WidgetItem(String
text
) {
23
this.
text
=
text
;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/text/
TestClipboardManager.java
1
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
) {
11
this.
text
=
text
;
15
return
text
;
19
return
text
!= null &&
text
.length() > 0;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
package-info.java
4
package android.filterpacks.
text
;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas32/
gas-movsd.asm
1
.
text
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elf-overdef.asm
1
section .
text
align=64
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
win32-overdef.asm
1
section .
text
align=64
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdf-overdef.asm
1
section .
text
align=64
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
gas-segprefix.asm
1
.
text
/external/llvm/test/MC/ELF/
align-text.s
3
// Test that the .
text
directive doesn't cause alignment.
6
.
text
10
// CHECK: Name: .
text
/external/llvm/test/MC/MachO/
previous.s
3
.
text
section-flags.s
10
.
text
/frameworks/base/core/tests/coretests/src/android/text/
SpannableStringBuilderTest.java
17
package android.
text
;
19
import android.
text
.Spannable;
20
import android.
text
.SpannableStringBuilder;
24
protected Spannable newSpannableWithText(String
text
) {
25
return new SpannableStringBuilder(
text
);
SpannableStringTest.java
17
package android.
text
;
19
import android.
text
.Spannable;
20
import android.
text
.SpannableString;
24
protected Spannable newSpannableWithText(String
text
) {
25
return new SpannableString(
text
);
/external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string_char_iterator_unittest.cc
22
// the current char in terms of the original
text
of the TokenizedString. The
40
void TestEveryChar(const std::string&
text
, const std::string& expects) {
41
TokenizedString tokens(UTF8ToUTF16(
text
));
54
void TestNextToken(const std::string&
text
, const std::string& expects) {
55
TokenizedString tokens(UTF8ToUTF16(
text
));
68
void TestFirstTwoCharInEveryToken(const std::string&
text
,
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/
CSSLineBoxContainValue.cpp
29
#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
.appendLiteral("font")
[
all
...]
/external/srec/portable/include/
pLastError.h
26
#define printGetLastError(
text
) \
27
printGetLastErrorInternal(
text
, __FILE__, __LINE__)
35
PORTABLE_API void printGetLastErrorInternal(const LCHAR*
text
, char* file, int line);
/frameworks/base/core/java/android/text/
NoCopySpan.java
17
package android.
text
;
ClipboardManager.java
17
package android.
text
;
20
* @deprecated Old
text
-only interface to the clipboard. See
26
* Returns the
text
on the clipboard. It will eventually be possible
27
* to store types other than
text
too, in which case this will return
28
* null if the type cannot be coerced to
text
.
33
* Sets the contents of the clipboard to the specified
text
.
35
public abstract void setText(CharSequence
text
);
38
* Returns true if the clipboard contains
text
; false otherwise.
/frameworks/base/core/java/android/text/style/
ParagraphStyle.java
17
package android.
text
.style;
20
* The classes that affect paragraph-level
text
formatting implement
UpdateAppearance.java
17
package android.
text
.style;
20
* The classes that affect character-level
text
in a way that modifies their
UpdateLayout.java
17
package android.
text
.style;
20
* The classes that affect character-level
text
formatting in a way that
21
* triggers a
text
layout update when one is added or removed must implement
WrapTogetherSpan.java
17
package android.
text
.style;
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
StandardBean.java
29
private String
text
= "none";
field in class:StandardBean
36
public StandardBean(String
text
) {
37
this.
text
=
text
;
41
return
text
;
44
public void setText(String
text
) {
45
this.
text
=
text
;
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTitleElement.idl
21
attribute DOMString
text
;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowClipboardManager.java
3
import android.
text
.ClipboardManager;
9
private CharSequence
text
;
field in class:ShadowClipboardManager
12
public void setText(CharSequence
text
) {
13
this.
text
=
text
;
18
return
text
;
23
return
text
!= null &&
text
.length() > 0;
Completed in 1074 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>