/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_copy.py | 1 """Unit tests for the copy module.""" 3 import copy 12 # Attempt full line coverage of copy.py from top to bottom 15 self.assertTrue(copy.Error is copy.error) 16 self.assertTrue(issubclass(copy.Error, Exception)) 18 # The copy() method 22 y = copy.copy(x) 32 y = copy.copy(x [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_copy.py | 1 """Unit tests for the copy module.""" 3 import copy 12 # Attempt full line coverage of copy.py from top to bottom 15 self.assertTrue(copy.Error is copy.error) 16 self.assertTrue(issubclass(copy.Error, Exception)) 18 # The copy() method 22 y = copy.copy(x) 32 y = copy.copy(x [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_copy.py | 1 """Unit tests for the copy module.""" 3 import copy 12 # Attempt full line coverage of copy.py from top to bottom 15 self.assertTrue(copy.Error is copy.error) 16 self.assertTrue(issubclass(copy.Error, Exception)) 18 # The copy() method 22 y = copy.copy(x) 32 y = copy.copy(x [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_copy.py | 1 """Unit tests for the copy module.""" 3 import copy 12 # Attempt full line coverage of copy.py from top to bottom 15 self.assertTrue(copy.Error is copy.error) 16 self.assertTrue(issubclass(copy.Error, Exception)) 18 # The copy() method 22 y = copy.copy(x) 32 y = copy.copy(x [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
BiMapInverseTester.java | 6 * You may obtain a copy of the License at 51 BiMapPair<K, V> copy = SerializableTester.reserialize(pair); local 52 assertEquals(pair.forward, copy.forward); 53 assertEquals(pair.backward, copy.backward); 54 assertSame(copy.backward, copy.forward.inverse()); 55 assertSame(copy.forward, copy.backward.inverse());
|
/hardware/qcom/gps/msm8960/core/ |
MsgTask.cpp | 94 MsgTask* copy = (MsgTask*)arg; local 99 if (NULL != copy->mAssociator) { 100 copy->mAssociator(); 109 msq_q_err_type result = msg_q_rcv((void*)copy->mQ, (void **)&msg); 115 msg_q_destroy((void**)&(copy->mQ)); 116 delete copy; 127 delete copy;
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
gpu_copy_insertion.cc | 5 You may obtain a copy of the License at 39 HloInstruction*& copy = hlo_to_copy_map_[hlo]; local 40 if (copy == nullptr) { 41 TF_ASSIGN_OR_RETURN(copy, hlo->parent()->DeepCopyInstruction(hlo)); 43 return copy; 58 // Inserts a copy of hlo->operand(n) if it's a constant. 67 TF_ASSIGN_OR_RETURN(HloInstruction * copy, FindOrInsertCopy(operand)); 68 TF_RETURN_IF_ERROR(hlo->ReplaceOperandWith(n, copy)); 105 // Skip the operands that have already been replaced with a copy in a 117 TF_ASSIGN_OR_RETURN(HloInstruction * copy, [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
FourthMoment.java | 7 * the License. You may obtain a copy of the License at 70 * Copy constructor, creates a new {@code FourthMoment} identical 73 * @param original the {@code FourthMoment} instance to copy 77 copy(original, this); method 124 public FourthMoment copy() { method in class:FourthMoment 126 copy(this, result); method 134 * @param source FourthMoment to copy 135 * @param dest FourthMoment to copy to 138 public static void copy(FourthMoment source, FourthMoment dest) { method in class:FourthMoment 139 ThirdMoment.copy(source, dest) [all...] |
ThirdMoment.java | 7 * the License. You may obtain a copy of the License at 72 * Copy constructor, creates a new {@code ThirdMoment} identical 75 * @param original the {@code ThirdMoment} instance to copy 78 copy(original, this); method 119 public ThirdMoment copy() { method in class:ThirdMoment 121 copy(this, result); method 129 * @param source ThirdMoment to copy 130 * @param dest ThirdMoment to copy to 133 public static void copy(ThirdMoment source, ThirdMoment dest) { method in class:ThirdMoment 134 SecondMoment.copy(source, dest) [all...] |
/external/toolchain-utils/bestflags/ |
flags_util.py | 46 results = flags_dict.copy() 61 results = flags_dict.copy() 78 neighbor = flags_dict.copy() 85 neighbor = flags_dict.copy() 91 neighbor = flags_dict.copy()
|
/external/tensorflow/tensorflow/compiler/xla/ |
shape_tree_test.cc | 5 You may obtain a copy of the License at 127 // Test the copy constructor. 128 ShapeTree<int> copy{shape_tree}; 129 EXPECT_EQ(123, copy.element({})); 131 // Mutate the copy, and ensure the original doesn't change. 132 *copy.mutable_element({}) = 99; 133 EXPECT_EQ(99, copy.element({})); 137 copy = shape_tree; 138 EXPECT_EQ(123, copy.element({})); 160 // Test the copy constructor [all...] |
/build/make/core/ |
distdir.mk | 6 # You may obtain a copy of the License at 17 # When specifying "dist", the user has asked that we copy the important 24 # $(3): goals that should copy the file 26 define copy-one-dist-file 30 $$(copy-file-to-new-target-with-cp) 36 # copy-one-dist-file to avoid multiple rules for the same target. 46 # at copy time if necessary. 55 $(eval $(call copy-one-dist-file,\
|
/external/mesa3d/src/compiler/nir/ |
nir_lower_var_copies.c | 5 * copy of this software and associated documentation files (the "Software"), 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 32 * Lowers all copy intrinsics to sequences of load/store intrinsics. 57 * given copy instruction with an equivalent sequence load/store 60 * @copy_instr The copy instruction to replace; new instructions will be 144 /* Lowers a copy instruction to a sequence of load/store instructions 146 * The new instructions are placed before the copy instruction in the IR. 149 nir_lower_var_copy_instr(nir_intrinsic_instr *copy, nir_shader *shader) 151 assert(copy->intrinsic == nir_intrinsic_copy_var); 152 emit_copy_load_store(copy, copy->variables[0], copy->variables[1] 167 nir_intrinsic_instr *copy = nir_instr_as_intrinsic(instr); local [all...] |
/external/tensorflow/tensorflow/core/graph/ |
validate.cc | 5 You may obtain a copy of the License at 46 GraphDef copy(graph_def); 47 TF_RETURN_IF_ERROR(AddDefaultAttrsToGraphDef(©, op_registry, 0)); 48 return ValidateGraphDef(copy, op_registry);
|
/external/tinyxml/ |
tinystr.h | 33 * - added "copy" constructor with length, and most compare operators. 67 // TiXmlString copy constructor 68 TiXmlString (const TiXmlString & copy) 70 init(copy.length()); 71 memcpy(start(), copy.data(), length()); 75 TiXmlString (const char * copy) 77 init( static_cast<size_type>( strlen(copy) )); 78 memcpy(start(), copy, length()); local 95 TiXmlString& operator = (const char * copy) 97 return assign( copy, (size_type)strlen(copy)) [all...] |
/frameworks/base/core/tests/coretests/src/android/graphics/ |
RectTest.java | 6 * You may obtain a copy of the License at 45 final Rect copy = copyOrNull(orig); local 47 assertEquals(orig, copy); 48 assertNotSame(orig, copy);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
dynOptionMenuWidget.py | 7 import copy 14 #get a copy of kwargs before OptionMenu.__init__ munges them 15 kwargsCopy=copy.copy(kwargs)
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
dynOptionMenuWidget.py | 7 import copy 14 #get a copy of kwargs before OptionMenu.__init__ munges them 15 kwargsCopy=copy.copy(kwargs)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
dynOptionMenuWidget.py | 7 import copy 14 #get a copy of kwargs before OptionMenu.__init__ munges them 15 kwargsCopy=copy.copy(kwargs)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
dynOptionMenuWidget.py | 7 import copy 14 #get a copy of kwargs before OptionMenu.__init__ munges them 15 kwargsCopy=copy.copy(kwargs)
|
/external/curl/src/ |
tool_cb_hdr.c | 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 143 char *copy; local 149 copy = malloc(len + 1); 150 if(!copy) 152 memcpy(copy, ptr, len); 153 copy[len] = '\0'; 155 p = copy; 174 Curl_safefree(copy); 186 Curl_safefree(copy); 200 if(copy != p [all...] |
/frameworks/base/graphics/java/android/graphics/ |
RadialGradient.java | 6 * You may obtain a copy of the License at 117 protected Shader copy() { method in class:RadialGradient 118 final RadialGradient copy; local 120 copy = new RadialGradient(mX, mY, mRadius, mColors.clone(), 123 copy = new RadialGradient(mX, mY, mRadius, mCenterColor, mEdgeColor, mTileMode); 125 copyLocalMatrix(copy); 126 return copy;
|
SweepGradient.java | 6 * You may obtain a copy of the License at 102 protected Shader copy() { method in class:SweepGradient 103 final SweepGradient copy; local 105 copy = new SweepGradient(mCx, mCy, mColors.clone(), 108 copy = new SweepGradient(mCx, mCy, mColor0, mColor1); 110 copyLocalMatrix(copy); 111 return copy;
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue7310.go | 7 // Internal compiler crash used to stop errors during second copy. 12 _ = copy(nil, []int{}) // ERROR "use of untyped nil" 13 _ = copy([]int{}, nil) // ERROR "use of untyped nil"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue7310.go | 7 // Internal compiler crash used to stop errors during second copy. 12 _ = copy(nil, []int{}) // ERROR "use of untyped nil" 13 _ = copy([]int{}, nil) // ERROR "use of untyped nil"
|