HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 1226 - 1250 of 11920) sorted by null

<<41424344454647484950>>

  /external/libweave/src/
utils.cc 40 std::unique_ptr<base::DictionaryValue> result; local
49 return result;
56 return result;
61 result.reset(dict_value);
62 return result;
  /external/libweave/third_party/chromium/base/json/
json_writer.cc 41 bool result = writer.BuildJSONString(node, 0U); local
46 return result;
67 bool result = node.GetAsBoolean(&value); local
68 DCHECK(result);
70 return result;
75 bool result = node.GetAsInteger(&value); local
76 DCHECK(result);
78 return result;
83 bool result = node.GetAsDouble(&value); local
84 DCHECK(result);
115 bool result = node.GetAsString(&value); local
128 bool result = node.GetAsList(&list); local
161 bool result = node.GetAsDictionary(&dict); local
    [all...]
  /external/libweave/third_party/chromium/base/
rand_util.cc 23 // |range| is at most UINT_MAX + 1, so the result of RandGenerator(range)
25 int result = local
27 DCHECK_GE(result, min);
28 DCHECK_LE(result, max);
29 return result;
46 double result = ldexp(static_cast<double>(random_bits), -1 * kBits); local
47 DCHECK_GE(result, 0.0);
48 DCHECK_LT(result, 1.0);
49 return result;
56 // MAX_UINT64 was 7 and |range| was 5, then a result of 1 would be twic
    [all...]
  /external/libweave/third_party/chromium/base/strings/
string_util.h 53 int result = vsnprintf(buffer, size, format, arguments); local
55 return result;
89 // use a normal operator== on the result.
103 // and then just call the normal string operators on the result.
string_util_unittest.cc 122 bool result; member in struct:base::TestData
141 bool result = ReplaceChars(cases[i].input, local
145 EXPECT_EQ(cases[i].result, result);
stringprintf.cc 53 int result = vsnprintfT(stack_buf, arraysize(stack_buf), format, ap_copy); local
56 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) {
58 dst->append(stack_buf, result);
65 if (result < 0) {
78 // We need exactly "result + 1" characters.
79 mem_length = result + 1;
95 result = vsnprintfT(&mem_buf[0], mem_length, format, ap_copy);
98 if ((result >= 0) && (result < mem_length))
111 std::string result; local
118 std::string result; local
    [all...]
  /external/libxml2/doc/examples/
io1.c 22 static const char *result = "<list><people>a</people><people>b</people></list>"; variable
54 cur = result;
55 rlen = strlen(result);
  /external/llvm/utils/
bisect 29 result = subprocess.call(cmd) variable
30 if result == 0:
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.cpp 36 HRESULT result = _updateCallback->GetStream(_fileIndices[_fileIndex], &stream); local
37 if (result != S_OK && result != S_FALSE)
38 return result;
56 Processed.Add(result == S_OK);
  /external/lzma/CPP/7zip/Common/
InBuffer.cpp 64 HRESULT result = _stream->Read(_bufBase, (UInt32)_bufSize, &processed); local
66 ErrorCode = result;
68 if (result != S_OK)
69 throw CInBufferException(result);
OutBuffer.cpp 53 HRESULT result = S_OK; local
55 result = ErrorCode;
70 result = _stream->Write(_buf + _streamPos, size, &processedSize);
83 return result;
95 HRESULT result = FlushPart(); local
96 if (result != S_OK)
97 return result;
104 HRESULT result = Flush(); local
106 ErrorCode = result;
108 if (result != S_OK)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
SetProperties.cpp 21 UInt64 result = ConvertStringToUInt64(s, &end); local
24 else if (result <= (UInt32)0xFFFFFFFF)
25 prop = (UInt32)result;
27 prop = result;
  /external/lzma/CPP/Common/
StringConvert.cpp 123 AString result; local
124 CharToOem(srcString, result.GetBuffer(srcString.Len() * 2));
125 result.ReleaseBuffer();
126 return result;
TextConfig.cpp 15 AString result; local
21 result += c;
23 return result;
  /external/lzma/CPP/Windows/Control/
Window2.cpp 135 LRESULT result; local
143 if (OnCommand(wParam, lParam, result))
144 return result;
147 if (OnNotify((UINT)wParam, (LPNMHDR) lParam, result))
148 return result;
163 bool CWindow2::OnCommand(WPARAM wParam, LPARAM lParam, LRESULT &result)
165 return OnCommand(HIWORD(wParam), LOWORD(wParam), lParam, result);
168 bool CWindow2::OnCommand(int /* code */, int /* itemID */, LPARAM /* lParam */, LRESULT & /* result */)
  /external/lzma/CPP/Windows/
Window.cpp 143 bool result = GetText(sysString); local
145 return result;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_query.c 91 uint64_t *result = (uint64_t *)vresult; local
96 *result = 0;
112 *result = 0;
114 *result += pq->count[i];
162 uint64_t result; local
169 b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result);
171 return result > 0;
  /external/mesa3d/src/gallium/drivers/svga/
svga_format.c 566 SVGA3dDevCapResult result; local
568 if (sws->get_cap(sws, entry->index, &result)) {
570 caps->value = result.u;
svga_pipe_vs.c 151 struct svga_shader_result *result, *tmp; local
158 for (result = vs->base.results; result; result = tmp ) {
159 tmp = result->next;
162 result->id,
167 result->id,
172 util_bitmask_clear( svga->vs_bm, result->id );
174 svga_destroy_shader_result( result );
177 * Remove stale references to this result to ensure a new result on th
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/
attributes.c 56 XvAttribute *result; local
63 result = malloc(sizeof(attributes));
64 if (!result)
67 memcpy(result, attributes, sizeof(attributes));
72 return result;
  /external/mesa3d/src/glx/apple/
apple_glx_pixmap.c 192 bool result = false; local
203 result = true;
208 result = true;
213 result = true;
220 return result;
  /external/mesa3d/src/mesa/program/
hash_table.h 268 bool result = hash_table_replace(this->ht, local
271 if (result)
prog_opt_constant_fold.c 125 * Try to replace instructions that produce a constant result with simple moves
144 float result[4]; local
149 result[0] = a[0] + b[0];
150 result[1] = a[1] + b[1];
151 result[2] = a[2] + b[2];
152 result[3] = a[3] + b[3];
155 inst->SrcReg[0] = src_reg_for_vec4(prog, result);
173 float result[4]; local
179 result[0] = a[0] < 0.0f ? b[0] : c[0];
180 result[1] = a[1] < 0.0f ? b[1] : c[1]
202 float result; local
233 float result[4]; local
257 float result[4]; local
289 float result[4]; local
321 float result[4]; local
353 float result[4]; local
385 float result[4]; local
417 float result[4]; local
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
PatternUtil.java 46 StringBuffer result = new StringBuffer(); local
51 result.append(".*");
54 result.append('.');
69 result.append('\\');
70 result.append(ch);
73 result.append(ch);
76 return result.toString();
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Subroutine.java 66 Subroutine result = new Subroutine(); local
67 result.start = start;
68 result.access = new boolean[access.length];
69 System.arraycopy(access, 0, result.access, 0, access.length);
70 result.callers = new ArrayList(callers);
71 return result;

Completed in 590 milliseconds

<<41424344454647484950>>