HomeSort by relevance Sort by last modified time
    Searched refs:strings (Results 101 - 125 of 1250) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
record-event-listener.rb 9 A debug listener that records intercepted events as strings in an array.
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/app/
main.js 11 chrome.firstRunPrivate.getLocalizedStrings(function(strings) {
12 loadTimeData.data = strings;
  /external/chromium_org/chrome/common/
localized_error.h 11 #include "base/strings/string16.h"
37 base::DictionaryValue* strings);
  /external/qemu/android/utils/
misc.h 19 ** prints a list of strings in row/column format
23 extern void print_tabular( const char** strings, int count,
28 ** converts one character into another in strings
39 /** TEMP CHAR STRINGS
  /frameworks/opt/net/voip/src/jni/rtp/
AudioCodec.cpp 17 #include <strings.h>
  /libcore/libart/src/main/java/java/lang/
DexCache.java 40 * A dex cache holds resolved copies of strings, fields, methods, and classes from the dexfile.
71 * References to strings as they become resolved following interpreter semantics. All strings
74 String[] strings; field in class:DexCache
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
LevenshteinDistanceTest.java 59 private Token[] makeTokens(String[] strings) {
60 Token[] tokens = new Token[strings.length];
61 for (int i = 0; i < strings.length; i++) {
62 String str = strings[i];
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
ShaderParser.h 29 void setSrc(const Version& ver,GLsizei count,const GLchar** strings,const GLint* length);
  /external/chromium/chrome/browser/ui/webui/chromeos/
choose_mobile_network_ui.cc 99 DictionaryValue strings; local
100 strings.SetString(
103 strings.SetString(
106 strings.SetString(
109 strings.SetString(
112 strings.SetString("connect",
114 strings.SetString("cancel", l10n_util::GetStringUTF16(IDS_CANCEL));
115 SetFontAndTextDirection(&strings);
122 html, &strings);
  /external/icu4c/common/
uniset_closure.cpp 52 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
73 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
199 // USET_CASE: remove strings because the strings will actually be reduced (folded);
200 // therefore, start with no strings and add only those needed
202 foldSet.strings->removeAllElements();
237 if (strings != NULL && strings->size() > 0) {
239 for (int32_t j=0; j<strings->size(); ++j) {
240 str = *(const UnicodeString *) strings->elementAt(j)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 97 List<String> strings = new ArrayList<String>(); local
99 showMatch(gc, state.mCurrentLeftMatch, state, strings,
101 showMatch(gc, state.mCurrentRightMatch, state, strings,
103 showMatch(gc, state.mCurrentTopMatch, state, strings,
105 showMatch(gc, state.mCurrentBottomMatch, state, strings,
108 if (strings.size() > 0) {
111 for (String s : strings) {
144 private void showMatch(IGraphics gc, Match m, GuidelineHandler state, List<String> strings,
163 strings.add(description);
  /external/chromium_org/tools/json_schema_compiler/test/
choices_unittest.cc 7 #include "base/strings/string_piece.h"
47 Dictionary("strings", new base::StringValue("asdf")).release())));
49 EXPECT_FALSE(params->string_info.strings.as_strings);
50 EXPECT_EQ("asdf", *params->string_info.strings.as_string);
56 Dictionary("strings", new base::StringValue("asdf"),
59 EXPECT_FALSE(params->string_info.strings.as_strings);
60 EXPECT_EQ("asdf", *params->string_info.strings.as_string);
73 object_param->SetWithoutPathExpansion("strings",
83 object_param->SetWithoutPathExpansion("strings",
106 std::vector<std::string> strings = Vector(std::string("list") local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
InstallShortcutReceiver.java 71 Set<String> strings = sharedPrefs.getStringSet(key, null); local
72 if (strings == null) {
73 strings = new HashSet<String>(0);
75 strings = new HashSet<String>(strings);
77 strings.add(value);
78 editor.putStringSet(key, strings);
118 Set<String> strings = sharedPrefs.getStringSet(APPS_PENDING_INSTALL, null); local
120 Log.d(TAG, "APPS_PENDING_INSTALL: " + strings
123 if (strings != null)
153 Set<String> strings = sharedPrefs.getStringSet(APPS_PENDING_INSTALL, null); local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.js 10 * @param {Object} strings Localized state strings.
13 function State(strings) {
14 this.setStrings(strings);
59 * Sets the state strings.
60 * @param {Object} strings Localized state strings.
62 setStrings: function(strings) {
64 strings.getString('statusDevicesNone');
66 strings.getString('warningDevicesNone')
    [all...]
neterror.js 27 // Re-renders the error page using |strings| as the dictionary of values.
29 function updateForDnsProbe(strings) {
30 i18nTemplate.process(document, strings);
31 var context = new JsEvalContext(strings);
  /art/test/003-omnibus-opcodes/src/
Array.java 74 static void checkStrings(String[] strings) {
75 Main.assertTrue(strings[0].equals("zero"));
76 Main.assertTrue(strings[1].equals("one"));
77 Main.assertTrue(strings[2].equals("two"));
78 Main.assertTrue(strings[3].equals("three"));
79 Main.assertTrue(strings[4].equals("four"));
189 String[] strings; local
200 strings = new String[count];
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
glUtils.cpp 436 // pack a list of strings into one.
437 void glUtilsPackStrings(char *ptr, char **strings, GLint *length, GLsizei count)
443 if (strings[i]!=NULL) {
445 l = strlen(strings[i]);
446 strcat(p, strings[i]);
449 strncat(p, strings[i], l);
456 // claculate the length of a list of strings
457 int glUtilsCalcShaderSourceLen( char **strings, GLint *length, GLsizei count)
463 l = strings[i]!=NULL ? strlen(strings[i]) : 0
    [all...]
  /external/chromium/chrome/browser/
pdf_unsupported_feature.cc 175 DictionaryValue strings; local
176 strings.SetString(
179 strings.SetString(
182 strings.SetString(
185 strings.SetString(
189 strings.SetString(
192 strings.SetString(
199 return jstemplate_builder::GetI18nTemplateHtml(html, &strings);
  /external/chromium_org/chrome/renderer/resources/
neterror.js 30 // Re-renders the error page using |strings| as the dictionary of values.
32 function updateForDnsProbe(strings) {
33 i18nTemplate.process(document, strings);
34 var context = new JsEvalContext(strings);
  /external/chromium_org/native_client_sdk/src/libraries/xray/
stringpool.c 8 /* String pool holds a large pile of strings. */
23 char strings[XRAY_STRING_POOL_NODE_SIZE]; member in struct:XRayStringPoolNode
50 /* Add +1 to STRING_POOL_NODE_SIZE to detect large strings */
55 /* Don't accept strings larger than the pool node. */
65 dst = &pool->current->strings[pool->index];
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
testlib.asm 17 string1: db 'abc',0 ; try changing these strings and see
  /external/icu4c/common/unicode/
uenum.h 104 * uenum_next() or uenum_unext(). When all strings have been
137 * uenum_next() or uenum_unext(). When all strings have been
176 * Given an array of const UChar* strings, return a UEnumeration. String pointers from 0..count-1 must not be null.
179 * @param strings array of const UChar* strings (each null terminated). All storage is owned by the caller.
187 uenum_openUCharStringsEnumeration(const UChar* const strings[], int32_t count,
194 * Given an array of const char* strings (invariant chars only), return a UEnumeration. String pointers from 0..count-1 must not be null.
197 * @param strings array of char* strings (each null terminated). All storage is owned by the caller.
205 uenum_openCharStringsEnumeration(const char* const strings[], int32_t count
    [all...]
  /external/skia/tools/flags/
SkCommandLineFlags.cpp 309 template <typename Strings>
310 bool ShouldSkipImpl(const Strings& strings, const char* name) {
311 int count = strings.count();
314 for (int i = 0; i < strings.count(); ++i) {
315 const char* matchName = strings[i];
343 bool SkCommandLineFlags::ShouldSkip(const SkTDArray<const char*>& strings, const char* name) {
344 return ShouldSkipImpl(strings, name);
346 bool SkCommandLineFlags::ShouldSkip(const StringArray& strings, const char* name) {
347 return ShouldSkipImpl(strings, name)
    [all...]
  /external/yaffs2/
Android.mk 13 LOCAL_CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
NameConverter.java 192 String[] strings = phoneticName.split(" ", 3); local
193 switch (strings.length) {
195 family = strings[0];
198 family = strings[0];
199 given = strings[1];
202 family = strings[0];
203 middle = strings[1];
204 given = strings[2];

Completed in 549 milliseconds

1 2 3 45 6 7 8 91011>>