/external/bluetooth/glib/gio/ |
gfileenumerator.c | 49 * synchronous will only return the next file in the enumerator. 74 static void g_file_enumerator_real_next_files_async (GFileEnumerator *enumerator, 80 static GList * g_file_enumerator_real_next_files_finish (GFileEnumerator *enumerator, 83 static void g_file_enumerator_real_close_async (GFileEnumerator *enumerator, 88 static gboolean g_file_enumerator_real_close_finish (GFileEnumerator *enumerator, 98 GFileEnumerator *enumerator; local 100 enumerator = G_FILE_ENUMERATOR (object); 104 enumerator->priv->container = g_value_dup_object (value); 115 GFileEnumerator *enumerator; local 117 enumerator = G_FILE_ENUMERATOR (object) 130 GFileEnumerator *enumerator; local 295 GFileEnumerator *enumerator = G_FILE_ENUMERATOR (source_object); local 429 GFileEnumerator *enumerator = G_FILE_ENUMERATOR (source_object); local 628 GFileEnumerator *enumerator; local [all...] |
gfileenumerator.h | 64 GFileInfo * (* next_file) (GFileEnumerator *enumerator, 67 gboolean (* close_fn) (GFileEnumerator *enumerator, 71 void (* next_files_async) (GFileEnumerator *enumerator, 77 GList * (* next_files_finish) (GFileEnumerator *enumerator, 80 void (* close_async) (GFileEnumerator *enumerator, 85 gboolean (* close_finish) (GFileEnumerator *enumerator, 102 GFileInfo *g_file_enumerator_next_file (GFileEnumerator *enumerator, 105 gboolean g_file_enumerator_close (GFileEnumerator *enumerator, 108 void g_file_enumerator_next_files_async (GFileEnumerator *enumerator, 114 GList * g_file_enumerator_next_files_finish (GFileEnumerator *enumerator, [all...] |
gfilenamecompleter.c | 55 GFileEnumerator *enumerator; member in struct:__anon2365 153 if (data->enumerator) 154 g_object_unref (data->enumerator); 185 infos = g_file_enumerator_next_files_finish (data->enumerator, res, NULL); 235 g_file_enumerator_next_files_async (data->enumerator, 255 g_file_enumerator_close_async (data->enumerator, 0, NULL, NULL, NULL); 277 data->enumerator = g_file_enumerate_children_finish (G_FILE (source_object), res, NULL); 279 if (data->enumerator == NULL) 297 g_file_enumerator_next_files_async (data->enumerator,
|
/external/clang/test/ASTMerge/Inputs/ |
enum1.c | 22 // Missing enumerator 29 // Extra enumerator
|
enum2.c | 22 // Missing enumerator 28 // Extra enumerator
|
/external/clang/test/PCH/ |
exprs.h | 5 enum Enum { Enumerator = 18 }; 7 typedef typeof(Enumerator) enum_decl_ref; 26 typedef typeof(-Enumerator) negate_enum; 43 typedef typeof(sizeof(Enumerator)) typeof_sizeof2; 61 typedef typeof(i + Enumerator) add_result; 64 typedef typeof(i += Enumerator) addeq_result; 75 typedef typeof(i + sizeof(int[i + Enumerator])) add_result_with_typeinfo;
|
/external/clang/test/Sema/ |
MicrosoftCompatibility.c | 10 ENUM2_b = 0x9FFFFFFF, // expected-warning {{enumerator value is not representable in the underlying type 'int'}} 11 ENUM2_c = 0x100000000 // expected-warning {{enumerator value is not representable in the underlying type 'int'}}
|
enum.c | 3 B = 42LL << 32, // expected-warning {{ISO C restricts enumerator values to range of 'int'}} 9 c = -2147483649, // expected-warning {{ISO C restricts enumerator values to range of 'int'}} 12 f = 2147483648, // expected-warning {{ISO C restricts enumerator values to range of 'int'}} 18 { y = -9223372036854775807LL-1, // expected-warning {{ISO C restricts enumerator values to range of 'int'}} 19 z = 9223372036854775808ULL }; // expected-warning {{ISO C restricts enumerator values to range of 'int'}}
|
/external/clang/test/Parser/ |
control-scope.c | 6 return 1 + sizeof (enum {a}); // expected-error {{redefinition of enumerator 'a'}}
|
/external/clang/test/CXX/dcl.dcl/dcl.enum/ |
p5.cpp | 5 // [...] If the underlying type is not fixed, the type of each enumerator is 7 // - If an initializer is specified for an enumerator, the initializing 16 // - If no initializer is specified for the first enumerator, the 24 // of the initializing value of the preceding enumerator unless the 54 // Following the closing brace of an enum-specifier, each enumerator has the
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p4.cpp | 7 // of the class being defined, or shall refer to an enumerator for 20 enum tagname { enumerator }; enumerator in enum:test0::NonClass::tagname 27 using NonClass::enumerator; // expected-error {{not a class}} 39 enum tagname { enumerator }; enumerator in enum:test1::A::tagname 46 using A::enumerator; 67 enum tagname _ = enumerator; 82 enum tagname { enumerator }; enumerator in enum:test2::A::tagname 89 using A::enumerator; 110 enum tagname _ = enumerator; 127 enum tagname { enumerator }; // expected-note 2 {{target of using declaration} enumerator in enum:test3::A::tagname [all...] |
/external/clang/test/ASTMerge/ |
enum.c | 6 // CHECK: enum1.c:11:3: note: enumerator 'E2Enumerator2' with value 3 here 7 // CHECK: enum2.c:11:3: note: enumerator 'E2Enumerator2' with value 4 here 11 // CHECK: enum1.c:18:3: note: enumerator 'E3Enumerator2' with value 3 here 12 // CHECK: enum2.c:18:3: note: enumerator 'E3Enumerator' with value 3 here 16 // CHECK: enum1.c:26:3: note: enumerator 'E4Enumerator3' with value 2 here 17 // CHECK: enum2.c:23:6: note: no corresponding enumerator here 21 // CHECK: enum2.c:33:3: note: enumerator 'E5Enumerator4' with value 3 here 22 // CHECK: enum1.c:30:6: note: no corresponding enumerator here
|
/external/clang/test/SemaCXX/ |
address-of.cpp | 21 Enumerator 25 (void)&Enumerator; // expected-error{{address expression must be an lvalue or a function designator}}
|
qualified-id-lookup.cpp | 6 Enumerator 12 int x = Enumerator; 19 int y = Ns::Enumerator;
|
enum-unscoped-nonexistent.cpp | 18 // and not the injected enumerator name 'a' from the specialization. 25 template<typename T> constexpr int S<T>::g() { return b; } // expected-error {{enumerator 'b' does not exist in instantiation of 'S<char>'}}
|
/external/clang/test/CXX/class.access/class.access.dcl/ |
p1.cpp | 10 // of the class being defined, or shall refer to an enumerator for 23 enum tagname { enumerator }; enumerator in enum:test0::NonClass::tagname 30 NonClass::enumerator; // expected-error {{not a class}} expected-warning {{access declarations are deprecated}} member in class:test0::Test0::NonClass 42 enum tagname { enumerator }; enumerator in enum:test1::A::tagname 49 A::enumerator; // expected-warning {{access declarations are deprecated}} member in class:test1::B::A 70 enum tagname _ = enumerator; 85 enum tagname { enumerator }; enumerator in enum:test2::A::tagname 92 A::enumerator; // expected-warning {{access declarations are deprecated}} member in class:test2::B::A 113 enum tagname _ = enumerator; 130 enum tagname { enumerator }; // expected-note {{target of using declaration} enumerator in enum:test3::A::tagname 137 A<T>::enumerator; \/\/ expected-warning {{access declarations are deprecated}} member in class:test3::B::A [all...] |
/external/webkit/Tools/MiniBrowser/qt/ |
utils.cpp | 55 QMetaEnum enumerator = o.enumerator(enumIndex); local 57 if (enumerator.isValid()) { 58 for (int i = 0; i < enumerator.keyCount(); i++) { 59 QString key(enumerator.valueToKey(i));
|
/external/webkit/Tools/QtTestBrowser/ |
utils.cpp | 55 QMetaEnum enumerator = o.enumerator(enumIndex); local 57 if (enumerator.isValid()) { 58 for (int i = 0; i < enumerator.keyCount(); i++) { 59 QString key(enumerator.valueToKey(i));
|
/external/bluetooth/glib/tests/ |
gio-ls.c | 78 GFileEnumerator *enumerator = g_file_enumerate_children (top, attrs, local 85 if (!enumerator) 88 while ((info = g_file_enumerator_next_file (enumerator, NULL, NULL)) != NULL)
|
/external/chromium/chrome/browser/history/ |
url_database.cc | 247 bool URLDatabase::InitURLEnumeratorForEverything(URLEnumerator* enumerator) { 248 DCHECK(!enumerator->initialized_); 252 enumerator->statement_.Assign(GetDB().GetUniqueStatement(sql.c_str())); 253 if (!enumerator->statement_) { 257 enumerator->initialized_ = true; 261 bool URLDatabase::InitURLEnumeratorForSignificant(URLEnumerator* enumerator) { 262 DCHECK(!enumerator->initialized_); 267 enumerator->statement_.Assign(GetDB().GetUniqueStatement(sql.c_str())); 268 if (!enumerator->statement_) { 272 enumerator->statement_.BindInt64 [all...] |
/external/icu4c/common/ |
ucnvsel.cpp | 590 struct Enumerator { 600 ucnvsel_close_selector_iterator(UEnumeration *enumerator) { 601 uprv_free(((Enumerator*)(enumerator->context))->index); 602 uprv_free(enumerator->context); 603 uprv_free(enumerator); 608 ucnvsel_count_encodings(UEnumeration *enumerator, UErrorCode *status) { 613 return ((Enumerator*)(enumerator->context))->length; 617 static const char* U_CALLCONV ucnvsel_next_encoding(UEnumeration* enumerator, [all...] |
/development/host/windows/usb/api/ |
adb_interface_enum.h | 21 encapsulates enumerator of USB interfaces available through this API.
26 /** \brief Enumerator of USB interfaces available through this API.
78 /** \brief Makes enumerator to start from the beginning.
94 /// Current enumerator
|
/external/webkit/Source/WebCore/platform/mac/ |
MIMETypeRegistryMac.mm | 49 NSEnumerator* enumerator = [stringsArray objectEnumerator]; 51 while ((string = [enumerator nextObject]) != nil)
|
/external/bluetooth/glib/gio/tests/ |
desktop-app-info.c | 182 GFileEnumerator *enumerator; local 190 enumerator = 194 if (! enumerator) 197 info = g_file_enumerator_next_file (enumerator, NULL, &error); 214 info = g_file_enumerator_next_file (enumerator, NULL, &error); 219 res = g_file_enumerator_close (enumerator, NULL, &error);
|
live-g-file.c | 485 GFileEnumerator *enumerator; local 495 enumerator = 499 g_assert (enumerator != NULL); 503 info = g_file_enumerator_next_file (enumerator, NULL, &error); 533 info = g_file_enumerator_next_file (enumerator, NULL, &error); 538 res = g_file_enumerator_close (enumerator, NULL, &error); 572 GFileEnumerator *enumerator; local 603 enumerator = 610 g_assert (enumerator == NULL); 615 g_assert (enumerator == NULL) 1027 GFileEnumerator *enumerator; local [all...] |