Searched refs:predicate (Results 126 - 150 of 277) sorted by relevance

1234567891011>>

/external/smali/util/src/main/java/org/jf/util/
H A DCollectionUtils.java51 public static <T> int lastIndexOf(@Nonnull Iterable<T> iterable, @Nonnull Predicate<? super T> predicate) { argument
55 if (predicate.apply(item)) {
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTArray.h390 @param[in] predicate The object which defines "bool operator()"
393 void Sort(Pred predicate)
401 if(predicate(m_pArray[j], m_pArray[j+1]))
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java572 * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
575 public static CharMatcher forPredicate(final Predicate<? super Character> predicate) { argument
576 checkNotNull(predicate);
577 if (predicate instanceof CharMatcher) {
578 return (CharMatcher) predicate;
580 String description = "CharMatcher.forPredicate(" + predicate + ")";
583 return predicate.apply(c);
587 return predicate.apply(checkNotNull(character));
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DCharMatcher.java538 * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
541 public static CharMatcher forPredicate(final Predicate<? super Character> predicate) { argument
542 checkNotNull(predicate);
543 if (predicate instanceof CharMatcher) {
544 return (CharMatcher) predicate;
546 String description = "CharMatcher.forPredicate(" + predicate + ")";
549 return predicate.apply(c);
553 return predicate.apply(checkNotNull(character));
/external/libmojo/build/android/gyp/util/
H A Dbuild_utils.py222 predicate=None):
238 if predicate and not predicate(name):
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jar ... .Bag, org.apache.commons.collections.Predicate) org.apache.commons.collections.Bag bag ...
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DDbg.stg115 def evalPredicate(self, result, predicate):
116 self._dbg.semanticPredicate(result, predicate)
322 /** Force predicate validation to trigger an event */
/external/chromium-trace/catapult/telemetry/telemetry/testing/
H A Dserially_executed_browser_test_case.py207 test_class, predicate=inspect.ismethod):
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target.h153 unsigned int predicate : 1; member in struct:nv50_ir::Target::OpInfo
H A Dnv50_ir_target_nv50.cpp158 opInfo[i].predicate = !opInfo[i].pseudo;
165 opInfo[noPredList[i]].predicate = 0;
448 return opInfo[insn->op].predicate;
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.c590 /* Allocate a new predicate register.
945 boolean predicate,
955 uint count = predicate ? 2 : 1;
970 if (predicate) {
1081 boolean predicate; local
1086 predicate = nr_dst ? dst[0].Predicate : FALSE;
1087 if (predicate) {
1098 predicate,
1130 boolean predicate; local
1135 predicate
942 ureg_emit_insn(struct ureg_program *ureg, unsigned opcode, boolean saturate, boolean predicate, boolean pred_negate, unsigned pred_swizzle_x, unsigned pred_swizzle_y, unsigned pred_swizzle_z, unsigned pred_swizzle_w, unsigned num_dst, unsigned num_src ) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventSocketProxy.cs242 public override void SemanticPredicate(bool result, string predicate) { argument
246 SerializeText(buf, predicate);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugEventSocketProxy.cs278 public override void SemanticPredicate( bool result, string predicate )
283 SerializeText( buf, predicate );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugEventHub.java203 public void semanticPredicate(boolean result, String predicate) { argument
206 listener.semanticPredicate(result, predicate);
H A DDebugEventSocketProxy.java210 public void semanticPredicate(boolean result, String predicate) { argument
214 serializeText(buf, predicate);
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DIterablesTest.java188 Predicate<String> predicate = Predicates.equalTo("pants");
190 assertFalse(Iterables.any(list, predicate));
192 assertFalse(Iterables.any(list, predicate));
194 assertTrue(Iterables.any(list, predicate));
199 Predicate<String> predicate = Predicates.equalTo("cool");
201 assertTrue(Iterables.all(list, predicate));
203 assertTrue(Iterables.all(list, predicate));
205 assertFalse(Iterables.all(list, predicate));
/external/llvm/include/llvm/IR/
H A DInstrTypes.h861 /// predicate values are not overlapping between the classes.
922 /// Construct a compare instruction, given the opcode, the predicate and
928 Predicate predicate, Value *S1,
932 /// Construct a compare instruction, given the opcode, the predicate and the
936 static CmpInst *Create(OtherOps Op, Predicate predicate, Value *S1,
944 /// @brief Return the predicate for this instruction.
949 /// @brief Set the predicate for this instruction to the specified value.
965 /// @returns the inverse predicate for the instruction's current predicate.
966 /// @brief Return the inverse of the instruction's predicate
[all...]
/external/autotest/server/cros/dynamic_suite/
H A Dsuite.py303 A suite of tests, defined by some predicate over control file variables.
305 Given a place to search for control files a predicate to match the desired
352 """Returns predicate that takes a control file and looks for |name|.
354 Builds a predicate that takes in a parsed control file (a ControlData)
357 @param name: the suite name to base the predicate on.
366 """Returns predicate that takes a control file and gets the similarity
369 Builds a predicate that takes in a parsed control file (a ControlData)
374 @param name: the suite name to base the predicate on.
387 """Returns predicate that matched based on a test's name.
389 Builds a predicate tha
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_libdispatch_mac.cc229 // predicate), so the interceptor is always called, and let's add proper release
231 // race on predicate won't be reported - the only accesses to it that TSan sees
236 TSAN_INTERCEPTOR(void, dispatch_once, dispatch_once_t *predicate, argument
238 SCOPED_INTERCEPTOR_RAW(dispatch_once, predicate, block);
239 atomic_uint32_t *a = reinterpret_cast<atomic_uint32_t *>(predicate);
258 TSAN_INTERCEPTOR(void, dispatch_once_f, dispatch_once_t *predicate, argument
260 SCOPED_INTERCEPTOR_RAW(dispatch_once_f, predicate, context, function);
262 WRAP(dispatch_once)(predicate, ^(void) {
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp2813 CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate, argument
2822 setPredicate((Predicate)predicate);
2826 CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate, argument
2835 setPredicate((Predicate)predicate);
2840 CmpInst::Create(OtherOps Op, unsigned short predicate, argument
2845 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2848 return new ICmpInst(CmpInst::Predicate(predicate),
2853 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2856 return new FCmpInst(CmpInst::Predicate(predicate),
2861 CmpInst::Create(OtherOps Op, unsigned short predicate, Valu argument
3043 isUnsigned(unsigned short predicate) argument
3051 isSigned(unsigned short predicate) argument
3059 isOrdered(unsigned short predicate) argument
3068 isUnordered(unsigned short predicate) argument
3077 isTrueWhenEqual(unsigned short predicate) argument
3085 isFalseWhenEqual(unsigned short predicate) argument
[all...]
/external/swiftshader/src/Shader/
H A DShader.cpp119 predicate = false;
170 if(predicate)
209 if(predicate)
523 predicate = false;
533 predicate = (token & 0x10000000) != 0x00000000;
546 if(predicate)
1105 return predicate ||
/external/v8/src/compiler/mips/
H A Dcode-generator-mips.cc321 FPUCondition FlagsConditionToConditionCmpFPU(bool& predicate, argument
325 predicate = true;
328 predicate = false;
331 predicate = true;
334 predicate = false;
337 predicate = true;
340 predicate = false;
344 predicate = true;
347 predicate = true;
1858 bool predicate; local
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DRangeTest.java517 Predicate<Integer> predicate = Range.closed(2, 3);
518 assertFalse(predicate.apply(1));
519 assertTrue(predicate.apply(2));
520 assertTrue(predicate.apply(3));
521 assertFalse(predicate.apply(4));
/external/llvm/lib/IR/
H A DInstructions.cpp3360 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS,
3368 setPredicate((Predicate)predicate);
3372 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS,
3380 setPredicate((Predicate)predicate);
3385 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2,
3389 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3392 return new ICmpInst(CmpInst::Predicate(predicate),
3397 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3400 return new FCmpInst(CmpInst::Predicate(predicate),
3405 CmpInst::Create(OtherOps Op, Predicate predicate, Valu
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb179 def semantic_predicate( result, predicate )
181 transmit "%s\t%s\t%s", :semantic_predicate, pure_boolean, escape_newlines( predicate )

Completed in 776 milliseconds

1234567891011>>