/external/clang/test/CXX/expr/expr.unary/expr.sizeof/ |
H A D | p5-0x.cpp | 17 struct any { struct 18 template<typename T> any(T); 23 any array[sizeof...(inits)] = { inits... };
|
/external/dbus/tools/ |
H A D | strtoll.c | 71 int neg, any, cutlim; local 74 * Skip white space and pick up leading +/- sign if any. 101 acc = any = 0; 120 * Set 'any' if any `digits' consumed; make it negative to indicate 138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 139 any = -1; 141 any = 1; 146 if (any < 0) { 153 } else if (!any) { [all...] |
H A D | strtoull.c | 72 int neg, any, cutlim; local 100 acc = any = 0; 117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 118 any = -1; 120 any = 1; 125 if (any < 0) { 132 } else if (!any) { 142 *endptr = (char *)(any ? s - 1 : nptr);
|
/external/eigen/Eigen/src/Core/ |
H A D | BooleanRedux.h | 76 * \sa any(), Cwise::operator<() 103 inline bool DenseBase<Derived>::any() const function in class:Eigen::DenseBase 124 * \sa all(), any()
|
/external/hamcrest/src/org/hamcrest/core/ |
H A D | IsAnything.java | 56 public static <T> Matcher<T> any(@SuppressWarnings("unused")Class<T> type) { method in class:IsAnything
|
/external/openssh/openbsd-compat/ |
H A D | strtoll.c | 55 int neg, any, cutlim; local 58 * Skip white space and pick up leading +/- sign if any. 98 * Set any if any `digits' consumed; make it negative to indicate 111 for (acc = 0, any = 0;; c = (unsigned char) *s++) { 120 if (any < 0) 124 any = -1; 128 any = 1; 134 any = -1; 138 any [all...] |
H A D | strtoul.c | 53 int neg, any, cutlim; local 81 for (acc = 0, any = 0;; c = (unsigned char) *s++) { 90 if (any < 0) 93 any = -1; 97 any = 1; 102 if (neg && any > 0) 105 *endptr = (char *) (any ? s - 1 : nptr);
|
H A D | strtoull.c | 55 int neg, any, cutlim; local 83 for (acc = 0, any = 0;; c = (unsigned char) *s++) { 92 if (any < 0) 95 any = -1; 99 any = 1; 104 if (neg && any > 0) 107 *endptr = (char *) (any ? s - 1 : nptr);
|
/external/webrtc/webrtc/common_audio/signal_processing/ |
H A D | refl_coef_to_lpc.c | 22 int16_t any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local 29 *any = *a; 38 anyptr = any; 41 any[m + 1] = *kptr >> 3; 51 anyptr = any;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/ |
H A D | cng_helpfuns.c | 19 int16_t any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local 26 *any = *a; 33 anyptr = any; 36 any[m + 1] = (*kptr + 4) >> 3; 43 anyptr = any;
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/ |
H A D | p4.cpp | 8 void test_cvqual_ref(AnyT any) { argument 9 const int &cir = any;
|
/external/libpcap/Win32/Src/ |
H A D | getnetent.c | 7 * duplicated in all such forms and that any documentation, 31 static char *any(char *, char *); 71 cp = any(p, "#\n"); 76 cp = any(p, " \t"); 82 p = any(cp, " \t"); 97 cp = any(cp, " \t"); 106 any(cp, match) function
|
/external/parameter-framework/asio/include/asio/ip/ |
H A D | address_v4.hpp | 165 /// Obtain an address object that represents any address. 166 static address_v4 any() function in class:asio::ip::address_v4
|
H A D | address_v6.hpp | 179 /// Obtain an address object that represents any address. 180 static address_v6 any() function in class:asio::ip::address_v6
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
H A D | address_v4.hpp | 165 /// Obtain an address object that represents any address. 166 static address_v4 any() function in class:asio::ip::address_v4
|
H A D | address_v6.hpp | 179 /// Obtain an address object that represents any address. 180 static address_v6 any() function in class:asio::ip::address_v6
|
/external/deqp/scripts/ |
H A D | testset.py | 35 def any (results, predicate): function 228 FilterRule("any-pass", "Any of results is 'Pass'", [lambda l: any(l, lambda r: r == 'Pass')]), 229 FilterRule("any-fail", "Any of results is not 'Pass' or 'NotSupported'", [lambda l: not all(l, lambda r: r == 'Pass' or r == 'NotSupported')]), 231 FilterRule("prev-passing", "Any except last result is 'Pass'", [lambda l: l[-1] != 'Pass' and any(l[:-1], lambda r: r == 'Pass')])
|
/external/hamcrest/src/org/hamcrest/ |
H A D | CoreMatchers.java | 126 public static <T> org.hamcrest.Matcher<T> any(java.lang.Class<T> type) { method in class:CoreMatchers 127 return org.hamcrest.core.IsAnything.any(type);
|
/external/autotest/frontend/client/src/autotest/tko/ |
H A D | FilterSelector.java | 77 private RadioButton any; field in class:FilterSelector 90 any = new RadioButton("booleanOp" + id, "any of"); 98 any.addClickHandler(booleanOpListener); 122 booleanOpPanel.add(any); 156 // Get whether the filter should be "all" or "any" 180 // Restore the "all" or "any" selection 185 any.setValue(true); 213 any.setEnabled(enabled);
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/ |
H A D | p5-cxx0x.cpp | 70 struct any { struct in namespace:libcxx_example 71 any(...); 80 nat swap(any, any);
|
/external/droiddriver/src/io/appium/droiddriver/finders/ |
H A D | Predicates.java | 37 return "any"; 45 public static <T> Predicate<T> any() { method in class:Predicates 121 * Returns a predicate that evaluates to {@code true} if any one of its
|
H A D | By.java | 33 /** Matches any UiElement. */ 34 public static MatchFinder any() { method in class:By
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_tile_cache.h | 6 * Permission is hereby granted, free of charge, to any person obtaining a 74 ubyte any[1]; member in union:softpipe_cached_tile::__anon14119
|
/external/guice/core/src/com/google/inject/matcher/ |
H A D | Matchers.java | 38 * Returns a matcher which matches any input. 40 public static Matcher<Object> any() { method in class:Matchers 52 return "any()"; 56 return any(); 329 * {@link #inPackage(Package) inPackage()}, this matches classes from any classloader.
|
/external/hamcrest/library/src/org/hamcrest/ |
H A D | Matchers.java | 126 public static <T> org.hamcrest.Matcher<T> any(java.lang.Class<T> type) { method in class:Matchers 127 return org.hamcrest.core.IsAnything.any(type); 274 * Constructs an IsEventFrom Matcher that returns true for any object 282 * Constructs an IsEventFrom Matcher that returns true for any object
|