/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR/en.lproj/ |
InfoPlist.strings | 1 /* Localized versions of Info.plist keys */
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLRTests/en.lproj/ |
InfoPlist.strings | 1 /* Localized versions of Info.plist keys */
|
/external/chromium_org/third_party/ocmock/OCMock/en.lproj/ |
InfoPlist.strings | 1 /* Localized versions of Info.plist keys */
|
/external/chromium_org/tools/gyp/test/mac/depend-on-bundle/English.lproj/ |
InfoPlist.strings | 1 /* Localized versions of Info.plist keys */
|
/external/chromium_org/tools/gyp/test/mac/framework/TestFramework/English.lproj/ |
InfoPlist.strings | 1 ?/* Localized versions of Info.plist keys */
|
/external/chromium_org/net/proxy/ |
proxy_info_unittest.cc | 13 ProxyInfo info; local 16 EXPECT_FALSE(info.is_direct_only()); 18 info.UseDirect(); 19 EXPECT_TRUE(info.is_direct_only()); 21 info.UsePacString("DIRECT"); 22 EXPECT_TRUE(info.is_direct_only()); 24 info.UsePacString("PROXY myproxy:80"); 25 EXPECT_FALSE(info.is_direct_only()); 27 info.UsePacString("DIRECT; PROXY myproxy:80"); 28 EXPECT_TRUE(info.is_direct()) [all...] |
/external/chromium_org/gpu/config/ |
gpu_control_list_version_info_unittest.cc | 35 VersionInfo info(op[i], std::string(), string1, string2); 36 EXPECT_TRUE(info.IsValid()); 45 VersionInfo info("=", style[i], "8.9", std::string()); 46 EXPECT_TRUE(info.IsValid()); 48 EXPECT_TRUE(info.IsLexical()); 50 EXPECT_FALSE(info.IsLexical()); 68 VersionInfo info("=", std::string(), number[i], std::string()); 69 EXPECT_TRUE(info.IsValid()); 85 VersionInfo info(op[i], std::string(), "8.9", std::string()); 87 EXPECT_FALSE(info.IsValid()) [all...] |
gpu_control_list_string_info_unittest.cc | 27 StringInfo info(op[i], std::string()); 28 EXPECT_TRUE(info.IsValid()); 31 StringInfo info(op[i], "hello"); 32 EXPECT_TRUE(info.IsValid()); 46 StringInfo info(op[i], "hello"); 47 EXPECT_FALSE(info.IsValid()); 53 StringInfo info("contains", "happy"); 54 EXPECT_TRUE(info.Contains("unhappy")); 55 EXPECT_TRUE(info.Contains("happy1")); 56 EXPECT_TRUE(info.Contains("happy")) [all...] |
/frameworks/support/v4/ics/android/support/v4/view/accessibility/ |
AccessibilityNodeInfoCompatIcs.java | 38 public static Object obtain(Object info) { 39 return AccessibilityNodeInfo.obtain((AccessibilityNodeInfo) info); 42 public static void addAction(Object info, int action) { 43 ((AccessibilityNodeInfo) info).addAction(action); 46 public static void addChild(Object info, View child) { 47 ((AccessibilityNodeInfo) info).addChild(child); 51 public static List<Object> findAccessibilityNodeInfosByText(Object info, String text) { 52 Object result = ((AccessibilityNodeInfo) info).findAccessibilityNodeInfosByText(text); 56 public static int getActions(Object info) { 57 return ((AccessibilityNodeInfo) info).getActions() [all...] |
/external/pixman/test/ |
oob-test.c | 29 const composite_info_t info[] = variable 66 make_image (const image_info_t *info) 68 char *data = malloc (info->stride * info->height); 71 for (i = 0; i < info->height * info->stride; ++i) 74 return pixman_image_create_bits (info->format, info->width, info->height, (uint32_t *)data, info->stride) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_draw.h | 43 util_draw_init_info(struct pipe_draw_info *info) 45 memset(info, 0, sizeof(*info)); 46 info->instance_count = 1; 47 info->max_index = 0xffffffff; 54 struct pipe_draw_info info; local 56 util_draw_init_info(&info); 57 info.mode = mode; 58 info.start = start; 59 info.count = count 70 struct pipe_draw_info info; local 88 struct pipe_draw_info info; local 109 struct pipe_draw_info info; local 130 struct pipe_draw_info info; local [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_draw.h | 43 util_draw_init_info(struct pipe_draw_info *info) 45 memset(info, 0, sizeof(*info)); 46 info->instance_count = 1; 47 info->max_index = 0xffffffff; 54 struct pipe_draw_info info; local 56 util_draw_init_info(&info); 57 info.mode = mode; 58 info.start = start; 59 info.count = count 70 struct pipe_draw_info info; local 88 struct pipe_draw_info info; local 109 struct pipe_draw_info info; local 130 struct pipe_draw_info info; local [all...] |
/external/dexmaker/src/dx/java/com/android/dx/io/ |
OpcodeInfo.java | 27 * TODO: Merge at least most of the info from the Dops class into 32 private static final Info[] INFO; 40 public static final Info SPECIAL_FORMAT = 41 new Info(Opcodes.SPECIAL_FORMAT, "<special>", 46 public static final Info PACKED_SWITCH_PAYLOAD = 47 new Info(Opcodes.PACKED_SWITCH_PAYLOAD, "packed-switch-payload", 51 public static final Info SPARSE_SWITCH_PAYLOAD = 52 new Info(Opcodes.SPARSE_SWITCH_PAYLOAD, "sparse-switch-payload", 56 public static final Info FILL_ARRAY_DATA_PAYLOAD [all...] |
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/ |
AccessibilityNodeInfoCompatJellyBean.java | 28 public static void addChild(Object info, View child, int virtualDescendantId) { 29 ((AccessibilityNodeInfo) info).addChild(child, virtualDescendantId); 32 public static void setSource(Object info, View root, int virtualDescendantId) { 33 ((AccessibilityNodeInfo) info).setSource(root, virtualDescendantId); 36 public static boolean isVisibleToUser(Object info) { 37 return ((AccessibilityNodeInfo) info).isVisibleToUser(); 40 public static void setVisibleToUser(Object info, boolean visibleToUser) { 41 ((AccessibilityNodeInfo) info).setVisibleToUser(visibleToUser); 44 public static boolean performAction(Object info, int action, Bundle arguments) { 45 return ((AccessibilityNodeInfo) info).performAction(action, arguments) [all...] |
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
EditorInfoTest.java | 31 EditorInfo info = new EditorInfo(); local 33 info.actionId = 1; 34 info.actionLabel = "actionLabel"; 35 info.fieldId = 2; 36 info.fieldName = "fieldName"; 37 info.hintText = "hintText"; 38 info.imeOptions = EditorInfo.IME_FLAG_NO_ENTER_ACTION; 39 info.initialCapsMode = TextUtils.CAP_MODE_CHARACTERS; 40 info.initialSelEnd = 10; 41 info.initialSelStart = 0 [all...] |
/external/chromium_org/ash/display/ |
display_info_unittest.cc | 15 DisplayInfo info = DisplayInfo::CreateFromSpecWithID("200x100", 10); local 16 EXPECT_EQ(10, info.id()); 17 EXPECT_EQ("0,0 200x100", info.bounds_in_native().ToString()); 18 EXPECT_EQ("200x100", info.size_in_pixel().ToString()); 19 EXPECT_EQ(gfx::Display::ROTATE_0, info.rotation()); 20 EXPECT_EQ("0,0,0,0", info.overscan_insets_in_dip().ToString()); 21 EXPECT_EQ(1.0f, info.configured_ui_scale()); 23 info = DisplayInfo::CreateFromSpecWithID("10+20-300x400*2/o", 10); 24 EXPECT_EQ("10,20 300x400", info.bounds_in_native().ToString()); 25 EXPECT_EQ("288x380", info.size_in_pixel().ToString()) [all...] |
/external/chromium_org/chrome_frame/ |
html_window_impl.h | 24 DLOG(INFO) << __FUNCTION__; 29 DLOG(INFO) << __FUNCTION__; 39 DLOG(INFO) << __FUNCTION__; 44 DLOG(INFO) << __FUNCTION__; 49 DLOG(INFO) << __FUNCTION__; 54 DLOG(INFO) << __FUNCTION__; 59 DLOG(INFO) << __FUNCTION__; 65 DLOG(INFO) << __FUNCTION__; 70 DLOG(INFO) << __FUNCTION__; 75 DLOG(INFO) << __FUNCTION__ [all...] |
/external/valgrind/main/helgrind/tests/ |
tc19_shadowmem.c | 17 Info; 25 Info* info = (Info*)infoV; local 26 firstoff = info->firstoff; 27 lastoff = info->lastoff; 28 skipoff = info->skipoff; 29 arr = info->arr; 31 assert( info->child == &child8 ); 49 Info* info = (Info*)infoV local 73 Info* info = (Info*)infoV; local 97 Info* info = (Info*)infoV; local 139 Info info; local 282 Info* info = (Info*)infoV; local [all...] |
/dalvik/dx/src/com/android/dx/io/ |
OpcodeInfo.java | 27 * TODO: Merge at least most of the info from the Dops class into 32 private static final Info[] INFO; 40 public static final Info SPECIAL_FORMAT = 41 new Info(Opcodes.SPECIAL_FORMAT, "<special>", 46 public static final Info PACKED_SWITCH_PAYLOAD = 47 new Info(Opcodes.PACKED_SWITCH_PAYLOAD, "packed-switch-payload", 51 public static final Info SPARSE_SWITCH_PAYLOAD = 52 new Info(Opcodes.SPARSE_SWITCH_PAYLOAD, "sparse-switch-payload", 56 public static final Info FILL_ARRAY_DATA_PAYLOAD [all...] |
/development/ide/xcode/SampleCode/English.lproj/ |
InfoPlist.strings | 1 /* Localized versions of Info.plist keys */
|
/external/chromium_org/tools/gyp/test/ios/app-bundle/TestApp/English.lproj/ |
InfoPlist-error.strings | 1 /* Localized versions of Info.plist keys */
|
InfoPlist.strings | 1 /* Localized versions of Info.plist keys */
|
/external/chromium_org/tools/gyp/test/mac/app-bundle/TestApp/English.lproj/ |
InfoPlist-error.strings | 1 /* Localized versions of Info.plist keys */
|
InfoPlist.strings | 1 /* Localized versions of Info.plist keys */
|
/external/valgrind/main/drd/tests/ |
linuxthreads_det.vgtest | 2 vgopts: --read-var-info=yes
|