/external/chromium_org/v8/src/ |
data-flow.h | 138 void Union(const BitVector& other) { 231 void Union(const GrowableBitVector& other, Zone* zone) {
|
hydrogen-load-elimination.cc | 470 // Union these effects with the other effects. 471 void Union(HLoadEliminationEffects* that, Zone* zone) {
|
unique.h | 248 // Returns a new set representing the union of this set and the other. 250 UniqueSet<T>* Union(UniqueSet<T>* that, Zone* zone) const {
|
hydrogen-check-elimination.cc | 166 this_entry->maps_ = this_entry->maps_->Union( 483 // Union these effects with the other effects. 484 void Union(HCheckMapsEffects* that, Zone* zone) {
|
hydrogen-instructions.cc | 238 void Range::Union(Range* other) { [all...] |
jsregexp.h | 715 Interval Union(Interval that) { 808 union { [all...] |
/external/chromium_org/v8/test/cctest/ |
test-types.cc | 191 Handle<Type> Union(Handle<Type> type1, Handle<Type> type2) { 192 return handle(Type::Union(type1, type2), isolate_); 214 CHECK(IsBitset(Type::Union(T.String, T.Number))); 215 CHECK(IsBitset(Type::Union(T.String, T.Receiver))); 220 AsBitset(Type::Union(T.String, T.Number))); 222 AsBitset(Type::Union(T.Receiver, T.Object))); 422 TEST(Union) { 429 CHECK(IsBitset(Type::Union(T.Object, T.Number))); 430 CHECK(IsBitset(Type::Union(T.Object, T.Object))); 431 CHECK(IsBitset(Type::Union(T.Any, T.None))) [all...] |
/external/icu4c/i18n/ |
scriptset.cpp | 105 ScriptSet &ScriptSet::Union(const ScriptSet &other) {
|
/external/openfst/src/include/fst/ |
interval-set.h | 97 void Union(const IntervalSet<T> &iset) {
|
/external/skia/tests/ |
RegionTest.cpp | 13 static void Union(SkRegion* rgn, const SkIRect& rect) { 25 Union(&r, SkIRect::MakeXYWH(0, 0, 1, 1)); 33 Union(&r, SkIRect::MakeXYWH(0, 0, 3, 3)); 34 Union(&r, SkIRect::MakeXYWH(10, 0, 3, 3)); 35 Union(&r, SkIRect::MakeXYWH(0, 10, 13, 3)); 67 Union(&container, SkIRect::MakeXYWH(0, 0, 40, 20)); 68 Union(&container, SkIRect::MakeXYWH(30, 20, 10, 20)); 74 Union(&rgn, SkIRect::MakeXYWH(0, 0, 10, 10)); 75 Union(&rgn, SkIRect::MakeLTRB(5, 10, 20, 20));
|
/external/chromium_org/third_party/icu/source/i18n/ |
uspoof_impl.cpp | 689 void ScriptSet::Union(UScriptCode script) { 697 void ScriptSet::Union(const ScriptSet &other) {
|
/external/chromium_org/ui/views/touchui/ |
touch_selection_controller_impl.cc | 91 gfx::Rect Union(const gfx::Rect& r1, const gfx::Rect& r2) { 464 menu_anchor = Union(end_rect_1_in_screen,end_rect_2_in_screen);
|
/external/clang/include/clang/AST/ |
APValue.h | 1 //===--- APValue.h - Union class for APFloat/APSInt/Complex -----*- C++ -*-===// 35 /// APValue - This class implements a discriminated union of [uninitialized] 52 Union, 58 union LValuePathEntry { 116 union { 191 bool isUnion() const { return Kind == Union; } 440 Kind = Union;
|
/external/llvm/lib/IR/ |
Metadata.cpp | 433 ConstantRange Union = LastRange.unionWith(NewRange); 435 EndPoints[Size - 2] = ConstantInt::get(Ty, Union.getLower()); 436 EndPoints[Size - 1] = ConstantInt::get(Ty, Union.getUpper()); 453 // Given two ranges, we want to compute the union of the ranges. This
|
/external/chromium/testing/gmock/scripts/generator/cpp/ |
ast.py | 312 class Union(_NestedType): [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
ir.py | 352 " the tag of a Struct, Union or Enum " 356 "Struct, Union or Enum " 391 "Struct or Union" 400 elif isinstance(self,Union): 401 l=[ 'union%s '%tag ] 426 class Union(genpyx.Union, Compound): 513 return self.spec.union # i am a union 514 union = property(get_union variable in class:Declarator 773 union = property(get_union) variable in class:TypeSpecifiers [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 10 from _ctypes import Union, Structure, Array
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 10 from _ctypes import Union, Structure, Array
|
/external/v8/src/ |
hydrogen-instructions.cc | 151 void Range::Union(Range* other) { 1061 range->Union(OperandAt(i)->range()); [all...] |
jsregexp.h | 318 // pointer, the result is the union of the two sets that would be created 321 // union (all three out-sets are equal), intersection (only both_sets_out is 459 union { 722 Interval Union(Interval that) { 803 union { [all...] |
/external/v8/tools/ |
test.py | 817 def Union(self, that): 819 return that.Union(self) 831 def Union(self, that): 843 def Union(self, that): 874 return self.left.GetOutcomes(env, defs).Union(self.right.GetOutcomes(env, defs)) 1089 outcomes = outcomes.union(rule.GetOutcomes(env, self.defs)) 1094 all_outcomes = all_outcomes.union(outcomes) [all...] |
/external/clang/test/SemaCXX/ |
type-traits.cpp | 16 union EmptyUnion {}; 17 union Union { int i; float f; }; 24 union { 88 union NonPODUnion { int i; Derives n; }; 151 { int arr[T(__is_pod(Union))]; } 238 { int arr[F(__is_class(Union))]; } 243 typedef Union UnionAr[10]; 244 typedef Union UnionType; 248 { int arr[T(__is_union(Union))]; } [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar | |
/prebuilts/devtools/tools/lib/ |
jython-standalone-2.5.3.jar | |
/prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/ |
jython-standalone-2.5.3.jar | |