HomeSort by relevance Sort by last modified time
    Searched full:parts (Results 101 - 125 of 3568) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/e2fsprogs/intl/
osdep.c 1 /* OS dependent parts of libintl.
  /external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Misc/
Unshaded.j3md 10 // Texture of the glowing parts of the material
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
UnshadedArray.j3md 10 // Texture of the glowing parts of the material
  /external/libcxx/
.gitignore 18 parts/
  /external/libcxxabi/
.gitignore 18 parts/
  /external/llvm/test/CodeGen/AArch64/
arm64-tls-dynamic-together.ll 3 ; If the .tlsdesccall and blr parts are emitted completely separately (even with
  /external/lzma/CPP/Common/
CommandLineParser.h 11 void SplitCommandLine(const UString &s, UStringVector &parts);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/mtd/
nftl-user.h 2 * Parts of NFTL headers shared with userspace
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_ipv4/
nf_nat.h 11 /* The protocol-specific manipulable parts of the tuple. */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
domreg.py 84 parts = s.split()
86 length = len(parts)
88 feature = parts[i]
94 v = parts[i]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
domreg.py 84 parts = s.split()
86 length = len(parts)
88 feature = parts[i]
94 v = parts[i]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java 37 * infinite values in real or imaginary parts as these arise in computation.
83 * Create a complex number given the real and imaginary parts.
142 * returned in the parts of the result according to the rules for
198 * <li>If this is finite (i.e., has no infinite or NaN parts) and
199 * <code>rhs</code> is infinite (one or both parts infinite),
202 * returned in the parts of the result if the {@link java.lang.Double}
241 * If both the real and imaginary parts of two Complex numbers
246 * (or both) real and imaginary parts of the complex number are equal
307 * Returns true if either or both parts of this complex number is NaN;
310 * @return true if either or both parts of this complex number is NaN
    [all...]
  /external/icu/icu4c/source/test/testdata/
testaliases.txt 24 // alias that uses another alias and references parts of the end structure
40 // Test aliasing parts of an array using position
  /external/llvm/test/CodeGen/X86/
misched-aa-mmos.ll 26 %parts.i.i = bitcast %u1* %significand.i18.i to i64**
27 %1 = load i64*, i64** %parts.i.i, align 8
  /external/skia/src/gpu/gl/
GrGLProgramDesc.h 30 // The key, stored in fKey, is composed of five parts(first 2 are defined in the key itself):
56 * parts of the descriptor.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
schemadef.h 30 #define BEGIN_TM_CLASS_PARTS(name) enum name##PARTS { name##PartFiller0,
64 #define BEGIN_TM_CLASS_PARTS(name) {L#name L"PARTS",TMT_ENUMDEF,TMT_ENUMDEF},
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_glob.py 16 def norm(self, *parts):
17 return os.path.normpath(os.path.join(self.tempdir, *parts))
19 def mktemp(self, *parts):
20 filename = self.norm(*parts)
45 def glob(self, *parts):
46 if len(parts) == 1:
47 pattern = parts[0]
49 pattern = os.path.join(*parts)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_glob.py 16 def norm(self, *parts):
17 return os.path.normpath(os.path.join(self.tempdir, *parts))
19 def mktemp(self, *parts):
20 filename = self.norm(*parts)
45 def glob(self, *parts):
46 if len(parts) == 1:
47 pattern = parts[0]
49 pattern = os.path.join(*parts)
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 63 * {@link #parts()}, and will be reflected in the result of
93 * Maximum parts (labels) in a domain name. This value arises from
121 * The parts of the domain name, converted to lower case.
123 private final ImmutableList<String> parts; field in class:InternetDomainName
126 * The index in the {@link #parts()} list at which the public suffix begins.
153 this.parts = ImmutableList.copyOf(DOT_SPLITTER.split(name));
154 checkArgument(parts.size() <= MAX_PARTS,
155 "Domain has too many parts: '%s'", name);
156 checkArgument(validateSyntax(parts), "Not a valid domain name: '%s'", name);
168 final int partsSize = parts.size()
306 public ImmutableList<String> parts() { method in class:InternetDomainName
    [all...]
  /external/v8/src/arm64/
decoder-arm64.h 143 // Decode the branch, system command, and exception generation parts of
148 // Decode the load and store parts of the instruction tree, and call
153 // Decode the logical immediate and move wide immediate parts of the
158 // Decode the bitfield and extraction parts of the instruction tree,
163 // Decode the data processing parts of the instruction tree, and call the
168 // Decode the floating point parts of the instruction tree, and call the
  /external/llvm/lib/Support/
APInt.cpp 678 // We can check that all parts of an integer are equal by making use of a
    [all...]
  /developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 140 String[] parts = afterKeyword.split("\\s+"); local
144 for (int j = 0; j < parts.length; ++j) {
145 if (parts[j].equals(first)) {
146 parts[j] = second;
147 } else if (parts[j].equals(second)) {
148 parts[j] = first;
152 afterKeyword = TextUtils.join(" ", parts);
  /developers/samples/android/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 140 String[] parts = afterKeyword.split("\\s+"); local
144 for (int j = 0; j < parts.length; ++j) {
145 if (parts[j].equals(first)) {
146 parts[j] = second;
147 } else if (parts[j].equals(second)) {
148 parts[j] = first;
152 afterKeyword = TextUtils.join(" ", parts);
  /development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/
ElizaResponder.java 140 String[] parts = afterKeyword.split("\\s+"); local
144 for (int j = 0; j < parts.length; ++j) {
145 if (parts[j].equals(first)) {
146 parts[j] = second;
147 } else if (parts[j].equals(second)) {
148 parts[j] = first;
152 afterKeyword = TextUtils.join(" ", parts);
  /external/boringssl/src/crypto/err/
err_data_generate.go 186 parts := bytes.Split(line, comma)
187 if len(parts) != 4 {
188 return fmt.Errorf("bad line %d in %s: found %d values but want 4", lineNo, filename, len(parts))
190 libNum, ok := e.libraryMap[string(parts[0])]
197 key, err := strconv.ParseUint(string(parts[2]), 10 /* base */, 32 /* bit size */)
204 value := string(parts[3])
208 switch string(parts[1]) {

Completed in 403 milliseconds

1 2 3 45 6 7 8 91011>>