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

1 2 3 45 6 7 8 91011>>

  /frameworks/native/opengl/tests/gl_perfapp/res/values/
strings.xml 17 <!-- This file contains resource definitions for displayed strings, allowing
21 <!-- Simple strings. -->
  /frameworks/native/opengl/tests/gldual/res/values/
strings.xml 17 <!-- This file contains resource definitions for displayed strings, allowing
21 <!-- Simple strings. -->
  /frameworks/native/opengl/tests/testFramerate/res/values/
strings.xml 17 <!-- This file contains resource definitions for displayed strings, allowing
21 <!-- Simple strings. -->
  /frameworks/native/opengl/tests/testLatency/res/values/
strings.xml 17 <!-- This file contains resource definitions for displayed strings, allowing
21 <!-- Simple strings. -->
  /frameworks/native/opengl/tests/testPauseResume/res/values/
strings.xml 17 <!-- This file contains resource definitions for displayed strings, allowing
21 <!-- Simple strings. -->
  /frameworks/native/opengl/tests/testViewport/res/values/
strings.xml 17 <!-- This file contains resource definitions for displayed strings, allowing
21 <!-- Simple strings. -->
  /system/core/base/
strings.cpp 17 #include "base/strings.h"
83 std::string Join(const std::vector<StringT>& strings, char separator) {
84 if (strings.empty()) {
88 std::string result(strings[0]);
89 for (size_t i = 1; i < strings.size(); ++i) {
91 result += strings[i];
97 template std::string Join<std::string>(const std::vector<std::string>& strings,
99 template std::string Join<const char*>(const std::vector<const char*>& strings,
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
SendersFormattingTests.java 47 final ArrayList<SpannableString> strings = Lists.newArrayList(); local
48 assertEquals(0, strings.size());
51 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); local
52 assertEquals(1, strings.size());
53 assertEquals("me", strings.get(0).toString());
59 final ArrayList<SpannableString> strings = Lists.newArrayList(); local
60 assertEquals(0, strings.size());
63 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); local
64 assertEquals(1, strings.size());
65 assertEquals("me", strings.get(0).toString())
72 final ArrayList<SpannableString> strings = Lists.newArrayList(); local
76 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); local
87 final ArrayList<SpannableString> strings = Lists.newArrayList(); local
91 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); local
    [all...]
  /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/clang/test/SemaCXX/
pascal-strings.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify %s -fpascal-strings
  /external/compiler-rt/test/asan/TestCases/Darwin/
asan_gen_prefixes.cc 1 // Make sure __asan_gen_* strings have the correct prefixes on Darwin
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
StringsDialog.java 64 List<String> strings = Lists.newArrayList();
71 strings.add(s);
73 return strings.toArray(new String[strings.size()]);
  /external/icu/icu4c/source/common/
ulistformatter.cpp 43 const UChar* const strings[],
53 if (stringCount < 0 || (strings == NULL && stringCount > 0) || ((result == NULL)? resultCapacity != 0 : resultCapacity < 0)) {
68 ustrings[stringIndex].setTo(TRUE, strings[stringIndex], -1);
72 ustrings[stringIndex].setTo(stringLengths[stringIndex] < 0, strings[stringIndex], stringLengths[stringIndex]);
  /external/kernel-headers/original/uapi/linux/
binfmts.h 9 * These are the maximum length and maximum number of strings passed to the
  /external/llvm/utils/textmate/
README 3 by the TextMate "C" bundle. Currently, keywords, comments, and strings are
  /external/skia/src/gpu/gl/builders/
GrGLShaderStringBuilder.h 19 const char** strings,
  /frameworks/base/docs/downloads/training/
PhotoIntentActivity.zip 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
binfmts.h 9 * These are the maximum length and maximum number of strings passed to the
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
binfmts.h 9 * These are the maximum length and maximum number of strings passed to the
  /sdk/apps/SdkController/res/values/
strings.xml 22 <!-- Strings for manifest. -->
26 <!-- Strings for service. -->
29 <!-- Strings for layout/main -->
37 <!-- Strings for layout/sensors -->
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralString.java 6 import org.bouncycastle.util.Strings;
61 this.string = Strings.toByteArray(string);
66 return Strings.fromByteArray(string);
  /external/freetype/src/sfnt/
ttbdf.c 55 bdf->strings = NULL;
87 FT_ULong strings = FT_NEXT_ULONG ( p ); local
93 strings < 8 ||
94 ( strings - 8 ) / 4 < num_strikes ||
95 strings + 1 > length )
101 bdf->strings = bdf->table + strings;
102 bdf->strings_size = length - strings;
122 if ( strike > bdf->strings )
205 (const char*)bdf->strings + name_offset
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestStringQueueGenerator.java 20 import com.google.common.collect.testing.SampleElements.Strings;
26 * Create queue of strings for tests.
36 return new Strings();
  /external/jsoncpp/include/json/
features.h 22 /** \brief A configuration that allows all features and assumes all strings are UTF-8.
25 * - Assumes Value strings are encoded in UTF-8
32 * - Assumes Value strings are encoded in UTF-8
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/
TestDataFormatterStdVector.py 167 # check if we can display strings
170 self.expect("frame variable strings",
175 self.expect("p strings",
182 self.expect("frame variable strings",
188 self.expect("p strings",
196 self.expect("frame variable strings",
200 self.expect("frame variable strings[0]",
202 self.expect("frame variable strings[1]",
208 self.expect("expression strings[0]", matching=False, error=True,
212 self.assertTrue(self.frame().FindVariable("strings").MightHaveChildren(), "strings.MightHaveChildren() says False for non empty!"
    [all...]

Completed in 619 milliseconds

1 2 3 45 6 7 8 91011>>