Searched defs:eq (Results 26 - 50 of 95) sorted by relevance

1234

/external/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/
H A Derase_key.pass.cpp58 Eq eq = c.equal_range(1); local
59 assert(std::distance(eq.first, eq.second) == 2);
60 C::const_iterator k = eq.first;
66 eq = c.equal_range(2);
67 assert(std::distance(eq.first, eq.second) == 2);
68 k = eq.first;
74 eq = c.equal_range(3);
75 assert(std::distance(eq
221 Eq eq = c.equal_range(1); local
[all...]
/external/ltrace/
H A Ddict.h37 int (*eq)(const void *, const void *); member in struct:dict
49 int (*eq)(const void *, const void *),
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionMessages.h73 bool eq = given == bound; local
80 result.append(eq ? "or equal to " : "");
90 bool eq = given == bound; local
97 result.append(eq ? "or equal to " : "");
/external/mockito/src/org/mockito/
H A DAdditionalMatchers.java31 * mock.someMethod(not(eq("ejb")));
34 * mock.someMethod(and(not(eq("ejb")), not(eq("michael jackson"))));
37 * mock.someMethod(or(eq(1), eq(10)));
969 public static double eq(double value, double delta) { method in class:AdditionalMatchers
985 public static float eq(float value, float delta) { method in class:AdditionalMatchers
H A DMatchers.java41 * verify(mock).someMethod(anyInt(), anyString(), <b>eq("third argument")</b>);
42 * //above is correct - eq() is also an argument matcher
48 * Matcher methods like <code>anyObject()</code>, <code>eq()</code> <b>do not</b> return matchers.
51 * The consequence is that you cannot use <code>anyObject()</code>, <code>eq()</code> methods outside of verified/stubbed method.
487 public static boolean eq(boolean value) { method in class:Matchers
500 public static byte eq(byte value) { method in class:Matchers
513 public static char eq(char value) { method in class:Matchers
526 public static double eq(double value) { method in class:Matchers
539 public static float eq(float value) { method in class:Matchers
552 public static int eq(in method in class:Matchers
565 public static long eq(long value) { method in class:Matchers
578 public static short eq(short value) { method in class:Matchers
591 public static <T> T eq(T value) { method in class:Matchers
[all...]
/external/chromium_org/chromeos/system/
H A Dname_value_pairs_parser.cc59 const std::string& eq,
61 return ParseNameValuePairsWithComments(in_string, eq, delim, "");
66 const std::string& eq,
76 // Anything before the first |eq| is the key, anything after is the value.
77 // |eq| must exist.
78 size_t eq_pos = pair.find(eq);
122 const std::string& eq,
126 return ParseNameValuePairs(contents, eq, delim);
137 const std::string& eq,
145 output_string, eq, deli
58 ParseNameValuePairs(const std::string& in_string, const std::string& eq, const std::string& delim) argument
64 ParseNameValuePairsWithComments( const std::string& in_string, const std::string& eq, const std::string& delim, const std::string& comment_delim) argument
120 GetNameValuePairsFromFile( const base::FilePath& file_path, const std::string& eq, const std::string& delim) argument
134 ParseNameValuePairsFromTool( int argc, const char* argv[], const std::string& eq, const std::string& delim, const std::string& comment_delim) argument
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_translation_unit.py75 def eq(expected, actual): function in function:test_includes
90 assert eq(i[0], i[1])
/external/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cc56 bool eq(u32 hash, const args_type &args) const { function in struct:__msan::ChainedOriginDepotNode
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c173 unsigned eq:1; member in struct:__anon13720
228 if(table[func].eq)
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_blend.c906 const GLenum eq = ctx->Color.Blend[0].EquationRGB; local
915 else if (eq == GL_MIN) {
925 else if (eq == GL_MAX) {
938 else if (eq == GL_FUNC_ADD && srcRGB == GL_SRC_ALPHA
955 else if (eq == GL_FUNC_ADD && srcRGB == GL_ONE && dstRGB == GL_ONE) {
964 else if (((eq == GL_FUNC_ADD || eq == GL_FUNC_REVERSE_SUBTRACT)
967 ((eq == GL_FUNC_ADD || eq == GL_FUNC_SUBTRACT)
977 else if (eq
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrFontScaler.cpp46 bool GrFontDescKey::eq(const GrFontDescKey& rh) const { function in class:GrFontDescKey
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cc62 bool eq(u32 hash, const args_type &args) const { function in struct:__sanitizer::StackDepotNode
/external/icu/icu4c/source/test/intltest/
H A Dastrotst.cpp163 CalendarAstronomer::Equatorial eq; local
182 logln((UnicodeString)" equ ecl: " + (anAstro->eclipticToEquatorial(eq,ecl)).toString());
183 logln((UnicodeString)" equ long: " + (anAstro->eclipticToEquatorial(eq, eclLong)).toString());
/external/javassist/src/main/javassist/bytecode/analysis/
H A DType.java385 if (eq(CLONEABLE.clazz, targetRoot.clazz) || eq(SERIALIZABLE.clazz, targetRoot.clazz))
400 if (eq(deep, shallow) && deep.getSuperclass() != null)
440 while (!eq(deep, shallow)) {
573 return o.getClass() == getClass() && eq(clazz, ((Type)o).clazz);
576 static boolean eq(CtClass one, CtClass two) { method in class:Type
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c173 unsigned eq:1; member in struct:__anon27131
228 if(table[func].eq)
/external/mesa3d/src/mesa/swrast/
H A Ds_blend.c906 const GLenum eq = ctx->Color.Blend[0].EquationRGB; local
915 else if (eq == GL_MIN) {
925 else if (eq == GL_MAX) {
938 else if (eq == GL_FUNC_ADD && srcRGB == GL_SRC_ALPHA
955 else if (eq == GL_FUNC_ADD && srcRGB == GL_ONE && dstRGB == GL_ONE) {
964 else if (((eq == GL_FUNC_ADD || eq == GL_FUNC_REVERSE_SUBTRACT)
967 ((eq == GL_FUNC_ADD || eq == GL_FUNC_SUBTRACT)
977 else if (eq
[all...]
/external/skia/src/gpu/
H A DSkGrFontScaler.cpp24 virtual bool eq(const GrKey& rh) const;
64 bool SkGrDescKey::eq(const GrKey& rh) const { function in class:SkGrDescKey
/external/stlport/stlport/stl/
H A Dchar_traits.h141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2) function in class:__char_traits_base
148 if (!eq(__s1[__i], __s2[__i]))
156 for (; !eq(__s[__i], _NullChar); ++__i) {}
162 if (eq(*__s, __c))
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc179 size_t eq = arg.find('='); local
180 std::string name = arg.substr(0, eq);
181 std::string value = eq >= arg.size() - 1 ? "" : arg.substr(eq + 1);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dastrotst.cpp165 CalendarAstronomer::Equatorial eq; local
184 logln((UnicodeString)" equ ecl: " + (anAstro->eclipticToEquatorial(eq,ecl)).toString());
185 logln((UnicodeString)" equ long: " + (anAstro->eclipticToEquatorial(eq, eclLong)).toString());
/external/chromium_org/third_party/skia/tests/
H A DAAClipTest.cpp112 bool eq = (mask0 == mask1); local
116 return eq;
/external/deqp/modules/gles2/functional/
H A Des2fBlendTests.cpp348 const EnumGL& eq = blendEquations[equationNdx]; local
355 string name = string("") + eq.nameStr + "_" + src.nameStr + "_" + dst.nameStr;
357 "Equations " + getBlendEquationName(eq.glValue) +
362 paramSets.push_back(BlendParams(eq.glValue, src.glValue, dst.glValue, eq.glValue, src.glValue, dst.glValue, defaultBlendColor));
/external/dhcpcd/
H A Dconfigure.c115 char **ne, *eq; local
122 eq = strchr(config[i], '=');
123 e1 = eq - config[i] + 1;
/external/easymock/src/org/easymock/
H A DEasyMock.java1068 public static boolean eq(boolean value) { method in class:EasyMock
1080 public static byte eq(byte value) { method in class:EasyMock
1092 public static char eq(char value) { method in class:EasyMock
1104 public static double eq(double value) { method in class:EasyMock
1116 public static float eq(float value) { method in class:EasyMock
1128 public static int eq(int value) { method in class:EasyMock
1140 public static long eq(long value) { method in class:EasyMock
1152 public static short eq(short value) { method in class:EasyMock
1165 public static <T> T eq(T value) { method in class:EasyMock
1374 public static double eq(doubl method in class:EasyMock
1390 public static float eq(float value, float delta) { method in class:EasyMock
[all...]
/external/skia/tests/
H A DAAClipTest.cpp112 bool eq = (mask0 == mask1); local
116 return eq;

Completed in 5565 milliseconds

1234