/external/proguard/examples/dictionaries/ |
compact.txt | 2 # This obfuscation dictionary contains strings that are already present 3 # in many class files. Since these strings can be shared, the resulting
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glShaderSource.cpp | 14 const char* strings[] = {nativeString}; local 15 glShaderSource(shader, 1, strings, 0);
|
/prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/ |
compact.txt | 2 # This obfuscation dictionary contains strings that are already present 3 # in many class files. Since these strings can be shared, the resulting
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
navigation1-expected-navigate1.txt | 2 Open Declaration in values/strings.xml : [@string/app_name] 3 L/PROJECTNAME/res/values/strings.xml
|
/external/toybox/toys/posix/ |
strings.c | 0 /*strings.c - print the strings of printable characters in files. 7 * TODO: utf8 strings 10 USE_STRINGS(NEWTOY(strings, "an#=4<1fo", TOYFLAG_USR|TOYFLAG_BIN)) 12 config STRINGS 13 bool "strings" 16 usage: strings [-fo] [-n LEN] [FILE...] 18 Display printable strings in a binary file 20 -f Precede strings with filenames 22 -o Precede strings with decimal offset [all...] |
/art/test/098-ddmc/ |
expected.txt | 2 empty=Allocations[message header len: 15 entry header len: 9 stack frame len: 8 number of entries: 0 offset to string table from start of message: 15 number of class name strings: 0 number of method name strings: 0 number of source file name strings: 0] 14 reset=Allocations[message header len: 15 entry header len: 9 stack frame len: 8 number of entries: 0 offset to string table from start of message: 15 number of class name strings: 0 number of method name strings: 0 number of source file name strings: 0] 23 goodbye=Allocations[message header len: 15 entry header len: 9 stack frame len: 8 number of entries: 0 offset to string table from start of message: 15 number of class name strings: 0 number of method name strings: 0 number of source file name strings: 0]
|
/external/skia/include/views/ |
SkSystemEventTypes.h | 14 The goal of these strings is two-fold: 15 1) make funny strings (containing at least one char < 32) to avoid colliding with "user" strings
|
/system/core/base/ |
strings_test.cpp | 17 #include "base/strings.h" 24 TEST(strings, split_empty) { 30 TEST(strings, split_single) { 36 TEST(strings, split_simple) { 44 TEST(strings, split_with_empty_part) { 52 TEST(strings, split_null_char) { 60 TEST(strings, split_any) { 68 TEST(strings, split_any_with_empty_part) { 76 TEST(strings, trim_empty) { 80 TEST(strings, trim_already_trimmed) [all...] |
/developers/build/templates/base/ |
_index.jd.ftl | 6 <p>${sample.strings.intro}</p>
|
/developers/build/templates/base-build/ |
_index.jd.ftl | 6 <p>${sample.strings.intro}</p>
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/ |
preserve-strings.css | 1 /* preserving strings */
|
/external/clang/test/CodeGen/ |
pascal-string.c | 1 // RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello"
|
writable-strings.c | 1 // RUN: %clang_cc1 -emit-llvm -o - -fwritable-strings %s
|
/external/clang/test/SemaObjC/ |
warn-write-strings.m | 1 // RUN: %clang_cc1 -verify -fsyntax-only -fconst-strings %s
|
/external/kernel-headers/original/uapi/linux/ |
string.h | 4 /* We don't want strings.h stuff being used by user stuff by accident */
|
/external/lldb/test/lang/objc/foundation/ |
Makefile | 4 #OBJC_SOURCES := const-strings.m
|
/external/valgrind/none/tests/ |
coolo_strlen.c | 6 char *b2 = strdup(strcat(buffer, "THis is a very long strings"));
|
/prebuilts/misc/common/swig/include/2.0.11/std/ |
std_string.i | 3 /* plain strings */
|
std_wstring.i | 4 /* wide strings */
|
/external/llvm/tools/llvm-readobj/ |
ARMAttributeParser.cpp | 121 static const char *Strings[] = { 129 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; 152 static const char *Strings[] = { "Not Permitted", "Permitted" }; 156 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; 162 static const char *Strings[] = { "Not Permitted", "Thumb-1", "Thumb-2" }; 166 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; 172 static const char *Strings[] = [all...] |
/external/icu/icu4c/source/common/ |
ucharstriebuilder.cpp | 38 void setTo(const UnicodeString &s, int32_t val, UnicodeString &strings, UErrorCode &errorCode); 40 UnicodeString getString(const UnicodeString &strings) const { 41 int32_t length=strings[stringOffset]; 42 return strings.tempSubString(stringOffset+1, length); 44 int32_t getStringLength(const UnicodeString &strings) const { 45 return strings[stringOffset]; 48 UChar charAt(int32_t index, const UnicodeString &strings) const { 49 return strings[stringOffset+1+index]; 54 int32_t compareStringTo(const UCharsTrieElement &o, const UnicodeString &strings) const; 57 // The first strings unit contains the string length 135 const UnicodeString *strings=static_cast<const UnicodeString *>(context); local [all...] |
bytestriebuilder.cpp | 38 void setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode); 40 StringPiece getString(const CharString &strings) const { 44 length=(uint8_t)strings[offset++]; 47 length=((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offset+1]; 50 return StringPiece(strings.data()+offset, length); 52 int32_t getStringLength(const CharString &strings) const { 55 return (uint8_t)strings[offset]; 58 return ((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offset+1] 182 const CharString *strings=static_cast<const CharString *>(context); local [all...] |
/external/regex-re2/re2/testing/ |
string_generator.h | 5 // String generator: generates all possible strings of up to 7 // Fetch strings using a Java-like Next()/HasNext() interface. 30 // Causes generator to emit random strings for next n calls to Next(). 50 bool random_; // Whether generated strings are random. 51 int nrandom_; // Number of random strings left to generate.
|
/art/runtime/base/ |
hash_set_test.cc | 83 std::vector<std::string> strings; local 86 strings.push_back(RandomString(10)); 87 hash_set.Insert(strings[i]); 88 auto it = hash_set.Find(strings[i]); 90 ASSERT_EQ(*it, strings[i]); 92 ASSERT_EQ(strings.size(), hash_set.Size()); 93 // Try to erase the odd strings. 95 auto it = hash_set.Find(strings[i]); 97 ASSERT_EQ(*it, strings[i]); 102 auto it = hash_set.Find(strings[i]) 116 std::vector<std::string> strings; local 144 std::vector<std::string> strings; local 162 std::vector<std::string> strings; local [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
dtfmtsym.h | 87 * based on hard-coded strings. 116 * based on hard-coded strings. 119 * Will be used to access the correct set of strings. 134 * Will be used to access the correct set of strings. 184 * Gets abbreviated era strings. For example: "AD" and "BC". 187 * @return the era strings. 193 * Sets abbreviated era strings. For example: "AD" and "BC". 194 * @param eras Array of era strings (DateFormatSymbols retains ownership.) 201 * Gets era name strings. For example: "Anno Domini" and "Before Christ". 204 * @return the era name strings [all...] |