/external/chromium_org/chrome/browser/policy/ |
policy_statistics_collector.cc | 57 void PolicyStatisticsCollector::RecordPolicyUse(int id) { 63 if (policy->id > max_policy_id_) 64 max_policy_id_ = policy->id; 68 // Set the boundary to be max policy id + 1. Note that this may decrease in 69 // future builds if the policy with maximum id is removed. This does not 71 DCHECK_LE(id, max_policy_id_); 72 UMA_HISTOGRAM_ENUMERATION("Enterprise.Policies", id, max_policy_id_ + 1); 85 RecordPolicyUse(policy->id);
|
/external/chromium_org/content/browser/renderer_host/media/ |
video_capture_host.h | 68 virtual void OnError(const VideoCaptureControllerID& id) OVERRIDE; 69 virtual void OnBufferCreated(const VideoCaptureControllerID& id, 72 virtual void OnBufferReady(const VideoCaptureControllerID& id, 76 const VideoCaptureControllerID& id, 78 virtual void OnFrameInfoChanged(const VideoCaptureControllerID& id, 82 virtual void OnEnded(const VideoCaptureControllerID& id) OVERRIDE; 93 // VideoCaptureParams::session_id. |device_id| is an id created by
|
/external/chromium_org/content/test/plugin/ |
plugin_schedule_timer_test.cc | 32 NPP id, NPNetscapeFuncs *host_functions) 33 : PluginTest(id, host_functions), 88 void OnTimerHelper(NPP id, uint32 timer_id) { 90 static_cast<ScheduleTimerTest*>(id->pdata); 108 id(), timer_ids_[event.unscheduled_index]); 114 id(), event.scheduled_interval, event.schedule_repeated, OnTimerHelper);
|
/external/chromium_org/media/webm/ |
webm_tracks_parser.h | 73 virtual WebMParserClient* OnListStart(int id) OVERRIDE; 74 virtual bool OnListEnd(int id) OVERRIDE; 75 virtual bool OnUInt(int id, int64 val) OVERRIDE; 76 virtual bool OnFloat(int id, double val) OVERRIDE; 77 virtual bool OnBinary(int id, const uint8* data, int size) OVERRIDE; 78 virtual bool OnString(int id, const std::string& str) OVERRIDE;
|
/external/chromium_org/ppapi/proxy/ |
flash_drm_resource.cc | 32 int32_t FlashDRMResource::GetDeviceID(PP_Var* id, 34 if (!id) 37 *id = PP_MakeUndefined(); 43 id, callback)); 79 const std::string& id) { 82 *dest = StringVar::StringToPPVar(id);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGURIReference.cpp | 80 String id; local 81 KURL url = urlFromIRIStringWithFragmentIdentifier(iri, document, id); 86 *fragmentIdentifier = id; 88 if (id.isEmpty()) 94 return externalDocument->getElementById(id); 101 return document->getElementById(id);
|
/external/chromium_org/ui/message_center/ |
notification_list.cc | 70 updated_ids->insert(notification->id()); 104 void NotificationList::RemoveNotification(const std::string& id) { 105 EraseNotification(GetNotification(id)); 118 const std::string& id) { 120 Notifications::iterator source_iter = GetNotification(id); 134 const std::string& id) { 136 Notifications::iterator source_iter = GetNotification(id); 177 bool NotificationList::HasNotification(const std::string& id) { 178 return GetNotification(id) != notifications_.end(); 219 Notification* NotificationList::GetPopup(const std::string& id) { [all...] |
/external/chromium_org/v8/tools/testrunner/objects/ |
testcase.py | 39 self.id = None # int, used to map result back to TestCase instance 52 assert self.id is not None 54 self.dependency, list(self.outcomes or []), self.id] 62 test.id = task[5] 71 return [self.id, self.output.Pack(), self.duration] 75 assert result[0] == self.id
|
/external/doclava/res/assets/templates/components/ |
api_filter.cs | 3 <div id="api-level-toggle"> 4 <input type="checkbox" id="apiLevelCheckbox" onclick="toggleApiLevelSelector(this)" /> 6 <select id="apiLevelSelector">
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/ |
NioEndpoint.java | 56 private long id; field in class:NioEndpoint 62 public NioEndpoint( SelectorKernel kernel, long id, SocketChannel socket ) 64 this.id = id; 103 return id; 179 return "NioEndpoint[" + id + ", " + socket + "]";
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
Subscription.java | 24 protected String id;
field in class:Subscription 49 * @param nodeId The node id
58 * and JID. The server will have supplied the subscription id and current state.
62 * @param subscriptionId The id of this subscription
69 id = subscriptionId;
75 * and JID. The server will have supplied the subscription id and current state
80 * @param subscriptionId The id of this subscription
88 id = subscriptionId;
104 * Gets the subscription id
106 * @return The subscription id
[all...] |
/external/srec/srec/Nametag/include/ |
SR_Nametags.h | 73 * @param id ID of nametag to be removed 75 ESR_ReturnCode(*remove)(struct SR_Nametags_t* self, const LCHAR* id); 86 * Returns Nametag with the specified ID. It is illegal to destroy the returned Nametag 90 * @param ud Nametag id 93 ESR_ReturnCode(*get)(struct SR_Nametags_t* self, const LCHAR* id, SR_Nametag** nametag); 109 * @param id Nametag ID to search for 112 ESR_ReturnCode(*contains)(struct SR_Nametags_t* self, const LCHAR* id, ESR_BOOL* result); 164 * @param id ID of nametag to be remove [all...] |
/external/srec/srec/Nametag/src/ |
Nametags.c | 53 ESR_ReturnCode SR_NametagsRemove(SR_Nametags* self, const LCHAR* id) 60 return self->remove(self, id); 73 ESR_ReturnCode SR_NametagsGet(SR_Nametags* self, const LCHAR* id, SR_Nametag** nametag) 80 return self->get(self, id, nametag); 93 ESR_ReturnCode SR_NametagsContains(SR_Nametags* self, const LCHAR* id, ESR_BOOL* result) 100 return self->contains(self, id, result);
|
/frameworks/base/core/tests/coretests/src/android/view/ |
DrawableBgMinSize.java | 61 mChangeBackgroundsButton = (Button) findViewById(R.id.change_backgrounds); 64 mTextView = (TextView) findViewById(R.id.text_view); 65 mLinearLayout = (LinearLayout) findViewById(R.id.linear_layout); 66 mRelativeLayout = (RelativeLayout) findViewById(R.id.relative_layout); 67 mFrameLayout = (FrameLayout) findViewById(R.id.frame_layout); 68 mAbsoluteLayout = (AbsoluteLayout) findViewById(R.id.absolute_layout);
|
IncludeTest.java | 41 final View button1 = activity.findViewById(R.id.included_button); 44 final View button2 = activity.findViewById(R.id.included_button_overriden); 45 assertNotNull("The layout include_button was not included with overriden id", button2); 52 final View button1 = activity.findViewById(R.id.included_button); 53 final View button2 = activity.findViewById(R.id.included_button_overriden); 64 final View button1 = activity.findViewById(R.id.included_button_visibility); 73 final View button1 = activity.findViewById(R.id.included_button_with_size);
|
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
CellSpanTest.java | 47 mA = activity.findViewById(R.id.a); 48 mB = activity.findViewById(R.id.b); 49 mC = activity.findViewById(R.id.c); 50 mSpanThenCell = activity.findViewById(R.id.spanThenCell); 51 mCellThenSpan = activity.findViewById(R.id.cellThenSpan); 52 mSpan = activity.findViewById(R.id.span);
|
VerticalGravityTest.java | 49 mReference1 = activity.findViewById(R.id.reference1); 50 mReference2 = activity.findViewById(R.id.reference2); 51 mReference3 = activity.findViewById(R.id.reference3); 52 mTop = activity.findViewById(R.id.cell_top); 53 mCenter = activity.findViewById(R.id.cell_center); 54 mBottom = activity.findViewById(R.id.cell_bottom);
|
/frameworks/base/graphics/java/android/renderscript/ |
ProgramRaster.java | 49 CullMode(int id) { 50 mID = id; 57 ProgramRaster(int id, RenderScript rs) { 58 super(id, rs); 157 int id = mRS.nProgramRasterCreate(mPointSprite, mCullMode.mID); local 158 ProgramRaster programRaster = new ProgramRaster(id, mRS);
|
/frameworks/base/services/java/com/android/server/location/ |
FusedLocationHardwareSecure.java | 70 public void startBatching(int id, FusedBatchOptions batchOptions) throws RemoteException { 72 mLocationHardware.startBatching(id, batchOptions); 76 public void stopBatching(int id) throws RemoteException { 78 mLocationHardware.stopBatching(id); 83 int id, 87 mLocationHardware.updateBatchingOptions(id, batchoOptions);
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
SequenceTestSimple.java | 45 View container = (View) findViewById(R.id.container); 48 mRemovingButton = (Button) findViewById(R.id.removingButton); 55 fader.addTransition(new Fade().addTarget(R.id.removingButton)); 56 fader.addTransition(new ChangeBounds().addTarget(R.id.sceneSwitchButton)); 61 sequencedFadeReverse.addTransition(new ChangeBounds().addTarget(R.id.sceneSwitchButton)); 62 sequencedFadeReverse.addTransition(new Fade().addTarget(R.id.removingButton));
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
AudioGroup.java | 152 int id = nativeAdd(stream.getMode(), stream.getSocket(), local 155 mStreams.put(stream, id); 167 Integer id = mStreams.remove(stream); local 168 if (id != null) { 169 nativeRemove(id); 173 private native void nativeRemove(int id);
|
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/ |
ProgressService.java | 49 UpdateRunnable(int id, long when, int progress) { 50 mId = id; 58 Log.v(TAG, "id: " + mId + " when: " + mWhen + " progress: " + mProgress); 78 final int id = intent.getIntExtra("id", 0); local 81 handler.postDelayed(new UpdateRunnable(id, when, progress), 1000); 84 public static void startProgressUpdater(Context context, int id, long when, int progress) { 88 progressIntent.putExtra("id", id);
|
UpdateService.java | 49 if (intent.hasExtra("id") && intent.hasExtra("when")) { 50 final int id = intent.getIntExtra("id", 0); local 55 Log.v(TAG, "id: " + id + " when: " + when + " update: " + update); 56 noMa.notify(NotificationService.NOTIFICATION_ID + id, 57 NotificationService.makeBigTextNotification(this, update, id, when)); 59 Log.v(TAG, "id extra was " + (intent.hasExtra("id") ? "present" : "missing")); 64 public static PendingIntent getPendingIntent(Context context, int update, int id, long when) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
RemoteViewsTest.java | 111 View view = mResult.findViewById(R.id.remoteView_chronometer); 114 mRemoteViews.setViewVisibility(R.id.remoteView_chronometer, View.INVISIBLE); 118 mRemoteViews.setViewVisibility(R.id.remoteView_chronometer, View.GONE); 122 mRemoteViews.setViewVisibility(R.id.remoteView_chronometer, View.VISIBLE); 128 TextView textView = (TextView) mResult.findViewById(R.id.remoteView_text); 132 mRemoteViews.setTextViewText(R.id.remoteView_text, expected); 136 mRemoteViews.setTextViewText(R.id.remoteView_text, null); 140 mRemoteViews.setTextViewText(R.id.remoteView_absolute, ""); 150 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image); 153 mRemoteViews.setImageViewResource(R.id.remoteView_image, R.drawable.testimage) [all...] |
/external/chromium_org/ash/display/ |
display_controller_unittest.cc | 63 changed_display_id_ = display.id(); 85 int64 id = changed_display_id_; local 87 return id; 219 gfx::Display::Rotation GetStoredRotation(int64 id) { 220 return Shell::GetInstance()->display_manager()->GetDisplayInfo(id).rotation(); 223 float GetStoredUIScale(int64 id) { 224 return Shell::GetInstance()->display_manager()->GetDisplayInfo(id).ui_scale(); 264 int64 secondary_display_id = ScreenAsh::GetSecondaryDisplay().id(); 368 ScreenAsh::GetSecondaryDisplay().id(), insets); 400 int64 primary_id = GetPrimaryDisplay().id(); [all...] |