/external/stlport/test/unit/ |
min_test.cpp | 57 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local 59 const unsigned namesCt = sizeof(names) / sizeof(names[0]); 60 const char** r = min_element((const char**)names, (const char**)names + namesCt, str_compare);
|
/ndk/tests/device/test-gnustl-full/unit/ |
max_test.cpp | 59 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local 61 const unsigned namesCt = sizeof(names) / sizeof(names[0]); 62 const char** r = max_element((const char**)names, (const char**)names + namesCt, str_compare);
|
min_test.cpp | 57 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local 59 const unsigned namesCt = sizeof(names) / sizeof(names[0]); 60 const char** r = min_element((const char**)names, (const char**)names + namesCt, str_compare);
|
/ndk/tests/device/test-stlport/unit/ |
max_test.cpp | 59 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local 61 const unsigned namesCt = sizeof(names) / sizeof(names[0]); 62 const char** r = max_element((const char**)names, (const char**)names + namesCt, str_compare);
|
min_test.cpp | 57 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local 59 const unsigned namesCt = sizeof(names) / sizeof(names[0]); 60 const char** r = min_element((const char**)names, (const char**)names + namesCt, str_compare);
|
/external/linux-tools-perf/util/ |
help.c | 15 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc); 16 cmds->names[cmds->cnt++] = ent; 24 free(cmds->names[i]); 25 free(cmds->names); 45 if (strcmp(cmds->names[i]->name, cmds->names[i-1]->name)) 46 cmds->names[j++] = cmds->names[i]; 58 cmp = strcmp(cmds->names[ci]->name, excludes->names[ei]->name) [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
AttributeListImpl.java | 141 names.add(name); 162 int i = names.indexOf(name); 164 names.remove(i); 182 names.clear(); 202 return names.size(); 215 if (i < 0 || i >= names.size()) { 218 return names.get(i); 266 return getType(names.indexOf(name)); 279 return getValue(names.indexOf(name)); 289 private ArrayList<String> names = new ArrayList<String>() 286 private ArrayList<String> names = new ArrayList<String>(); field in class:AttributeListImpl [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
WebIDBDatabase.h | 69 virtual WebIDBTransaction* transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec) 71 return transaction(names, mode, 0, ec); 74 virtual WebIDBTransaction* transaction(const WebDOMStringList& names, unsigned short mode, unsigned long, WebExceptionCode& ec) 76 return transaction(names, mode, ec);
|
/external/webkit/Source/WebCore/platform/graphics/ |
GraphicsTypes.cpp | 90 const char* const names[3] = { "butt", "round", "square" }; 91 return names[cap]; 115 const char* const names[3] = { "miter", "round", "bevel" }; 116 return names[join]; 123 const char* const names[5] = { "start", "end", "left", "center", "right" }; 124 return names[align]; 156 const char* const names[6] = { "alphabetic", "top", "middle", "bottom", "ideographic", "hanging" }; 157 return names[baseline];
|
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/ |
AutoFillHostAndroid.cpp | 38 void AutoFillHostAndroid::AutoFillSuggestionsReturned(const std::vector<string16>& names, const std::vector<string16>& labels, const std::vector<string16>& icons, const std::vector<int>& uniqueIds) 42 mAutofill->querySuccessful(names[0], labels[0], uniqueIds[0]);
|
/libcore/luni/src/main/java/org/apache/harmony/security/ |
SystemScope.java | 44 private Hashtable names = new Hashtable(); field in class:SystemScope 74 return names.size(); 84 return (Identity) names.get(name); 106 if (names.containsKey(name)) { 115 names.put(name, identity); 137 boolean contains = names.containsKey(name); 138 names.remove(name); 156 return names.elements();
|
/external/checkpolicy/ |
policy_parse.y | 210 default_user_def : DEFAULT_USER names SOURCE ';' 212 | DEFAULT_USER names TARGET ';' 215 default_role_def : DEFAULT_ROLE names SOURCE ';' 217 | DEFAULT_ROLE names TARGET ';' 220 default_range_def : DEFAULT_RANGE names SOURCE LOW ';' 222 | DEFAULT_RANGE names SOURCE HIGH ';' 224 | DEFAULT_RANGE names SOURCE LOW_HIGH ';' 226 | DEFAULT_RANGE names TARGET LOW ';' 228 | DEFAULT_RANGE names TARGET HIGH ';' 230 | DEFAULT_RANGE names TARGET LOW_HIGH '; 747 names : identifier label [all...] |
/bootable/recovery/applypatch/ |
freecache.c | 74 int FindExpendableFiles(char*** names, int* entries) { 79 *names = malloc(size * sizeof(char*)); 110 *names = realloc(*names, size * sizeof(char*)); 112 (*names)[(*entries)++] = strdup(path); 121 if (EliminateOpenFiles(*names, *entries) < 0) { 137 char** names; local 140 if (FindExpendableFiles(&names, &entries) < 0) { 158 if (names[i]) { 159 unlink(names[i]) [all...] |
/libcore/expectations/ |
brokentests.txt | 32 names: [ 43 names: [ 68 names: [ 123 names: [ 147 names: [ 156 names: [ 172 names: [ 182 names: [ 197 names: [ 214 names: [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
parameter.rb | 25 def names method in class:ANTLR3.Template.ParameterList 26 names = map { | param | param.name.to_s } 27 @splat and names << @splat.to_s 28 @block and names << @block.to_s 29 return( names )
|
/external/chromium/testing/gtest/src/ |
gtest-typed-test.cc | 14 // * Neither the name of Google Inc. nor the names of its 48 // Verifies that registered_tests match the test names in 62 for (const char* names = registered_tests; names != NULL; 63 names = SkipComma(names)) { 64 const String name = GetPrefixUntilComma(names);
|
/external/gtest/src/ |
gtest-typed-test.cc | 14 // * Neither the name of Google Inc. nor the names of its 48 // Verifies that registered_tests match the test names in 62 for (const char* names = registered_tests; names != NULL; 63 names = SkipComma(names)) { 64 const String name = GetPrefixUntilComma(names);
|
/external/javassist/src/main/javassist/convert/ |
TransformAccessArrayField.java | 39 private final ArrayAccessReplacementMethodNames names; field in class:TransformAccessArrayField 44 ArrayAccessReplacementMethodNames names) throws NotFoundException { 47 this.names = names; 169 methodName = names.objectRead(); 172 methodName = names.byteOrBooleanRead(); 175 methodName = names.charRead(); 178 methodName = names.doubleRead(); 181 methodName = names.floatRead(); 184 methodName = names.intRead() [all...] |
/external/libvpx/libvpx/third_party/googletest/src/src/ |
gtest-typed-test.cc | 14 // * Neither the name of Google Inc. nor the names of its 48 // Verifies that registered_tests match the test names in 62 for (const char* names = registered_tests; names != NULL; 63 names = SkipComma(names)) { 64 const String name = GetPrefixUntilComma(names);
|
/external/llvm/utils/unittest/googletest/ |
gtest-typed-test.cc | 14 // * Neither the name of Google Inc. nor the names of its 48 // Verifies that registered_tests match the test names in 62 for (const char* names = registered_tests; names != NULL; 63 names = SkipComma(names)) { 64 const String name = GetPrefixUntilComma(names);
|
/external/open-vcdiff/gtest/src/ |
gtest-typed-test.cc | 14 // * Neither the name of Google Inc. nor the names of its 40 // Verifies that registered_tests match the test names in 50 for (const char* names = registered_tests; names != NULL; 51 names = SkipComma(names)) { 52 const String name = GetPrefixUntilComma(names);
|
/external/protobuf/gtest/src/ |
gtest-typed-test.cc | 14 // * Neither the name of Google Inc. nor the names of its 40 // Verifies that registered_tests match the test names in 50 for (const char* names = registered_tests; names != NULL; 51 names = SkipComma(names)) { 52 const String name = GetPrefixUntilComma(names);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
Plugin.cpp | 38 encoder->encode(names); 52 if (!decoder->decode(parameters.names)) 61 if (parameters.names.size() != parameters.values.size()) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
FileCounter.java | 60 String[] names = aDirectory.list(); local 61 if (names == null) { 65 System.out.println("List size: " + names.length); 67 for (int i = 0; i < names.length; i++) { 68 System.out.println("Name: " + names[i]); 74 index = names[i].toLowerCase().indexOf(types.nextToken().toLowerCase());
|
/frameworks/base/tools/preload/ |
LoadedClass.java | 106 /** Returns names of processes that loaded this class. */ 108 Set<String> names = new HashSet<String>(); local 109 addProcessNames(loads, names); 110 addProcessNames(initializations, names); 111 return names; 114 private void addProcessNames(List<Operation> ops, Set<String> names) { 117 names.add(operation.process.name);
|