/external/jdiff/src/jdiff/ |
SingleComment.java | 23 public SingleComment(String id, String text) { 26 id_ = id.replaceAll("<", "<").replaceAll(">", ">");; 30 /** Compare two SingleComment objects using just the id. */
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
SerializedFragmentState.java | 9 public final int id; field in class:SerializedFragmentState 15 id = fragment.getId();
|
/external/speex/libspeex/ |
speex_callbacks.c | 45 int id; local 48 id=speex_bits_unpack_unsigned(bits, 4); 49 callback = callback_list+id; 58 if (id<2) 60 else if (id<8) 62 else if (id<10) 64 else if (id<12) 66 else if (id<14)
|
/external/srec/srec/Nametag/include/ |
SR_NametagDefs.h | 48 * Returns the Nametag ID. 51 * @param id Nametag ID 54 ESR_ReturnCode (*getID)(const struct SR_Nametag_t* self, LCHAR** id); 57 * Returns the Nametag ID. 67 * Sets the Nametag ID. 70 * @param id Nametag ID 73 ESR_ReturnCode (*setID)(struct SR_Nametag_t* self, const LCHAR* id);
|
/external/valgrind/main/coregrind/ |
pub_core_stacks.h | 40 extern void VG_(deregister_stack) ( UWord id ); 41 extern void VG_(change_stack) ( UWord id, Addr start, Addr end );
|
/external/wpa_supplicant_8/src/crypto/ |
dh_groups.h | 13 int id; member in struct:dh_group 23 const struct dh_group * dh_groups_get(int id);
|
/hardware/samsung_slsi/exynos5/libsecurepath/ |
tlwvdrm_api.h | 23 * Command ID's for communication Trustlet Connector -> Trustlet. 51 uint32_t id; member in struct:__anon34128 58 uint32_t id; member in struct:__anon34129
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/logical/ |
compl.hpp | 30 # define BOOST_PP_COMPL_ID(id) id
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/ |
Device.java | 37 * EAS requires a unique device id, so that sync is possible from a variety of different 40 * This would work on a real device as well, but it would be better to use the "real" id if 56 String id; local 60 id = rdr.readLine(); 62 if (id == null) { 63 // It's very bad if we read a null device id; let's delete that file 69 return id; 83 id = "androidc" + consistentDeviceId; 85 id = "android" + System.currentTimeMillis(); 87 w.write(id); [all...] |
/system/core/init/ |
keychords.c | 53 keychord->id = keychords_count + 1; 55 svc->keychord_id = keychord->id; 100 __u16 id; local 104 ret = read(keychord_fd, &id, sizeof(id)); 105 if (ret != sizeof(id)) { 106 ERROR("could not read keychord id\n"); 111 svc = service_find_by_keychord(id); 116 ERROR("service for keychord %d not found\n", id);
|
/system/vold/ |
Loop.h | 29 static int lookupActive(const char *id, char *buffer, size_t len); 31 static int create(const char *id, const char *loopFile, char *loopDeviceBuffer, size_t len);
|
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
BridgeResources.java | 127 private Pair<String, ResourceValue> getResourceValue(int id, boolean[] platformResFlag_out) { 128 // first get the String related to this id in the framework 129 Pair<ResourceType, String> resourceInfo = Bridge.resolveResourceId(id); 141 resourceInfo = mProjectCallback.resolveResourceId(id); 156 public Drawable getDrawable(int id) throws NotFoundException { 157 Pair<String, ResourceValue> value = getResourceValue(id, mPlatformResourceFlag); 163 // id was not found or not resolved. Throw a NotFoundException. 164 throwException(id); 171 public int getColor(int id) throws NotFoundException { 172 Pair<String, ResourceValue> value = getResourceValue(id, mPlatformResourceFlag) [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
CameraProfileTest.java | 48 for (int id = 0; id < nCamera; id++) { 49 int low = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_LOW); 50 int mid = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_MEDIUM); 51 int high = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_HIGH);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
SendToClientBlockingTest.java | 57 int id = random.nextInt(10); local 61 mScript.set_ID(id); 62 // Log.i("testSendToClientBlocking1Params", "==" + id); 71 resultId == id); 76 int id = random.nextInt(10); local 81 mScript.set_ID(id); 83 // Log.i("testSendToClientBlocking3Params", data + "==" + id); 91 assertTrue("testSendToClientBlocking3Params fail the ID is:" + resultId + 92 "The data is:" + data, resultId == id && resultData == data);
|
/cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/ |
MainActivity.java | 40 if (findViewById(R.id.test_detail_container) != null) { 42 ((TestListFragment) getSupportFragmentManager().findFragmentById(R.id.item_list)) 48 public void onItemSelected(String id) { 50 Fragment fragment = TestItems.getFragment(id); 52 .replace(R.id.test_detail_container, fragment).commit(); 55 detailIntent.putExtra("item_id", id);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
CustomTitle.java | 67 final TextView leftText = (TextView) findViewById(R.id.left_text); 68 final TextView rightText = (TextView) findViewById(R.id.right_text); 69 final EditText leftTextEdit = (EditText) findViewById(R.id.left_text_edit); 70 final EditText rightTextEdit = (EditText) findViewById(R.id.right_text_edit); 71 Button leftButton = (Button) findViewById(R.id.left_text_button); 72 Button rightButton = (Button) findViewById(R.id.right_text_button);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
DragAndDropDemo.java | 36 TextView text = (TextView) findViewById(R.id.drag_text); 37 DraggableDot dot = (DraggableDot) findViewById(R.id.drag_dot_1); 39 dot = (DraggableDot) findViewById(R.id.drag_dot_2); 41 dot = (DraggableDot) findViewById(R.id.drag_dot_3); 44 mHiddenDot = (DraggableDot) findViewById(R.id.drag_dot_hidden); 47 mResultText = (TextView) findViewById(R.id.drag_result_text);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/ |
TreeRewriteParser.h | 92 id<ANTLRTreeAdaptor> treeAdaptor; /* AST parserMemVars */ 103 @property (retain, getter=getTreeAdaptor, setter=setTreeAdaptor:) id<ANTLRTreeAdaptor> treeAdaptor; /* AST parserproperties */ 107 + (id) newTreeRewriteParser:(id<ANTLRTokenStream>)aStream; 115 - (id<ANTLRTreeAdaptor>) getTreeAdaptor; 116 - (void) setTreeAdaptor:(id<ANTLRTreeAdaptor>)theTreeAdaptor; /* AST parsermethodsDecl */
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
X9FieldID.java | 14 * ASN.1 def for Elliptic-Curve Field ID structure. See 21 private ASN1ObjectIdentifier id; field in class:X9FieldID 31 this.id = prime_field; 52 this.id = characteristic_two_field; 77 this.id = (ASN1ObjectIdentifier)seq.getObjectAt(0); 83 return id; 95 * fieldType FIELD-ID.&id({IOSet}), 96 * parameters FIELD-ID.&Type({IOSet}{@fieldType}) 104 v.add(this.id); [all...] |
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bubble_controller.h | 55 - (id)initWithParentWindow:(NSWindow*)parentWindow 61 - (IBAction)ok:(id)sender; 62 - (IBAction)remove:(id)sender; 63 - (IBAction)cancel:(id)sender; 66 - (IBAction)edit:(id)sender; 67 - (IBAction)folderChanged:(id)sender;
|
/external/chromium/chrome/browser/ui/cocoa/download/ |
download_shelf_controller.h | 72 id<ViewResizer> resizeDelegate_; 75 - (id)initWithBrowser:(Browser*)browser 76 resizeDelegate:(id<ViewResizer>)resizeDelegate; 78 - (IBAction)showDownloadsTab:(id)sender; 86 - (IBAction)show:(id)sender; 89 - (IBAction)hide:(id)sender;
|
/external/chromium/chrome/common/net/ |
test_url_fetcher_factory.h | 47 TestURLFetcher(int id, 60 // Unique ID in our factory. 61 int id() const { return id_; } function in class:TestURLFetcher 87 // are registered in a map by the id passed to the create method. 93 virtual URLFetcher* CreateURLFetcher(int id, 97 TestURLFetcher* GetFetcherByID(int id) const; 98 void RemoveFetcherFromMap(int id); 101 // Maps from id passed to create to the returned URLFetcher. 149 virtual URLFetcher* CreateURLFetcher(int id,
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
codec.cc | 36 // Match the codec id/name based on the typical static/dynamic name rules. 37 return (payload <= kMaxStaticPayloadId) ? (id == payload) : (name == nm); 47 return Matches(codec.id, codec.name) && 56 os << "AudioCodec[" << id << ":" << name << ":" << clockrate << ":" << bitrate 62 // Match the codec id/name based on the typical static/dynamic name rules. 63 return (payload <= kMaxStaticPayloadId) ? (id == payload) : (name == nm); 67 // Only the id and name are matched. 68 return Matches(codec.id, codec.name); 73 os << "VideoCodec[" << id << ":" << name << ":" << width << ":" << height
|
/external/chromium_org/base/debug/ |
trace_event_win.h | 40 const void* id, 47 const void* id, 49 return Trace(name, -1, type, id, extra.c_str(), extra.length()); 56 const void* id, 58 return Trace(name, -1, type, id, extra, -1); 70 // Emit a trace of type |type| containing |name|, |id|, and |extra|. 78 const void* id, 115 // The id pointer in the machine bitness.
|
/external/chromium_org/cc/debug/ |
traced_value.cc | 13 scoped_ptr<base::Value> TracedValue::CreateIDRef(const void* id) { 15 res->SetString("id_ref", base::StringPrintf("%p", id)); 20 base::DictionaryValue* dict, const char* object_name, const void* id) { 21 dict->SetString("id", base::StringPrintf("%s/%p", object_name, id)); 28 const void* id) { 30 MakeDictIntoImplicitSnapshot(dict, object_name, id);
|