HomeSort by relevance Sort by last modified time
    Searched refs:result (Results 251 - 275 of 9219) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/password_manager/
encryptor_unittest.cc 31 string16 result; local
38 EXPECT_TRUE(Encryptor::DecryptString16(ciphertext, &result));
39 EXPECT_EQ(plaintext, result);
44 EXPECT_TRUE(Encryptor::DecryptString16(ciphertext, &result));
45 EXPECT_EQ(plaintext, result);
51 EXPECT_TRUE(Encryptor::DecryptString16(ciphertext, &result));
52 EXPECT_EQ(plaintext, result);
65 EXPECT_TRUE(Encryptor::DecryptString16(ciphertext, &result));
66 EXPECT_EQ(plaintext, result);
68 EXPECT_EQ(utf8_plaintext, UTF16ToUTF8(result));
79 std::string result; local
102 std::string result; local
129 std::string result; local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs,
59 returns(result);
61 return result;
72 boolean result = mEgl10.eglCopyBuffers(display, surface, native_pixmap);
73 returns(result);
75 return result;
87 EGLContext result = mEgl10.eglCreateContext(display, config, local
89 returns(result);
91 return result;
102 EGLSurface result = mEgl10.eglCreatePbufferSurface(display, config local
118 EGLSurface result = mEgl10.eglCreatePixmapSurface(display, config, local
134 EGLSurface result = mEgl10.eglCreateWindowSurface(display, config, local
200 EGLContext result = mEgl10.eglGetCurrentContext(); local
211 EGLDisplay result = mEgl10.eglGetCurrentDisplay(); local
223 EGLSurface result = mEgl10.eglGetCurrentSurface(readdraw); local
235 EGLDisplay result = mEgl10.eglGetDisplay(native_display); local
246 int result = mEgl10.eglGetError(); local
297 String result = mEgl10.eglQueryString(display, name); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpecList.java 38 RegisterSpecList result = new RegisterSpecList(1); local
39 result.set(0, spec);
40 return result;
52 RegisterSpecList result = new RegisterSpecList(2); local
53 result.set(0, spec0);
54 result.set(1, spec1);
55 return result;
68 RegisterSpecList result = new RegisterSpecList(3); local
69 result.set(0, spec0);
70 result.set(1, spec1)
87 RegisterSpecList result = new RegisterSpecList(4); local
112 int result = 0; local
200 int result = 0; local
225 RegisterSpecList result = new RegisterSpecList(sz + 1); local
253 RegisterSpecList result = new RegisterSpecList(newSize); local
280 RegisterSpecList result = new RegisterSpecList(newSize); local
309 RegisterSpecList result = new RegisterSpecList(sz); local
343 RegisterSpecList result = new RegisterSpecList(sz); local
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArrayInput.java 95 int result = ((data[readAt++] & 0xff) + local
98 return result;
104 int result = (data[readAt++] & 0xff) + local
109 return result;
116 long result = (data[readAt++] & 0xffL) | local
125 return result;
133 int result; local
135 result = data[end++] & 0xff;
136 if (result > 0x7f) {
138 result = (result & 0x7f) | ((currentByteValue & 0x7f) << 7)
178 int result; local
209 int result; local
    [all...]
  /external/elfutils/libasm/
asm_newsym.c 50 AsmSym_t *result; local
75 result = (AsmSym_t *) malloc (sizeof (AsmSym_t) + name_len);
76 if (result == NULL)
81 result->scn = asmscn;
82 result->offset = asmscn->offset;
83 result->size = size;
84 result->type = type;
85 result->binding = binding;
86 result->symidx = 0;
87 result->strent = ebl_strtabadd (asmscn->ctx->symbol_strtab
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-base64.js 46 var result = '';
51 result += toBase64Table[data[i] >> 2];
52 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i+1] >> 4)];
53 result += toBase64Table[((data[i+1] & 0x0f) << 2) + (data[i+2] >> 6)];
54 result += toBase64Table[data[i+2] & 0x3f];
60 result += toBase64Table[data[i] >> 2];
62 result += toBase64Table[((data[i] & 0x03) << 4) + (data[i+1] >> 4)];
63 result += toBase64Table[(data[i+1] & 0x0f) << 2];
64 result += base64Pad;
66 result += toBase64Table[(data[i] & 0x03) << 4]
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-base64.js 46 var result = '';
51 result += toBase64Table[data.charCodeAt(i) >> 2];
52 result += toBase64Table[((data.charCodeAt(i) & 0x03) << 4) + (data.charCodeAt(i+1) >> 4)];
53 result += toBase64Table[((data.charCodeAt(i+1) & 0x0f) << 2) + (data.charCodeAt(i+2) >> 6)];
54 result += toBase64Table[data.charCodeAt(i+2) & 0x3f];
60 result += toBase64Table[data.charCodeAt(i) >> 2];
62 result += toBase64Table[((data.charCodeAt(i) & 0x03) << 4) + (data.charCodeAt(i+1) >> 4)];
63 result += toBase64Table[(data.charCodeAt(i+1) & 0x0f) << 2];
64 result += base64Pad;
66 result += toBase64Table[(data.charCodeAt(i) & 0x03) << 4]
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
mpy_32_16.h 101 Word32 result; local
107 __asm {SMULBB result, L_var1_lo, var2} local
108 result >>= 15;
109 __asm {QDADD L_sum, L_product, result}
124 Word32 result, L_product; local
133 : "=r"(result)
138 : "r"(result), "r"(L_product)
142 : "=r"(result)
148 : "r"(result)
151 : "=r"(result)
167 Word32 result; local
    [all...]
  /external/bluetooth/glib/glib/
gatomic.c 42 gint result; local
45 : "=r" (result), "=m" (*atomic)
47 return result;
64 gint result; local
67 : "=a" (result), "=m" (*atomic)
70 return result == oldval;
82 gpointer result; local
85 : "=a" (result), "=m" (*atomic)
88 return result == oldval;
110 gpointer result; local
123 gpointer result; local
169 gint result; local
195 gint result; local
226 gint result; local
248 gint result; local
262 gpointer result; local
283 gint result, temp; local
309 gint result, temp; local
333 gint result; local
345 gint result; local
358 gint result; local
390 gpointer result; local
422 gpointer result; local
456 gpointer result; local
541 gpointer result = oldval; local
553 gpointer result = oldval; local
568 int result; local
596 gint result; local
620 gboolean result; local
640 gboolean result; local
740 gint result; local
756 gint result; local
854 gint result; local
879 gboolean result; local
899 gboolean result; local
918 gint result; local
939 gpointer result; local
1002 gint result; local
1014 gint result; local
    [all...]
  /external/icu4c/common/
servlk.cpp 74 LocaleKey::prefix(UnicodeString& result) const {
79 result.append(temp);
81 return result;
90 LocaleKey::canonicalID(UnicodeString& result) const {
91 return result.append(_primaryID);
95 LocaleKey::currentID(UnicodeString& result) const {
97 result.append(_currentID);
99 return result;
103 LocaleKey::currentDescriptor(UnicodeString& result) const {
105 prefix(result).append(PREFIX_DELIMITER).append(_currentID)
    [all...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
SourceInfo.cpp 46 SourceInfo *result = new SourceInfo(); local
48 if (!result) {
52 result->type = SourceKind::Buffer;
53 result->buffer.resName = resName;
54 result->buffer.bitcode = bitcode;
55 result->buffer.bitcodeSize = bitcodeSize;
56 result->flags = flags;
59 result->flags |= BCC_SKIP_DEP_SHA1;
66 if (result->flags & BCC_SKIP_DEP_SHA1) {
67 memset(result->sha1, '\0', 20)
78 SourceInfo *result = new SourceInfo(); local
100 SourceInfo *result = new SourceInfo(); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCommandInterface.java 40 public void getIccCardStatus(Message result) {
43 public void supplyIccPin(String pin, Message result) {
46 public void supplyIccPuk(String puk, String newPin, Message result) {
49 public void supplyIccPin2(String pin, Message result) {
52 public void supplyIccPuk2(String puk, String newPin2, Message result) {
55 public void changeIccPin(String oldPin, String newPin, Message result) {
58 public void changeIccPin2(String oldPin2, String newPin2, Message result) {
62 String newPwd, Message result) {
65 public void supplyNetworkDepersonalization(String netpin, Message result) {
68 public void getCurrentCalls(Message result) {
    [all...]
  /frameworks/wilhelm/tests/sandbox/
multiplay.c 39 // Strings corresponding to result codes; FIXME should move to a common test library
61 // Convert result to string; FIXME should move to common test library
63 static const char *result_to_string(SLresult result)
66 if ( /* result >= 0 && */ result < sizeof(result_strings) / sizeof(result_strings[0]))
67 return result_strings[result];
68 sprintf(buffer, "%d", (int) result);
72 // Compare result against expected and exit suddenly if wrong
74 void check2(SLresult result, int line)
76 if (SL_RESULT_SUCCESS != result) {
93 SLresult result; local
144 SLresult result; local
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
Instrumentation_ActivityResultTest.java 29 ActivityResult result = new ActivityResult(Activity.RESULT_OK, intent); local
30 assertEquals(Activity.RESULT_OK, result.getResultCode());
31 assertEquals(intent, result.getResultData());
33 result = new ActivityResult(Activity.RESULT_CANCELED, intent);
34 assertEquals(Activity.RESULT_CANCELED, result.getResultCode());
  /cts/tests/tests/graphics/src/android/graphics/cts/
Interpolator_ResultTest.java 20 import android.graphics.Interpolator.Result;
27 assertEquals(Result.FREEZE_START, Result.valueOf("FREEZE_START"));
28 assertEquals(Result.FREEZE_END, Result.valueOf("FREEZE_END"));
29 assertEquals(Result.NORMAL, Result.valueOf("NORMAL"));
33 Result[] result = Result.values() local
    [all...]
  /dalvik/hit/src/com/android/hit/
StackTrace.java 44 StackTrace result = new StackTrace(); local
47 result.mParent = mParent;
49 result.mParent = this;
52 result.mOffset = startingDepth + mOffset;
54 return result;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObjectFactory.java 46 XObject result; local
50 result = (XObject) val;
54 result = new XString((String) val);
58 result = new XBoolean((Boolean)val);
62 result = new XNumber(((Double) val));
66 result = new XObject(val);
69 return result;
85 XObject result; local
89 result = (XObject) val;
93 result = new XString((String) val)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_icon_manager.cc 27 scoped_ptr<gfx::CanvasSkia> result(
30 result->DrawBitmapInt(
35 return result->ExtractBitmap();
63 const SkBitmap* result = NULL; local
65 result = &icons_[extension_id];
68 result = &default_icon_;
70 DCHECK(result);
71 DCHECK_EQ(kFaviconSize + padding_.width(), result->width());
72 DCHECK_EQ(kFaviconSize + padding_.height(), result->height());
73 return *result;
107 SkBitmap result = source; local
    [all...]
  /external/clang/test/Sema/
variadic-block.c 13 long result = 0;
18 result += i;
22 result += (int)d;
26 result += c;
29 return result;
  /external/compiler-rt/BlocksRuntime/tests/
variadic.c 29 long result = 0;
36 result += i;
41 result += (int)d;
46 result += c;
50 return result;
54 printf("got wrong result: %ld\n", testresult);
59 printf("got different wrong result: %ld\n", testresult);
  /external/compiler-rt/lib/ppc/
floatditf.c 29 DD result; local
31 result.s.hi = high_addend + low.d;
32 result.s.lo = (high_addend - result.s.hi) + low.d;
34 return result.ld;
floatunditf.c 34 DD result; local
36 result.s.hi = high_addend + low.d;
37 result.s.lo = (high_addend - result.s.hi) + low.d;
39 return result.ld;
  /external/oprofile/libregex/tests/
java_test.cpp 27 string const & result)
29 if (result != output) {
32 << "found:\n\"" << result << "\"\n"; local
59 string result = demangle_java_symbol(cur->mangled); local
60 check_result(cur->mangled, cur->expect, result);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
statement-006.js 20 var result = "Failed"; variable
26 var result = 0;
28 result += this[o];
31 result = expect;
40 result );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/Script/
switch-001.js 45 result = "fail: did not enter switch";
49 result = "fail: for backwards compatibility, version 130 use strict equality";
52 result = "pass";
55 result = "fail: evaluated default statement";
62 result );

Completed in 1567 milliseconds

<<11121314151617181920>>