| /system/core/libnl_2/ |
| attr.c | 74 /* Start a new level of nested attributes. */ 142 /* Create attribute index based on nested attribute. */ 189 /* Add nested attributes to netlink message. */ 190 /* Takes the attributes found in the nested message and appends them 191 * to the message msg nested in a container of the type attrtype. The 192 * nested message may not have a family specific header */ 193 int nla_put_nested(struct nl_msg *msg, int attrtype, struct nl_msg *nested) 197 rc = nla_put(msg, attrtype, nlmsg_attrlen(nlmsg_hdr(nested), 0), 198 nlmsg_attrdata(nlmsg_hdr(nested), 0));
|
| /external/chromium_org/v8/test/mjsunit/compiler/ |
| optimized-function-calls.js | 56 // Check that nested global function calls work. 77 function nested() { function 81 assertEquals(3113460, nested());
|
| literals-optimized.js | 56 // Test nested array literal. 90 // Test nested object literal.
|
| /external/v8/test/mjsunit/compiler/ |
| optimized-function-calls.js | 56 // Check that nested global function calls work. 77 function nested() { function 81 assertEquals(3113460, nested());
|
| /external/clang/test/SemaTemplate/ |
| dependent-base-classes.cpp | 40 class Nested { }; 48 class HasDepBase::Nested nested; local 57 class NoDepBase::Nested nested; // expected-error{{no class named 'Nested' in 'NoDepBase<T>'}} local
|
| /external/eigen/Eigen/src/Core/ |
| NoAlias.h | 49 typedef typename internal::nested<OtherDerived>::type OtherDerivedNested; 61 typedef typename internal::nested<OtherDerived>::type OtherDerivedNested;
|
| ReturnByValue.h | 38 * So internal::nested always gives the plain return matrix type. 43 struct nested<ReturnByValue<Derived>, n, PlainObject> struct in namespace:Eigen::internal
|
| /external/chromium_org/v8/test/webkit/ |
| try-try-return-finally-finally.js | 25 "Tests what would happen if you have nested try-finally's with interesting control statements nested within them. The correct outcome is for this test to not crash during bytecompilation."
|
| nested-functions.js | 25 "This test ensures that properties of nested function code are not lost (due to cached function info)." 33 // Test cases deliberately nested!
|
| /external/clang/test/CodeGenCXX/ |
| cxx0x-initializer-stdinitializerlist-pr12086.cpp | 54 std::initializer_list<std::initializer_list<int>> nested = { variable 66 // CHECK-STATIC-BL: @nested = global {{.*}} { {{.*}} getelementptr inbounds ([3 x {{.*}}]* @_ZGR6nested3, i32 0, i32 0), i64 3 }, align 8 68 // CHECK-DYNAMIC-BL: @nested = global 89 // CHECK-DYNAMIC-BL: {{.*}}** getelementptr inbounds ({{.*}}* @nested, i32 0, i32 0), align 8 90 // CHECK-DYNAMIC-BL: store i64 3, i64* getelementptr inbounds ({{.*}}* @nested, i32 0, i32 1), align 8 103 // CHECK-STATIC-BE: @nested = global {{.*}} { {{.*}} getelementptr inbounds ([3 x {{.*}}]* @_ZGR6nested3, i32 0, i32 0), 106 // CHECK-DYNAMIC-BE: @nested = global 130 // CHECK-DYNAMIC-BE: {{.*}}** getelementptr inbounds ({{.*}}* @nested, i32 0, i32 0), align 8 132 // CHECK-DYNAMIC-BE: {{.*}}** getelementptr inbounds ({{.*}}* @nested, i32 0, i32 1), align 8
|
| /external/eigen/Eigen/src/Geometry/ |
| OrthoMethods.h | 33 typename internal::nested<Derived,2>::type lhs(derived()); 34 typename internal::nested<OtherDerived,2>::type rhs(other.derived()); 79 typedef typename internal::nested<Derived,2>::type DerivedNested; 80 typedef typename internal::nested<OtherDerived,2>::type OtherDerivedNested;
|
| AlignedBox.h | 74 const typename internal::nested<Derived,2>::type p(a_p.derived()); 180 typename internal::nested<Derived,2>::type p(a_p.derived()); 192 typename internal::nested<Derived,2>::type p(a_p.derived()); 226 const typename internal::nested<Derived,2>::type t(a_t.derived()); 299 const typename internal::nested<Derived,2*AmbientDim>::type p(a_p.derived());
|
| /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/ |
| config_def.hpp | 20 # error you have nested config_def #inclusion.
|
| /external/chromium_org/base/json/ |
| json_value_converter.h | 55 // For nested field, the internal message also has to implement the registration 58 // struct Nested { 62 // converter->RegisterNestedField("foo", &Nested::foo); 68 // RegisterRepeatedMessage for nested repeated fields. 314 scoped_ptr<NestedType> nested(new NestedType); 315 if (converter_.Convert(*element, nested.get())) { 316 field->push_back(nested.release()); 351 scoped_ptr<NestedType> nested(new NestedType); 352 if ((*convert_func_)(element, nested.get())) { 353 field->push_back(nested.release()) [all...] |
| /external/chromium_org/third_party/protobuf/python/google/protobuf/ |
| descriptor_pool.py | 257 nested = [ 258 self._ConvertMessageDescriptor(nested, desc_name, file_desc, scope) 259 for nested in desc_proto.nested_type] 278 nested_types=nested, 287 for nested in desc.nested_types: 288 nested.containing_type = desc
|
| /external/clang/test/SemaCXX/ |
| lambda-expressions.cpp | 196 template<typename...Ts> void nested(Ts ...ts) { 205 template void nested(int, int, int);
|
| /external/markdown/markdown/ |
| inlinepatterns.py | 201 """Return a ElementTree element nested in tag2 nested in tag1.
|
| /external/clang/test/Sema/ |
| block-return.c | 84 int (^nested)(char *s) = ^(char *str) { void (^nest)(void) = ^(void) { printf("%s\n", str); }; next(); return 1; }; // expected-warning{{implicitly declaring library function 'printf' with type 'int (const char *, ...)'}} \
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| contextlib.py | 7 __all__ = ["contextmanager", "nested", "closing"] 89 def nested(*managers): function 90 """Combine multiple context managers into a single nested context manager. 99 with nested(*managers):
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| contextlib.py | 7 __all__ = ["contextmanager", "nested", "closing"] 89 def nested(*managers): function 90 """Combine multiple context managers into a single nested context manager. 99 with nested(*managers):
|
| /frameworks/base/test-runner/tests/src/android/test/suitebuilder/ |
| TestSuiteBuilderTest.java | 25 import android.test.suitebuilder.examples.nested.Level1Test; 26 import android.test.suitebuilder.examples.nested.nested.Level2Test;
|
| /external/chromium_org/third_party/sqlite/src/src/ |
| delete.c | 58 ** part of a nested parse and writable_schema pragma has not 67 && pParse->nested==0 ) 317 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); 408 int count = (pParse->nested==0); /* True to count changes */ 429 if( pParse->nested==0 && pParse->pTriggerTab==0 ){ 437 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
|
| /external/icu4c/common/ |
| uniset_props.cpp | 484 UnicodeSet* nested = 0; // alias - do not delete local 494 // -------- Parse '[' of opening delimiter OR nested set. 495 // If there is a nested set, use `setMode' to define how 499 // characters representing a nested set in the symbol 527 // otherwise restart loop for nested [], \p{}, etc. 544 // casting away const, but `nested' won't be modified 546 nested = const_cast<UnicodeSet*>(ms); 552 // -------- Handle a nested set. This either is inline in 574 if (nested == 0) { 580 nested = scratch.pointer() [all...] |
| /external/chromium_org/v8/test/mjsunit/ |
| arguments-read-and-assignment.js | 75 // Capture parameters in nested contexts. 110 // Deeply nested. 121 "deep nested capture");
|
| /external/v8/test/mjsunit/ |
| arguments-read-and-assignment.js | 75 // Capture parameters in nested contexts. 110 // Deeply nested. 121 "deep nested capture");
|