HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 426 - 450 of 11972) sorted by null

<<11121314151617181920>>

  /external/webrtc/talk/app/webrtc/objc/
RTCICECandidate.mm 48 _sdpMid = [sdpMid copy];
50 _sdp = [sdp copy];
RTCICEServer.mm 50 _username = [username copy];
51 _password = [password copy];
  /external/webrtc/webrtc/api/objc/
RTCIceCandidate.mm 28 _sdpMid = [sdpMid copy];
30 _sdp = [sdp copy];
RTCIceServer.mm 35 _username = [username copy];
36 _credential = [credential copy];
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
Location.java 6 * You may obtain a copy of the License at
180 Location copy = new Location(this); local
181 boolean sameLine = copy.startLine == copy.endLine;
182 if (copy.startLine == 0) {
183 copy.startOffset += absoluteParent.startOffset;
186 copy.endOffset += absoluteParent.startOffset;
189 copy.startLine += absoluteParent.startLine;
190 copy.endLine += absoluteParent.startLine;
191 return copy;
    [all...]
  /hardware/qcom/gps/core/
MsgTask.h 61 static void* loopMain(void* copy);
  /hardware/qcom/gps/msm8084/core/
MsgTask.h 61 static void* loopMain(void* copy);
  /hardware/qcom/gps/msm8960/core/
MsgTask.h 60 static void* loopMain(void* copy);
  /hardware/qcom/gps/msm8994/core/
MsgTask.h 61 static void* loopMain(void* copy);
  /packages/apps/Settings/src/com/android/settings/search/indexing/
PreIndexData.java 6 * You may obtain a copy of the License at
47 public PreIndexData copy() { method in class:PreIndexData
  /prebuilts/gdb/darwin-x86/lib/python2.7/
hmac.py 15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
85 def copy(self): member in class:HMAC
86 """Return a separate copy of this hashing object.
88 An update to this copy won't affect the original object.
93 other.inner = self.inner.copy()
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /prebuilts/gdb/linux-x86/lib/python2.7/
hmac.py 15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
85 def copy(self): member in class:HMAC
86 """Return a separate copy of this hashing object.
88 An update to this copy won't affect the original object.
93 other.inner = self.inner.copy()
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /prebuilts/go/darwin-x86/src/net/
cgo_socknew.go 25 copy(sa.Addr[:], ip)
31 copy(sa.Addr[:], ip)
cgo_sockold.go 25 copy(sa.Addr[:], ip)
31 copy(sa.Addr[:], ip)
  /prebuilts/go/darwin-x86/src/runtime/
env_plan9.go 17 copy(file[:], "/env/")
18 copy(file[5:], key)
  /prebuilts/go/linux-x86/src/net/
cgo_socknew.go 25 copy(sa.Addr[:], ip)
31 copy(sa.Addr[:], ip)
cgo_sockold.go 25 copy(sa.Addr[:], ip)
31 copy(sa.Addr[:], ip)
  /prebuilts/go/linux-x86/src/runtime/
env_plan9.go 17 copy(file[:], "/env/")
18 copy(file[5:], key)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hmac.py 15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
85 def copy(self): member in class:HMAC
86 """Return a separate copy of this hashing object.
88 An update to this copy won't affect the original object.
93 other.inner = self.inner.copy()
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hmac.py 15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
85 def copy(self): member in class:HMAC
86 """Return a separate copy of this hashing object.
88 An update to this copy won't affect the original object.
93 other.inner = self.inner.copy()
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /system/netd/libnetdutils/include/netdutils/
MemBlock.h 6 * You may obtain a copy of the License at
38 // Allocate memory of size src.size() and copy src into this MemBlock.
40 copy(get(), src);
43 // No copy construction or assignment.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
err-2.s 5 ! This is a mainly a copy of movi64-2.s, but we check that out-of-range
  /tools/test/connectivity/acts/framework/acts/test_utils/wifi/
WifiBaseTest.py 7 # You may obtain a copy of the License at
20 import copy
109 copy.copy(network_dict_2g),
111 copy.copy(network_dict_5g)
236 orig_network_list_5g = copy.copy(network_list_5g)
237 orig_network_list_2g = copy.copy(network_list_2g
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableBiMapTest.java 6 * You may obtain a copy of the License at
357 ImmutableBiMap<String, Integer> copy local
359 assertEquals(Collections.<String, Integer>emptyMap(), copy); local
360 assertSame(copy, ImmutableBiMap.copyOf(copy));
361 assertSame(ImmutableBiMap.of(), copy); local
365 ImmutableBiMap<String, Integer> copy local
367 assertMapEquals(copy, "one", 1);
368 assertSame(copy, ImmutableBiMap.copyOf(copy));
377 ImmutableBiMap<String, Integer> copy = ImmutableBiMap.copyOf(original); local
475 ImmutableBiMap<String, Integer> copy = local
486 ImmutableBiMap<String, Integer> copy = local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
statusor_test.cc 5 You may obtain a copy of the License at
239 const StatusOr<int> copy(original);
240 EXPECT_EQ(copy.status(), original.status());
241 EXPECT_EQ(original.ValueOrDie(), copy.ValueOrDie());
246 StatusOr<int> copy(original);
247 EXPECT_EQ(copy.status(), original.status());
254 StatusOr<CopyNoAssign> copy(original);
255 EXPECT_EQ(copy.status(), original.status());
256 EXPECT_EQ(original.ValueOrDie().foo_, copy.ValueOrDie().foo_);
262 StatusOr<double> copy(original)
    [all...]

Completed in 1861 milliseconds

<<11121314151617181920>>